package.json•1.49 kB
{
"name": "unity-mcp-server",
"version": "3.1.1",
"description": "Unity MCP Server - Simple HTTP-based Unity Editor integration for AI assistants",
"type": "module",
"main": "build/simple-index.js",
"bin": {
"unity-mcp-server": "./build/simple-index.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node build/simple-index.js",
"clean": "rm -rf build",
"prepare": "npm run build",
"build:dxt": "./build-final-dxt.sh",
"test": "vitest",
"test:watch": "vitest --watch",
"test:coverage": "vitest run --coverage",
"test:unit": "vitest run tests/unit",
"test:integration": "vitest run tests/integration"
},
"keywords": [
"mcp",
"mcp-server",
"model-context-protocol",
"unity",
"unity3d",
"unity-editor",
"gamedev",
"game-development",
"claude",
"ai",
"ai-tools"
],
"author": "zabaglione",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/zabaglione/mcp-server-unity.git"
},
"bugs": {
"url": "https://github.com/zabaglione/mcp-server-unity/issues"
},
"homepage": "https://github.com/zabaglione/mcp-server-unity#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@vitest/coverage-v8": "^3.2.4",
"esbuild": "^0.25.6",
"typescript": "^5.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=16.0.0"
}
}