-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathneutralino.config.json
82 lines (82 loc) · 1.94 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "https://raw.githubusercontent.com/neutralinojs/neutralinojs/main/schemas/neutralino.config.schema.json",
"applicationId": "com.marketmix.extNode",
"version": "1.0.0",
"defaultMode": "window",
"port": 0,
"documentRoot": "/resources/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"enableExtensions": true,
"exportAuthInfo": true,
"tokenSecurity": "one-time",
"logging": {
"enabled": false,
"writeToLogFile": false
},
"globalVariables": {},
"modes": {
"window": {
"title": "",
"width": 800,
"height": 900,
"minWidth": 500,
"minHeight": 200,
"fullScreen": false,
"alwaysOnTop": false,
"icon": "/resources/icons/appIcon.png",
"enableInspector": true,
"borderless": false,
"maximize": false,
"hidden": false,
"center": true,
"useSavedState": false,
"resizable": true,
"exitProcessOnClose": false
}
},
"cli": {
"binaryName": "ext-node",
"resourcesPath": "/resources/",
"extensionsPath": "/extensions/",
"clientLibrary": "/resources/js/neutralino.js",
"binaryVersion": "5.3.0",
"clientVersion": "5.3.0"
},
"nativeAllowList": [
"app.*",
"os.*",
"window.*",
"events.*",
"extensions.*",
"debug.log"
],
"extensions": [
{
"id": "extNode",
"commandDarwin": "${NL_PATH}/extensions/node/run ${NL_PATH}",
"commandLinux": "${NL_PATH}/extensions/node/run ${NL_PATH}",
"commandWindows": "${NL_PATH}\\extensions\\node\\run.cmd ${NL_PATH}"
}
],
"buildScript": {
"mac": {
"architecture": [
"x64",
"arm64"
],
"minimumOS": "10.13.0",
"appName": "ExtNodeDemo",
"appBundleName": "ExtNodeDemo",
"appIdentifier": "com.marketmix.ext.node.demo",
"appIcon": "icon.icns"
},
"win": {
"architecture": [
"x64"
],
"appName": "ExtNodeDemo.exe"
}
}
}