-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 735 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 735 Bytes
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
{
"name": "openrbx",
"version": "1.3.0",
"author": "kanosy",
"repository": {
"type": "github",
"url": "https://github.com/kanosy88/OpenRBX",
"directory": "main"
},
"main": "src/index.ts",
"bin": {
"openrbx": "src/index.ts"
},
"description": "CLI tool to launch Roblox Studio with place and universe IDs",
"engines": {
"bun": ">=1.0.0"
},
"keywords": [
"roblox",
"studio",
"cli",
"launcher",
"development"
],
"license": "MIT",
"scripts": {
"dev": "bun run src/index.ts",
"install-global": "bun link"
},
"type": "module",
"devDependencies": {
"@types/node": "^24.1.0"
},
"dependencies": {
"commander": "^14.0.0",
"open": "^10.2.0"
}
}