-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
136 lines (136 loc) · 3.46 KB
/
package.json
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "npx-scripts",
"displayName": "npx-scripts",
"description": "General support for npx scripts, with typings via npx shebang and execution",
"version": "1.0.7",
"homepage": "https://github.com/arciisine/vscode-npx-scripts",
"publisher": "arcsine",
"keywords": [
"vscode",
"scripts",
"npx",
"shebang"
],
"author": {
"email": "[email protected]",
"name": "Timothy Soehnlin"
},
"repository": {
"url": "https://github.com/arciisine/vscode-npx-scripts.git"
},
"engines": {
"vscode": "^1.33.0"
},
"categories": [
"Other"
],
"main": "./out/index",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"files": [
"src/"
],
"activationEvents": [
"onLanguage:javascript"
],
"contributes": {
"snippets": [
{
"language": "javascript",
"path": "snippets.json"
}
],
"menus": {
"editor/title": [
{
"command": "npx-scripts.run-script",
"group": "navigation",
"when": "npxScriptsModulePresent && !npxScriptsRunning"
},
{
"command": "npx-scripts.run-script-with-input",
"group": "navigation",
"when": "npxScriptsModulePresent && !npxScriptsRunning"
},
{
"command": "npx-scripts.kill-script",
"group": "navigation",
"when": "npxScriptsModulePresent && npxScriptsRunning"
}
]
},
"commands": [
{
"title": "Add typings",
"category": "npx-scripts",
"command": "npx-scripts.add-typings",
"when": "npxScriptsModulePresent"
},
{
"title": "Verify Typings",
"category": "npx-scripts",
"command": "npx-scripts.verify-typings",
"when": "npxScriptsModulePresent"
},
{
"title": "Remove typings",
"category": "npx-scripts",
"command": "npx-scripts.remove-typings",
"when": "npxScriptsModulePresent"
},
{
"icon": {
"dark": "images/play-dark.png",
"light": "images/play-light.png"
},
"title": "Script Run",
"category": "npx-scripts",
"command": "npx-scripts.run-script",
"when": "npxScriptsModulePresent"
},
{
"icon": {
"dark": "images/play-input-dark.png",
"light": "images/play-input-light.png"
},
"title": "Script Run with input",
"category": "npx-scripts",
"command": "npx-scripts.run-script-with-input",
"when": "npxScriptsModulePresent"
},
{
"icon": {
"dark": "images/stop-dark.png",
"light": "images/stop-light.png"
},
"title": "Script Kill",
"category": "npx-scripts",
"command": "npx-scripts.kill-script",
"when": "npxScriptsModulePresent"
},
{
"title": "Re-install module",
"category": "npx-scripts",
"command": "npx-scripts.reinstall-typings",
"when": "npxScriptsModulePresent"
}
]
},
"devDependencies": {
"@types/node": "^11.13.2",
"vscode": "^1.1.33"
},
"icon": "images/logo.png",
"galleryBanner": {
"color": "#c6cdd3",
"theme": "light"
},
"dependencies": {
"get-package-json-from-registry": "^2.2.2"
}
}