-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
46 lines (46 loc) · 1.21 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
{
"name": "kaogeek-discord-bot",
"version": "1.0.0",
"private": true,
"description": "Discord bot for KaoGeek, built with TypeScript",
"type": "module",
"main": "dist/client.js",
"scripts": {
"dev": "tsx src/client.ts",
"build": "rimraf dist && tsc --build",
"start": "NODE_ENV=production node dist/client.js",
"lint": "eslint .",
"format": "eslint . --fix",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@(-.-)/env": "0.3.2",
"@keyv/sqlite": "3.6.5",
"discord.js": "14.11.0",
"dotenv": "16.0.3",
"glob": "^10.2.4",
"keyv": "4.5.2",
"zod": "3.21.4"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "4.1.1",
"@tsconfig/node18": "2.0.1",
"@types/eslint": "^8.37.0",
"@types/node": "18.16.7",
"@typescript-eslint/eslint-plugin": "5.59.6",
"@typescript-eslint/parser": "5.59.6",
"eslint": "8.40.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-import": "2.27.5",
"eslint-plugin-prettier": "4.2.1",
"prettier": "2.8.8",
"rimraf": "5.0.0",
"tsx": "3.12.7",
"typescript": "5.0.4"
},
"engines": {
"node": "^16.13 || ^18.12",
"pnpm": ">=8"
},
"packageManager": "pnpm@8.5.1"
}