scanclient-electron/neutralino.config.json

64 lines
1.5 KiB
JSON

{
"$schema": "https://raw.githubusercontent.com/neutralinojs/neutralinojs/main/schemas/neutralino.config.schema.json",
"applicationId": "lfk.odit.services",
"version": "1.0.0",
"defaultMode": "window",
"port": 0,
"documentRoot": "/appcode/dist/",
"url": "/",
"enableServer": true,
"enableNativeAPI": true,
"tokenSecurity": "one-time",
"logging": {
"enabled": true,
"writeToLogFile": true
},
"nativeAllowList": [
"app.*",
"os.*",
"debug.log"
],
"modes": {
"window": {
"title": "LfK!Scan",
"width": 800,
"height": 500,
"minWidth": 400,
"minHeight": 400,
"fullScreen": true,
"alwaysOnTop": false,
"icon": "/appcode/dist/favicon.png",
"enableInspector": false,
"borderless": false,
"maximize": true,
"hidden": false,
"resizable": true,
"exitProcessOnClose": true
},
"browser": {
"globalVariables": {
"TEST": "Test value browser"
},
"nativeBlockList": [
"filesystem.*"
]
},
"chrome": {
"width": 800,
"height": 500,
"args": "--user-agent=\"Neutralinojs chrome mode\"",
"nativeBlockList": [
"filesystem.*",
"os.*"
]
}
},
"cli": {
"binaryName": "lfkscan",
"resourcesPath": "/appcode/",
"extensionsPath": "/extensions/",
"clientLibrary": "/appcode/dist/neutralino.js",
"binaryVersion": "4.10.0",
"clientVersion": "3.8.2"
}
}