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
55 lines (55 loc) · 1.28 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.28 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
{
"name": "minecraft-mcp-server",
"version": "2.0.4",
"type": "module",
"main": "dist/main.js",
"bin": {
"minecraft-mcp-server": "dist/main.js"
},
"ava": {
"extensions": [
"ts"
],
"nodeArguments": [
"--import=tsx"
]
},
"scripts": {
"dev": "tsx src/main.ts",
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"start": "node dist/main.js",
"test": "ava",
"lint": "eslint \"{src,tests}/**/*.ts\"",
"lint:fix": "eslint \"{src,tests}/**/*.ts\" --fix"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"minecraft-data": "^3.105.0",
"mineflayer": "^4.35.0",
"mineflayer-pathfinder": "^2.4.2",
"vec3": "^0.1.8",
"yargs": "^18.0.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@ava/typescript": "^6.0.0",
"@types/node": "^25.2.3",
"@types/sinon": "^21.0.0",
"@types/vec3": "^0.1.4",
"@types/yargs": "^17.0.35",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.56.1",
"ava": "^6.4.1",
"eslint": "^9.39.2",
"eslint-plugin-ava": "^15.1.0",
"globals": "^17.3.0",
"sinon": "^21.0.1",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=20.10.0"
}
}