-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "@aidbox/node-server-sdk",
"version": "2.1.2",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"fix": "npm run fix:src && npm run fix:example",
"fix:src": "find src -name *.ts | xargs prettier -w",
"fix:example": "find example/src -name *.ts | xargs prettier -w"
},
"engines": {
"node": ">=16"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/debug": "^4.1.6",
"@types/koa": "^2.13.6",
"@types/koa-bodyparser": "^4.3.10",
"@types/koa-router": "^7.4.4",
"@types/node": "^16.18.25",
"prettier": "^2.8.8",
"supertest": "^6.3.3",
"tslib": "^2.5.0",
"typescript": "^4.8.4"
},
"dependencies": {
"@gquittet/graceful-server": "4.0.5",
"axios": "^1.4.0",
"debug": "^4.3.2",
"dotenv": "^16.0.3",
"koa": "^2.14.2",
"koa-bodyparser": "4.4.0",
"koa-router": "^12.0.0"
},
"directories": {
"example": "example"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Aidbox/node-server-sdk.git"
},
"bugs": {
"url": "https://github.com/Aidbox/node-server-sdk/issues"
},
"homepage": "https://github.com/Aidbox/node-server-sdk#readme",
"description": ""
}