-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.53 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "clawteam",
"private": true,
"version": "1.0.6",
"description": "Desktop control plane for OpenClaw: multi-instance Gateway, team management, chat, and observability (Tauri + React).",
"keywords": [
"openclaw",
"tauri",
"desktop",
"agent",
"gateway",
"multi-agent",
"rust",
"react"
],
"homepage": "https://github.com/tageecc/clawteam#readme",
"bugs": {
"url": "https://github.com/tageecc/clawteam/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/tageecc/clawteam.git"
},
"type": "module",
"engines": {
"node": ">=20"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "node scripts/bundle-tauri-resources.mjs && pnpm exec tauri dev",
"tauri:build": "node scripts/bundle-tauri-resources.mjs && env -u CI pnpm exec tauri build",
"icons:prepare": "node scripts/prepare-app-icon.mjs && cp src-tauri/icons/logo-source.png public/clawteam.png",
"icons:build": "node scripts/prepare-app-icon.mjs && cp src-tauri/icons/logo-source.png public/clawteam.png && pnpm exec tauri icon src-tauri/icons/logo-source.png -o src-tauri/icons && rm -rf src-tauri/icons/ios src-tauri/icons/android && rm -f src-tauri/icons/64x64.png"
},
"dependencies": {
"@lobehub/icons": "^5.0.1",
"@number-flow/react": "^0.6.0",
"@radix-ui/react-alert-dialog": "^1.1.4",
"@radix-ui/react-checkbox": "^1.1.2",
"@radix-ui/react-collapsible": "^1.1.12",
"@radix-ui/react-dialog": "^1.1.15",
"@radix-ui/react-dropdown-menu": "^2.1.4",
"@radix-ui/react-label": "^2.1.8",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-radio-group": "^1.3.8",
"@radix-ui/react-select": "^2.2.6",
"@radix-ui/react-separator": "^1.1.8",
"@radix-ui/react-slot": "^1.2.4",
"@radix-ui/react-switch": "^1.2.6",
"@radix-ui/react-tabs": "^1.1.13",
"@radix-ui/react-tooltip": "^1.2.8",
"@tauri-apps/api": "^2",
"@tauri-apps/plugin-autostart": "^2.5.1",
"@tauri-apps/plugin-fs": "^2",
"@tauri-apps/plugin-opener": "^2",
"@tauri-apps/plugin-shell": "^2",
"@tauri-apps/plugin-store": "^2",
"@tauri-apps/plugin-window-state": "^2.4.1",
"@types/d3-array": "^3.2.2",
"@visx/curve": "4.0.1-alpha.0",
"@visx/event": "4.0.1-alpha.0",
"@visx/gradient": "4.0.1-alpha.0",
"@visx/grid": "4.0.1-alpha.0",
"@visx/group": "^3.12.0",
"@visx/pattern": "4.0.1-alpha.0",
"@visx/responsive": "4.0.1-alpha.0",
"@visx/scale": "4.0.1-alpha.0",
"@visx/shape": "4.0.1-alpha.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"d3-array": "^3.2.4",
"d3-shape": "^3.2.0",
"framer-motion": "^12.36.0",
"i18next": "^25.10.5",
"lucide-react": "^0.468.0",
"motion": "^12.36.0",
"openclaw": "^2026.3.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"react-i18next": "^16.6.2",
"react-markdown": "^10.1.0",
"react-use-measure": "^2.1.7",
"remark-gfm": "^4.0.1",
"simple-icons": "^16.13.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.5.0",
"tailwindcss-animate": "^1.0.7",
"zustand": "^5.0.2"
},
"devDependencies": {
"@tauri-apps/cli": "^2",
"@types/d3-shape": "^3.1.8",
"@types/node": "^25.3.5",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@vitejs/plugin-react": "^4.6.0",
"autoprefixer": "^10.4.20",
"postcss": "^8.5.1",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"typescript": "~5.8.3",
"vite": "^7.0.4"
}
}