This repository has been archived by the owner on Oct 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 223
/
package.json
405 lines (405 loc) · 11.7 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
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
{
"name": "vscode-arduino",
"displayName": "Arduino (deprecated)",
"description": "Arduino for Visual Studio Code. This extension is deprecated and no longer maintained.",
"version": "0.7.1",
"publisher": "vsciot-vscode",
"preview": true,
"engines": {
"vscode": "^1.63.0"
},
"icon": "images/arduino.png",
"license": "SEE LICENSE IN LICENSE.txt",
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/vscode-arduino.git"
},
"bugs": {
"url": "https://github.com/Microsoft/vscode-arduino/issues"
},
"homepage": "https://github.com/Microsoft/vscode-arduino",
"categories": [
"Programming Languages",
"Snippets",
"Formatters"
],
"keywords": [
"arduino",
"iot",
"snippet",
"C",
"C++"
],
"activationEvents": [
"workspaceContains:**/*.ino",
"onCommand:arduino.verify",
"onCommand:arduino.upload",
"onCommand:arduino.cliUpload",
"onCommand:arduino.uploadUsingProgrammer",
"onCommand:arduino.cliUploadUsingProgrammer",
"onCommand:arduino.rebuildIntelliSenseConfig",
"onCommand:arduino.selectProgrammer",
"onCommand:arduino.selectSerialPort",
"onCommand:arduino.selectSketch",
"onCommand:arduino.openSerialMonitor",
"onCommand:arduino.changeTimestampFormat",
"onCommand:arduino.closeSerialMonitor",
"onCommand:arduino.changeBoardType",
"onCommand:arduino.showBoardConfig",
"onCommand:arduino.showBoardManager",
"onCommand:arduino.showLibraryManager",
"onCommand:arduino.showExamples",
"onCommand:arduino.initialize"
],
"main": "./out/src/extension",
"contributes": {
"breakpoints": [
{
"language": "c"
},
{
"language": "cpp"
}
],
"snippets": [
{
"language": "cpp",
"path": "./snippets/arduino.json"
},
{
"language": "c",
"path": "./snippets/arduino.json"
}
],
"commands": [
{
"command": "arduino.initialize",
"title": "Arduino: Initialize"
},
{
"command": "arduino.verify",
"title": "Arduino: Verify",
"icon": {
"dark": "images/ArduinoVerify_inverse_16.svg",
"light": "images/ArduinoVerify_16.svg"
}
},
{
"command": "arduino.upload",
"title": "Arduino: Upload",
"icon": {
"dark": "images/ArduinoUpload_inverse_16.svg",
"light": "images/ArduinoUpload_16.svg"
}
},
{
"command": "arduino.cliUpload",
"title": "Arduino CLI: Upload"
},
{
"command": "arduino.uploadUsingProgrammer",
"title": "Arduino: Upload Using Programmer"
},
{
"command": "arduino.cliUploadUsingProgrammer",
"title": "Arduino CLI: Upload Using Programmer"
},
{
"command": "arduino.rebuildIntelliSenseConfig",
"title": "Arduino: Rebuild IntelliSense Configuration"
},
{
"command": "arduino.selectProgrammer",
"title": "Arduino: Select Programmer"
},
{
"command": "arduino.selectSketch",
"title": "Arduino: Select Sketch"
},
{
"command": "arduino.selectSerialPort",
"title": "Arduino: Select Serial Port"
},
{
"command": "arduino.openSerialMonitor",
"title": "Arduino: Open Serial Monitor"
},
{
"command": "arduino.changeTimestampFormat",
"title": "Arduino: Change Timestamp Format"
},
{
"command": "arduino.closeSerialMonitor",
"title": "Arduino: Close Serial Monitor"
},
{
"command": "arduino.sendMessageToSerialPort",
"title": "Arduino: Send Text to Serial Port"
},
{
"command": "arduino.changeBoardType",
"title": "Arduino: Change Board Type"
},
{
"command": "arduino.showBoardConfig",
"title": "Arduino: Board Config"
},
{
"command": "arduino.showBoardManager",
"title": "Arduino: Board Manager"
},
{
"command": "arduino.showLibraryManager",
"title": "Arduino: Library Manager"
},
{
"command": "arduino.showExamples",
"title": "Arduino: Examples"
}
],
"menus": {
"editor/title": [
{
"when": "resourceExtname == .ino",
"command": "arduino.verify",
"group": "navigation"
},
{
"when": "resourceExtname == .ino",
"command": "arduino.upload",
"group": "navigation"
}
]
},
"views": {
"explorer": [
{
"id": "arduinoExampleExplorer",
"name": "Arduino Examples",
"when": "vscode-arduino:showExampleExplorer"
}
]
},
"viewsWelcome": [
{
"view": "arduinoExampleExplorer",
"contents": "No examples are installed. [Find additional examples online.](https://go.microsoft.com/fwlink/?linkid=2225276)"
}
],
"keybindings": [
{
"command": "arduino.verify",
"key": "ctrl+alt+r",
"mac": "cmd+alt+r"
},
{
"command": "arduino.upload",
"key": "ctrl+alt+u",
"mac": "cmd+alt+u"
},
{
"command": "arduino.rebuildIntelliSenseConfig",
"key": "ctrl+alt+i",
"mac": "cmd+alt+i"
}
],
"configuration": {
"type": "object",
"title": "Arduino configuration",
"properties": {
"arduino.useArduinoCli": {
"type": "boolean",
"default": false,
"markdownDescription": "Use Arduino CLI installed instead of the legacy Arduino IDE. If `#arduino.path#` and `#arduino.commandPath#` are not set, the extension will use a version of Arduino CLI bundled with the extension. (Requires a restart after change)"
},
"arduino.path": {
"type": "string",
"default": "",
"description": "Path to Arduino, you can use a custom version of Arduino by modifying this setting to include the full path. Example: 'C:\\Program Files\\Arduino' for Windows, '/Applications' for Mac, '/home/$user/Downloads/arduino-1.8.1' for Linux. (Requires a restart after change)"
},
"arduino.commandPath": {
"type": "string",
"default": "",
"description": "Path to a script relative to 'arduino.path', you can use a custom launch script to run Arduino by modifying this setting. Example: 'run-arduino.bat' for Windows, 'Contents/MacOS/run-arduino.sh' for Mac, 'bin/run-arduino.sh' for Linux. (Requires a restart after change)"
},
"arduino.additionalUrls": {
"type": "array",
"items": {
"type": "string"
},
"description": "Additional URLs for 3rd party packages."
},
"arduino.logLevel": {
"type": "string",
"default": "info",
"enum": [
"info",
"verbose"
]
},
"arduino.clearOutputOnBuild": {
"type": "boolean",
"default": false,
"description": "Clear the output logs before uploading or verifying."
},
"arduino.openPDEFiletype": {
"type": "boolean",
"default": false,
"description": "Allow VSCode Arduino to open PDE sketches, from pre-1.0.0 versions of Arduino"
},
"arduino.enableUSBDetection": {
"type": "boolean",
"default": false,
"description": "USB Detection is currently not working"
},
"arduino.disableTestingOpen": {
"type": "boolean",
"default": false
},
"arduino.ignoreBoards": {
"type": "array",
"default": []
},
"arduino.skipHeaderProvider": {
"type": "boolean",
"default": false
},
"arduino.disableIntelliSenseAutoGen": {
"type": "boolean",
"default": false,
"description": "When disabled vscode-arduino will not auto-generate an IntelliSense configuration (i.e. c_cpp_properties.json) by analyzing the compiler output."
},
"arduino.analyzeOnOpen": {
"type": "boolean",
"default": true,
"markdownDescription": "When true, automatically run analysis when the project is opened. Only works when `arduino.analyzeOnSettingChange` is true."
},
"arduino.analyzeOnSettingChange": {
"type": "boolean",
"default": true,
"markdownDescription": "When true, automatically run analysis when board, configuration, or sketch settings are changed."
}
}
},
"configurationDefaults": {
"[cpp]": {
"editor.quickSuggestions": true
},
"[c]": {
"editor.quickSuggestions": true
}
},
"languages": [
{
"id": "arduino-output",
"mimetypes": [
"text/x-code-output"
]
},
{
"id": "cpp",
"extensions": [
".ino"
]
}
],
"grammars": [
{
"language": "cpp",
"path": "./syntaxes/arduino.tmLanguage",
"scopeName": "source.cpp.arduino"
},
{
"language": "arduino-output",
"scopeName": "arduino.output",
"path": "./syntaxes/arduino.output.tmLanguage"
}
],
"jsonValidation": [
{
"fileMatch": "arduino.json",
"url": "./misc/arduinoValidator.json"
}
]
},
"scripts": {
"build": "gulp build --mode=production",
"postinstall": "node ./build/downloadAssets.js && cd ./src/views && npm install",
"test": "gulp test"
},
"extensionDependencies": [
"ms-vscode.cpptools",
"ms-vscode.vscode-serial-monitor"
],
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@types/express": "^4.17.13",
"@types/glob": "^7.1.4",
"@types/mocha": "^5.2.7",
"@types/node": "^16.9.6",
"@types/strftime": "^0.9.2",
"@types/uuid": "^8.3.1",
"@types/vscode": "^1.43.0",
"@types/winreg": "^1.2.30",
"@typescript-eslint/eslint-plugin": "^4.31.1",
"@typescript-eslint/parser": "^4.31.1",
"@vscode/vsce": "^2.16.0",
"acorn": "^7.4.0",
"ajv": "^6.12.3",
"babel-loader": "^8.2.2",
"del": "^2.2.2",
"download": "^8.0.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-react": "^7.25.1",
"eslint-plugin-require-path-exists": "^1.1.9",
"eslint-plugin-standard": "^5.0.0",
"fancy-log": "^1.3.3",
"gulp": "^4.0.2",
"gulp-eslint": "^6.0.0",
"gulp-sourcemaps": "^2.4.1",
"gulp-tslint": "^8.1.4",
"gulp-typescript": "^5.0.1",
"minimist": "^1.2.6",
"mocha": "^6.2.3",
"node-gyp": "^8.4.0",
"plugin-error": "^1.0.1",
"tslint": "^5.20.1",
"typemoq": "^1.6.0",
"typescript": "^3.7.5",
"vscode-test": "^1.4.0",
"webpack": "^4.44.1"
},
"dependencies": {
"@microsoft/vscode-serial-monitor-api": "^0.1.5",
"@vscode/extension-telemetry": "~0.6.2",
"body-parser": "^1.16.1",
"cocopa": "0.0.13",
"eventemitter2": "^4.1.0",
"express": "^4.19.2",
"extract-zip": "^2.0.1",
"glob": "^7.1.1",
"iconv-lite": "^0.4.18",
"impor": "^0.1.1",
"properties": "^1.2.1",
"strftime": "^0.9.2",
"usb-detection": "^4.13.0",
"uuid": "^3.0.1",
"winreg": "^1.2.3",
"winston": "^2.4.5"
},
"overrides": {
"async": "~3.2.3",
"node-sass": "^7.0.0",
"es5-ext": "0.10.53",
"string_decoder": "https://github.com/microsoft/vscode-arduino/releases/download/v0.4.12-rc2/string_decoder-10.0.0.tgz",
"semver": "~7.5.2"
},
"vsce": {
"ignoreFile": "out/.vscodeignore"
}
}