-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.04 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.04 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
{
"build": {
"appId": "com.electron.s2microbit-ble",
"directories": {
"app": "app"
},
"files": [
"**/*",
{
"from": "../00scratch",
"to": "00scratch",
"filter": [
"*.sb2",
"*.s2e"
]
},
{
"from": "../00microbit",
"to": "00microbit",
"filter": [
"*.hex"
]
},
{
"from": "../images",
"to": "images",
"filter": "s2microbit-ble.png"
}
],
"artifactName": "s2microbit-ble_installer.${ext}",
"mac": {
"category": "public.app-category.developer-tools",
"target": "pkg"
},
"win": {
"target": "nsis"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"license": "LICENSE.txt"
},
"pkg": {
"license": "LICENSE.txt"
},
"npmRebuild": false
},
"devDependencies": {
"electron": "^2.0.5",
"electron-builder": "^20.22.0"
}
}