-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 850 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "roickbot",
"version": "0.1.0",
"private": true,
"description": "Desktop app + MCP server that lets Claude / Claude Code control Roblox Studio.",
"license": "MIT",
"workspaces": [
"packages/core",
"packages/desktop"
],
"scripts": {
"build": "npm run build --workspace packages/core && npm run build --workspace packages/desktop",
"build:core": "npm run build --workspace packages/core",
"build:desktop": "npm run build --workspace packages/desktop",
"typecheck": "npm run typecheck --workspace packages/core && npm run typecheck --workspace packages/desktop",
"test": "npm run test --workspace packages/core",
"build:plugin": "rojo build plugin/default.project.json -o dist/Roickbot.rbxmx",
"dev:core": "npm run dev --workspace packages/core"
},
"engines": {
"node": ">=20"
}
}