mirror of
https://github.com/a-sync/game-server-watcher.git
synced 2026-07-22 05:41:43 -04:00
bearer token validation + retry prompt json-editor ui + json schema flush buttons, save config button add mustache dep. fix dev script new config sample: alerts + embed options
33 lines
913 B
JSON
33 lines
913 B
JSON
{
|
|
"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 \"npx tsc --incremental && node ./dist/server.js || exit 1\"",
|
|
"build": "tsc"
|
|
},
|
|
"keywords": [],
|
|
"author": "a-sync@devs.space",
|
|
"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",
|
|
"mustache": "^4.2.0"
|
|
},
|
|
"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"
|
|
}
|
|
}
|