-
-
Notifications
You must be signed in to change notification settings - Fork 377
/
electron-builder.json
57 lines (57 loc) · 1.16 KB
/
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
45
46
47
48
49
50
51
52
53
54
55
56
57
{
"asar": true,
"productName": "IPTVnator",
"directories": {
"output": "release/"
},
"files": [
"**/*",
"dist",
"!**/*.ts",
"!*.code-workspace",
"!LICENSE.md",
"!README.md",
"!CHANGELOG.md",
"!package.json",
"!package-lock.json",
"!src/",
"!e2e/",
"!hooks/",
"!angular.json",
"!tsconfig.json",
"!tsconfig.*.json",
"!tslint.json",
"!*.png",
"!coverage",
"!e2e",
"!playwright-report",
"!test-report"
],
"win": {
"icon": "dist/assets/icons",
"compression": "maximum",
"target": [
{
"target": "nsis",
"arch": ["ia32", "x64"]
}
]
},
"mac": {
"icon": "dist/assets/icons/icon-1024.png",
"target": {
"target": "dmg",
"arch": ["universal"]
}
},
"linux": {
"icon": "dist/assets/icons",
"category": "Video",
"target": [
"AppImage",
"Snap",
"deb",
"rpm"
]
}
}