-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.12 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": "18h",
"description": "A Next.js style dynamic API router for Koa-based APIs.",
"version": "3.1.3",
"repository": {
"url": "https://github.com/ridafkih/18h"
},
"main": "dist/index.js",
"scripts": {
"build": "tsc --declaration && tsc-alias"
},
"keywords": [
"dynamic",
"api",
"router",
"koa"
],
"author": "Rida F'kih",
"license": "ISC",
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/koa-bodyparser": "^4.3.7",
"@types/node": "^18.11.0",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"ts-node": "^10.7.0",
"tsc-alias": "^1.6.7",
"tsconfig-paths": "^4.0.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@types/koa": "^2.13.4",
"@types/koa-router": "^7.4.4",
"debug": "^4.3.4",
"koa": "^2.13.4",
"koa-bodyparser": "^4.3.0",
"koa-router": "^10.1.1",
"yup": "^0.32.11",
"zod": "^3.17.3"
},
"types": "./dist/index.d.ts",
"directories": {
"lib": "lib"
}
}