forked from Hypixel-API-Reborn/reborn-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.8 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "hypixel-api-reborn",
"version": "12.0.0-2",
"description": "Feature-rich Hypixel API wrapper for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"minecraft",
"client",
"hypixel",
"api",
"hypixel-api",
"intellisense"
],
"bugs": {
"url": "https://github.com/Hypixel-API-Reborn/hypixel-api-reborn/issues"
},
"scripts": {
"lint:check": "npx eslint src/",
"lint": "npx eslint src/ --fix",
"prettier:check": "npx prettier --check src/",
"prettier": "npx prettier --write src/",
"build": "npx tsc",
"test": "npx vitest run",
"test:coverage": "npx vitest run --coverage",
"test:ui": "npx vitest --ui --coverage"
},
"engines": {
"node": ">=20.16.0"
},
"type": "module",
"packageManager": "[email protected]",
"author": "Kathund",
"dependencies": {
"farming-weight": "^0.5.0",
"node-cache": "^5.1.2",
"prismarine-nbt": "^2.5.0",
"rss-parser": "^3.13.0",
"skyhelper-networth": "^1.24.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": {
"@eslint/js": "^9.11.1",
"@j4cobi/eslint-plugin-sort-imports": "^1.0.2",
"@types/eslint": "^9.6.1",
"@types/node": "^20.16.6",
"@types/xml2js": "^0.4.14",
"@vitest/coverage-v8": "^2.1.1",
"@vitest/ui": "^2.1.1",
"dotenv": "^16.4.5",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"prettier": "^3.3.3",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0",
"vitest": "^2.1.1",
"xml2js": "^0.6.2"
}
}