-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
90 lines (90 loc) · 2.35 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "koa-zod-router",
"version": "2.3.0",
"description": "",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/jakefenley/koa-zod-router"
},
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --format cjs,esm --dts",
"build:turbo": "turbo run build",
"example": "ts-node-dev --project examples/tsconfig.json examples/index.ts",
"test": "mocha",
"test:coverage": "nyc --reporter=text mocha",
"test:ci": "nyc --reporter=lcov mocha",
"test:turbo": "turbo run test:ci",
"lint": "eslint \"src/**/*.ts\" --cache && prettier --check \"src/**/*.ts\"",
"lint:turbo": "turbo run lint",
"release": "pnpm build:turbo && npm publish",
"release:beta": "pnpm build:turbo && npm publish --tag beta"
},
"author": {
"name": "Jake Fenley",
"url": "https://github.com/jakefenley",
"email": "jakefdev@gmail.com"
},
"license": "MIT",
"dependencies": {
"@koa/router": "^12.0.1",
"@types/formidable": "^2.0.6",
"@types/koa-bodyparser": "^4.3.11",
"@types/koa__router": "^12.0.2",
"formidable": "^2.1.2",
"koa-bodyparser": "^4.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@changesets/cli": "^2.26.2",
"@types/koa": "^2.13.10",
"@types/node": "^18.18.6",
"@types/supertest": "^2.0.15",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"coveralls": "^3.1.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"koa": "^2.14.2",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0",
"prettier": "^3.0.3",
"supertest": "^6.3.3",
"ts-node-dev": "^2.0.0",
"tsup": "^7.2.0",
"turbo": "^1.10.16",
"typescript": "5.2.2"
},
"peerDependencies": {
"koa": ">=2.14.1 <3.x",
"zod": ">=3.22.4 <4.x"
},
"keywords": [
"nodejs",
"api",
"http",
"middleware",
"koa",
"router",
"json",
"typescript",
"schema",
"server",
"handler",
"schema-validation",
"endpoint",
"zod",
"validation"
]
}