-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 3.01 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 3.01 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
{
"name": "clawbox-setup",
"version": "3.9.0",
"private": true,
"description": "ClawBox setup wizard and dashboard",
"scripts": {
"mcp": "bun run mcp/clawbox-mcp.ts",
"typecheck:mcp": "tsc -p mcp/tsconfig.json",
"check:mcp-tools": "bun run mcp/check-tools.ts",
"terminal-server": "bun run scripts/terminal-server.ts",
"dev": "next dev --port ${PORT:-3000} --hostname 0.0.0.0",
"dev:privileged": "next dev --port 80 --hostname 0.0.0.0",
"prebuild": "rm -rf .next/standalone/.next/cache/images 2>/dev/null || true",
"build": "next build",
"postbuild": "node scripts/write-build-info.mjs; SRVJS=$(find .next/standalone -maxdepth 3 -name server.js -print -quit); if [ -n \"$SRVJS\" ]; then SDIR=$(dirname \"$SRVJS\"); rm -rf \"$SDIR/.next/static\" \"$SDIR/public\"; cp -r .next/static \"$SDIR/.next/static\"; cp -r public \"$SDIR/public\"; cp .next/build-info.json \"$SDIR/.next/build-info.json\"; if [ \"$SRVJS\" != \".next/standalone/server.js\" ]; then ln -sf \"$(pwd)/$SRVJS\" .next/standalone/server.js; fi; fi",
"start": "PORT=80 HOSTNAME=0.0.0.0 node production-server.js",
"lint": "eslint",
"test": "vitest run --config vitest.config.ts",
"test:unit": "vitest run --config vitest.config.ts --project unit",
"test:components": "vitest run --config vitest.config.ts --project components",
"test:watch": "vitest --config vitest.config.ts",
"test:coverage": "vitest run --config vitest.config.ts --coverage",
"test:e2e": "playwright test",
"test:e2e:coverage": "rm -f coverage/e2e-summary.json coverage/e2e-bundles.json && playwright test && node scripts/e2e-coverage-report.mjs",
"test:e2e:ui": "playwright test --ui",
"verify:build-identity": "bash scripts/verify-build-identity.sh",
"check:sudoers": "bash scripts/check-sudoers-coverage.sh"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@novnc/novnc": "1.6.0",
"@types/ws": "^8.18.1",
"@xterm/addon-fit": "^0.11.0",
"@xterm/addon-web-links": "^0.12.0",
"@xterm/xterm": "^6.0.0",
"busboy": "^1.6.0",
"next": "16.2.11",
"node-pty": "^1.1.0",
"playwright": "^1.58.2",
"qrcode.react": "^4.2.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"ws": "^8.21.3"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@tailwindcss/postcss": "^4.0.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/better-sqlite3": "^7.6.13",
"@types/bun": "^1.3.11",
"@types/busboy": "^1.5.4",
"@types/node": "^20.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^9.0.0",
"eslint-config-next": "16.1.6",
"jsdom": "^28.1.0",
"tailwindcss": "^4.0.0",
"typescript": "5.9.3",
"vite-tsconfig-paths": "^6.1.1",
"vitest": "^4.1.10"
},
"overrides": {
"undici": "^7.29.0",
"postcss": "^8.5.23",
"sharp": "^0.35.0",
"nanoid": "^3.3.17",
"vite": "^7.3.5"
}
}