1
0
mirror of https://github.com/spacebarchat/client.git synced 2024-11-22 18:32:34 +01:00
client/src-tauri/tauri.conf.json

71 lines
1.3 KiB
JSON
Raw Normal View History

2023-09-05 01:05:04 +02:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "pnpm build",
"beforeDevCommand": "pnpm start",
"devPath": "http://localhost:3000",
"distDir": "../build"
},
"package": {
"productName": "spacebar-client",
"version": "0.1.0"
},
"tauri": {
"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"
],
2023-09-05 01:06:58 +02:00
"identifier": "chat.spacebar.app",
2023-09-05 01:05:04 +02:00
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"resources": [],
"shortDescription": "",
"targets": "all",
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": ""
}
},
"security": {
"csp": null
},
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "Spacebar",
2023-09-05 01:57:45 +02:00
"maximized": true,
"visible": false,
"label": "main"
},
{
"width": 400,
"height": 200,
"decorations": false,
"url": "splashscreen.html",
"label": "splashscreen",
"resizable": false,
"center": true
2023-09-05 01:05:04 +02:00
}
]
}
}