-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.15 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.15 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
{
"name": "minestom-mcp",
"version": "1.0.0",
"description": "A Minestom MCP server with repository-aware JVM tooling.",
"main": "dist/server.js",
"module": "dist/server.js",
"homepage": "https://github.com/Azoraqua/minestom-mcp#readme",
"bugs": {
"url": "https://github.com/Azoraqua/minestom-mcp/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Azoraqua/minestom-mcp.git"
},
"exports": {
".": "./dist/server.js"
},
"bin": {
"minestom-mcp-server": "./dist/server.js",
"minestom-mcp": "./dist/server.js"
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE.md"
],
"type": "module",
"engines": {
"node": ">=22"
},
"scripts": {
"prepare": "husky",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"check": "pnpm lint && pnpm typecheck && pnpm build",
"typecheck": "tsc",
"clean": "rimraf dist/*",
"prebuild": "pnpm clean && pnpm lint && pnpm typecheck",
"build": "esbuild src/server.ts --bundle --minify --tree-shaking --format=esm --platform=node --target=node20 --banner:js='#!/usr/bin/env node' --outfile=dist/server.js",
"start": "node dist/server.js",
"dev": "nodemon -w src -e ts -x \"pnpm build && pnpm start\"",
"prepack": "pnpm build",
"prepublishOnly": "pnpm check"
},
"lint-staged": {
"*": "biome check --write --files-ignore-unknown=true --no-errors-on-unmatched"
},
"keywords": [
"mcp",
"minestom",
"minecraft",
"mcp-server",
"model-context-protocol",
"gradle",
"maven",
"jvm"
],
"author": "Ronald Bunk <info@ronaldbunk.nl>",
"license": "Apache-2.0",
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be",
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@types/node": "^24.12.0",
"esbuild": "^0.27.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"nodemon": "^3.1.14",
"rimraf": "^6.1.3",
"terser": "^5.46.0",
"typescript": "^5.9.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"@tanstack/ai": "^0.8.0",
"zod": "^4.3.6"
}
}