-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.81 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.81 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
{
"name": "arduino-lab-micropython-ide",
"author": "Arduino",
"productName": "Arduino Lab for MicroPython",
"version": "0.22.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": "node build_resources/electron-rebuild.js",
"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/rebuild": "^3.2.13",
"@electron/notarize": "^2.2.1",
"is-ci": "^3.0.1"
},
"build": {
"appId": "cc.arduino.micropython-lab",
"artifactName": "${productName}-${os}_${arch}.${ext}",
"extraResources": "./ui/arduino/helpers.py",
"mac": {
"target": [
{
"target": "zip",
"arch": [
"universal"
]
}
],
"icon": "build_resources/icon.icns"
},
"win": {
"target": "zip",
"sign": "./build_resources/windowsCustomSign.js",
"icon": "build_resources/icon.png"
},
"linux": {
"target": "zip",
"icon": "build_resources/icon.icns"
},
"afterSign": "build_resources/notarize.js"
},
"license": "MIT",
"dependencies": {
"@codemirror/lang-python": "github:codemirror/lang-python",
"about-window": "^1.15.2",
"browserify": "^17.0.1",
"choo": "^7.1.0",
"codemirror": "^6.0.2",
"esbuild": "^0.25.9",
"micropython.js": "github:arduino/micropython.js#v1.5.2"
},
"engines": {
"node": ">=20"
}
}