-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1001 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": "resonance-chamber",
"version": "1.0.0",
"description": "Receives webhooks, processes the ones it knows about and forwards them to another webhook.",
"dependencies": {
"@koa/router": "^12.0.0",
"axios": "^1.4.0",
"koa": "^2.14.2",
"koa-json": "^2.0.2",
"level": "^8.0.0",
"raw-body": "^2.5.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/koa": "^2.13.7",
"@types/koa-json": "^2.0.20",
"@types/koa__router": "^12.0.0",
"@types/node": "^20.4.5",
"@types/yargs": "^17.0.24",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.46.0",
"tslib": "^2.6.1",
"typescript": "^5.1.6"
},
"scripts": {
"dev": "ENV=dev ./build.sh",
"build": "./build.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"bin": {
"resonance-chamber": "./build/main.js"
},
"keywords": [],
"author": "Octavia Togami",
"license": "GPL-3.0-or-later"
}