-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.37 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
{
"name": "support-bot",
"version": "3.0.0",
"description": "",
"main": "index.ts",
"types": "src/types/main.d.ts",
"scripts": {
"start": "npx tsx index.ts",
"lint:check": "npx eslint src/ index.ts",
"lint": "npx eslint src/ index.ts --fix",
"prettier": "npx prettier --write src/ index.ts",
"prettier:check": "npx prettier --check src/ index.ts",
"build": "npx tsc --build",
"dev": "npx nodemon"
},
"keywords": [],
"author": "Kathund",
"license": "MIT",
"engines": {
"node": ">=20.17.0",
"pnpm": ">=9.9.0",
"npm": "forbidden, use pnpm instead",
"yarn": "forbidden, use pnpm instead",
"bun": "forbidden, use pnpm instead"
},
"packageManager": "[email protected]",
"type": "module",
"dependencies": {
"chalk": "^5.3.0",
"discord.js": "^14.16.3",
"discord.js-docs": "github:Hypixel-API-Reborn/discord.js-docs",
"mongoose": "^8.8.3",
"ms": "^2.1.3",
"node-cron": "^3.0.3",
"winston": "^3.17.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/eslint": "^9.6.1",
"@types/ms": "^0.7.34",
"@types/node": "^22.10.1",
"@types/node-cron": "^3.0.11",
"eslint": "^9.16.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.13.0",
"nodemon": "^3.1.7",
"prettier": "^3.4.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
}
}