- 重命名项目为 openbridgeTokenUsageViewer (camelCase 风格) - 移除 DJB2 hash 端口计算,改用 PROJECT_SERVER_PORT 环境变量 (默认 3000) - 删除 src/lib/project-port.ts 冗余模块 - 打包目标从 "all" 改为 "msi",专注 Windows 安装程序发布
26 lines
567 B
JSON
26 lines
567 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "openbridgeTokenUsageViewer",
|
|
"version": "0.1.0",
|
|
"identifier": "com.imbytecat.openbridgetokenusageviewer",
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": ["msi"],
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"externalBin": ["binaries/openbridgeTokenUsageViewerServer"]
|
|
}
|
|
}
|