{ "name": "@hono/ajv-validator", "version": "0.0.1", "description": "Validator middleware using Ajv", "type": "module", "module": "dist/index.js", "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": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "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": { "ajv": ">=8.12.0", "hono": ">=3.9.0" }, "devDependencies": { "ajv": ">=8.12.0", "hono": "^4.4.12", "tsup": "^8.1.0", "vitest": "^3.0.8" } }