-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
49 lines (49 loc) · 904 Bytes
/
electron-builder.json
File metadata and controls
49 lines (49 loc) · 904 Bytes
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
{
"productName": "ElectronReactTS",
"appId": "org.sdc224.ElectronReactTS",
"files": [
"dist/",
"node_modules/",
"app.html",
"main.prod.js",
"main.prod.js.map",
"package.json"
],
"dmg": {
"contents": [
{
"x": 130,
"y": 220
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"target": ["nsis", "msi"]
},
"linux": {
"target": ["deb", "rpm", "AppImage"],
"category": "Development"
},
"nsis": {
"oneClick": false,
"license": "LICENSE",
"deleteAppDataOnUninstall": true,
"allowToChangeInstallationDirectory": true
},
"directories": {
"buildResources": "resources",
"output": "release"
},
"publish": {
"provider": "github",
"owner": "sdc224",
"repo": "electron-react-ts",
"private": false
}
}