package.json•1.59 kB
{
"name": "rpgmaker-mz-mcp",
"version": "0.1.0",
"description": "MCP server for RPG Maker MZ tools",
"type": "module",
"main": "dist/index.js",
"bin": {
"rpgmaker-mz-mcp": "./dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
"test:e2e": "node test-e2e.mjs",
"test:autonomous": "node test-autonomous-e2e.mjs",
"test:error": "node test-error-handling.mjs",
"test:resource": "node test-resource-manager.mjs",
"test:all": "npm run test:e2e && npm run test:autonomous && npm run test:error && npm run test:resource",
"lint": "eslint src/**/*.ts",
"format": "prettier --write \"src/**/*.ts\"",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"rpgmaker",
"rpg-maker-mz",
"game-development",
"ai",
"gemini",
"rpg",
"game-maker",
"scenario-generation"
],
"author": "ShunsukeHayashi",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ShunsukeHayashi/rpgmaker-mz-mcp.git"
},
"bugs": {
"url": "https://github.com/ShunsukeHayashi/rpgmaker-mz-mcp/issues"
},
"homepage": "https://github.com/ShunsukeHayashi/rpgmaker-mz-mcp#readme",
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"commander": "^11.1.0"
},
"devDependencies": {
"@jest/globals": "^29.0.0",
"@types/node": "^20.0.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^3.0.0",
"typescript": "^5.0.0"
}
}