-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathelectron-builder.json
More file actions
104 lines (104 loc) · 2.35 KB
/
Copy pathelectron-builder.json
File metadata and controls
104 lines (104 loc) · 2.35 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
97
98
99
100
101
102
103
104
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"appId": "com.stackferry.app",
"productName": "StackFerry",
"executableName": "stackferry",
"asar": true,
"compression": "maximum",
"electronLanguages": ["en-US", "zh-CN"],
"directories": {
"output": "release/${version}"
},
"files": [
"dist-electron",
"dist",
"!**/*.map",
"!dist-electron/**/*.{png,ico,svg}"
],
"extraResources": [
{
"from": "public",
"to": "icons",
"filter": [
"icon.png",
"icon.ico",
"tray-icon.png",
"tray-icon-Template.png",
"tray-icon-Template@2x.png"
]
}
],
"protocols": {
"name": "StackFerry",
"schemes": ["stackferry"]
},
"win": {
"icon": "public/icon.ico",
"target": [
{
"target": "nsis",
"arch": ["x64", "arm64"]
}
],
"artifactName": "${productName}_${version}_${arch}.${ext}"
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"deleteAppDataOnUninstall": false
},
"mac": {
"icon": "public/icon.png",
"category": "public.app-category.developer-tools",
"identity": "-",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"target": [
{
"target": "dmg",
"arch": ["x64", "arm64"]
}
],
"artifactName": "${productName}_${version}_${arch}.${ext}"
},
"linux": {
"icon": "public/icon.png",
"category": "Development",
"maintainer": "Ninthless <ninthless@users.noreply.github.com>",
"desktop": {
"entry": {
"StartupWMClass": "stackferry",
"MimeType": "x-scheme-handler/stackferry;"
}
},
"target": [
{
"target": "AppImage",
"arch": ["x64", "arm64"]
},
{
"target": "deb",
"arch": ["x64", "arm64"]
}
],
"artifactName": "${productName}_${version}_${arch}.${ext}"
},
"deb": {
"depends": [
"libgtk-3-0 | libgtk-3-0t64",
"libnotify4 | libnotify4t64",
"libnss3",
"libxss1 | libxss1t64",
"libxtst6 | libxtst6t64",
"xdg-utils",
"libatspi2.0-0 | libatspi2.0-0t64",
"libuuid1"
]
},
"publish": {
"provider": "github",
"owner": "Ninthless",
"repo": "StackFerry"
}
}