stort/src-tauri/tauri.conf.json

88 lines
1.7 KiB
JSON
Raw Permalink Normal View History

2024-07-30 16:21:16 +08:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
2024-07-30 18:03:06 +08:00
"beforeBuildCommand": "bun run build",
"beforeDevCommand": "bun run dev",
2024-07-30 16:21:16 +08:00
"devPath": "http://localhost:3000",
"distDir": "../out"
},
"package": {
"productName": "stort",
"version": "0.1.0"
},
"tauri": {
"allowlist": {
2024-07-30 18:03:06 +08:00
"dialog": {
2024-08-07 15:04:05 +08:00
"all": true
2024-07-30 20:55:36 +08:00
},
"fs": {
"all": true,
"scope": [
2024-08-07 13:37:53 +08:00
"**",
"**/*",
"/**/*",
"$CONFIG/stort/",
"$CONFIG/stort/**"
]
},
2024-07-30 20:55:36 +08:00
"notification": {
"all": true
2024-07-30 22:27:23 +08:00
},
2024-08-01 01:47:08 +08:00
"path": {
"all": true
},
2024-07-30 22:27:23 +08:00
"process": {
"all": true
},
2024-08-07 13:37:53 +08:00
"protocol": {
"all": true,
"asset": true,
"assetScope": [
"**",
"**/*",
"/**/*"
]
},
2024-07-30 22:27:23 +08:00
"window": {
2024-08-06 00:14:02 +08:00
"all": true
2024-07-30 18:03:06 +08:00
}
2024-07-30 16:21:16 +08:00
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"deb": {
"depends": []
},
"externalBin": [],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"identifier": "com.vomitblood.stort",
2024-08-06 00:14:02 +08:00
"longDescription": "Launcher for Steam Deck",
2024-07-30 16:21:16 +08:00
"resources": [],
2024-08-06 00:14:02 +08:00
"shortDescription": "Launcher for Steam Deck",
"targets": [
"appimage",
"deb"
]
2024-07-30 16:21:16 +08:00
},
"security": {
2024-08-07 18:59:11 +08:00
"csp": null
2024-08-06 12:39:19 +08:00
},
"windows": [
{
"decorations": false,
"fullscreen": false,
"height": 600,
"resizable": true,
"title": "Stort",
"width": 800
}
]
2024-07-30 16:21:16 +08:00
}
}