forked from roblox-aurora/zircon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.36 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
65
66
67
68
69
{
"name": "@cwyvern/zircon",
"version": "2.0.0",
"description": "",
"keywords": [
"Runtime scripting",
"Roblox",
"Debugging"
],
"license": "MIT",
"author": "Vorlias",
"contributors": [
"vorlias",
"venerith"
],
"type": "module",
"main": "out/init.lua",
"types": "out/index.d.ts",
"scripts": {
"build": "rbxtsc --verbose",
"build:example": "rbxtsc --type=game -p ./example -i ./include",
"build:luau": "rbxtsc --verbose --type=model --rojo=\"luau/build.project.json\"",
"dev:example": "concurrently npm:watch:example npm:serve:example",
"lint": "eslint --max-warnings 0 --flag unstable_ts_config",
"prepare": "npm run build",
"prod:example": "concurrently npm:watch-prod:example npm:serve:example",
"serve:example": "rojo serve ./example/default.project.json --port 34567",
"watch": "rbxtsc -w --type=game --rojo=test.project.json",
"watch-prod:example": "rbxtsc -w --type=game -p ./example -i ./include",
"watch:example": "cross-env NODE_ENV=development rbxtsc -w --type=game -p ./example -i ./include"
},
"dependencies": {
"@cwyvern/zirconium": "2.0.0-indev.2",
"@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.4-ts.0",
"@rbxts/roact-hooks": "0.5.1-ts.0",
"@rbxts/roact-rodux": "0.2.2-ts.8",
"@rbxts/rodux": "3.0.0-ts.3",
"@rbxts/rust-classes": "0.13.0",
"@rbxts/services": "1.5.5",
"@rbxts/signal": "^1.0.3",
"@rbxts/snapdragon": "2.0.0-beta.1",
"@rbxts/string-utils": "^1.0.3",
"@rbxts/t": "3.1.1"
},
"devDependencies": {
"@eslint-react/eslint-plugin": "1.14.2",
"@isentinel/eslint-config": "0.8.0",
"@rbxts/compiler-types": "3.0.0-types.0",
"@rbxts/types": "1.0.813",
"concurrently": "^5.3.0",
"cross-env": "^7.0.3",
"eslint": "9.13.0",
"jiti": "2.3.3",
"rbxts-transform-debug": "github:roblox-aurora/rbxts-transform-debug#9cc03b58fe9eb29a24d94d0290abab3ea5950562",
"rbxts-transform-env": "github:roblox-aurora/rbxts-transform-env#50937a3b81e92c5b13ed35807ea0426dac91c985",
"rbxts-transformer-services": "^1.0.1",
"roblox-ts": "3.0.0",
"typescript": "5.5.4"
},
"packageManager": "pnpm@9.12.3+sha512.cce0f9de9c5a7c95bef944169cc5dfe8741abfb145078c0d508b868056848a87c81e626246cb60967cbd7fd29a6c062ef73ff840d96b3c86c40ac92cf4a813ee",
"publishConfig": {
"access": "public"
}
}