AllenWrench/src-tauri/tauri.conf.json

89 lines
2.0 KiB
JSON

{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "allenwrench",
"version": "0.1.1"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"sidecar": true,
"execute": true,
"open": true,
"scope": [
{
"name" : "open-link-win",
"cmd": "powershell.exe",
"args": ["-Command", "Start-Process", {"validator": "\\S+"}]
},
{
"name" : "open-link-linux",
"cmd": "/bin/sh",
"args": ["-c", "xdg-open", {"validator": "\\S+"}]
},
{
"name" : "open-link-macos",
"cmd": "/bin/bash",
"args": ["-c", "open", {"validator": "\\S+"}]
}
]
},
"fs": {
"all": true,
"scope": ["**"]
},
"path": {
"all": true
},
"os": {
"all": true
}
},
"bundle": {
"category": "Utility",
"active": true,
"copyright": "Copyright 2023 Elizabeth Cray",
"targets": "all",
"identifier": "lgbt.cray.allenwrench",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"resources/*"
],
"macOS": {
"minimumSystemVersion": "10.11",
"license": "../LICENSE.txt",
"entitlements": "../entitlements.plist"
}
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"maximizable": false,
"minimizable": false,
"alwaysOnTop": true,
"decorations": true,
"title": "Drone Input",
"width": 400,
"height": 320
}
]
}
}