package.json•1.46 kB
{
"name": "unity-mcp",
"version": "1.0.0",
"description": "A bridge between Unity and AI assistants using the Model Context Protocol (MCP).",
"main": "index.js",
"directories": {
"doc": "docs",
"example": "examples",
"test": "tests"
},
"scripts": {
"test": "jest",
"test:unit": "jest --testPathIgnorePatterns=e2e",
"test:e2e": "jest --config e2e/jest.config.js",
"build": "tsc",
"start": "node dist/mcp-stdio-client.js",
"dev": "tsc -w & nodemon dist/mcp-stdio-client.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/body-parser": "^1.19.5",
"@types/chalk": "^2.2.0",
"@types/chokidar": "^2.1.3",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.1",
"@types/jest": "^29.5.14",
"@types/nedb": "^1.8.16",
"@types/node": "^22.14.0",
"@types/supertest": "^6.0.3",
"@types/uuid": "^10.0.0",
"axios": "^1.8.4",
"chalk": "^4.1.2",
"chokidar": "^3.6.0",
"jest": "^29.7.0",
"jest-environment-node": "^29.7.0",
"nodemon": "^3.1.0",
"supertest": "^7.1.0",
"ts-jest": "^29.3.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"@types/ws": "^8.18.1",
"body-parser": "^2.2.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"nedb": "^1.8.0",
"uuid": "^11.1.0",
"winston": "^3.17.0",
"ws": "^8.18.1"
}
}