-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 2.08 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 2.08 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
{
"name": "roblox_ts_boilerplate",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"updateDocker": "git submodule update --init --recursive docker && git submodule update --remote --force docker",
"docker": "git submodule update --init --recursive docker && powershell.exe ./docker/buildContainer.ps1",
"dockerLatest": "git submodule update --init --recursive docker && git submodule update --remote --force docker && powershell.exe ./docker/buildContainer.ps1",
"updateRojooSubmodules": "git submodule update --init --recursive Rojoo",
"updateRojooSubmodulesToLatest": "git submodule update --init --recursive Rojoo && git submodule update --remote --force Rojoo",
"updatePlugin": "bash ./Rojoo/plugin/buildInsideMain.sh",
"start": "node ./scripts/start.js",
"build": "npm run tsbuild && npm run rbuild",
"stop": "node ./scripts/stop.js",
"promptStop": "node ./scripts/promptStop.js",
"tsbuild": "rbxtsc",
"tswatch": "rbxtsc -w",
"rbuild": "node ./scripts/rbuild.js",
"rserve": "node ./scripts/rserve.js",
"rssb": "node ./scripts/rsb.js",
"rsync": "rsync -av --delete --include='*/' --include='*.rbxl' --include='*.rbxm' --include='*.rbxlx' --include='*.rbxmx' --exclude='*' ./out/ ./src/",
"rsb": "npm run rssb && npm run rsync",
"save": "node ./scripts/save.js",
"saveRsb": " npm run save && npm run rssb && npm run rsync",
"rkill": "pkill rojo && lsof -ti:34872 | xargs kill -9",
"tms": "node ./scripts/tms.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@rbxts/compiler-types": "^2.3.0-types.1",
"@rbxts/types": "^1.0.791",
"@typescript-eslint/eslint-plugin": "^7.17.0",
"@typescript-eslint/parser": "^7.17.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-roblox-ts": "^0.0.36",
"prettier": "^3.3.3",
"roblox-ts": "^2.3.0",
"typescript": "^5.5.4"
},
"dependencies": {
"@rbxts/set-timeout": "^1.1.2",
"@types/node": "^22.1.0",
"chalk": "^5.3.0",
"dotenv": "^16.4.5",
"http-proxy": "^1.18.1",
"tree-kill": "^1.2.2"
}
}