-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.12 KB
/
Copy pathpackage.json
File metadata and controls
107 lines (107 loc) · 3.12 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "gopeak",
"version": "2.3.8",
"mcpName": "io.github.HaD0Yun/gopeak",
"description": "GoPeak — MCP server for trusted Godot 4 workflows with compact/dynamic tool profiles, setup-gated LSP/DAP/runtime integrations, and migration-safe legacy compatibility.",
"type": "module",
"main": "./build/index.js",
"bin": {
"gopeak": "build/cli.js",
"godot-mcp": "build/cli.js"
},
"files": [
"build",
"scripts/postinstall.mjs",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && node scripts/build-visualizer.js && node scripts/build.js",
"typecheck": "tsc --noEmit",
"test": "npm run test:ci",
"smoke": "npm run test:ci",
"test:smoke": "node scripts/smoke-test.mjs",
"test:integration": "node test-bridge.mjs",
"test:dynamic-groups": "node test-dynamic-groups.mjs",
"test:docs": "node test-readme-localization-consistency.mjs && node test-docs-package-policy.mjs",
"test:regressions": "node test-regressions.mjs",
"test:detection": "node test-godot-detection.mjs",
"test:ci": "npm run test:smoke && npm run test:regressions && npm run test:detection",
"ci": "npm run build && npm run typecheck && npm run test:ci",
"prepare": "npm run build",
"postinstall": "node scripts/postinstall.mjs",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js",
"pack": "npm pack --dry-run",
"version:bump": "node scripts/bump-version.mjs",
"test:setup": "npm run build && node test-setup-hooks.mjs && node test-metadata-consistency.mjs && node test-packaging-consistency.mjs",
"test:metadata": "npm run build && node test-metadata-consistency.mjs",
"test:packaging": "npm run build && node test-packaging-consistency.mjs",
"test:docs-policy": "node test-docs-package-policy.mjs"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"fs-extra": "^11.2.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"@types/ws": "^8.5.12",
"esbuild": "^0.24.2",
"typescript": "^5.3.3"
},
"overrides": {
"@hono/node-server": "^1.19.11",
"hono": "^4.12.18",
"path-to-regexp": "8.4.1"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/HaD0Yun/Gopeak-godot-mcp.git"
},
"homepage": "https://github.com/HaD0Yun/Gopeak-godot-mcp#readme",
"bugs": {
"url": "https://github.com/HaD0Yun/Gopeak-godot-mcp/issues"
},
"author": {
"name": "HaD0Yun",
"url": "https://github.com/HaD0Yun"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/HaD0Yun"
},
"keywords": [
"gopeak",
"godot",
"godot-engine",
"godot4",
"mcp",
"mcp-server",
"model-context-protocol",
"ai",
"ai-tools",
"ai-integration",
"claude",
"cline",
"opencode",
"cursor",
"game-development",
"gamedev",
"game-engine",
"gdscript",
"language-server",
"lsp",
"dap",
"debug-adapter-protocol",
"screenshot",
"input-injection",
"auto-reload",
"developer-tools",
"typescript"
]
}