-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "discord-music-bot",
"version": "1.0.0",
"description": "A Discord music bot built with Python and Discord.py for seamless music playback experience on servers.",
"main": "bot/main.js",
"scripts": {
"start": "node bot/main.js",
"dev": "nodemon bot/main.js",
"lint": "eslint .",
"format": "prettier --write .",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/spectra-ai-codegen/project-1722833603841-x66u2b.git"
},
"author": "Drix10",
"license": "MIT",
"bugs": {
"url": "https://github.com/spectra-ai-codegen/project-1722833603841-x66u2b/issues"
},
"homepage": "https://github.com/spectra-ai-codegen/project-1722833603841-x66u2b#readme",
"dependencies": {
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"ffmpeg-static": "^5.0.2",
"ytdl-core": "^5.0.3",
"node-fetch": "^3.3.0",
"youtube-search-api": "^1.2.1",
"soundcloud-downloader": "^2.1.0",
"spotify-web-api-node": "^5.0.2",
"axios": "^1.3.4"
},
"devDependencies": {
"eslint": "^8.38.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"jest": "^29.5.0",
"nodemon": "^2.0.20",
"prettier": "^2.8.7",
"eslint-plugin-jest": "^27.2.2"
}
}