This repository has been archived by the owner on Sep 29, 2024. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
60 lines (60 loc) · 1.74 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
{
"name": "music-slash-bot",
"version": "3.0.0",
"description": "a simple music bot using the slash command",
"main": "app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node app.js",
"updatebot": "node scripts/updatebot.js",
"lint": "eslint ./",
"lint:fix": "eslint --fix ./",
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"dev": "nodemon app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/HELLSNAKES/Music-Slash-Bot.git"
},
"author": "HELLSNAKES",
"license": "MIT",
"bugs": {
"url": "https://github.com/HELLSNAKES/Music-Slash-Bot/issues"
},
"homepage": "https://github.com/HELLSNAKES/Music-Slash-Bot#readme",
"dependencies": {
"@discordjs/opus": "^0.8.0",
"@discordjs/rest": "^0.1.0-canary.0",
"@discordjs/voice": "^0.16.0",
"@distube/soundcloud": "^1.1.0",
"@distube/spotify": "^1.2.1",
"@distube/yt-dlp": "^0.0.2",
"@distube/ytdl-core": "^4.11.9",
"discord-api-types": "^0.26.0",
"discord.js": "^13.6.0",
"distube": "^3.3.4",
"dotenv": "^10.0.0",
"express": "^4.17.3",
"ffmpeg-static": "^4.4.0",
"genius-lyrics-api": "^3.2.0",
"humanize-duration": "^3.27.0",
"libsodium-wrappers": "^0.7.9",
"moment": "^2.29.4",
"node-fetch": "^2.6.7",
"string-progressbar": "^1.0.4",
"ytdl-core": "^4.10.1"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"all-contributors-cli": "^6.20.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"nodemon": "^2.0.14"
}
}