-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 890 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 890 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
42
43
44
45
{
"name": "claude-rpg",
"version": "0.5.5",
"description": "Visualize Claude Code agents as villagers in a pixel art RPG",
"main": "server/index.js",
"bin": {
"claude-rpg": "./bin/claude-rpg.js"
},
"files": [
"bin/",
"server/",
"client/",
"README.md",
"LICENSE"
],
"scripts": {
"start": "node bin/claude-rpg.js",
"dev": "node bin/claude-rpg.js"
},
"dependencies": {
"chokidar": "^4.0.3",
"express": "^4.18.2",
"ws": "^8.16.0"
},
"engines": {
"node": ">=18"
},
"keywords": [
"claude",
"claude-code",
"rpg",
"visualization",
"agents",
"pixel-art"
],
"repository": {
"type": "git",
"url": "https://github.com/iCodeWebApps/ClaudeRPG.git"
},
"homepage": "https://github.com/iCodeWebApps/ClaudeRPG#readme",
"license": "MIT",
"devDependencies": {
"pngjs": "^7.0.0"
}
}