-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.11 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
{
"name": "command-palette",
"description": "命令面板, 类似vscode的命令面板, 快捷调用HBuilderX命令菜单",
"displayName": "命令面板",
"version": "1.0.1",
"publisher": "OneOne",
"engines": {
"HBuilderX": "^2.7.0"
},
"categories": [
"Other"
],
"main": "./src/extension.js",
"activationEvents": [
"*"
],
"contributes": {
"commands": [{
"command": "commandPalette.main",
"title": "命令面板(&P)"
}],
"keybindings": [{
"command": "commandPalette.main",
"key": "Ctrl+Shift+P",
"macosx": "Command+Shift+P"
}],
"menus": {
"menubar/tool": [{
"group": "z_commands"
},
{
"command": "commandPalette.main",
"group": "z_commands"
}
]
}
},
"extensionDependencies": [
"plugin-manager"
],
"dependencies": {
"json-comments": "^0.2.1"
}
}