-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.02 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
{
"name": "@jpbm135/hexa-music",
"version": "1.0.0",
"description": "",
"scripts": {
"build:clean": "del-cli dist",
"build:check": "tsc --noEmit",
"build:esm": "swc ./src --out-dir ./dist",
"build": "yarn build:clean && yarn build:check && yarn build:esm",
"lint": "prettier --check . && eslint src --ext ts",
"format": "prettier --write . && eslint src --ext ts --fix",
"fmt": "yarn format",
"start": "env-cmd node --enable-source-maps dist/index.js",
"start:dev": "yarn build && yarn dev",
"dev": "env-cmd node --enable-source-maps dist/index.js",
"update": "yarn upgrade-interactive",
"server:update": "git pull && yarn --immutable && yarn build && pm2 restart",
"postinstall": "patch-package"
},
"type": "module",
"keywords": [],
"author": "JPBM135 <[email protected]>",
"license": "AGPL-3.0",
"private": true,
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"@distube/ytdl-core": "^4.13.5",
"@types/spotify-api": "^0.0.20",
"@yuudachi/framework": "^0.2.9",
"bufferutil": "^4.0.7",
"discord-ytdl-core": "^5.0.4",
"discord.js": "^14.11.0",
"erlpack": "^0.1.4",
"express": "^4.18.2",
"ffmpeg": "^0.0.4",
"ffmpeg-static": "^5.1.0",
"kleur": "^4.1.5",
"node-gyp": "^9.3.1",
"patch-package": "^6.5.1",
"prism-media": "^1.3.5",
"prom-client": "^14.2.0",
"reflect-metadata": "^0.1.13",
"sodium-native": "^4.0.3",
"spotify-web-api-node": "^5.0.2",
"tsyringe": "^4.7.0",
"undici": "^5.22.1",
"utf-8-validate": "^6.0.3",
"yarn": "^1.22.22",
"youtube-ext": "^1.0.11",
"youtube-sr": "^4.3.4",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.59",
"@types/express": "^4.17.17",
"@types/node": "^18.16.14",
"@types/spotify-web-api-node": "^5.0.7",
"cpy-cli": "^4.2.0",
"del-cli": "^5.0.0",
"env-cmd": "^10.1.0",
"eslint": "^8.41.0",
"eslint-config-neon": "^0.1.47",
"prettier": "^2.8.8",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=17.9.0"
},
"packageManager": "[email protected]"
}