-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
295 lines (295 loc) · 8.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
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
{
"name": "mpremote",
"displayName": "MPRemote",
"description": "Command palette access for MicroPython mpremote",
"icon": "images/snake.png",
"publisher": "DavesCodeMusings",
"version": "1.21.12",
"engines": {
"vscode": "^1.79.0"
},
"repository": {
"type": "git",
"url": "https://github.com/DavesCodeMusings/mpremote-vscode.git"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "mpremote.refreshSerialPorts",
"category": "MPRemote",
"title": "Rescan available serial ports",
"icon": "$(refresh)"
},
{
"command": "mpremote.cat",
"category": "MPRemote",
"title": "Show contents of a remote file (cat)",
"icon": "$(file-text)"
},
{
"command": "mpremote.chdir",
"category": "MPRemote",
"title": "Change remote working directory (chdir)",
"icon": "$(file-directory)"
},
{
"command": "mpremote.devs",
"category": "MPRemote",
"title": "Show attached device info (devs)",
"icon": "$(list-ordered)"
},
{
"command": "mpremote.download",
"title": "Download a file from remote filesystem (cp)",
"category": "MPRemote",
"icon": "$(arrow-down)"
},
{
"command": "mpremote.exec",
"title": "Run a Python statement on remote device (exec)",
"category": "MPRemote",
"icon": "$(run)"
},
{
"command": "mpremote.ls",
"title": "List files on remote filesystem (ls)",
"category": "MPRemote"
},
{
"command": "mpremote.mipInstall",
"category": "MPRemote",
"title": "Install a package on remote filesystem (mip)",
"icon": "$(package)"
},
{
"command": "mpremote.mkdir",
"title": "Make a new directory (mkdir)",
"category": "MPRemote",
"icon": "$(file-directory-create)"
},
{
"command": "mpremote.repl",
"category": "MPRemote",
"title": "Enter REPL prompt (repl)",
"icon": "$(repl)"
},
{
"command": "mpremote.reset",
"title": "Reset device (reset)",
"category": "MPRemote",
"icon": "stop"
},
{
"command": "mpremote.rm",
"title": "Remove a file from remote filesystem (rm)",
"category": "MPRemote",
"icon": "$(trash)"
},
{
"command": "mpremote.rmdir",
"title": "Remove a directory from remote filesystem (rmdir)",
"category": "MPRemote",
"icon": "$(trash)"
},
{
"command": "mpremote.run",
"title": "Run file on remote device (run)",
"category": "MPRemote",
"icon": "$(run)"
},
{
"command": "mpremote.setrtc",
"title": "Set realtime clock to match host date-time (setrtc)",
"category": "MPRemote",
"icon": "$(clock)"
},
{
"command": "mpremote.sync",
"title": "Upload all project files to remote filesystem (sync)",
"category": "MPRemote",
"icon": "$(arrow-up)"
},
{
"command": "mpremote.upload",
"title": "Upload file to remote filesystem (cp)",
"category": "MPRemote",
"icon": "$(arrow-up)"
}
],
"configuration": {
"title": "MPRemote",
"properties": {
"mpremote.serialPort.skip": {
"type": "string",
"default": "",
"description": "For serial ports that are present on the development host, but will never have a microcontroller attached. Enter them here to avoid erroneous detection. Use commas to separate multiple ports."
},
"mpremote.startupCheck.skip": {
"type": "boolean",
"default": false,
"description": "Skip checks for python binary and mpremote module at start-up. Select this if you use a Python virtual environment to avoid errors."
},
"mpremote.srcSubdirectory" : {
"type": "string",
"default": "",
"description": "If all your MicroPython files are contained in a subdirectory of your project folder (e.g. src), enter that subdirectory name here. This will be used as the local path for uploads to your microcontroller."
}
}
},
"views": {
"explorer": [
{
"id": "serialPortView",
"name": "Serial Ports",
"visibility": "visible"
}
]
},
"submenus": [
{
"id": "mpremote.editorContextSubMenu",
"label": "MPRemote",
"when": "resourceExtname == .mpy || resourceExtname == .py || resourceLangId == python"
}
],
"menus": {
"editor/context": [
{
"submenu": "mpremote.editorContextSubMenu",
"group": "mpremote",
"when": "resourceExtname == .mpy || resourceExtname == .py || resourceLangId == python"
}
],
"explorer/context": [
{
"submenu": "mpremote.editorContextSubMenu",
"group": "mpremote",
"when": "resourceExtname == .mpy || resourceExtname == .py || resourceLangId == python"
}
],
"mpremote.editorContextSubMenu": [
{
"command": "mpremote.run"
},
{
"command": "mpremote.upload"
}
],
"view/title": [
{
"command": "mpremote.refreshSerialPorts",
"when": "view == serialPortView",
"group": "navigation"
},
{
"command": "mpremote.devs",
"when": "view == serialPortView",
"group": "navigation"
}
],
"view/item/context": [
{
"command": "mpremote.cat",
"group": "1_fileGroup@1",
"when": "view == serialPortView"
},
{
"command": "mpremote.chdir",
"group": "2_dirGroup@1",
"when": "view == serialPortView"
},
{
"command": "mpremote.download",
"group": "1_fileGroup@2",
"when": "view == serialPortView"
},
{
"command": "mpremote.exec",
"group": "3_deviceGroup@1",
"when": "view == serialPortView"
},
{
"command": "mpremote.ls",
"group": "1_fileGroup@3",
"when": "view == serialPortView"
},
{
"command": "mpremote.mipInstall",
"group": "3_deviceGroup@2",
"when": "view == serialPortView"
},
{
"command": "mpremote.mkdir",
"group": "2_dirGroup@2",
"when": "view == serialPortView"
},
{
"command": "mpremote.repl",
"group": "3_deviceGroup@3",
"when": "view == serialPortView"
},
{
"command": "mpremote.reset",
"group": "3_deviceGroup@4",
"when": "view == serialPortView"
},
{
"command": "mpremote.rm",
"group": "1_fileGroup@4",
"when": "view == serialPortView"
},
{
"command": "mpremote.rmdir",
"group": "2_dirGroup@3",
"when": "view == serialPortView"
},
{
"command": "mpremote.setrtc",
"group": "3_deviceGroup@5",
"when": "view == serialPortView"
},
{
"command": "mpremote.sync",
"group": "1_fileGroup@5",
"when": "view == serialPortView"
}
]
},
"viewsWelcome": [
{
"view": "serialPortView",
"contents": "[Refresh $(refresh)](command:mpremote.refreshSerialPorts)\nAttach a microcontroller and refresh to access MPRemote commands from the context menu.",
"when": "workbenchState == empty"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^8.0.0",
"@types/mocha": "^10.0.0",
"@types/node": "16.x",
"@types/vscode": "^1.79.0",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"@vscode/test-electron": "^2.2.0",
"eslint": "^8.26.0",
"glob": "^8.0.3",
"mocha": "^10.1.0",
"typescript": "^4.8.4"
},
"dependencies": {
"serialport": "^11.0.0"
}
}