-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 938 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
{
"name": "minecraft-status-bot",
"version": "2.0.0",
"description": "A discord bot that displays the number of players a server has.",
"main": "app.js",
"type": "module",
"scripts": {
"start": "npm run build && node -r tsconfig-paths/register build/bot",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prettier": "prettier --write **/*.{ts,js,json,yml,yaml}",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/augusdogus/mcstatusbot.git"
},
"author": "AugusDogus, lerokko, Huskydog9988",
"license": "MIT",
"bugs": {
"url": "https://github.com/augusdogus/mcstatusbot/issues"
},
"homepage": "https://github.com/augusdogus/mcstatusbot#readme",
"dependencies": {
"discord.js": "^13.3.1",
"dotenv": "^10.0.0",
"gamedig": "^3.0.7"
},
"devDependencies": {
"@types/gamedig": "^3.0.1",
"tsconfig-paths": "^3.12.0",
"typescript": "^4.5.2"
}
}