-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.31 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
{
"name": "minecraft-ai-player",
"version": "1.0.0",
"private": true,
"description": "Mineflayer Minecraft bot with MCP integration, structured perception and verifiable long-running skills.",
"repository": {
"type": "git",
"url": "git+https://github.com/Tomorins/MinecraftBot.git"
},
"homepage": "https://github.com/Tomorins/MinecraftBot#readme",
"bugs": {
"url": "https://github.com/Tomorins/MinecraftBot/issues"
},
"type": "module",
"engines": {
"node": ">=22.13.0"
},
"scripts": {
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"mcp:start": "node dist/mcp/index.js",
"mcp:dev": "tsx src/mcp/index.ts",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc -p tsconfig.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"smoke": "tsx src/smoke.ts",
"knowledge:index": "tsx src/cli/index-guides.ts"
},
"dependencies": {
"@modelcontextprotocol/server": "2.0.0",
"dotenv": "^17.2.2",
"minecraft-data": "^3.100.0",
"mineflayer": "^4.32.0",
"mineflayer-pathfinder": "^2.4.5",
"pino": "^9.9.4",
"vec3": "^0.1.10",
"zod": "^4.1.5"
},
"devDependencies": {
"@types/node": "^24.3.1",
"pino-pretty": "^13.1.1",
"tsx": "^4.20.5",
"typescript": "^5.9.2",
"vitest": "^3.2.4"
}
}