-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "arduino-lab-micropython-ide",
"productName": "Arduino Lab for MicroPython",
"version": "0.10.0",
"description": "Arduino Lab for MicroPython is a project sponsored by Arduino, based on original work by Murilo Polese.\nThis is an experimental pre-release software, please direct any questions exclusively to Github issues.",
"main": "index.js",
"scripts": {
"post-set-shell": "npm config set script-shell bash",
"rebuild": "electron-rebuild",
"dev": "electron --inspect ./",
"build": "npm run post-set-shell && electron-builder",
"postinstall": "npm run post-set-shell && npm run rebuild"
},
"devDependencies": {
"electron": "^19.0.10",
"electron-builder": "^23.3.3",
"electron-notarize": "^1.2.1",
"electron-rebuild": "^3.2.9",
"is-ci": "^3.0.1"
},
"build": {
"appId": "cc.arduino.micropython-lab",
"artifactName": "${productName}-${os}_${arch}.${ext}",
"extraResources": "./ui/arduino/helpers.py",
"mac": {
"target": "zip",
"icon": "build_resources/icon.icns"
},
"win": {
"target": "zip",
"icon": "build_resources/icon.png"
},
"linux": {
"target": "zip",
"icon": "build_resources/icon.icns"
},
"afterSign": "build_resources/notarize.js"
},
"license": "MIT",
"dependencies": {
"about-window": "^1.15.2",
"micropython.js": "github:arduino/micropython.js#v1.4.4"
},
"engines": {
"node": "18"
}
}