-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
neutralino.config.json
53 lines (53 loc) · 1.29 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
52
53
{
"applicationId": "js.neutralino.zero",
"version": "1.0.0",
"defaultMode": "window",
"documentRoot": "/react-src/build/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"enableExtensions": true,
"extensions": [
{
"id": "js.node-neutralino.projectRunner"
}
],
"nativeAllowList": [
"app.*",
"window.*",
"events.*"
],
"modes": {
"window": {
"title": "node-neutralino-react",
"width": 800,
"height": 500,
"minWidth": 400,
"minHeight": 200,
"icon": "/react-src/public/logo192.png",
"enableInspector": true
}
},
"cli": {
"binaryName": "node-neutralino-react",
"extensionsPath": "/extensions/",
"resourcesPath": "/react-src/build/",
"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": 40000
},
"hostProject": {
"projectPath": "/",
"buildPath": "./node-src/dist/",
"initCommand": "npm run runner:install",
"devCommand": "npm run runner:dev",
"buildCommand": "npm run runner:build"
},
"binaryVersion": "5.3.0"
}
}