-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.92 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.92 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "maicraft",
"version": "1.10.6",
"description": "基于mineflayer构建的 Minecraft MCP Server,主要用于MaiBot直播Minecraft",
"type": "module",
"main": "dist/main.js",
"bin": {
"maicraft": "dist/main.js"
},
"files": [
"dist/**/*",
"config-template.yaml",
"CHANGELOG.md",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/main.ts",
"start": "node dist/main.js",
"test": "jest --runInBand --passWithNoTests",
"test:smoke": "pnpm run mcp:state",
"lint": "eslint src/**/*.ts",
"clean": "rimraf dist",
"prepublishOnly": "pnpm run clean && pnpm run build",
"publish:check": "npm pack --dry-run",
"publish:linux": "bash scripts/publish.sh",
"publish:windows": "powershell -ExecutionPolicy Bypass -File scripts/publish.ps1",
"mcp:ui": "mcp-inspector --config mcp-inspector.json --server maicraft",
"mcp:tools": "mcp-inspector --cli --config mcp-inspector.json --server maicraft --method tools/list",
"mcp:state": "mcp-inspector --cli --config mcp-inspector.json --server maicraft --method tools/call --tool-name query_game_state"
},
"keywords": [
"minecraft",
"mcp",
"agent",
"mineflayer",
"model-context-protocol",
"bot",
"automation"
],
"author": "ChangingSelf",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ChangingSelf/maicraft-mcp-server"
},
"bugs": {
"url": "https://github.com/ChangingSelf/maicraft-mcp-server/issues"
},
"homepage": "https://github.com/ChangingSelf/maicraft-mcp-server#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"@tweenjs/tween.js": "^23.1.3",
"eventsource": "^4.0.0",
"js-yaml": "^4.1.0",
"minecraft-data": "^3.92.0",
"minecrafthawkeye": "^1.3.9",
"mineflayer": "^4.32.0",
"mineflayer-armor-manager": "^2.0.1",
"mineflayer-collectblock-colalab": "^1.0.0",
"mineflayer-pathfinder-mai": "^2.4.7",
"mineflayer-pvp": "^1.3.2",
"mineflayer-tool": "^1.2.0",
"prismarine-block": "^1.22.0",
"prismarine-chunk": "^1.39.0",
"prismarine-entity": "^2.5.0",
"prismarine-item": "^1.17.0",
"prismarine-recipe": "^1.3.1",
"prismarine-schematic": "^1.2.3",
"tailwindcss": "^4.1.12",
"vec3": "^0.1.10",
"ws": "^8.18.3",
"zod": "^3.23.8"
},
"devDependencies": {
"@modelcontextprotocol/inspector": "0.16.5",
"@types/jest": "^30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.0.10",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"tsx": "^4.20.3",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
},
"packageManager": "pnpm@10.6.5",
"pnpm": {
"onlyBuiltDependencies": [
"esbuild",
"gl"
]
}
}