-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.53 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.53 KB
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
{
"name": "@rbxts/ejt",
"version": "2.0.5",
"description": "A library for interacting with difficulties in the EToH Joke Towers wiki.",
"main": "out/init.luau",
"scripts": {
"build": "npm run generate:difficulties & npm run generate:index & rbxtsc",
"watch": "rbxtsc -w",
"test": "npx lune run test.luau",
"docs": "npx typedoc",
"asset-sync": "npx rbxtsas --path=difficulties/image --output=difficulties/assetMap.ts",
"generate:difficulties": "node scripts/generate-difficulties.js",
"generate:index": "node scripts/generate-index-difficulties.js",
"download:images": "node scripts/download-images.js",
"prepare": "npm run build && npm run docs",
"postpublish": "wally publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/evilbocchi/ejt.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"types": "out/index.d.ts",
"files": [
"out",
"!**/*.tsbuildinfo"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@rbxts/compiler-types": "^3.0.0-types.0",
"@rbxts/types": "^1.0.879",
"@typescript-eslint/eslint-plugin": "^8.41.0",
"@typescript-eslint/parser": "^8.41.0",
"eslint": "^9.34.0",
"eslint-plugin-roblox-ts": "^1.1.0",
"jpeg-js": "^0.4.4",
"pngjs": "^6.0.0",
"rbx-lune": "^1.0.0",
"rbxts-asset-sync": "^0.3.3",
"roblox-ts": "^3.0.0",
"sharp": "^0.33.5",
"typedoc": "^0.28.13",
"typedoc-material-theme": "^1.4.0",
"typedoc-plugin-extras": "^4.0.1",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.5.3",
"unidecode": "^0.1.8"
}
}