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

51 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@hono/zod-openapi",
2023-10-31 18:23:37 +08:00
"version": "0.8.3",
"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",
"build": "tsup ./src/index.ts --format esm,cjs --dts",
"publint": "publint",
"release": "yarn build && yarn test && yarn publint && yarn publish"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"license": "MIT",
"private": false,
"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": ">=3.9.0",
"zod": "3.*"
},
"devDependencies": {
"hono": "^3.9.1",
"zod": "^3.22.1"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^5.5.0",
2023-09-26 16:21:38 +08:00
"@hono/zod-validator": "^0.1.9"
},
"engines": {
"node": ">=16.0.0"
}
}