-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.54 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.54 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
{
"name": "package-scripts-panel",
"displayName": "Package Scripts Panel",
"description": "Show and run npm/yarn scripts from package.json",
"version": "1.0.0",
"author": "aser1989@sina.com",
"publisher": "ASER1989",
"engines": {
"vscode": "^1.85.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ASER1989/vscode-script-runner.git"
},
"categories": [
"Other"
],
"activationEvents": [
"onStartupFinished"
],
"main": "./dist/extension.js",
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "scriptPanel",
"title": "Scripts",
"icon": "media/icon.svg"
}
]
},
"views": {
"scriptPanel": [
{
"id": "scriptList",
"name": "Project Scripts"
}
]
},
"commands": [
{
"command": "packageScripts.runScript",
"title": "Run Script"
},
{
"command": "packageScripts.debugScript",
"title": "Debug Script"
}
],
"menus": {
"view/item/context": [
{
"command": "packageScripts.debugScript",
"when": "view == scriptList && viewItem == scriptItem",
"group": "inline"
}
]
}
},
"scripts": {
"compile": "tsc -p ./",
"package": "vsce package"
},
"devDependencies": {
"@types/node": "^24.1.0",
"@types/vscode": "^1.85.0",
"typescript": "^5.0.0",
"vsce": "^2.15.0"
}
}