package.json•1.75 kB
{
"name": "robloxstudio-mcp",
"version": "1.6.0",
"description": "MCP Server for Roblox Studio Integration - Access Studio data, scripts, and objects through AI tools",
"main": "dist/index.js",
"type": "module",
"bin": {
"robloxstudio-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"studio-plugin/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "eslint src/**/*.ts",
"typecheck": "tsc --noEmit",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"mcp",
"roblox",
"studio",
"ai",
"model-context-protocol",
"game-development"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/boshyxd/robloxstudio-mcp.git"
},
"homepage": "https://github.com/boshyxd/robloxstudio-mcp#readme",
"bugs": {
"url": "https://github.com/boshyxd/robloxstudio-mcp/issues"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"cors": "^2.8.5",
"express": "^4.18.2",
"node-fetch": "^3.3.2",
"uuid": "^9.0.1",
"ws": "^8.14.2"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/express": "^4.17.21",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.0",
"@types/supertest": "^6.0.2",
"@types/uuid": "^9.0.7",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"supertest": "^6.3.3",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.2"
}
}