-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.48 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.48 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "hypixel-api-reborn",
"version": "12.0.0-23",
"description": "Feature-rich Hypixel API wrapper for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"module": "dist/index.js",
"keywords": [
"minecraft",
"client",
"hypixel",
"api",
"hypixel-api",
"intellisense"
],
"bugs": {
"url": "https://github.com/Hypixel-API-Reborn/hypixel-api-reborn/issues"
},
"scripts": {
"eslint:check": "pnpm exec eslint . ",
"eslint": "pnpm eslint:check --fix",
"prettier:check": "pnpm exec prettier --check .",
"prettier": "pnpm exec prettier --write .",
"build": "pnpm exec tsc",
"test": "pnpm exec vitest run",
"test:generate": "pnpm exec tsx .github/scripts/generateBasicTests.ts",
"test:coverage": "pnpm exec vitest run --coverage",
"test:coverage:check": "pnpm exec tsx .github/scripts/checkCoverage.ts",
"test:ui": "pnpm exec vitest --ui --coverage",
"scripts:generate:index": "pnpm exec tsx .github/scripts/generateIndexFile.ts",
"scripts:generate:index:api": "pnpm exec tsx .github/scripts/generateAPIIndexFile.ts",
"docgen": "pnpm exec typedoc",
"prepare": "pnpm build"
},
"engines": {
"node": ">=20.19.5"
},
"type": "module",
"packageManager": "pnpm@9.7.1",
"author": "Kathund",
"dependencies": {
"minecraft-data": "^3.102.3",
"node-cache": "^5.1.2",
"prismarine-nbt": "^2.8.0",
"rss-parser": "^3.13.0"
},
"license": "MIT",
"readme": "https://github.com/Hypixel-API-Reborn/hypixel-api-reborn?tab=readme-ov-file#hypixel-api-reborn",
"repository": {
"url": "git+https://github.com/Hypixel-API-Reborn/hypixel-api-reborn.git"
},
"files": [
"dist/**/*"
],
"publisher": "Kathund",
"devDependencies": {
"@8hobbies/typedoc-plugin-404": "^3.2.1",
"@eslint/js": "^9.39.2",
"@j4cobi/eslint-plugin-sort-imports": "^1.0.2",
"@stylistic/eslint-plugin": "^5.7.0",
"@types/eslint": "^9.6.1",
"@types/node": "^20.19.5",
"@types/xml2js": "^0.4.14",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"dotenv": "^17.2.3",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"globals": "^16.5.0",
"prettier": "^3.8.0",
"tsx": "^4.21.0",
"typedoc": "^0.27.9",
"typedoc-material-theme": "^1.4.1",
"typedoc-plugin-rename-defaults": "^0.7.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.0",
"vitest": "^3.2.4",
"xml2js": "^0.6.2"
}
}