-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.51 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
{
"name": "koa-jsonapi-zod",
"version": "3.2.5",
"description": "JSON:API support for Koa using Zod",
"type": "module",
"author": "Ben Scholzen 'DASPRiD'",
"license": "BSD-3-Clause",
"keywords": [
"koa",
"jsonapi",
"zod",
"middleware",
"serializer",
"parser"
],
"repository": {
"type": "git",
"url": "https://github.com/dasprid/koa-jsonapi-zod.git"
},
"files": [
"dist/**/*"
],
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"types": "./dist/index.d.ts",
"module": "./dist/index.js",
"scripts": {
"build": "tsc",
"test": "vitest",
"coverage": "vitest run --coverage",
"format": "biome format . --write",
"check": "biome check . --apply"
},
"devDependencies": {
"@biomejs/biome": "1.7.1",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/node20": "^20.1.4",
"@types/content-type": "^1.1.8",
"@types/http-errors": "^2.0.4",
"@types/koa": "^2.15.0",
"@types/node": "^20.12.7",
"@types/qs": "^6.9.15",
"@vitest/coverage-v8": "^1.5.2",
"c8": "^9.1.0",
"glob": "^10.3.12",
"lefthook": "^1.6.10",
"typescript": "^5.4.5",
"vitest": "^1.5.2",
"zod": "^3.23.4"
},
"peerDependencies": {
"zod": "^3.22.4"
},
"dependencies": {
"@hapi/accept": "^6.0.3",
"content-type": "^1.0.5",
"deepmerge": "^4.3.1",
"http-errors": "^2.0.0",
"qs": "^6.12.1"
}
}