{ "name": "@hono/typia-validator", "version": "0.1.0", "description": "Validator middleware using Typia", "type": "module", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "dist/esm/index.d.ts", "exports": { ".": { "default": "./dist/cjs/index.js", "require": "./dist/cjs/index.js", "import": "./dist/esm/index.js", "types": "./dist/esm/index.d.ts" }, "./http": { "default": "./dist/cjs/http.js", "require": "./dist/cjs/http.js", "import": "./dist/esm/http.js", "types": "./dist/esm/http.d.ts" } }, "files": [ "dist" ], "scripts": { "test": "vitest", "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", "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", "typia": "^7.0.0" }, "devDependencies": { "@ryoppippi/unplugin-typia": "^1.2.0", "hono": "^3.11.7", "rimraf": "^5.0.5", "typescript": "^5.4.0", "typia": "^7.3.0", "vitest": "^3.0.8" } }