-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 756 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 756 Bytes
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
{
"name": "agents-office",
"version": "1.1.0",
"description": "3D office visualization of running Claude Code agents",
"type": "module",
"bin": {
"agents-office": "bin/cli.mjs"
},
"files": [
"bin",
"src",
"server",
"index.html",
"vite.config.ts",
"tsconfig.json"
],
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview"
},
"keywords": [
"claude",
"claude-code",
"agents",
"3d",
"threejs",
"visualization"
],
"author": "cernadasjuan",
"license": "MIT",
"dependencies": {
"three": "^0.183.2",
"vite": "^8.0.0"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/three": "^0.183.1",
"typescript": "^5.9.3"
}
}