Files
clawpanel/package.json
晴天 631fe86800 feat: 开机自启功能(tauri-plugin-autostart)
- Cargo.toml: 添加 tauri-plugin-autostart 依赖(桌面端)
- lib.rs: 初始化 autostart 插件(MacosLauncher::LaunchAgent)
- capabilities/default.json: 添加 autostart 权限
- settings.js: 面板设置新增开机自启开关(仅 Tauri 模式显示)
- package.json: 添加 @tauri-apps/plugin-autostart 前端依赖
2026-03-26 05:10:02 +08:00

44 lines
1.1 KiB
JSON

{
"name": "clawpanel",
"version": "0.9.9",
"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.3.5"
}
}