-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
51 lines (51 loc) · 2 KB
/
package.json
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
{
"name": "@rbxts/net",
"version": "3.0.9",
"description": "",
"main": "out/init.lua",
"scripts": {
"prepare": "npm run build",
"yalc": "npm run build && yalc push",
"build": "cross-env NODE_ENV=production rbxtsc --verbose",
"build:luau": "cross-env NODE_ENV=production TYPE=Luau rbxtsc --verbose --type=model --rojo=\"luau/build.project.json\"",
"build:docs": "cd docs && npm run build",
"start:docs": "cd docs && yarn start",
"build:dev": "cross-env NODE_ENV=development rbxtsc --verbose",
"watch:dev": "cross-env NODE_ENV=development rbxtsc -w --verbose",
"build:rbxmx": "npm run build:luau && rojo build luau/build.project.json -o luau.net.rbxmx",
"build:example": "cross-env NODE_ENV=development rbxtsc-dev --type=game -p ./example -i ./include",
"watch:example": "cross-env NODE_ENV=development TYPE=TestTS rbxtsc-dev -w --type=game -p ./example -i ./include",
"serve:example": "rojo serve ./example/default.project.json --port 34567",
"dev:example": "concurrently npm:watch:example npm:serve:example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/roblox-aurora/rbx-net.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/roblox-aurora/rbx-net/issues"
},
"homepage": "https://github.com/roblox-aurora/rbx-net#readme",
"types": "out/index.d.ts",
"devDependencies": {
"@rbxts/compiler-types": "^1.3.3-types.1",
"@rbxts/t": "^1.3.5",
"@rbxts/types": "^1.0.471",
"@typescript-eslint/eslint-plugin": "^4.9.0",
"@typescript-eslint/parser": "^4.9.0",
"concurrently": "^6.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.14.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.2.0",
"eslint-plugin-roblox-ts": "0.0.24",
"prettier": "^2.2.1",
"rbxts-transform-debug": "1.0.0-ts4.5",
"rbxts-transform-env": "1.0.0-ts4.5",
"roblox-ts": "^1.3.3",
"typescript": "^4.5.4"
}
}