generated from electron/electron-quick-start-typescript
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathelectron-builder.json
44 lines (44 loc) · 884 Bytes
/
electron-builder.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
{
"productName": "YouTube TV Desktop",
"appId": "com.yttvdesktop.app",
"compression": "normal",
"directories": {
"output": "dist/"
},
"artifactName": "${productName}-${os}-${arch}.${ext}",
"files": [
"./build/index.js",
"./build/preload.js",
"./node_modules/**/*",
"package.json"
],
"linux": {
"target": [
{
"target": "AppImage",
"arch": ["x64", "armv7l"]
},
{
"target": "deb",
"arch": ["x64"]
},
{
"target": "tar.gz",
"arch": ["x64"]
}
],
"category": "Video",
"icon": "youtube-512x512.png"
},
"win": {
"target": "nsis",
"icon": "youtube-512x512.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": true,
"runAfterFinish": false
},
"publish": "github"
}