-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.46 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/pako",
"version": "0.1.0",
"description": "fork of pako for Roblox-TS",
"main": "out/init.lua",
"scripts": {
"build": "rbxtsc --verbose && bun run build.ts",
"fmt": "prettier -w . && stylua .",
"watch": "rbxtsc -w",
"prepublishOnly": "bun run build"
},
"keywords": [],
"contributors": [
"Andrei Tuputcyn (https://github.com/andr83)",
"Vitaly Puzrin (https://github.com/puzrin)",
"Friedel Ziegelmayer (https://github.com/dignifiedquire)",
"Kirill Efimov (https://github.com/Kirill89)",
"Jean-loup Gailly",
"Mark Adler",
"daimond113 (https://www.daimond113.com) <[email protected]>",
"Erica Marigold <[email protected]>"
],
"author": "",
"license": "(MIT AND Zlib)",
"types": "out/index.d.ts",
"files": [
"out",
"!out/exports.d.ts",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@johnnymorganz/stylua-bin": "^2.0.2",
"@rbxts/compiler-types": "3.0.0-types.0",
"@rbxts/types": "^1.0.813",
"@types/bun": "^1.1.14",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"@typescript-eslint/parser": "^8.18.2",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-roblox-ts": "^0.0.36",
"prettier": "^3.4.2",
"roblox-ts": "^3.0.0",
"typescript": "^5.7.2"
},
"patchedDependencies": {
"@rbxts/[email protected]": "patches/@rbxts%[email protected]"
},
"trustedDependencies": [
"@johnnymorganz/stylua-bin"
]
}