-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 848 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
38
39
40
41
{
"name": "ts-swagger-doc",
"version": "1.0.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"test": "ts-node sample/index.ts",
"build": "rm -rf lib/ && tsc",
"prepublish": "npm run build"
},
"files": [
"lib/"
],
"typings": "lib/index.d.ts",
"keywords": [
"typescript",
"ts",
"swagger",
"api",
"document",
"midwayjs",
"koatty"
],
"homepage": "https://github.com/Zsynuting/ts-swagger-doc",
"author": "",
"license": "ISC",
"dependencies": {
"koa": "^2.13.4",
"koa-router": "^10.1.1",
"koa-static": "^5.0.0",
"reflect-metadata": "^0.1.13",
"swagger-ui-koa": "^0.0.1",
"ts-openapi": "^1.1.0",
"typescript": "^4.6.2"
},
"devDependencies": {
"ts-node": "^10.7.0",
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4"
}
}