-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
48 lines (48 loc) · 1.4 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
{
"name": "healthznerbot",
"version": "2.1.0",
"description": "A discord bot to get periodically updates of the health status of your hetzner cloud machines.",
"main": "main.js",
"engines": {
"node": ">=20.11.0"
},
"scripts": {
"start": "node .",
"dev": "nodemon .",
"build": "tsc -b",
"docker:build": "docker build -t ghcr.io/raphaelbernhart/healthznerbot:$npm_package_version .",
"docker:push": "docker push ghcr.io/raphaelbernhart/healthznerbot:$npm_package_version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/raphaelbernhart/healthznerbot.git"
},
"keywords": [
"discord",
"bot",
"typescript",
"health-check"
],
"author": "Raphael Bernhart",
"license": "ISC",
"bugs": {
"url": "https://github.com/raphaelbernhart/healthznerbot/issues"
},
"homepage": "https://github.com/raphaelbernhart/healthznerbot#readme",
"dependencies": {
"@discordjs/rest": "^2.2.0",
"axios": "^1.6.5",
"consola": "^3.2.3",
"dayjs": "^1.11.10",
"discord.js": "14.14.1",
"dotenv": "^16.3.1",
"hcloud-js": "^1.4.1"
},
"devDependencies": {
"@types/node": "20.11.0",
"@types/ws": "8.5.10",
"nodemon": "3.0.3",
"ts-node": "^10.9.2",
"typescript": "5.3.3"
}
}