-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "@rbxts/data-structures",
"version": "1.1.0",
"main": "out/init.lua",
"repository": "https://github.com/howmanysmall/data-structures.git",
"author": "HowManySmall",
"license": "MIT",
"description": "A collection of data structures and algorithms for use in Roblox.",
"scripts": {
"build": "rbxtsc",
"watch": "rbxtsc -w",
"prepublishOnly": "bun run build"
},
"types": "out/index.d.ts",
"files": ["out", "!**/*.tsbuildinfo"],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@biomejs/biome": "1.6.3",
"@rbxts/testez": "^0.4.2-ts.0",
"@rbxts/compiler-types": "^2.3.0-types.0",
"@rbxts/types": "^1.0.766",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-perfectionist": "^2.7.0",
"eslint-plugin-prettier": "^5.1.3",
"eslint-plugin-roblox-ts": "^0.0.36",
"eslint-plugin-unicorn": "^51.0.1",
"prettier": "^3.2.5",
"roblox-ts": "^2.3.0",
"typescript": "^5.4.3"
},
"dependencies": {
"@rbxts/t": "^3.1.1"
}
}