-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.67 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.67 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
{
"name": "realm",
"version": "0.1.0",
"description": "See your AI agents work. Real-time 3D visualization of Claude Code activity, multi-agent orchestration, and REST API integration for external systems.",
"author": "Elysian Labs",
"license": "MIT",
"keywords": [
"claude",
"claude-code",
"ai-agent",
"orchestration",
"visualization",
"3d",
"multi-agent",
"developer-tools"
],
"type": "module",
"bin": {
"realm": "./bin/cli.js"
},
"files": [
"bin/",
"hooks/",
"dist/",
"!dist/**/*.map",
"data/.gitkeep"
],
"scripts": {
"dev": "concurrently \"npm run dev:client\" \"npm run dev:server\"",
"dev:client": "vite",
"dev:server": "tsx watch server/index.ts",
"build": "npm run build:client && npm run build:server",
"build:client": "tsc && vite build",
"build:server": "tsc -p tsconfig.server.json",
"preview": "vite preview",
"server": "tsx server/index.ts",
"prepack": "npm run build",
"prepublishOnly": "npm run build",
"simulate-openclaw": "tsx bin/simulate-openclaw.ts",
"auto-discover": "tsx bin/auto-discover-projects.ts",
"verify": "tsx bin/verify-integration.ts"
},
"dependencies": {
"@larksuiteoapi/node-sdk": "^1.59.0",
"chokidar": "^4.0.0",
"dingtalk-stream": "^2.1.4",
"three": "^0.170.0",
"tone": "^15.1.22",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"@types/three": "^0.170.0",
"@types/ws": "^8.5.13",
"commander": "^12.0.0",
"concurrently": "^9.0.0",
"node-fetch": "^3.3.0",
"playwright": "^1.40.0",
"tsx": "^4.19.0",
"typescript": "^5.6.0",
"vite": "^6.0.0"
}
}