forked from yuniko-software/minecraft-mcp-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 919 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 919 Bytes
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
{
"name": "minecraft-mcp-server",
"version": "1.0.0",
"main": "dist/bot.js",
"type": "module",
"bin": {
"minecraft-mcp-server": "dist/bot.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"start": "node dist/bot.js",
"lint": "eslint \"src/**/*.ts\" --max-warnings=100",
"lint:fix": "eslint \"src/**/*.ts\" --fix"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.1",
"minecraft-data": "^3.86.0",
"mineflayer": "^4.27.0",
"mineflayer-pathfinder": "^2.4.2",
"vec3": "^0.1.8",
"yargs": "^17.7.2",
"zod": "^3.24.4"
},
"devDependencies": {
"@types/node": "^22.15.17",
"@types/vec3": "^0.1.4",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.31.1",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=16.0.0"
}
}