You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.1 KiB
JSON
57 lines
1.1 KiB
JSON
{
|
|
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
|
|
"package": {
|
|
"productName": "broadcast-client",
|
|
"version": "0.1.0"
|
|
},
|
|
"build": {
|
|
"beforeDevCommand": "npm run dev",
|
|
"beforeBuildCommand": "npm run build",
|
|
"devPath": "http://localhost:1420",
|
|
"distDir": "../dist"
|
|
},
|
|
"tauri": {
|
|
"allowlist": {
|
|
"window": {
|
|
"all": true
|
|
}
|
|
},
|
|
"windows": [
|
|
{
|
|
"label": "main",
|
|
"title": "Broadcast Client",
|
|
"width": 1280,
|
|
"height": 256,
|
|
"x": 0,
|
|
"y": 0,
|
|
"decorations": false,
|
|
"transparent": false,
|
|
"alwaysOnTop": true,
|
|
"resizable": false,
|
|
"maximizable": false,
|
|
"fullscreen": false,
|
|
"visible": true
|
|
}
|
|
],
|
|
"security": {
|
|
"csp": null
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["deb"],
|
|
"identifier": "com.ziyun.broadcastclient",
|
|
"deb": {
|
|
"depends": []
|
|
},
|
|
"appimage": {
|
|
"bundleMediaFramework": false
|
|
},
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/256x256.png"
|
|
]
|
|
}
|
|
}
|
|
}
|