forked from anatine/zod-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.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
{
"name": "@wpo/zod-openapi",
"version": "3.0.0",
"description": "Zod to OpenAPI converter",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build": "unbuild"
},
"license": "MIT",
"public": true,
"repository": {
"type": "git",
"url": "git+https://github.com/wponline/zod-openapi"
},
"homepage": "https://github.com/wponline/zod-openapi",
"author": {
"name": "Brian McBride",
"url": "https://www.linkedin.com/in/brianmcbride"
},
"maintainers": [
{
"name": "Balázs Németh",
"url": "https://github.com/zsilbi"
}
],
"keywords": [
"zod",
"openapi",
"swagger"
],
"dependencies": {
"defu": "^6.1.4"
},
"peerDependencies": {
"openapi3-ts": "^4.1.2",
"zod": "^3.20.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@types/validator": "^13.11.9",
"changelogen": "^0.5.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"unbuild": "^2.0.0",
"validator": "^13.11.0"
},
"publishConfig": {
"access": "public"
}
}