s3si.ts/gui/src-tauri/tauri.conf.json

73 lines
1.4 KiB
JSON
Raw Normal View History

2023-03-03 07:03:08 -05:00
{
"build": {
"beforeDevCommand": "pnpm dev",
"beforeBuildCommand": "pnpm build",
"devPath": "http://localhost:1420",
"distDir": "../dist",
"withGlobalTauri": false
},
"package": {
2023-03-03 07:08:28 -05:00
"productName": "s3si-ts",
"version": "0.1.0"
2023-03-03 07:03:08 -05:00
},
"tauri": {
"allowlist": {
"all": false,
"shell": {
2023-03-03 08:11:16 -05:00
"sidecar": true,
"scope": [
{
"name": "../binaries/s3si",
"sidecar": true,
"args": [
"--daemon"
]
}
],
2023-03-03 07:03:08 -05:00
"all": false,
"open": true
2023-03-04 06:19:24 -05:00
},
"window": {
"all": true
},
"fs": {
"scope": [
"$APPCONFIG",
"$APPDATA",
"$APPCACHE"
]
2023-03-03 07:03:08 -05:00
}
},
"bundle": {
"active": true,
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
2023-03-03 07:08:28 -05:00
"identifier": "cn.imspace.s3si.ts",
2023-03-03 08:11:16 -05:00
"targets": "all",
"externalBin": [
"../binaries/s3si"
]
2023-03-03 07:03:08 -05:00
},
"security": {
"csp": null
},
"updater": {
"active": false
},
"windows": [
{
"fullscreen": false,
"resizable": true,
2023-03-03 07:08:28 -05:00
"title": "s3si.ts",
2023-03-03 07:03:08 -05:00
"width": 800,
2023-03-04 06:19:24 -05:00
"height": 600,
"visible": false
2023-03-03 07:03:08 -05:00
}
]
}
2023-03-03 07:08:28 -05:00
}