-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.28 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
{
"name": "roblox-mcp-server",
"version": "1.0.0",
"description": "An MCP server for interacting with Roblox Game Clients",
"type": "module",
"main": "dist/index.js",
"bin": {
"roblox-mcp": "dist/index.js"
},
"files": [
"dist",
"connector.luau",
"README.md"
],
"scripts": {
"build": "node scripts/clean-dist.mjs && tsc && node scripts/copy-assets.mjs",
"dev": "node scripts/dev-server.mjs",
"dev:dist": "bun run build && bun scripts/dev-server.mjs --dist",
"install:tailscale": "bun scripts/install-tailscale.mjs",
"install:harness": "node scripts/run-with-bun.mjs scripts/install-harnesses.mjs",
"install:harnesses": "node scripts/run-with-bun.mjs scripts/install-harnesses.mjs",
"getscript": "bun scripts/install-harnesses.mjs --get-script",
"start": "node dist/index.js",
"update": "bun scripts/install-harnesses.mjs --update",
"prepare": "bun run build"
},
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "bun@1.3.13",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.1",
"@opentui/core": "^0.4.1",
"ws": "^8.18.3",
"zod": "^4.3.4"
},
"devDependencies": {
"@types/node": "^25.0.3",
"@types/ws": "^8.18.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}