-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
58 lines (58 loc) · 1.54 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
{
"name": "discord-player-bot",
"version": "3.4.5",
"description": "A discord music bot built using discord.js and discord-player",
"main": "src/index.js",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --write",
"doc": "node scripts/cmd-doc.js",
"build": "podman build -t lakhindarpal/discord-player-bot:latest .",
"run": "podman run --env-file .env lakhindarpal/discord-player-bot:latest",
"register": "node scripts/register.js",
"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": "GPL-3.0-or-later",
"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.5.1",
"discord-player": "^6.7.1",
"discord-player-youtubei": "^1.3.7",
"discord.js": "^14.16.3",
"dotenv": "^16.4.7",
"glob": "^11.0.0",
"mediaplex": "^0.0.9"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.14.0",
"prettier": "3.4.1"
}
}