honojs-middleware/packages/zod-openapi/package.json

61 lines
1.4 KiB
JSON

{
"name": "@hono/zod-openapi",
"version": "0.19.0",
"description": "A wrapper class of Hono which supports OpenAPI.",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "vitest run && vitest --typecheck --run --passWithNoTests",
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"publint": "publint",
"release": "yarn build && yarn test && yarn publint && yarn publish"
},
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"license": "MIT",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/honojs/middleware.git"
},
"homepage": "https://github.com/honojs/middleware",
"peerDependencies": {
"hono": ">=4.3.6",
"zod": "3.*"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240117.0",
"hono": "^4.6.10",
"jest": "^29.7.0",
"tsup": "^8.0.1",
"typescript": "^5.4.4",
"vitest": "^1.4.0",
"yaml": "^2.4.3",
"zod": "^3.22.1"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^7.1.0",
"@hono/zod-validator": "^0.4.1"
},
"engines": {
"node": ">=16.0.0"
}
}