-
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
102 lines (102 loc) · 2.5 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
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "zod-openapi",
"version": "4.0.0",
"description": "Convert Zod Schemas to OpenAPI v3.x documentation",
"keywords": [
"typescript",
"json-schema",
"swagger",
"openapi",
"openapi3",
"zod",
"zod-openapi"
],
"homepage": "https://github.com/samchungy/zod-openapi#readme",
"bugs": {
"url": "https://github.com/samchungy/zod-openapi/issues"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/samchungy/zod-openapi.git"
},
"license": "MIT",
"sideEffects": [
"dist/extend.*",
"dist/side-effects/**",
"src/entries/extend.ts"
],
"exports": {
".": {
"types": {
"import": "./dist/index.d.mts",
"require": "./dist/index.d.ts"
},
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./api": {
"types": {
"import": "./dist/api.d.mts",
"require": "./dist/api.d.ts"
},
"import": "./dist/api.mjs",
"require": "./dist/api.cjs"
},
"./extend": {
"types": {
"import": "./dist/extend.d.mts",
"require": "./dist/extend.d.ts"
},
"import": "./dist/extend.mjs",
"require": "./dist/extend.cjs"
},
"./package.json": "./package.json"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"api",
"dist",
"extend"
],
"scripts": {
"build": "pnpm copy:types && crackle package",
"copy:types": "skuba node scripts/copyTypes.ts",
"create:docs": " skuba node examples/simple/createSchema.ts && redocly build-docs examples/simple/openapi.yml --output=examples/simple/redoc-static.html",
"format": "skuba format",
"lint": "skuba lint",
"prepare": "pnpm build",
"test": "skuba test",
"test:ci": "skuba test --coverage",
"test:watch": "skuba test --watch"
},
"devDependencies": {
"@arethetypeswrong/cli": "0.16.4",
"@crackle/cli": "0.15.5",
"@redocly/cli": "1.25.9",
"@types/node": "^20.3.0",
"eslint-plugin-zod-openapi": "^1.0.0-beta.0",
"openapi3-ts": "4.4.0",
"skuba": "9.1.0",
"yaml": "2.6.0",
"zod": "3.23.8"
},
"peerDependencies": {
"zod": "^3.21.4"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true,
"registry": "https://registry.npmjs.org/"
},
"skuba": {
"entryPoint": "src/index.ts",
"template": "oss-npm-package",
"type": "package",
"version": "9.0.0-main-20240928013837"
}
}