Files
cstb-next/src-tauri/tauri.conf.json

99 lines
2.0 KiB
JSON

{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
"beforeBuildCommand": "bun next-build",
"beforeDevCommand": "bun next-start",
"frontendDist": "../out",
"devUrl": "http://localhost:3000"
},
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"targets": "all",
"externalBin": [],
"resources": [
"resources/csda.exe"
],
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
"timestampUrl": "",
"nsis": {
"languages": [
"SimpChinese",
"English",
"TradChinese"
]
}
},
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
},
"shortDescription": "",
"linux": {
"deb": {
"depends": []
}
}
},
"productName": "CS工具箱",
"mainBinaryName": "cstb",
"version": "0.0.6-beta.5",
"identifier": "upup.cool",
"plugins": {
"deep-link": {
"desktop": {
"schemes": [
"cstb"
]
}
},
"cli": {
"description": "CS Toolbox CLI",
"args": [
{
"name": "hidden",
"description": "hidden on start"
}
]
}
},
"app": {
"macOSPrivateApi": true,
"windows": [
{
"fullscreen": false,
"resizable": true,
"title": "CS工具箱",
"width": 920,
"height": 720,
"minWidth": 920,
"minHeight": 720,
"maxWidth": 1440,
"maxHeight": 960,
"decorations": false,
"transparent": true,
"theme": null,
"hiddenTitle": true,
"titleBarStyle": "Transparent",
"visible": false
}
],
"security": {
"csp": null
}
}
}