116 lines
2.6 KiB
JSON
116 lines
2.6 KiB
JSON
{
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build",
|
|
"devPath": "http://localhost:1420",
|
|
"distDir": "../dist",
|
|
"withGlobalTauri": false
|
|
},
|
|
"tauri": {
|
|
"allowlist": {
|
|
"all": false,
|
|
"shell": {
|
|
"all": false,
|
|
"open": true
|
|
},
|
|
"window": {
|
|
"all": true,
|
|
"create": true,
|
|
"center": true,
|
|
"requestUserAttention": true,
|
|
"setResizable": true,
|
|
"setMaximizable": true,
|
|
"setMinimizable": true,
|
|
"setClosable": true,
|
|
"setTitle": true,
|
|
"maximize": true,
|
|
"unmaximize": true,
|
|
"minimize": true,
|
|
"unminimize": true,
|
|
"show": true,
|
|
"hide": true,
|
|
"close": true,
|
|
"setDecorations": true,
|
|
"setAlwaysOnTop": true,
|
|
"setContentProtected": true,
|
|
"setSize": true,
|
|
"setMinSize": true,
|
|
"setMaxSize": true,
|
|
"setPosition": true,
|
|
"setFullscreen": true,
|
|
"setFocus": true,
|
|
"setIcon": true,
|
|
"setSkipTaskbar": true,
|
|
"setCursorGrab": true,
|
|
"setCursorVisible": true,
|
|
"setCursorIcon": true,
|
|
"setCursorPosition": true,
|
|
"setIgnoreCursorEvents": true,
|
|
"startDragging": true,
|
|
"print": true
|
|
},
|
|
"fs": {
|
|
"all": true,
|
|
"readFile": true,
|
|
"writeFile": true,
|
|
"readDir": true,
|
|
"copyFile": true,
|
|
"createDir": true,
|
|
"removeDir": true,
|
|
"removeFile": true,
|
|
"renameFile": true,
|
|
"exists": true,
|
|
"scope": ["$APP", "$APP/*", "$APP/plugins/*"]
|
|
},
|
|
"path": {
|
|
"all": true
|
|
},
|
|
"notification": {
|
|
"all": true
|
|
},
|
|
"os": {
|
|
"all": true
|
|
},
|
|
"process": {
|
|
"all": false,
|
|
"relaunch": true
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"identifier": "eu.lemonlink.utility",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
]
|
|
},
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"systemTray": {
|
|
"iconPath": "icons/icon.png",
|
|
"iconAsTemplate": true
|
|
},
|
|
"windows": [
|
|
{
|
|
"fullscreen": false,
|
|
"resizable": true,
|
|
"title": "EU-Utility",
|
|
"width": 1200,
|
|
"height": 800,
|
|
"minWidth": 800,
|
|
"minHeight": 600,
|
|
"center": true,
|
|
"decorations": true,
|
|
"transparent": false,
|
|
"focus": true,
|
|
"visible": true
|
|
}
|
|
]
|
|
}
|
|
}
|