fix(zod-openapi): Fix incorrect specification of the exports field in package.json (#255)

pull/257/head
Karibash 2023-11-16 06:27:56 +09:00 committed by GitHub
parent 0232214d4b
commit 129f4680a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 13 additions and 3 deletions

View File

@ -0,0 +1,5 @@
---
'@hono/zod-openapi': patch
---
Fix incorrect specification of the exports field in package.json

View File

@ -16,9 +16,14 @@
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"license": "MIT",