forked from Yuvix25/ReHUD
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathelectron.manifest.json
More file actions
43 lines (43 loc) · 954 Bytes
/
electron.manifest.json
File metadata and controls
43 lines (43 loc) · 954 Bytes
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
{
"executable": "ReHUD",
"splashscreen": {
"imageFile": ""
},
"name": "rehud",
"author": "Yuval Rosen",
"singleInstance": false,
"environment": "Production",
"build": {
"appId": "com.yuvix.rehud",
"productName": "ReHUD",
"copyright": "Copyright © 2023",
"buildVersion": "0.11.5-beta",
"win": {
"icon": "../../../wwwroot/ReHUD.png"
},
"compression": "maximum",
"directories": {
"output": "../../../bin/Desktop"
},
"extraResources": [
{
"from": "./bin",
"to": "bin",
"filter": [ "**/*" ]
}
],
"files": [
{
"from": "./ElectronHostHook/node_modules",
"to": "ElectronHostHook/node_modules",
"filter": [ "**/*" ]
},
"**/*"
],
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true,
"allowElevation": true
}
}
}