-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.11 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.11 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": "@n24q02m/better-godot-mcp",
"mcpName": "io.github.n24q02m/better-godot-mcp",
"version": "1.21.0",
"description": "Composite MCP server for Godot Engine -- 17 composite tools for AI-assisted game development.",
"type": "module",
"main": "build/src/init-server.js",
"bin": {
"better-godot-mcp": "bin/cli.mjs"
},
"files": [
"build/",
"bin/",
"README.md",
"LICENSE"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsc --build && node scripts/build-cli.js",
"dev": "tsx watch scripts/start-server.ts",
"dev:http": "MCP_TRANSPORT=http tsx watch scripts/start-server.ts",
"dev:stdio": "tsx watch scripts/start-server.ts",
"test": "vitest run",
"test:watch": "vitest",
"lint": "biome check .",
"format": "biome format --write .",
"check": "biome check . && tsc --noEmit",
"test:full": "bun run build && vitest run --config vitest.full.config.ts",
"test:live": "bun run build && vitest run --config vitest.live.config.ts",
"check:fix": "biome check --fix .",
"clean": "rm -rf build bin",
"prepublishOnly": "bun run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.30.0",
"@n24q02m/mcp-core": "1.23.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "^2.5.6",
"@types/node": "^26.1.2",
"@vitest/coverage-v8": "^4.1.10",
"esbuild": "^0.28.1",
"tsx": "^4.23.4",
"typescript": "^7.0.2",
"vitest": "^4.1.10"
},
"trustedDependencies": [
"esbuild"
],
"engines": {
"node": ">=24.19.0"
},
"keywords": [
"mcp",
"mcp-server",
"godot",
"godot-engine",
"game-development",
"model-context-protocol",
"ai-agent",
"gdscript",
"claude",
"cursor",
"copilot",
"antigravity",
"codex",
"opencode"
],
"author": "n24q02m",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/n24q02m/better-godot-mcp.git"
},
"bugs": {
"url": "https://github.com/n24q02m/better-godot-mcp/issues"
},
"homepage": "https://github.com/n24q02m/better-godot-mcp#readme"
}