-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 4.34 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 4.34 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
108
109
110
111
112
113
114
115
{
"name": "clawbox",
"description": "ClawBox desktop client for the OpenClaw Gateway",
"version": "2026.3.17",
"license": "MIT",
"homepage": "https://github.com/CommonstackAI/clawbox#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/CommonstackAI/clawbox.git"
},
"bugs": {
"url": "https://github.com/CommonstackAI/clawbox/issues"
},
"keywords": [
"clawbox",
"openclaw",
"tauri",
"react",
"bun",
"desktop",
"ai-client"
],
"type": "module",
"engines": {
"node": ">=20",
"bun": ">=1.1"
},
"scripts": {
"sync-version": "node scripts/sync-version.mjs",
"release:version": "node scripts/release-version.mjs",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\" --names \"backend,frontend\" --prefix-colors \"blue,green\"",
"dev:frontend": "vite --port 14200",
"dev:backend": "bun --watch internal/index.ts",
"test:frontend": "vitest run --passWithNoTests",
"build:frontend": "tsc -b && vite build",
"build:backend": "node scripts/build-backend.mjs",
"preview": "vite preview",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:clean-dmg": "hdiutil info 2>/dev/null | grep -B 20 -i clawbox | grep /dev/disk | awk '{print $1}' | sort -u | xargs -I {} hdiutil detach {} -force 2>/dev/null; rm -f src-tauri/target/release/bundle/macos/*.dmg; true",
"tauri:build": "npm run tauri:clean-dmg && tauri build",
"tauri:build-win": "tauri build --target x86_64-pc-windows-msvc",
"tauri:build-win-signed": "npm run tauri:build-win:compile && npm run tauri:build-win:sign && npm run tauri:build-win:bundle && npm run tauri:build-win:sign-installer",
"tauri:build-win:compile": "tauri build --target x86_64-pc-windows-msvc --no-bundle",
"tauri:build-win:sign": "node scripts/sign-win.mjs",
"tauri:build-win:bundle": "tauri build --target x86_64-pc-windows-msvc --bundles nsis --no-sign -c src-tauri/tauri.bundle-only.json",
"tauri:build-win:sign-installer": "node scripts/sign-win-installer.mjs",
"mock:gateway": "node scripts/mock-gateway.mjs",
"smoke:backend": "node test/smoke-backend.mjs",
"scan:public": "node scripts/scan-repo-hygiene.mjs --mode public",
"scan:secrets": "node scripts/scan-repo-hygiene.mjs --mode secrets",
"scan:repo": "npm run scan:public && npm run scan:secrets",
"audit:licenses": "license-checker-rseidelsohn --summary",
"audit:deps": "node scripts/run-npm-audit.mjs",
"audit:oss": "npm run scan:repo && npm run audit:licenses && npm run audit:deps"
},
"dependencies": {
"@iconify-json/logos": "^1.2.10",
"@iconify-json/simple-icons": "^1.2.74",
"@iconify/react": "^6.0.2",
"@radix-ui/react-alert-dialog": "^1.1.6",
"@radix-ui/react-dialog": "^1.1.6",
"@radix-ui/react-dropdown-menu": "^2.1.6",
"@radix-ui/react-label": "^2.1.2",
"@radix-ui/react-scroll-area": "^1.2.3",
"@radix-ui/react-select": "^2.1.6",
"@radix-ui/react-separator": "^1.1.2",
"@radix-ui/react-switch": "^1.1.3",
"@radix-ui/react-tabs": "^1.1.3",
"@tailwindcss/typography": "^0.5.19",
"@tauri-apps/api": "^2.2.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"extract-zip": "^2.0.1",
"hono": "^4.7.0",
"i18next": "^24.2.3",
"i18next-browser-languagedetector": "^8.2.0",
"json5": "^2.2.3",
"lucide-react": "^0.474.0",
"nanoid": "^5.1.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.7.4",
"react-markdown": "^9.0.3",
"react-syntax-highlighter": "^15.6.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.0",
"sonner": "^2.0.7",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"ws": "^8.19.0",
"zod": "^3.24.2",
"zustand": "^5.0.3"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.7.0",
"@testing-library/react": "^16.3.0",
"@tauri-apps/cli": "^2.2.0",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/ws": "^8.18.1",
"@vitejs/plugin-react": "^4.3.4",
"archiver": "^7.0.1",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.2",
"jsdom": "^26.1.0",
"license-checker-rseidelsohn": "^4.4.2",
"postcss": "^8.5.1",
"tailwindcss": "^3.4.17",
"typescript": "^5.7.3",
"vite": "^6.1.0",
"vitest": "^3.2.4"
}
}