forked from nik9play/vk-music-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 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
{
"name": "vk-music-bot-next",
"version": "5.1.0",
"main": "index.js",
"author": "nik9",
"license": "MIT",
"type": "module",
"engines": {
"node": ">=18.0.0 <19"
},
"scripts": {
"start": "node --inspect=0.0.0.0 dist/index.js",
"build": "tsc",
"dev": "tsc && NODE_ENV=development node --enable-source-maps --inspect=0.0.0.0 -r dotenv/config ./dist/index.js",
"prepare": "husky install",
"register-commands": "tsc && NODE_ENV=development node --enable-source-maps -r dotenv/config dist/scripts/slashCommandsUtils.js"
},
"dependencies": {
"@hono/node-server": "^1.1.1",
"@hono/zod-validator": "^0.1.8",
"@influxdata/influxdb-client": "^1.33.2",
"bufferutil": "^4.0.7",
"discord.js": "^14.13.0",
"dotenv": "^16.3.1",
"glob": "^10.3.3",
"hono": "^3.5.4",
"indomitable": "^4.0.3",
"ioredis": "^5.3.2",
"mongoose": "^7.4.5",
"pino": "^8.15.0",
"pino-loki": "^2.1.3",
"pino-pretty": "^10.2.0",
"shoukaku": "github:nik9play/Shoukaku",
"undici": "^5.23.0",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.8",
"zod": "^3.22.2"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@typescript-eslint/eslint-plugin": "^6.4.1",
"@typescript-eslint/parser": "^6.4.1",
"cross-env": "^7.0.3",
"eslint": "^8.48.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^8.0.3",
"lint-staged": "^14.0.1",
"prettier": "3.0.2",
"typescript": "^5.2.2"
},
"lint-staged": {
"*.{js,ts}": "eslint --cache --fix",
"*.{js,ts,css,md}": "prettier --write"
}
}