package.jsonโข1.21 kB
{
"name": "godot-sentinel-mcp",
"version": "1.0.0",
"description": "Terminal bridge MCP server for auto-fixing Godot errors and autorunning builds",
"main": "dist/server.js",
"bin": {
"sentinel": "dist/tools/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/server.js",
"dev": "ts-node src/server.ts",
"cli": "ts-node src/tools/cli.ts",
"test": "jest",
"lint": "eslint src --ext .ts",
"typecheck": "tsc --noEmit"
},
"keywords": ["mcp", "godot", "auto-fix", "terminal", "development"],
"author": "Sentinel MCP",
"license": "MIT",
"dependencies": {
"express": "^4.18.2",
"ws": "^8.14.2",
"chokidar": "^3.5.3",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"chalk": "^4.1.2",
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/node": "^20.10.0",
"@types/express": "^4.17.21",
"@types/ws": "^8.5.10",
"@types/jest": "^29.5.8",
"typescript": "^5.3.2",
"ts-node": "^10.9.1",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"@typescript-eslint/eslint-plugin": "^6.12.0",
"@typescript-eslint/parser": "^6.12.0",
"eslint": "^8.54.0"
},
"engines": {
"node": ">=18.0.0"
}
}