-
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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
50
51
52
53
{
"name": "game-server-watcher",
"version": "3.1.21",
"description": "A simple discord/telegram/slack bot that can be hosted on a free service to monitor your game servers and players in style. 😎",
"exports": "./dist/server.js",
"type": "module",
"scripts": {
"start": "node ./dist/server.js",
"dev": "nodemon -e ts --exec \"npx tsc --incremental && node ./dist/server.js || exit 1\"",
"build": "tsc"
},
"keywords": [
"game-server",
"gamedig",
"discord-bot",
"telegram-bot",
"slack-bot",
"steam-api"
],
"repository": {
"type": "git",
"url": "git://github.com/a-sync/game-server-watcher.git"
},
"author": "[email protected]",
"license": "AGPL-3.0-or-later",
"dependencies": {
"@slack/bolt": "^3.17.1",
"axios": "^1.6.5",
"discord.js": "^14.12.1",
"dotenv": "^16.3.2",
"gamedig": "^5.1.4",
"grammy": "^1.20.3",
"lowdb": "^6.1.1",
"mustache": "^4.2.0",
"neoip": "^3.0.1"
},
"devDependencies": {
"@types/gamedig": "^5.0.0",
"@types/node": "^16.18.73",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=16.20.0"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"erlpack": "github:discord/erlpack",
"utf-8-validate": "^6.0.3",
"zlib-sync": "^0.1.9"
}
}