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

59 lines
1.4 KiB
JSON
Raw Normal View History

{
"name": "@hono/zod-openapi",
2024-01-25 07:39:11 +08:00
"version": "0.9.6",
"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": ">=3.11.3",
"zod": "3.*"
},
"devDependencies": {
2023-12-14 17:33:01 +08:00
"hono": "^3.11.7",
"jest": "^29.7.0",
"openapi3-ts": "^4.1.2",
"tsup": "^8.0.1",
"vitest": "^1.0.1",
"zod": "^3.22.1"
},
"dependencies": {
"@asteasolutions/zod-to-openapi": "^5.5.0",
"@hono/zod-validator": "^0.1.11"
},
"engines": {
"node": ">=16.0.0"
}
}