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
|
{
"name": "skyblock-api",
"version": "1.0.0",
"description": "Wrapper for the Hypixel SkyBlock API",
"main": "index.ts",
"scripts": {
"test": "mocha",
"compile": "tsc",
"start": "npm i --only=prod; node build/index.js"
},
"engines": {
"node" : ">=16.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mat-1/skyblock-api.git"
},
"keywords": [
"hypixel",
"minecraft",
"hypixel",
"skyblock"
],
"author": "mat",
"license": "ISC",
"bugs": {
"url": "https://github.com/mat-1/skyblock-api/issues"
},
"homepage": "https://github.com/mat-1/skyblock-api#readme",
"dependencies": {
"express": "^4.17.1",
"express-rate-limit": "^5.3.0",
"lru-cache": "^6.0.0",
"mongodb": "^4.1.1",
"node-cache": "^5.1.2",
"node-fetch": "^2.6.1",
"prismarine-nbt": "^1.6.0",
"uuid": "^8.3.2",
"queue-promise": "^2.2.1"
},
"devDependencies": {
"@types/express": "^4.17.13",
"@types/express-rate-limit": "^5.1.3",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.2",
"@types/mongodb": "^4.0.7",
"@types/lru-cache": "^5.1.1",
"@types/node-fetch": "^2.5.12",
"dotenv": "^10.0.0",
"mocha": "^9.1.0",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
}
}
|