-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
64 lines (64 loc) · 2.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "@rbxts/zircon",
"version": "1.0.9",
"description": "",
"main": "out/init.lua",
"scripts": {
"prepare": "npm run build",
"build": "rbxtsc --verbose",
"dev:example": "concurrently npm:watch:example npm:serve:example",
"prod:example": "concurrently npm:watch-prod:example npm:serve:example",
"build:example": "rbxtsc --type=game -p ./example -i ./include",
"build:luau": "rbxtsc --verbose --type=model --rojo=\"luau/build.project.json\"",
"watch:example": "cross-env NODE_ENV=development rbxtsc -w --type=game -p ./example -i ./include",
"watch-prod:example": "rbxtsc -w --type=game -p ./example -i ./include",
"serve:example": "rojo serve ./example/default.project.json --port 34567"
},
"keywords": [
"Runtime scripting",
"Roblox",
"Debugging"
],
"author": "Vorlias",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"types": "out/index.d.ts",
"devDependencies": {
"@rbxts/compiler-types": "2.0.4-types.0",
"@rbxts/types": "^1.0.642",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-roblox-ts": "0.0.34",
"prettier": "^2.7.1",
"rbxts-transform-debug": "~2.0.2",
"rbxts-transform-env": "~2.0.2",
"rbxts-transformer-services": "^1.0.1",
"roblox-ts": "~2.0.4",
"typescript": "~4.8.4"
},
"dependencies": {
"@rbxts/flipper": "^2.0.1",
"@rbxts/log": "^0.6.3",
"@rbxts/maid": "^1.0.0-ts.1",
"@rbxts/message-templates": "^0.3.2",
"@rbxts/net": "^3.0.0-alpha.0",
"@rbxts/roact": ">=1.4.0-ts >= 1.4.1-ts >= 1.4.2-ts",
"@rbxts/roact-hooks": "=0.3.0-ts.2",
"@rbxts/roact-rodux": "=0.2.2-ts.5",
"@rbxts/rodux": "=3.0.0-ts.3",
"@rbxts/rust-classes": "=0.11.2",
"@rbxts/services": "^1.2.0",
"@rbxts/signal": "^1.0.3",
"@rbxts/snapdragon": "2.0.0-beta.1",
"@rbxts/string-utils": "^1.0.3",
"@rbxts/t": "^1.3.5",
"@rbxts/zirconium": "^1.1.0"
}
}