-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.55 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
{
"name": "flow-music",
"version": "2.1.1",
"main": "dist/index.js",
"license": "MIT",
"scripts": {
"start": "node dist/index",
"start:notrace": "node dist/index",
"compile": "yarn --silent && rimraf dist && tsup",
"compileLive": "rimraf dist && tsc",
"dev": "yarn compile && yarn start:notrace --dev",
"prod": "yarn compile && yarn start",
"prod:notrace": "yarn compile && yarn start:notrace",
"commit": "git add . && git commit -m"
},
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"module": "dist/index.mjs",
"dependencies": {
"@discordjs/builders": "^1.6.4",
"@discordjs/voice": "^0.16.0",
"@lavalink/encoding": "^0.1.2",
"axios": "^1.4.0",
"blapi": "^3.1.2",
"bufferutil": "^4.0.7",
"discord.js": "^14.12.1",
"dotenv": "^16.3.1",
"genius-lyrics": "^4.4.3",
"libsodium-wrappers": "^0.7.11",
"lodash": "^4.17.21",
"moment": "^2.29.4",
"moment-duration-format": "^2.3.2",
"ms": "^2.1.3",
"require-all": "^3.0.0",
"serverless-mysql": "^1.5.5",
"supports-color": "^9.4.0",
"systeminformation": "^5.18.15",
"ws": "^8.13.0",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/node": "^20.4.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"eslint": "^8.46.0",
"ffmpeg-static": "^5.1.0",
"rimraf": "^5.0.1",
"terser": "^5.19.2",
"tsup": "^7.2.0",
"typescript": "^5.1.6"
}
}