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

108 lines
2.4 KiB
JSON
Raw Permalink Normal View History

2024-09-20 02:28:25 +08:00
{
"$schema": "../node_modules/@tauri-apps/cli/schema.json",
"build": {
2025-03-12 22:20:06 +08:00
"beforeBuildCommand": "bun next-build",
"beforeDevCommand": "bun next-start",
2024-09-20 10:14:36 +08:00
"frontendDist": "../out",
"devUrl": "http://localhost:3000"
2024-09-20 02:28:25 +08:00
},
2024-09-20 10:14:36 +08:00
"bundle": {
"active": true,
"category": "DeveloperTool",
"copyright": "",
"targets": "all",
"externalBin": [],
"resources": [
"resources/csda.exe"
],
2025-11-08 23:57:26 +08:00
"createUpdaterArtifacts": true,
2024-09-20 10:14:36 +08:00
"icon": [
"icons/32x32.png",
"icons/128x128.png",
"icons/128x128@2x.png",
"icons/icon.icns",
"icons/icon.ico"
],
"windows": {
"certificateThumbprint": null,
"digestAlgorithm": "sha256",
2025-11-06 14:55:43 +08:00
"timestampUrl": "",
"nsis": {
"languages": [
"SimpChinese",
"English",
"TradChinese"
]
}
2024-09-20 10:14:36 +08:00
},
"longDescription": "",
"macOS": {
"entitlements": null,
"exceptionDomain": "",
"frameworks": [],
"providerShortName": null,
"signingIdentity": null
2024-09-20 02:28:25 +08:00
},
2024-09-20 10:14:36 +08:00
"shortDescription": "",
"linux": {
2024-09-20 02:28:25 +08:00
"deb": {
"depends": []
}
2024-09-20 10:14:36 +08:00
}
},
2024-09-21 01:05:23 +08:00
"productName": "CS工具箱",
"mainBinaryName": "cstb",
2025-11-09 23:33:31 +08:00
"version": "0.0.7-beta.1",
2024-09-21 01:05:23 +08:00
"identifier": "upup.cool",
2025-03-19 22:03:32 +08:00
"plugins": {
"deep-link": {
"desktop": {
"schemes": [
"cstb"
]
}
},
"cli": {
"description": "CS Toolbox CLI",
"args": [
{
"name": "hidden",
"description": "hidden on start"
}
]
2025-11-08 23:57:26 +08:00
},
"updater": {
"active": true,
"endpoints": [
"https://gh-info.okk.cool/repos/plsgo/cstb/releases/latest/pre/tauri"
],
"dialog": true,
"pubkey": "dW50cnVzdGVkIGNvbW1lbnQ6IG1pbmlzaWduIHB1YmxpYyBrZXk6IEU3QUY5MUU5OTc3N0FCODkKUldTSnEzZVg2Wkd2NTRlVDBxVWNoYkNxZ1c1TlVJT0QwYkFOcFVPUnRQTGlmTVdRcVRRRUdlMUoK"
2025-03-19 22:03:32 +08:00
}
},
2024-09-20 10:14:36 +08:00
"app": {
"macOSPrivateApi": true,
2024-09-20 02:28:25 +08:00
"windows": [
{
"fullscreen": false,
"resizable": true,
2024-09-21 00:25:31 +08:00
"title": "CS工具箱",
"width": 920,
2024-09-20 09:52:13 +08:00
"height": 720,
2024-09-21 00:25:31 +08:00
"minWidth": 920,
"minHeight": 720,
"maxWidth": 1440,
"maxHeight": 960,
2024-09-20 09:52:13 +08:00
"decorations": false,
"transparent": true,
2025-03-14 19:10:29 +08:00
"theme": null,
2024-09-20 09:52:13 +08:00
"hiddenTitle": true,
"titleBarStyle": "Transparent",
2025-11-06 14:55:43 +08:00
"visible": false
2024-09-20 02:28:25 +08:00
}
2024-09-20 10:14:36 +08:00
],
"security": {
"csp": null
}
2024-09-20 02:28:25 +08:00
}
2025-03-19 22:03:32 +08:00
}