-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathelectron-builder.json
More file actions
103 lines (103 loc) · 1.97 KB
/
electron-builder.json
File metadata and controls
103 lines (103 loc) · 1.97 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
{
"$schema": "https://raw.githubusercontent.com/electron-userland/electron-builder/master/packages/app-builder-lib/scheme.json",
"appId": "com.prompthub.app",
"productName": "PromptHub",
"directories": {
"output": "dist",
"buildResources": "resources"
},
"files": [
"out/**/*"
],
"extraResources": [
{
"from": "resources/icon.ico",
"to": "icon.ico"
},
{
"from": "resources/icon.iconset",
"to": "icon.iconset"
},
{
"from": "docs/imgs/icon.png",
"to": "icon.png"
},
{
"from": "CHANGELOG.md",
"to": "CHANGELOG.md"
}
],
"asarUnpack": [
"**/*.node"
],
"asar": true,
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
},
{
"target": "zip",
"arch": [
"x64",
"arm64"
]
}
],
"artifactName": "${productName}-${version}-${arch}.${ext}",
"icon": "resources/icon.icns",
"category": "public.app-category.productivity",
"hardenedRuntime": false,
"gatekeeperAssess": false,
"identity": null
},
"win": {
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
}
],
"artifactName": "${productName}-Setup-${version}-${arch}.${ext}",
"icon": "resources/icon.ico"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"category": "Utility"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"differentialPackage": true
},
"publish": {
"provider": "github",
"owner": "legeling",
"repo": "PromptHub",
"releaseType": "release"
},
"releaseInfo": {
"releaseNotesFile": "CHANGELOG.md"
}
}