-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.7 KB
/
package.json
File metadata and controls
67 lines (67 loc) · 2.7 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
{
"name": "@mcdxai/minecraft-dev-mcp",
"version": "1.1.0",
"description": "MCP server for Minecraft mod development - decompile, remap, and explore Minecraft source code",
"type": "module",
"main": "./dist/index.js",
"bin": {
"minecraft-dev-mcp": "./dist/index.js"
},
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"dev": "tsx watch src/index.ts",
"build": "tsc",
"prepublishOnly": "npm run clean && npm run build",
"inspect": "npm run build && npx @modelcontextprotocol/inspector node dist/index.js",
"inspect:dev": "npx @modelcontextprotocol/inspector tsx src/index.ts",
"test": "vitest",
"test:ui": "vitest --ui",
"test:manual": "vitest --config vitest.manual.config.ts",
"test:manual:mcp": "vitest --config vitest.manual.config.ts __tests__/manual/mcp",
"test:manual:mcp:smoke": "cross-env MCP_E2E_VERSIONS=1.21.11,26.1-snapshot-1,26.1-snapshot-8,26.1-snapshot-9 vitest --config vitest.manual.config.ts __tests__/manual/mcp",
"test:manual:1.21.10": "vitest __tests__/manual/v1.21.10",
"test:manual:1.20.1": "vitest __tests__/manual/v1.20.1",
"test:manual:1.19.4": "vitest __tests__/manual/v1.19.4",
"test:manual:mojmap": "vitest --config vitest.mojmap.config.ts",
"test:manual:mojmap:1.21.11": "cross-env MOJMAP_TEST_VERSION=1.21.11 vitest --config vitest.mojmap.config.ts",
"test:manual:mojmap:1.21.10": "cross-env MOJMAP_TEST_VERSION=1.21.10 vitest --config vitest.mojmap.config.ts",
"test:manual:mojmap:1.20.1": "cross-env MOJMAP_TEST_VERSION=1.20.1 vitest --config vitest.mojmap.config.ts",
"test:manual:mojmap:1.19.4": "cross-env MOJMAP_TEST_VERSION=1.19.4 vitest --config vitest.mojmap.config.ts",
"test:all": "npm test && npm run test:manual",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"clean": "rimraf dist"
},
"keywords": ["minecraft", "fabric", "mod-development", "mcp", "decompiler", "mappings"],
"author": "GhostTypes",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/MCDxAI/minecraft-dev-mcp.git"
},
"bugs": {
"url": "https://github.com/MCDxAI/minecraft-dev-mcp/issues"
},
"homepage": "https://github.com/MCDxAI/minecraft-dev-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"adm-zip": "^0.5.16",
"better-sqlite3": "^11.7.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/adm-zip": "^0.5.5",
"@types/better-sqlite3": "^7.6.12",
"@types/node": "^22.10.1",
"cross-env": "^7.0.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"engines": {
"node": ">=18.0.0"
}
}