forked from LakhindarPal/discord-player-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.39 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
{
"name": "discord-player-bot",
"version": "3.0.0",
"description": "A discord music bot built using discord.js and discord-player",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint src/**/*.js",
"lint:fix": "eslint src/**/*.js --fix",
"format": "prettier . --write",
"start": "node .",
"dev": "node --watch-path=./src ."
},
"engines": {
"node": "20.x"
},
"keywords": [
"discord-bot",
"discord.js",
"discord-js",
"discord-music-bot",
"music-bot",
"discord-player",
"discord",
"bot",
"music"
],
"author": "Lakhindar Pal",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/LakhindarPal/discord-player-bot.git"
},
"bugs": {
"url": "https://github.com/LakhindarPal/discord-player-bot/issues"
},
"homepage": "https://github.com/LakhindarPal/discord-player-bot#readme",
"dependencies": {
"@discord-player/extractor": "^4.4.7",
"@distube/ytdl-core": "^4.13.4",
"discord-player": "^6.6.10",
"discord-player-deezer": "^1.0.1",
"discord-player-tidal": "^0.1.0",
"discord.js": "^14.15.3",
"dotenv": "^16.4.5",
"glob": "^10.4.1",
"mediaplex": "^0.0.9"
},
"devDependencies": {
"@eslint/js": "^9.4.0",
"eslint": "^9.4.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.4.0",
"prettier": "3.3.1"
}
}