forked from nojsja/shadowsocks-electron
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathelectron-builder.json
executable file
·139 lines (139 loc) · 2.91 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"appId": "io.nojsja.shadowsocks-electron",
"productName": "Shadowsocks Electron",
"asar": true,
"copyright": "© 2021 nojsja",
"extends": null,
"files": [
"public/**/*",
"build/**/*",
"assets/**/*",
"!bin/**/*",
"!assets/add.png",
"!assets/edit.png",
"!assets/main.png",
"!assets/right.png",
"!assets/settings.png",
"!assets/share.png",
"!assets/dark.png",
"!assets/context_menu.png",
"!assets/subscription.png"
],
"extraFiles": [
{
"from": "bin/${platform}/${arch}",
"to": "bin/${platform}/${arch}",
"filter": [
"!.gitignore"
]
},
{
"from": "pac",
"to": "pac",
"filter": [
"!.gitignore"
]
}
],
"mac": {
"publish": ["github"],
"target": [
{
"target": "zip",
"arch": ["x64", "arm64"]
},
{
"target": "dmg",
"arch": ["x64", "arm64"]
}
],
"icon": "assets/logo.icns",
"category": "public.app-category.utilities",
"darkModeSupport": true,
"extendInfo": {
"LSUIElement": 1
}
},
"win": {
"icon": "assets/logo.ico",
"publish": ["github"],
"target": [
{
"target": "zip",
"arch": [
"ia32", "x64"
]
},
{
"target": "nsis",
"arch": [
"ia32", "x64"
]
}
]
},
"nsis": {
"oneClick": false,
"allowElevation": true,
"allowToChangeInstallationDirectory": true,
"installerIcon": "./assets/logo.ico",
"uninstallerIcon": "./assets/logo.ico",
"installerHeaderIcon": "./assets/logo.ico",
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"deleteAppDataOnUninstall": true,
"shortcutName": "shadowsocks-electron"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 150,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 150,
"type": "file"
}
]
},
"linux": {
"icon": "assets/icon.png",
"publish": ["github"],
"target": [
{
"target": "deb",
"arch": ["x64", "ia32", "arm64"]
},
{
"target": "AppImage",
"arch": ["x64", "ia32", "arm64"]
},
{
"target": "snap",
"arch": ["x64"]
}
],
"category": "Network",
"executableName": "shadowsocks-electron",
"desktop": {
"Type": "Application",
"Encoding": "UTF-8",
"Name": "Shadowsocks Electron",
"Comment": "Shadowsocks GUI with cross-platform desktop support",
"Terminal": "false"
}
},
"deb": {
"depends": []
},
"snap": {
"summary": "Shadowsocks GUI with cross-platform desktop support",
"plugs": [
"default"
],
"grade": "stable"
}
}