42 lines
991 B
JSON
42 lines
991 B
JSON
{
|
|
"name": "@hono/zod-validator",
|
|
"version": "0.0.2",
|
|
"description": "Validator middleware using Zod",
|
|
"main": "dist/cjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"types": "dist/esm/index.d.ts",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"test": "jest",
|
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
"build:esm": "tsc -p tsconfig.esm.json",
|
|
"build": "rimraf dist && yarn build:cjs && yarn build:esm",
|
|
"prerelease": "yarn build && yarn test",
|
|
"release": "yarn publish"
|
|
},
|
|
"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.0.0-rc.3",
|
|
"zod": "^3.19.1"
|
|
},
|
|
"devDependencies": {
|
|
"hono": "3.0.0-rc.3",
|
|
"zod": "3.19.1"
|
|
},
|
|
"dependencies": {
|
|
"hono": "3.0.0-rc.7"
|
|
}
|
|
}
|