-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 2.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "discordbotz",
"version": "9.7.6",
"description": "A discord playback bot with a UI.",
"main": "dist/src/main/index.js",
"scripts": {
"start": "tsc && node ./dist/index.js",
"dev": "tsc -p tsconfig.dev.json && node -r source-map-support/register dist/src/main/index.js --dev",
"dev-test": "tsc -p tsconfig.dev.json && node -r source-map-support/register dist/src/main/index.js --dev --test 987120641549430824",
"pm2": "bash ./scripts/pm2-startup.bash vibe",
"pm2-dev": "tsc -p tsconfig.dev.json && pm2 delete vibeDEV && echo running pm2 script...\npm2 start dist/src/main/index.js --name vibeDEV -- --dev && pm2 monit",
"test": "tsc -p tsconfig.dev.json && jest --detectOpenHandles --setupFiles dotenv/config --forceExit",
"format": "prettier --config .prettierrc 'src/**/*.ts' --write",
"release:patch": "npm run test && npm version patch -m \"chore(release): %s\"",
"release:minor": "npm run test && npm version minor -m \"chore(release): %s\"",
"postinstall": "node scripts/postNodeInstallScript.js && bash scripts/install-hooks.bash"
},
"engines": {
"node": ">=18.x"
},
"author": "",
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.9.0",
"@discordjs/voice": "^0.16.1",
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"@hoursofza/djs-common": "~1.3.8",
"@types/fluent-ffmpeg": "^2.1.24",
"axios": "^1.6.0",
"cheerio": "^1.0.0-rc.12",
"discord.js": "~14.14.1",
"dotenv": "^16.0.3",
"ffmpeg-static": "^5.2.0",
"fluent-ffmpeg": "^2.1.2",
"genius-lyrics": "^4.4.0",
"googleapis": "^110.0.0",
"isomorphic-unfetch": "^4.0.2",
"leven": "~3.1.0",
"libsodium": "^0.7.10",
"libsodium-wrappers": "^0.7.10",
"m3u8stream": "^0.8.6",
"node-gyp": "^9.3.0",
"node-os-utils": "^1.3.7",
"opusscript": "^0.0.8",
"play-dl": "^1.9.7",
"pm2": "^5.2.2",
"scdl-core": "^1.1.0",
"soundcloud-downloader": "^1.0.0",
"spotify-url-info": "^3.2.6",
"spotify-web-api-node": "^5.0.2",
"ts-jest": "^29.1.0",
"twitch-m3u8": "^1.1.5",
"unpipe": "^1.0.0",
"xml2js": "~0.5.0",
"ytdl-core": "^4.11.5",
"ytdl-core-discord": "^1.3.1",
"ytpl": "^2.3.0",
"ytsr": "^3.8.2"
},
"devDependencies": {
"@types/jest": "^29.5.0",
"jest": "^29.5.0",
"prettier": "^2.8.3",
"source-map-support": "^0.5.21",
"typescript": "~5.3.3"
}
}