2023-08-19 01:43:36 +08:00
|
|
|
{
|
|
|
|
"name": "@hono/zod-openapi",
|
2024-06-04 23:01:05 +08:00
|
|
|
"version": "0.14.2",
|
2023-08-19 01:43:36 +08:00
|
|
|
"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": {
|
2023-12-07 08:55:42 +08:00
|
|
|
"test": "vitest run && vitest --typecheck --run --passWithNoTests",
|
2023-08-19 01:43:36 +08:00
|
|
|
"build": "tsup ./src/index.ts --format esm,cjs --dts",
|
|
|
|
"publint": "publint",
|
|
|
|
"release": "yarn build && yarn test && yarn publint && yarn publish"
|
|
|
|
},
|
2023-10-05 07:40:56 +08:00
|
|
|
"exports": {
|
|
|
|
".": {
|
2023-11-16 05:27:56 +08:00
|
|
|
"import": {
|
|
|
|
"types": "./dist/index.d.mts",
|
|
|
|
"default": "./dist/index.mjs"
|
|
|
|
},
|
|
|
|
"require": {
|
|
|
|
"types": "./dist/index.d.ts",
|
|
|
|
"default": "./dist/index.js"
|
|
|
|
}
|
2023-10-05 07:40:56 +08:00
|
|
|
}
|
|
|
|
},
|
2023-08-19 01:43:36 +08:00
|
|
|
"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": {
|
2024-05-15 09:06:11 +08:00
|
|
|
"hono": ">=4.3.6",
|
2023-08-19 01:43:36 +08:00
|
|
|
"zod": "3.*"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-29 21:53:43 +08:00
|
|
|
"@cloudflare/workers-types": "^4.20240117.0",
|
2024-05-15 09:06:11 +08:00
|
|
|
"hono": "^4.3.6",
|
2023-12-13 14:54:00 +08:00
|
|
|
"jest": "^29.7.0",
|
|
|
|
"tsup": "^8.0.1",
|
2024-04-07 18:18:56 +08:00
|
|
|
"typescript": "^5.4.4",
|
|
|
|
"vitest": "^1.4.0",
|
2024-06-04 22:48:47 +08:00
|
|
|
"yaml": "^2.4.3",
|
2023-08-19 01:43:36 +08:00
|
|
|
"zod": "^3.22.1"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2024-04-07 18:18:56 +08:00
|
|
|
"@asteasolutions/zod-to-openapi": "^7.0.0",
|
2024-06-04 22:48:47 +08:00
|
|
|
"@hono/zod-validator": "0.2.2"
|
2023-08-19 01:43:36 +08:00
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=16.0.0"
|
|
|
|
}
|
2023-12-13 14:54:00 +08:00
|
|
|
}
|