forked from krizzdewizz/vscode-autorun
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.39 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.39 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
{
"name": "autorun",
"displayName": "autorun",
"description": "Automatically build/launch whenever a folder is opened in VS Code",
"version": "1.0.0",
"publisher": "krizzdewizz",
"engines": {
"vscode": "^1.0.0"
},
"categories": [
"Other"
],
"icon": "doc/logo.png",
"activationEvents": [
"workspaceContains:.vscode/tasks.json",
"workspaceContains:.vscode/launch.json"
],
"contributes": {
"configuration": {
"type": "object",
"title": "autorun configuration",
"properties": {
"autorun.build": {
"type": "boolean",
"default": false,
"description": "If .vscode/tasks.json exists and this setting is true, runs the 'Run Build Task' command"
},
"autorun.launch": {
"enum": [
"none",
"debug",
"run"
],
"default": "none",
"description": "If .vscode/launch.json exists, runs either the 'Start Debugging' (=debug) or 'Start Without Debugging' (=run) command"
}
}
}
},
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.5",
"tslint": "^3.11.0",
"vscode": "^0.11.0"
}
}