{ "name": "@hono/effect-validator", "version": "1.1.0", "description": "Validator middleware using Effect Schema", "type": "module", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { ".": { "import": { "types": "./dist/index.d.ts", "default": "./dist/index.js" }, "require": { "types": "./dist/index.d.cts", "default": "./dist/index.cjs" } } }, "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" }, "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": { "effect": ">=3.10.0", "hono": ">=4.4.13" }, "devDependencies": { "effect": "3.10.0", "hono": "^4.4.13", "tsup": "^8.1.0", "typescript": "^5.5.3", "vitest": "^2.0.1" } }