-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.28 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "command-run",
"displayName": "Run Command",
"description": "Run Commands on Terminal for Visual Studio Code",
"version": "1.4.2",
"icon": "img/icon.png",
"author": "camillucci",
"publisher": "camillucci",
"repository": {
"type": "git",
"url": "https://github.com/camillucci/run-command.git"
},
"engines": {
"vscode": "^1.91.0"
},
"categories": [
"Other"
],
"keywords": [
"Terminal",
"Command",
"Commands",
"Run",
"Runner"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "run-command.run-command",
"title": "Run Command..."
}
],
"keybindings": [
{
"command": "run-command.run-command",
"key": "ctrl+shift+t",
"mac": "ctrl+shift+t"
}
],
"configuration": {
"type": "object",
"title": "Run Command Configuration",
"properties": {
"run-command.commands": {
"type": "array",
"items": {
"type": [
"object"
],
"properties": {
"name": {
"type": "string",
"description": "Name for the command and of the terminal."
},
"command": {
"type": "string",
"description": "The command to be executed in the terminal."
},
"path": {
"type": "string",
"description": "Starting path of the command."
}
}
}
}
}
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"prettier": "prettier --write ./src"
},
"devDependencies": {
"@types/mocha": "^10.0.10",
"@types/node": "^25.5.0",
"@types/vscode": "^1.91.0",
"@typescript-eslint/eslint-plugin": "^8.58.0",
"@typescript-eslint/parser": "^8.48.0",
"@vscode/test-electron": "^2.5.2",
"eslint": "^10.1.0",
"glob": "^13.0.6",
"mocha": "^11.7.5",
"prettier": "^3.8.1",
"typescript": "^6.0.2"
}
}