honojs-middleware/packages/valibot-validator/package.json

44 lines
977 B
JSON

{
"name": "@hono/valibot-validator",
"version": "0.5.2",
"description": "Validator middleware using Valibot",
"type": "module",
"main": "dist/index.js",
"exports": {
"./package.json": "./package.json",
".": {
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"test": "vitest",
"build": "tsup",
"prerelease": "yarn build && yarn test",
"release": "yarn publish"
},
"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.9.0",
"valibot": "^1.0.0 || ^1.0.0-beta.4 || ^1.0.0-rc"
},
"devDependencies": {
"hono": "^4.5.1",
"tsup": "^8.3.0",
"valibot": "^1.0.0-beta.5",
"vitest": "^3.0.8"
}
}