-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 752 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 752 Bytes
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
{
"name": "musicbot",
"version": "1.0.0",
"description": "General purpose music bot",
"type": "module",
"main": "./dist/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"listGuilds": "node ./src/util/listGuilds.js"
},
"author": "C. Michael",
"license": "ISC",
"dependencies": {
"@discordjs/voice": "^0.16.0",
"discord.js": "^14.11.0",
"dotenv": "^16.0.0",
"ffmpeg-static": "^4.4.1",
"fs": "^0.0.1-security",
"libsodium-wrappers": "^0.7.10",
"node-fetch": "^3.2.10",
"spotify-uri": "^3.0.2",
"spotify-web-api-node": "^5.0.2",
"yt-search": "^2.10.3",
"ytdl-core": "^4.11.4"
},
"devDependencies": {
"eslint": "^7.32.0"
}
}