-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
neutralino.config.json
43 lines (43 loc) · 1.02 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
{
"applicationId": "js.neutralino.litepy",
"port": 0,
"defaultMode": "window",
"enableServer": true,
"enableNativeAPI": true,
"url": "/",
"documentRoot": "/react-src/build/",
"nativeBlockList": [],
"globalVariables": {
"PYNAME": "python3"
},
"modes": {
"window": {
"title": "litepy",
"width": 800,
"height": 500,
"fullScreen": false,
"alwaysOnTop": false,
"icon": "/react-src/public/logo192.png",
"enableInspector": false,
"borderless": false,
"maximize": false
},
"browser": {},
"cloud": {}
},
"cli": {
"binaryName": "litepy",
"resourcesPath": "/react-src/build/",
"extensionsPath": "/extensions/",
"frontendLibrary": {
"patchFile": "/react-src/public/index.html",
"devUrl": "http://localhost:3000",
"projectPath": "/react-src/",
"initCommand": "npm install",
"devCommand": "npm run start",
"buildCommand": "npm run build",
"waitTimeout": 20000
},
"binaryVersion": "5.2.0"
}
}