forked from a-sync/game-server-watcher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
30 lines (30 loc) · 863 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
{
"name": "game-server-watcher",
"version": "1.0.0",
"description": "A simple discord/telegram bot that can be hosted on a free service to monitor your game servers and players in style 😎",
"main": "src/server",
"scripts": {
"start": "tsc && node ./dist/server.js",
"dev": "nodemon -e ts --exec \"tsc --incremental && node ./dist/server.js || exit 1\""
},
"keywords": [],
"author": "[email protected]",
"license": "ISC",
"dependencies": {
"@commonify/lowdb": "^3.0.0",
"discord.js": "^12.5.3",
"dotenv": "^16.0.0",
"gamedig": "github:a-sync/node8-gamedig",
"got": "^11.8.3",
"grammy": "^1.7.1"
},
"devDependencies": {
"@types/gamedig": "^3.0.2",
"@types/node": "12.20",
"nodemon": "^2.0.15",
"typescript": "^4.6.3"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}