-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathelectron-builder.json
More file actions
75 lines (75 loc) · 1.98 KB
/
electron-builder.json
File metadata and controls
75 lines (75 loc) · 1.98 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
{
"electronVersion": "22.3.27",
"asar": true,
"productName": "Universal Paperclips",
"appId": "com.alex313031.universalpaperclips",
"copyright": "Copyright © 2024 Alex313031",
"generateUpdatesFilesForAllChannels": false,
"directories": {
"app": "src",
"buildResources": "build",
"output": "dist"
},
"files": [ "**/*" ],
"extraFiles": [
{
"from": "assets/icon.png"
},
{
"from": "assets/README.txt"
}
],
"linux": {
"target": [
"zip",
"deb",
"appimage",
"rpm"
],
"icon": "build/icons",
"maintainer": "Alex313031",
"vendor": "Alex313031",
"synopsis": "An incremental game about an AI created to produce paperclips. Electron native app port.",
"category": "Game;Media;",
"executableName": "universal-paperclips",
"artifactName": "universal-paperclips_${version}_${arch}.${ext}",
"desktop": {
"Name": "Universal Paperclips",
"StartupWMClass": "universal-paperclips",
"Keywords": "universal;paperclips;game;",
"Icon": "universal-paperclips"
}
},
"win": {
"icon": "build/icon.ico",
"target": [
"zip",
"portable",
"nsis"
],
"publisherName": "Alex313031",
"executableName": "universal_paperclips",
"artifactName": "universal_paperclips_win64_${version}_${arch}.${ext}"
},
"nsis": {
"shortcutName": "Universal Paperclips",
"artifactName": "universal_paperclips_setup_${version}_${arch}.${ext}",
"uninstallDisplayName": "Universal Paperclips ${version}",
"deleteAppDataOnUninstall": false,
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"portable": {
"artifactName": "universal_paperclips_portable_${version}_${arch}.${ext}"
},
"mac": {
"category": "public.app-category.games",
"icon": "build/icon.icns",
"darkModeSupport": true,
"artifactName": "universal_paperclips_${version}_macos_${arch}.${ext}",
"target": [
"dmg",
"zip"
]
}
}