-
-
Notifications
You must be signed in to change notification settings - Fork 142
Expand file tree
/
Copy pathelectron-builder.json
More file actions
96 lines (96 loc) · 2.14 KB
/
electron-builder.json
File metadata and controls
96 lines (96 loc) · 2.14 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"productName": "PicList",
"appId": "com.kuingsmile.piclist",
"afterPack": "scripts/afterPack.cjs",
"afterSign": "scripts/notarize.cjs",
"directories": {
"output": "dist_electron",
"buildResources": "build"
},
"asarUnpack": [
"**/node_modules/sharp/**",
"**/node_modules/ssh2-no-cpu-features/**",
"**/node_modules/@img/**",
"resources/**"
],
"files": ["out/**/*", "resources/**", "package.json", "!**/node_modules/typescript{,/**}"],
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"mac": {
"icon": "resources/icon.icns",
"extendInfo": {
"LSUIElement": 0
},
"target": [
{
"target": "default",
"arch": ["x64", "arm64"]
}
],
"artifactName": "PicList-${version}-${arch}.${ext}",
"hardenedRuntime": true,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"notarize": false
},
"win": {
"icon": "resources/icon.ico",
"artifactName": "PicList-Setup-${version}-${arch}-portable.${ext}",
"verifyUpdateCodeSignature": false,
"target": [
{
"target": "nsis",
"arch": ["x64", "arm64"]
},
{
"target": "7z",
"arch": ["x64", "arm64"]
},
{
"target": "zip",
"arch": ["x64", "arm64"]
}
]
},
"nsis": {
"artifactName": "PicList-Setup-${version}-${arch}.exe",
"shortcutName": "PicList",
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"include": "build/installer.nsh"
},
"linux": {
"executableName": "PicList",
"icon": "build/icons/512x512.png",
"artifactName": "PicList-${version}-${arch}.${ext}",
"target": [
{
"target": "AppImage",
"arch": ["x64", "arm64"]
},
{
"target": "deb",
"arch": ["x64", "arm64"]
},
{
"target": "snap",
"arch": ["x64"]
}
],
"maintainer": "Kuingsmile",
"category": "Utility"
}
}