-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.74 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
{
"name": "@rbxts/nucleus",
"version": "0.1",
"description": "",
"author": "",
"license": "ISC",
"keywords": [],
"exports": "./out/index.d.ts",
"main": "out/init.lua",
"types": "out/index.d.ts",
"files": [
"!**/*.tsbuildinfo",
"!**/testBootstrap.*",
"!out/services.d.ts",
"out"
],
"scripts": {
"build": "rbxtsc --verbose",
"watch": "rbxtsc -w",
"publish": "npm run build && mkdir build & npm pack --pack-destination=build",
"test:build": "rbxtsc --verbose --type game --rojo studio.project.json",
"test:watch": "rbxtsc -w --verbose --type game --rojo studio.project.json",
"test:serve": "rojo serve ./studio.project.json",
"test:rojo": "mkdir build & npm run test:build && rojo build -o ./build/test.rbxlx studio.project.json",
"test:run": "set RUST_BACKTRACE=full & dir & run-in-roblox --place ./build/test.rbxlx --script ./out/testBootstrap.server.lua",
"test": "npm run publish && npm run test:build && npm run test:rojo"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@rbxts/object-utils": "^1.0.4",
"@rbxts/services": "^1.5.1",
"@rbxts/sift": "^0.0.4",
"@rbxts/stacks-and-queues": "^1.0.5",
"@rbxts/t": "^3.1.0"
},
"devDependencies": {
"@rbxts/compiler-types": "2.2.0-types.0",
"@rbxts/testez": "^0.4.2-ts.0",
"@rbxts/types": "^1.0.738",
"@roblox-ts/eslint-config": "github:christopher-buss/roblox-ts-eslint-config",
"@typescript-eslint/eslint-plugin": "^6.17.0",
"@typescript-eslint/parser": "^6.17.0",
"eslint": "npm:[email protected]",
"eslint-flat-config-viewer": "^0.1.4",
"eslint-plugin-format": "^0.1.0",
"eslint-ts-patch": "8.56.0-0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"roblox-ts": "^2.2.0",
"simple-git-hooks": "^2.9.0",
"typescript": "5.2.2"
}
}