-
Notifications
You must be signed in to change notification settings - Fork 10
/
neutralino.config.json
51 lines (51 loc) · 1.16 KB
/
neutralino.config.json
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
{
"applicationId": "ch.origaming.appleblox",
"version": "0.1.0",
"defaultMode": "window",
"documentRoot": "/frontend/dist",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"nativeAllowList": ["events.*", "os.*", "filesystem.*", "window.*", "clipboard.*", "computer.*","app.*"],
"exportAuthInfo": false,
"logging": {
"writeToLogFile": false,
"enabled": true
},
"tokenSecurity": "none",
"modes": {
"window": {
"hidden": true,
"title": "AppleBlox",
"width": 1150,
"height": 700,
"minWidth": 400,
"minHeight": 200,
"icon": "/scripts/build/assets/mac.png",
"exitProcessOnClose": false,
"useSavedState": false,
"extendUserAgentWith": "AppleBlox",
"resizable": false,
"center": true
},
"chrome": {
"width": 1150,
"height": 700
}
},
"cli": {
"binaryName": "appleblox",
"resourcesPath": "/frontend/dist",
"extensionsPath": "/extensions/",
"binaryVersion": "5.1.0",
"clientVersion": "3.12.0",
"frontendLibrary": {
"buildCommand": "true",
"patchFile": "/frontend/index.html",
"devUrl": "http://localhost:5173",
"devCommand": "true",
"projectPath": "/",
"initCommand": "bun install"
}
}
}