-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
51 lines (51 loc) · 1.64 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": "slither",
"version": "1.4.1",
"license": "MIT",
"scripts": {
"lint": "eslint src && prettier --check src",
"compile": "rbxtsc --verbose",
"watch": "rbxtsc -w",
"tarmac": "tarmac sync --target roblox",
"serve": "rojo serve",
"build": "rm -rf out && pnpm compile && rojo build --output place.rbxlx",
"deploy:dev": "pnpm build && mantle deploy --environment canary",
"deploy:prod": "pnpm build && mantle deploy --environment production",
"output:dev": "mantle outputs --environment canary > mantle-output.json",
"output:prod": "mantle outputs --environment production > mantle-output.json"
},
"devDependencies": {
"@rbxts/compiler-types": "3.0.0-types.0",
"@rbxts/types": "^1.0.810",
"@typescript-eslint/eslint-plugin": "^8.8.1",
"@typescript-eslint/parser": "^8.8.1",
"cross-env": "^7.0.3",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-roblox-ts": "^0.0.36",
"eslint-plugin-simple-import-sort": "^12.1.1",
"eslint-plugin-unused-imports": "^4.1.4",
"prettier": "^3.3.3",
"roblox-ts": "3.0.0",
"typescript": "^5.6.2"
},
"dependencies": {
"@rbxts/bitbuffer2": "1.0.0-ts.0",
"@rbxts/flipper": "^2.0.1",
"@rbxts/lapis": "^0.3.6",
"@rbxts/object-utils": "^1.0.4",
"@rbxts/pretty-react-hooks": "^0.6.0",
"@rbxts/react": "^17.2.1",
"@rbxts/react-reflex": "^0.3.4",
"@rbxts/react-roblox": "^17.2.1",
"@rbxts/reflex": "^4.3.1",
"@rbxts/remo": "^1.5.0",
"@rbxts/ripple": "^0.9.1",
"@rbxts/services": "^1.5.5",
"@rbxts/set-timeout": "^1.1.2",
"@rbxts/t": "^3.1.1",
"@rbxts/testez": "0.4.2-ts.0",
"@rbxts/validate-tree": "^2.0.2"
}
}