package.json•1.04 kB
{
"name": "minimal-godot-mcp",
"version": "0.1.0",
"description": "Minimal MCP server for real-time GDScript syntax validation via Godot LSP",
"main": "dist/index.js",
"type": "module",
"bin": {
"minimal-godot-mcp": "./dist/index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"test": "tsx --test tests/**/*.test.ts",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\""
},
"keywords": [
"mcp",
"godot",
"gdscript",
"lsp",
"language-server",
"diagnostics",
"syntax-validation"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=24.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"fast-glob": "^3.3.2"
},
"devDependencies": {
"@types/node": "^22.10.2",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}