-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron-builder.json
More file actions
127 lines (126 loc) · 2.87 KB
/
electron-builder.json
File metadata and controls
127 lines (126 loc) · 2.87 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
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"appId": "com.blinkent.fileshare",
"productName": "BlinKNET",
"copyright": "Copyright © 2025 BlinKNET",
"directories": {
"output": "release",
"buildResources": "build"
},
"files": [
"dist/**/*",
"dist-electron/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "assets/",
"to": "assets/",
"filter": ["**/*"]
}
],
"compression": "maximum",
"icon": "resources/blinknet.ico",
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"installerIcon": "resources/blinknet.ico",
"uninstallerIcon": "resources/blinknet.ico",
"installerHeaderIcon": "resources/blinknet.ico",
"deleteAppDataOnUninstall": false,
"displayLanguageSelector": true
},
"mac": {
"target": [
{
"target": "dmg",
"arch": [
"x64",
"arm64"
]
}
],
"category": "public.app-category.productivity",
"icon": "build/icon.icns",
"bundleVersion": "1.0.0",
"bundleShortVersion": "1.0.0",
"hardenedRuntime": true,
"gatekeeperAssess": false,
"entitlements": "build/entitlements.mac.plist",
"entitlementsInherit": "build/entitlements.mac.plist",
"darkModeSupport": true,
"type": "distribution"
},
"dmg": {
"title": "Ultra Light App Installer",
"icon": "build/volume.icns",
"background": "build/dmg-background.png",
"iconSize": 80,
"window": {
"width": 540,
"height": 400
},
"contents": [
{
"x": 130,
"y": 220,
"type": "file"
},
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
}
]
},
"win": {
"icon": "resources/blinknet.ico",
"publisherName": "File Share",
"verifyUpdateCodeSignature": false,
"artifactName": "blink-net-${version}-${os}-${arch}.${ext}",
"executableName": "BlinKNET"
},
"linux": {
"target": [
{
"target": "AppImage",
"arch": [
"x64"
]
},
{
"target": "deb",
"arch": [
"x64"
]
}
],
"icon": "resources/blinknet.ico",
"category": "Office",
"desktop": {
"Name": "Ultra Light App",
"Comment": "Ultra lightweight productivity app",
"Keywords": "productivity;utility;electron;",
"StartupNotify": "true"
},
"executableName": "ultra-light-app",
"artifactName": "ultra-light-app-${version}-${os}-${arch}.${ext}"
},
"appImage": {
"artifactName": "ultra-light-app-${version}-${os}-${arch}.${ext}"
},
"deb": {
"depends": [
"gconf2",
"gconf-service",
"libnotify4",
"libappindicator1",
"libxtst6",
"libnss3"
],
"artifactName": "ultra-light-app-${version}-${os}-${arch}.${ext}"
}
}