-
-
Notifications
You must be signed in to change notification settings - Fork 299
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.85 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.85 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
{
"name": "claw3d",
"version": "0.1.5",
"private": true,
"license": "MIT",
"scripts": {
"dev": "node server/index.js --dev",
"dev:https": "node server/index.js --dev --https",
"hermes-adapter": "node server/hermes-gateway-adapter.js",
"demo-gateway": "node server/demo-gateway-adapter.js",
"build": "next build",
"start": "node server/index.js",
"lint": "eslint .",
"cleanup:ux-artifacts": "node scripts/cleanup-ux-artifacts.mjs",
"sync:gateway-client": "node scripts/sync-openclaw-gateway-client.ts",
"studio:setup": "node scripts/studio-setup.js",
"smoke:dev-server": "node scripts/smoke-dev-server.mjs",
"typecheck": "tsc --noEmit",
"test": "vitest",
"e2e": "playwright test"
},
"dependencies": {
"@noble/ed25519": "^3.0.0",
"@react-three/drei": "^10.7.7",
"@react-three/fiber": "^9.5.0",
"canvas-confetti": "^1.9.4",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"lucide-react": "^0.563.0",
"next": "16.1.7",
"phaser": "^3.90.0",
"react": "19.2.3",
"react-dom": "19.2.3",
"react-markdown": "^10.1.0",
"react-mentions-ts": "^5.4.7",
"remark-gfm": "^4.0.1",
"tailwind-merge": "^3.4.0",
"three": "^0.183.2",
"ws": "^8.18.3"
},
"devDependencies": {
"@playwright/test": "^1.58.0",
"@tailwindcss/postcss": "^4",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/canvas-confetti": "^1.9.0",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"@types/three": "^0.183.1",
"@types/ws": "^8.18.1",
"eslint": "^9",
"eslint-config-next": "16.1.6",
"eslint-config-prettier": "^10.1.8",
"jsdom": "^27.4.0",
"selfsigned": "^5.5.0",
"tailwindcss": "^4",
"tw-animate-css": "^1.4.0",
"typescript": "^5",
"vitest": "^4.0.18"
}
}