-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathneutralino.config.json
51 lines (51 loc) · 1.27 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
{
"$schema": "https://raw.githubusercontent.com/neutralinojs/neutralinojs/main/schemas/neutralino.config.schema.json",
"applicationId": "chrisf23.neureactsample",
"version": "1.0.0",
"defaultMode": "window",
"documentRoot": "/react-src/dist/",
"url": "/",
"port": 2999,
"logging": {
"writeToLogFile": false
},
"enableServer": true,
"enableNativeAPI": true,
"nativeAllowList": [
"app.*",
"os.*",
"debug.log",
"storage.setData",
"storage.getData"
],
"globalVariables": {
"_APP_NAME": "Neutralino React Sample"
},
"tokenSecurity": "one-time",
"modes": {
"window": {
"title": "Neutralino React Sample",
"width": 800,
"height": 500,
"minWidth": 400,
"minHeight": 200,
"enableInspector": true,
"exitProcessOnClose": true,
"icon": "/react-src/public/neutralino.png"
}
},
"cli": {
"frontendLibrary": {
"patchFile": "/react-src/index.html",
"devUrl": "http://localhost:3000",
"projectPath": "/react-src/",
"buildCommand": "npm run build",
"initCommand": "npm install"
},
"binaryName": "neu-react-sample",
"resourcesPath": "/react-src/dist/",
"extensionsPath": "/extensions/",
"binaryVersion": "5.5.0",
"clientVersion": "5.5.0"
}
}