-
-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
244 lines (244 loc) · 6.89 KB
/
Copy pathpackage.json
File metadata and controls
244 lines (244 loc) · 6.89 KB
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
{
"name": "arduino-maker-workshop",
"displayName": "Arduino Maker Workshop",
"publisher": "TheLastOutpostWorkshop",
"description": "The ultimate tool for makers to bring Arduino projects to life!",
"version": "1.1.11",
"engines": {
"vscode": "^1.93.0"
},
"sponsor": {
"url": "https://buymeacoffee.com/thelastoutpostworkshop"
},
"icon": "resources/extension_icon.png",
"repository": {
"type": "git",
"url": "https://github.com/thelastoutpostworkshop/vscode-arduino"
},
"author": "TheLastOutpostWorkshop",
"categories": [
"Programming Languages",
"Snippets"
],
"keywords": [
"arduino",
"iot",
"esp32",
"microcontroller",
"embedded",
"sketch",
"C",
"C++"
],
"main": "./build/extension.js",
"activationEvents": [
"onView:quickAccessView",
"onView:arduinoMakerWorkshop.compileOutput",
"onWebviewPanel:vueWebview",
"onCommand:arduinoMakerWorkshop.decodeEsp32Backtrace",
"onCommand:arduinoMakerWorkshop.clearCache"
],
"contributes": {
"viewsContainers": {
"activitybar": [
{
"id": "arduino",
"title": "Arduino Maker Workshop",
"icon": "resources/arduino.svg"
}
],
"panel": [
{
"id": "arduinoCliOutput",
"title": "Arduino CLI Output",
"icon": "resources/arduino.svg"
}
]
},
"views": {
"arduino": [
{
"id": "quickAccessView",
"name": "",
"icon": "resources/arduino.svg"
}
],
"arduinoCliOutput": [
{
"id": "arduinoMakerWorkshop.compileOutput",
"name": "Compile Output",
"type": "webview"
}
]
},
"commands": [
{
"command": "extension.openVueWebview",
"title": "Arduino Home",
"category": "Arduino"
},
{
"command": "arduinoMakerWorkshop.decodeEsp32Backtrace",
"title": "Arduino Maker Workshop: Decode ESP32 Backtrace",
"category": "Arduino"
},
{
"command": "quickAccessView.compile",
"title": "Compile",
"category": "Arduino"
},
{
"command": "compile.clean",
"title": "Compile (clean)",
"category": "Arduino"
},
{
"command": "quickAccessView.upload",
"title": "Upload",
"category": "Arduino"
},
{
"command": "quickAccessView.profile",
"title": "Profile",
"category": "Arduino"
},
{
"command": "activateBuildProfile",
"title": "Activate Build Profile",
"category": "Arduino"
},
{
"command": "deactivateBuildProfile",
"title": "Deactivate Build Profile",
"category": "Arduino"
},
{
"command": "arduinoMakerWorkshop.clearCache",
"title": "Arduino Maker Workshop: Clear CLI Cache",
"category": "Arduino"
},
{
"command": "arduinoMakerWorkshop.addSubfolderToWorkspace",
"title": "Add as Active Workspace Folder",
"category": "Arduino"
}
],
"menus": {
"explorer/context": [
{
"command": "arduinoMakerWorkshop.addSubfolderToWorkspace",
"when": "explorerResourceIsFolder",
"group": "2_workspace"
}
]
},
"configuration": {
"title": "Arduino Maker Workshop",
"properties": {
"arduinoMakerWorkshop.arduinoCLI.executable": {
"type": "string",
"scope": "machine",
"default": "arduino-cli",
"description": "Executable filename for the arduino-cli."
},
"arduinoMakerWorkshop.arduinoCLI.installPath": {
"type": "string",
"scope": "machine",
"default": "",
"description": "File system path to where the arduino-cli is located (leave blank to use the bundled CLI)."
},
"arduinoMakerWorkshop.arduinoCLI.userDirectory": {
"type": "string",
"scope": "machine",
"default": "",
"description": "File system path to the equivalent of the Arduino IDE's 'sketchbook' directory. Library Manager installations are made to the libraries subdirectory of the user director."
},
"arduinoMakerWorkshop.arduinoCLI.networkConnectionTimeoutEnabled": {
"type": "boolean",
"scope": "machine",
"default": false,
"description": "Enable the Arduino CLI network connection timeout override. Leave disabled to use the Arduino CLI default."
},
"arduinoMakerWorkshop.arduinoCLI.networkConnectionTimeoutValue": {
"type": "string",
"scope": "machine",
"default": "600s",
"description": "Network connection timeout to write to Arduino CLI when the override is enabled. Use Go duration syntax such as 600s, 10m, or 1h."
},
"arduinoMakerWorkshop.disableAutoPortDetection": {
"type": "boolean",
"default": false,
"scope": "machine",
"description": "Disable automatic port detection (only applies on Windows)."
},
"arduinoMakerWorkshop.disableAutoUpdateChecks": {
"type": "boolean",
"default": false,
"scope": "machine",
"description": "Disable automatic checks for board/library updates (useful for offline use)."
},
"arduinoMakerWorkshop.verboseCompile": {
"type": "boolean",
"default": true,
"description": "Enable verbose output during Arduino CLI compile."
}
}
},
"configurationDefaults": {
"files.exclude": {
"**/build/sketch": true
},
"search.exclude": {
"**/build/sketch/**": true
}
},
"snippets": [
{
"language": "cpp",
"path": "snippets/arduino.json"
}
]
},
"extensionDependencies": [
"ms-vscode.cpptools"
],
"scripts": {
"vscode:prepublish": "npm run compile && npm run build:vue",
"compile": "vite build",
"watch": "vite build --watch",
"package": "vite build --mode production",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test",
"test:webview": "npm --prefix vue_webview run test:e2e",
"build:vue": "cd vue_webview && npm run build"
},
"devDependencies": {
"@types/mocha": "^10.0.7",
"@types/node": "^26.1.1",
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^8.18.0",
"@typescript-eslint/parser": "^8.18.0",
"@vscode/test-cli": "^0.0.15",
"@vscode/test-electron": "^3.0.0",
"eslint": "^10.3.0",
"typescript": "^5.9.2",
"vite": "^8.0.11"
},
"os": [
"darwin",
"win32",
"linux"
],
"cpu": [
"arm64",
"x64"
],
"dependencies": {
"@microsoft/vscode-serial-monitor-api": "^0.1.7",
"ansi_up": "^6.0.6",
"usb": "^2.14.0",
"which": "^4.0.0",
"yaml": "^2.8.0"
}
}