-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.56 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
{
"name": "@observermc/hypixel",
"version": "0.0.0",
"description": "A Hypixel API client",
"license": "MIT",
"homepage": "https://github.com/observermc/node-hypixel",
"bugs": "https://github.com/observermc/node-hypixel/issues",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"repository": "github:observermc/node-hypixel",
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint-fix": "npm run lint -- --fix"
},
"engines": {
"node": "^18.8.0",
"npm": "^8.19.1"
},
"dependencies": {
"ioredis": "^5.2.2"
},
"devDependencies": {
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"eslint": "^8.18.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.7.1",
"typescript": "^4.7.4"
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:prettier/recommended"
],
"rules": {
"@typescript-eslint/no-explicit-any": "off"
}
},
"prettier": {
"tabWidth": 4,
"semi": false,
"trailingComma": "all"
}
}