-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.69 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
69
70
71
72
73
74
75
76
{
"name": "hypixel_guild_bot",
"version": "1.0.0",
"scripts": {
"build": "tsc",
"dev": "ts-node-dev src",
"lint": "prettier src --write && eslint src"
},
"dependencies": {
"@zikeji/hypixel": "^3.1.1",
"axios": "^0.27.2",
"bufferutil": "^4.0.8",
"chalk": "^4.1.2",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"erlpack": "github:discord/erlpack",
"json5": "^2.2.3",
"minecraft-data": "^3.48.0",
"minecraft-protocol": "^1.44.0",
"mineflayer": "^4.14.0",
"pino": "^8.16.1",
"pino-pretty": "^10.2.3",
"skyhelper-networth": "^1.16.6",
"socks": "^2.7.1",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.9"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"eslint": "^8.53.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.0.3",
"ts-node-dev": "^2.0.0",
"typescript": "^5.2.2"
},
"prettier": {
"singleQuote": false,
"semi": true,
"trailingComma": "all",
"jsxSingleQuote": true,
"printWidth": 600,
"useTabs": true,
"bracketSpacing": true,
"proseWrap": "always",
"tabWidth": 4
},
"eslintConfig": {
"root": true,
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint",
"prettier"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"prettier/prettier": "error",
"no-empty-pattern": "off",
"@typescript-eslint/explicit-module-boundary-types": "off",
"@typescript-eslint/no-non-null-assertion": "off",
"@typescript-eslint/no-var-requires": 0
}
},
"engines": {
"node": "18"
},
"keywords": [
"hypixel",
"hypixel-discord-bridge",
"hypixel-guild-bot"
]
}