-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.7 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.7 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
{
"name": "arduinoeditor",
"version": "0.0.1",
"description": "An external editor based for the Arduino IDE",
"main": "index.html",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nwb nwbuild -v 0.14.7-sdk -r ./",
"build-production": "cd .. && nwb nwbuild -v 0.19.0 -p win64,win32,osx64,linux64 --win-ico ./Arduino_External_Editor/img/icon.ico --mac-icns ./Arduino_External_Editor/img/icon.icns --output-format ZIP -o ./AEE_build ./Arduino_External_Editor",
"build-all-sdk": "cd .. && nwb nwbuild -v 0.19.0-sdk -p win32,osx64,linux64 --win-ico ./Arduino_External_Editor/img/icon.ico --mac-icns img/icon.icns --side-by-side -o ./AEE_build ./Arduino_External_Editor",
"build-win-sdk": "cd .. && nwb nwbuild -v 0.19.0-sdk -p win32 --win-ico ./Arduino_External_Editor/img/icon.ico --side-by-side -o ./AEE_build ./Arduino_External_Editor",
"build-mac-sdk": "cd .. && nwb nwbuild -v 0.19.0-sdk -p osx64 --mac-icns ./Arduino_External_Editor/img/icon.icns --side-by-side -o ./AEE_build ./Arduino_External_Editor",
"build-linux-sdk": "cd .. && nwb nwbuild -v 0.19.0-sdk -p linux64 --side-by-side -o ./AEE_build ./Arduino_External_Editor"
},
"window": {
"width": 900,
"height": 700,
"title": "Arduino External Editor",
"toolbar": false,
"icon": "./img/icon.png",
"min_width": 600,
"min_height": 450
},
"author": {
"name": "Jaret Burkett",
"email": "jaretburkett@gmail.com"
},
"bugs": {
"url": "https://github.com/oshlab/Arduino_External_Editor/issues",
"email": "jaretburkett@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/oshlab/Arduino_External_Editor.git"
},
"license": "MIT"
}