forked from tedztar/mcstatusbot
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·36 lines (36 loc) · 890 Bytes
/
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
{
"name": "mcstatus-discordbot",
"version": "2024.06.07",
"description": "A simple Discord.js bot that pings Minecraft servers using the \"mcping-js\" node module.",
"engines": {
"node": "20.x"
},
"scripts": {
"start": "node index.js",
"format": "prettier --write .",
"deployCommands": "npx run-func ./functions/deployCommands.js deployCommands"
},
"type": "module",
"main": "index.js",
"dependencies": {
"beaver-logs": "^0.1.0",
"bufferutil": "^4.0.8",
"discord-hybrid-sharding": "^2.1.3",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"mongoose": "^8.1.1",
"node-mcstatus": "^1.2.0",
"unidecode": "^1.0.1",
"utf-8-validate": "^6.0.3",
"validator": "^13.9.0",
"zlib-sync": "^0.1.9"
},
"repository": {
"type": "git",
"url": "https://github.com/RahulR100/mcstatusbot.git"
},
"license": "MIT",
"devDependencies": {
"prettier": "^3.0.3"
}
}