-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.21 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.21 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
{
"name": "mcp-retroarch",
"version": "0.1.3",
"description": "MCP server for RetroArch — exposes memory r/w, save state, screenshot, pause/frameadvance/reset via the Network Control Interface (UDP)",
"license": "MIT",
"type": "module",
"bin": {
"mcp-retroarch": "dist/index.js"
},
"files": [
"dist/",
"docs/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node -e \"import('node:fs').then(fs => fs.chmodSync('dist/index.js', 0o755))\"",
"dev": "tsc --watch",
"start": "node dist/index.js",
"prepare": "npm run build",
"inspector": "npx @modelcontextprotocol/inspector node dist/index.js"
},
"engines": {
"node": ">=22"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dmang-dev/mcp-retroarch.git"
},
"bugs": {
"url": "https://github.com/dmang-dev/mcp-retroarch/issues"
},
"homepage": "https://github.com/dmang-dev/mcp-retroarch#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"typescript": "^5.5.0"
},
"keywords": [
"mcp",
"model-context-protocol",
"retroarch",
"libretro",
"emulator",
"claude"
]
}