-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "hypixel-api-reborn",
"version": "11.3.7",
"description": "Feature-rich Hypixel API wrapper for Node.js",
"main": "./src/index.js",
"types": "./typings/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": "npx eslint src/",
"lint:fix": "npx eslint src/ --fix",
"tests": "npx mocha tests --exit --recursive",
"docgen": " npx docgen -s src/ --custom docs/index.yml -o ./master.json",
"prettier": "npx prettier --write src/ typings/",
"prettier:check": "npx prettier --check src/ typings/"
},
"engines": {
"node": ">=18.18.0"
},
"author": "StavZ",
"dependencies": {
"node-cache": "^5.1.2",
"node-fetch": "^3.3.2",
"prismarine-nbt": "^2.6.0",
"rss-parser": "^3.13.0",
"skyhelper-networth": "^1.26.0"
},
"license": "MIT",
"readme": "https://hypixel.stavzdev.me/",
"repository": {
"url": "https://github.com/Hypixel-API-Reborn/hypixel-api-reborn"
},
"publisher": "StavZ",
"devDependencies": {
"@discordjs/docgen": "github:discordjs/docgen",
"@types/node": "^22.9.0",
"chai": "^4.3.4",
"eslint": "^9.14.0",
"eslint-plugin-jsdoc": "^50.5.0",
"globals": "^15.12.0",
"mocha": "^10.4.0",
"node-env-run": "^4.0.2",
"path": "^0.12.7",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}