package.jsonโข2.2 kB
{
"name": "@broken-divinity/cts-mcp-server",
"version": "3.0.0",
"description": "MCP server for CTS automation with Shrimp integration, artifact visualization, and AI-powered tooling (Reasoning, Bughunter, Cleanup, Audit)",
"main": "build/index.js",
"types": "build/index.d.ts",
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"files": [
"build/**/*",
"!build/**/*.test.js",
"!build/**/__tests__",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"repository": {
"type": "git",
"url": "https://github.com/broken-divinity/prototypeBD"
},
"homepage": "https://github.com/broken-divinity/prototypeBD#readme",
"bugs": {
"url": "https://github.com/broken-divinity/prototypeBD/issues"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "ts-node src/index.ts",
"dev:watch": "nodemon --watch src --ext ts --exec ts-node src/index.ts",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"benchmark": "npm run build && node build/scripts/benchmark.js",
"start": "node build/index.js",
"start:debug": "NODE_ENV=development DEBUG=cts:* node build/index.js",
"prepublishOnly": "npm run build && npm test",
"postinstall": "npm rebuild tree-sitter-gdscript || true"
},
"keywords": [
"mcp",
"model-context-protocol",
"cts",
"shrimp",
"artifacts",
"visualization",
"godot",
"gdscript",
"tree-sitter",
"ai-tools",
"code-analysis",
"refactoring",
"static-analysis",
"linting",
"testing"
],
"author": "Broken Divinity Team",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"@types/minimatch": "^5.1.2",
"minimatch": "^10.1.1",
"tree-sitter": "^0.21.0",
"tree-sitter-gdscript": "^5.0.1",
"web-tree-sitter": "^0.20.8",
"zod": "^3.22.0"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"@types/jest": "^29.5.14",
"@types/node": "^20.0.0",
"jest": "^29.7.0",
"nodemon": "^3.0.0",
"tree-sitter-cli": "^0.25.10",
"ts-jest": "^29.4.5",
"ts-node": "^10.9.0",
"typescript": "^5.3.0"
}
}