-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
49 lines (49 loc) · 1.23 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
{
"name": "discord-dumbot",
"version": "1.0.0",
"description": "Discord Dumbot is a bot that can play music and roll dice.",
"main": "index.js",
"type": "module",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "node test.js",
"lint": "eslint .",
"format": "prettier --write .",
"lint:fix": "eslint --fix . && npm run format"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Mateo-Wallace/Discord-DumBot.git"
},
"keywords": [
"discord",
"bot"
],
"author": "Mateo-Wallace",
"license": "MIT",
"bugs": {
"url": "https://github.com/Mateo-Wallace/Discord-DumBot/issues"
},
"homepage": "https://github.com/Mateo-Wallace/Discord-DumBot#readme",
"engines": {
"node": "20.x"
},
"dependencies": {
"@discord-player/extractor": "^4.5.0",
"@mateo-wallace/rpg-dice-js": "^2.0.1",
"discord-player": "6.7.1",
"discord-player-youtubei": "^1.2.6",
"discord.js": "^14.1.2",
"dotenv": "^16.0.3",
"ffmpeg-static": "^5.2.0",
"mediaplex": "^0.0.9",
"ms": "^2.1.3"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"nodemon": "^2.0.20",
"prettier": "^3.3.3"
}
}