This repository has been archived by the owner on Mar 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.68 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
{
"name": "hypixel-api-reborn-ts",
"version": "1.0.0",
"description": "Feature-rich Hypixel API wrapper for Node.js with Typescript",
"main": "dist/src/index.js",
"author": "Hypixel API Reborn",
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint . --no-error-on-unmatched-pattern",
"fix": "eslint . --fix",
"check-types": "tsc --pretty --noEmit",
"check-format": "prettier --check .",
"format": "prettier --write .",
"check-all": "npm run check-format && npm run lint && npm run check-types && npm run build",
"test": "mocha tests --exit",
"test:dev": "nodenv --exec mocha tests -- --exit",
"prepare": "husky install"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.6",
"@typescript-eslint/parser": "^5.54.0",
"chai": "^4.3.6",
"eslint": "^8.19.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^8.5.0",
"mocha": "^10.0.0",
"node-env-run": "^4.0.2",
"prettier": "^2.7.1",
"typescript": "^4.7.4",
"husky": "^8.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Hypixel-API-Reborn/hypixel-api-reborn-ts.git"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
},
"keywords": [
"minecraft",
"client",
"hypixel",
"api",
"hypixel-api",
"intellisense",
"typescript",
"ts",
"hypickle"
],
"bugs": {
"url": "https://github.com/Hypixel-API-Reborn/hypixel-api-reborn-ts/issues"
},
"homepage": "https://github.com/Hypixel-API-Reborn/hypixel-api-reborn-ts#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"axios": "^0.27.2"
}
}