-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.25 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": "godot-forge",
"version": "0.1.4",
"description": "The definitive AI development companion for Godot 4 — MCP server with test runner, docs search, script analysis, and more",
"type": "module",
"main": "dist/index.js",
"bin": {
"godot-forge": "dist/index.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts",
"dist/data/*.json"
],
"scripts": {
"build": "tsc && tsx scripts/copy-data.ts && chmod +x dist/index.js",
"build:docs": "tsx scripts/build-docs.ts",
"dev": "tsc --watch",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build && npm test"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"mcp",
"godot",
"gdscript",
"gamedev",
"ai",
"model-context-protocol",
"testing",
"gut",
"gdunit4"
],
"mcpName": "io.github.gregario/godot-forge",
"author": "gregario",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/gregario/godot-forge"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.1"
},
"devDependencies": {
"@types/node": "^22.0.0",
"tsx": "^4.21.0",
"typescript": "^5.7.0",
"vitest": "^3.0.0"
}
}