vigi/src-tauri/tauri.conf.json

64 lines
1.4 KiB
JSON
Raw Normal View History

2024-07-28 00:00:10 +03:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../build"
},
"package": {
"productName": "vigi",
2024-07-30 23:50:24 +03:00
"version": "1.0.0-0"
2024-07-28 00:00:10 +03:00
},
"tauri": {
2024-07-30 22:30:35 +03:00
"updater": {
"active": true,
"endpoints": [
2024-07-30 23:50:24 +03:00
"https://github.com/txtdot/vigi/releases/latest/download/latest.json"
2024-07-30 22:30:35 +03:00
],
"dialog": true,
2024-07-30 22:41:13 +03:00
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEMzQTRGNjZDOTNENzEyREMKUldUY0V0ZVRiUGFrd3h5U0l3c3Z1aTVaNGJHZ3JtK2ZzeDZjeWt4bFF0RjhDT0ZPVjArbWVERGIK"
2024-07-30 22:30:35 +03:00
},
2024-07-28 00:00:10 +03:00
"allowlist": {
"all": false,
"shell": {
"all": false,
"open": true
},
"window": {
"all": false,
"close": true,
"hide": true,
"show": true,
"maximize": true,
"minimize": true,
"unmaximize": true,
"unminimize": true,
"startDragging": true
2024-07-28 00:00:10 +03:00
}
},
"windows": [
{
"title": "vigi",
"width": 800,
"height": 600,
"decorations": false
2024-07-28 00:00:10 +03:00
}
],
"security": {
"csp": null
},
"bundle": {
"active": true,
"targets": "all",
"identifier": "org.txtdot.vigi",
2024-07-28 00:00:10 +03:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
]
}
}
}