-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.07 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.07 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
{
"name": "classic-mac-mcp",
"version": "1.0.2",
"description": "MCP server for controlling Classic Mac OS targets (emulated and real hardware)",
"author": "Falling Data Zone LLC",
"license": "GPL-3.0",
"type": "module",
"main": "dist/server.js",
"bin": {
"classic-mac-mcp": "dist/server.js"
},
"files": [
"dist",
"config",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/SeanFDZ/agentbridge.git"
},
"homepage": "https://apps.fallingdata.zone/agentbridge/",
"mcpName": "io.github.SeanFDZ/agentbridge",
"keywords": [
"mcp",
"classic-mac",
"retro-computing",
"macos",
"system7",
"68k",
"powerpc",
"ai-agent"
],
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "tsx src/server.ts",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.7.0"
},
"engines": {
"node": ">=20.0.0"
}
}