AutoType top level statuses

This commit is contained in:
2023-07-23 02:06:04 -04:00
commit 591edda296
29 changed files with 6105 additions and 0 deletions
+55
View File
@@ -0,0 +1,55 @@
{
"build": {
"beforeDevCommand": "npm run dev",
"beforeBuildCommand": "npm run build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
"productName": "allenwrench-app",
"version": "0.0.1"
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"fs": {
"all": true,
"scope": ["**"]
},
"path": {
"all": true
}
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "lgbt.cray.allenwrench",
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/icon.icns",
"icons/icon.ico"
],
"resources": [
"resources/*"
]
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": false,
"title": "Drone Input",
"width": 400,
"height": 320
}
]
}
}