-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.71 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
64
65
66
67
68
{
"name": "agents-mini-rpg",
"version": "0.1.2",
"description": "Terminal-based multi-agent RPG that mirrors live Claude Code activity via an MCP file-bridge",
"main": "dist/index.js",
"license": "MIT",
"author": "agents-mini-rpg contributors",
"homepage": "https://github.com/Mundo-Dev0ps/agents-mini-rpg#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Mundo-Dev0ps/agents-mini-rpg.git"
},
"bugs": {
"url": "https://github.com/Mundo-Dev0ps/agents-mini-rpg/issues"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"rpg",
"terminal",
"tui",
"claude-code",
"mcp",
"multi-agent",
"ansi"
],
"engines": {
"node": ">=20"
},
"bin": {
"agent-rpg": "./bin/agent-rpg.js"
},
"files": [
"dist/",
"bin/",
"scripts/setup-mcp.ts",
"package.json",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"dev": "ts-node index.ts",
"mcp": "tsc && node dist/mcp-server.js",
"show-config": "tsc && node dist/show-config.js",
"install-mcp": "ts-node scripts/setup-mcp.ts",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "node --require ts-node/register --test tests/*.test.ts",
"prepublishOnly": "npm run clean && npm run build && npm test",
"postinstall": "node -e \"try{require('fs').chmodSync('./bin/agent-rpg.js',0o755)}catch(e){}\""
},
"dependencies": {
"chalk": "^4.1.2"
},
"optionalDependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"pidusage": "^3.0.2",
"ps-list": "^7.2.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"ts-node": "^10.9.2",
"typescript": "^5.3.0"
}
}