mirror of
https://github.com/qingchencloud/clawpanel.git
synced 2026-05-07 04:42:46 +08:00
1. main.js: import package.json → __APP_VERSION__ (统一版本来源) 2. dev-api.js: check_panel_update 实现 GitHub/Gitee API 查询 (与 Rust 端逻辑一致,Web 模式可正常检测新版本) 3. dev-api.js: 移除 check_hermes 中未使用的 enhanced 变量 4. i18n: 清理 14 个废弃的热更新相关翻译键 5. 版本号升级: 0.13.0 → 0.13.1 (package.json, Cargo.toml, tauri.conf.json)
44 lines
1.1 KiB
JSON
44 lines
1.1 KiB
JSON
{
|
|
"name": "clawpanel",
|
|
"version": "0.13.1",
|
|
"private": true,
|
|
"description": "ClawPanel - OpenClaw 可视化管理面板,基于 Tauri v2 的跨平台桌面应用",
|
|
"type": "module",
|
|
"author": "qingchencloud",
|
|
"license": "AGPL-3.0",
|
|
"homepage": "https://github.com/qingchencloud/clawpanel",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/qingchencloud/clawpanel.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/qingchencloud/clawpanel/issues"
|
|
},
|
|
"keywords": [
|
|
"openclaw",
|
|
"ai-agent",
|
|
"tauri",
|
|
"desktop-app",
|
|
"management-panel"
|
|
],
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"tauri": "tauri",
|
|
"icon:regen": "tauri icon docs/logo.png -o src-tauri/icons",
|
|
"serve": "node scripts/serve.js",
|
|
"version:sync": "node scripts/sync-version.js",
|
|
"version:set": "node scripts/sync-version.js"
|
|
},
|
|
"dependencies": {
|
|
"@tauri-apps/api": "^2.5.0",
|
|
"@tauri-apps/plugin-autostart": "^2.5.1",
|
|
"@tauri-apps/plugin-shell": "^2.2.1"
|
|
},
|
|
"devDependencies": {
|
|
"@tauri-apps/cli": "^2.5.0",
|
|
"vite": "^6.4.2"
|
|
}
|
|
}
|