-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 884 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 884 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
{
"name": "codemap-hotel",
"version": "1.0.0",
"description": "Visualize Claude Code agents as characters in a pixel-art hotel room",
"type": "module",
"bin": {
"codemap-hotel": "./bin/setup.js"
},
"workspaces": ["server", "client"],
"scripts": {
"dev": "concurrently \"npm run dev:server\" \"npm run dev:client\"",
"dev:server": "npm run dev --workspace=server",
"dev:client": "npm run dev --workspace=client",
"build": "npm run build --workspace=server && npm run build --workspace=client",
"setup": "node bin/setup.js setup",
"start": "node bin/setup.js start"
},
"keywords": ["claude", "claude-code", "visualization", "agents", "pixel-art"],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/JamsusMaximus/codemap"
},
"devDependencies": {
"concurrently": "^8.2.0"
}
}