-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 1023 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
35
36
37
{
"name": "discord-statuspage",
"version": "1.0.0",
"description": "A little coding project which uses the API of StatusPage.io to send a message via a discord webhook into a channel if a new incident happens.",
"main": "./index.ts",
"private": "true",
"scripts": {
"start": "npx ts-node ./index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fh-prv/discord-statuspage.git"
},
"keywords": [
"discord",
"statuspage",
"checker"
],
"author": "fh.prv <info@fhprv.de>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fh-prv/discord-statuspage/issues"
},
"homepage": "https://github.com/fh-prv/discord-statuspage#readme",
"dependencies": {
"axios": "^1.3.3",
"discord.js": "^14.7.1",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"eslint": "^8.34.0",
"eslint-plugin-import": "^2.27.5"
}
}