forked from SuperMonster003/AutoJs6-VSCode-Extension
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
169 lines (169 loc) · 4.35 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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "autojs6-vscode-ext",
"displayName": "AutoJs6 (Auto.js v6.x) VSCode Extension",
"description": "Debugger for AutoJs6 (Auto.js v6.x)",
"version": "1.0.4",
"publisher": "003",
"icon": "assets/images/icon_autojs_logo.png",
"repository": {
"type": "github",
"url": "https://github.com/SuperMonster003/AutoJs6-VSCode-Extension"
},
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Programming Languages",
"Debuggers"
],
"activationEvents": [
"onStartupFinished",
"onCommand:extension.connect",
"onCommand:extension.disconnectAll",
"onCommand:extension.newProject",
"onCommand:extension.rerun",
"onCommand:extension.run",
"onCommand:extension.runOnDevice",
"onCommand:extension.runProject",
"onCommand:extension.save",
"onCommand:extension.saveProject",
"onCommand:extension.saveToDevice",
"onCommand:extension.stop",
"onCommand:extension.stopAll",
"onCommand:extension.viewDocument"
],
"main": "./out/extension.js",
"contributes": {
"breakpoints": [
{
"language": "javascript"
}
],
"commands": [
{
"command": "extension.viewDocument",
"title": "查看在线文档 (View Online Document)",
"category": "AutoJs6"
},
{
"command": "extension.connect",
"title": "建立设备连接 (Connect)",
"category": "AutoJs6"
},
{
"command": "extension.disconnectAll",
"title": "断开所有连接 (Disconnect All)",
"category": "AutoJs6"
},
{
"command": "extension.run",
"title": "运行脚本 (Run)",
"category": "AutoJs6"
},
{
"command": "extension.runOnDevice",
"title": "指定设备运行 (Run On Device)",
"category": "AutoJs6"
},
{
"command": "extension.stop",
"title": "停止当前脚本 (Stop)",
"category": "AutoJs6"
},
{
"command": "extension.stopAll",
"title": "停止所有脚本 (Stop All)",
"category": "AutoJs6"
},
{
"command": "extension.rerun",
"title": "重新运行脚本 (Rerun)",
"category": "AutoJs6"
},
{
"command": "extension.save",
"title": "保存到所有设备 (Save)",
"category": "AutoJs6"
},
{
"command": "extension.saveToDevice",
"title": "保存到指定设备 (Save On Device)",
"category": "AutoJs6"
},
{
"command": "extension.newProject",
"title": "新建项目 (New Project)",
"category": "AutoJs6"
},
{
"command": "extension.saveProject",
"title": "保存项目到设备 (Save Project)",
"category": "AutoJs6"
},
{
"command": "extension.runProject",
"title": "运行项目 (Run Project)",
"category": "AutoJs6"
}
],
"keybindings": [
{
"command": "extension.viewDocument",
"key": "alt+shift+f6",
"mac": "cmd+shift+f6",
"when": "editorTextFocus"
},
{
"command": "extension.run",
"key": "f6",
"mac": "f6",
"when": "editorTextFocus"
},
{
"command": "extension.stopAll",
"key": "ctrl+shift+f6",
"mac": "ctrl+shift+f6",
"when": "editorTextFocus"
},
{
"command": "extension.connect",
"key": "ctrl+alt+f6",
"mac": "ctrl+cmd+f6",
"when": "editorTextFocus"
},
{
"command": "extension.disconnectAll",
"key": "ctrl+alt+shift+f6",
"mac": "ctrl+cmd+shift+f6",
"when": "editorTextFocus"
},
{
"command": "extension.stop",
"key": "ctrl+f6",
"mac": "ctrl+f6",
"when": "editorTextFocus"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^12.20.37",
"@types/vscode": "^1.1.37",
"@vscode/test-electron": "^1.6.2",
"typescript": "^4.5.2"
},
"dependencies": {
"@types/archiver": "^3.0.0",
"archiver": "^3.0.0",
"@types/stream-buffers": "^3.0.2",
"stream-buffers": "^3.0.2"
},
"__npminstall_done": false
}