{
  "name": "@hono/standard-validator",
  "version": "0.4.0",
  "description": "Validator middleware using Standard Schema",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.cts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "license": "MIT",
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public",
    "provenance": true
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/honojs/middleware.git",
    "directory": "packages/standard-validator"
  },
  "homepage": "https://github.com/honojs/middleware",
  "peerDependencies": {
    "@standard-schema/spec": "^1.0.0",
    "hono": ">=4.11.2"
  },
  "devDependencies": {
    "@standard-schema/spec": "1.1.0",
    "arktype": "^2.2.0",
    "hono": "^4.11.5",
    "tsdown": "^0.22.3",
    "typescript": "npm:@typescript/typescript6@^6.0.2",
    "valibot": "^1.3.0",
    "vitest": "^4.1.7",
    "zod": "^4.2.1"
  },
  "scripts": {
    "build": "pnpm -w run build:pkg",
    "lint": "eslint",
    "typecheck": "tsc -b tsconfig.json",
    "test": "vitest",
    "version:jsr": "pnpm -w run version:set $npm_package_version"
  }
}