-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
51 lines (51 loc) · 1.65 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
{
"name": "shortcuts",
"displayName": "Shortcuts",
"description": "Add handy shortcuts to your status bar",
"version": "0.0.1",
"publisher": "gizak",
"engines": {
"vscode": "^1.3.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gizak/vscode-shortcuts.git"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"icon": "images/icon.png",
"main": "./out/src/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Shortcuts configuration",
"properties": {
"shortcuts.buttons": {
"type": "array",
"description": "Setup shortcut buttons. Format: ICON,COMMAND,TOOLTIP",
"default": [
"file-binary , workbench.action.tasks.build , Run build task",
"beaker , workbench.action.tasks.test , Run test task",
"terminal , workbench.action.terminal.toggleTerminal , Toggle terminal panel",
"telescope , workbench.action.showCommands , Show command palette",
"bug, workbench.action.debug.start, Launch debug"
]
}
}
}
},
"scripts": {
"vscode:prepublish": "node ./node_modules/vscode/bin/compile",
"compile": "node ./node_modules/vscode/bin/compile -p .",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^1.8.10",
"vscode": "^0.11.14"
}
}