{ "name": "@hono/conform-validator", "version": "1.0.0", "description": "Validator middleware using Conform", "type": "module", "main": "dist/index.cjs", "module": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist" ], "scripts": { "test": "vitest --run", "build": "tsup ./src/index.ts --format esm,cjs --dts", "prerelease": "yarn build && yarn test", "release": "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": { "@conform-to/dom": ">=1.1.5", "hono": ">=4.5.1" }, "devDependencies": { "@conform-to/dom": "^1.1.5", "@conform-to/yup": "^1.1.5", "@conform-to/zod": "^1.1.5", "conform-to-valibot": "^1.10.0", "hono": "^4.5.1", "tsup": "^8.2.3", "valibot": "^0.36.0", "vitest": "^3.0.8", "yup": "^1.4.0", "zod": "^3.23.8" } }