-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 3.16 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@aaronalm19/roblox-mcp",
"version": "2.3.0",
"description": "MCP Server for Roblox Studio Integration - Access Studio data, scripts, and objects through AI tools",
"main": "dist/index.js",
"type": "module",
"bin": {
"roblox-mcp": "dist/index.js"
},
"files": [
"dist/**/*",
"studio-plugin/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"build:plugin": "node scripts/build-plugin.mjs",
"build:all": "npm run build && npm run build:plugin",
"places": "node scripts/places.mjs",
"place:detect": "node scripts/places.mjs detect --init-if-missing --set-active",
"place:list": "node scripts/places.mjs list",
"place:status": "node scripts/places.mjs status",
"blueprint:doctor": "node scripts/blueprint-doctor.mjs",
"blueprint:sync": "node scripts/sync-roblox-properties.mjs",
"blueprint:watch": "node scripts/watch-roblox-properties.mjs",
"blueprint:reverse-sync": "node scripts/reverse-sync-rojo.mjs",
"push:fast": "node scripts/push-script-fast.mjs",
"push:diff": "node scripts/push-script-diff.mjs",
"apply:verify": "node scripts/apply-verify.mjs",
"drift:check": "node scripts/check-drift.mjs",
"lint:deprecated": "node scripts/lint-deprecated-apis.mjs",
"luau:install": "node scripts/install-luau-cli.mjs",
"luau:lint": "node scripts/luau-lint.mjs",
"luau:lint:strict": "node scripts/luau-lint.mjs --strict --fail-on-findings",
"dev:cockpit": "node scripts/dev-cockpit.mjs",
"dev:studio": "node scripts/dev-studio.mjs --with-rojo --with-watch --with-reverse",
"telemetry:once": "node scripts/telemetry-dashboard.mjs --once",
"telemetry:watch": "node scripts/telemetry-dashboard.mjs",
"test:live": "node scripts/live-smoke.mjs",
"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",
"test:e2e": "lune run tests/luau/e2e.luau",
"test:all": "npm test && npm run test:e2e",
"prepublishOnly": "npm run build:all"
},
"keywords": [
"mcp",
"roblox",
"studio",
"ai",
"model-context-protocol",
"game-development"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aaronaalmendarez/roblox-mcp.git"
},
"homepage": "https://github.com/aaronaalmendarez/roblox-mcp#readme",
"bugs": {
"url": "https://github.com/aaronaalmendarez/roblox-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"
}
}