{
  "name": "orchid-orm-schema-to-zod",
  "version": "1.2.10",
  "description": "Orchid-ORM columns schema to Zod converter",
  "keywords": [
    "orchid-orm",
    "query-builder",
    "schema",
    "zod"
  ],
  "homepage": "https://orchid-orm.netlify.app/guide/columns-validation-methods.html",
  "license": "ISC",
  "author": "Roman Kushyn",
  "repository": {
    "type": "git",
    "url": "https://github.com/romeerez/orchid-orm.git",
    "directory": "packages/schemaConfigs/zod"
  },
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "typings": "dist/index.d.ts",
  "exports": {
    ".": {
      "require": {
        "default": "./dist/index.js",
        "types": "./dist/index.d.ts"
      },
      "import": {
        "default": "./dist/index.mjs",
        "types": "./dist/index.d.ts"
      }
    }
  },
  "dependencies": {
    "zod": "4.*",
    "pqb": "0.73.6"
  },
  "devDependencies": {
    "test-utils": "0.3.7"
  },
  "scripts": {
    "test": "jest --watch --verbose false",
    "check": "jest",
    "check:coverage": "jest --coverage --coverageReporters json-summary",
    "types": "tsc",
    "build": "rimraf dist && node ../../../scripts/build.mjs -c ../../../rolldown.config.mjs",
    "lint": "oxlint --fix",
    "lint:check": "oxlint",
    "fmt": "oxfmt",
    "fmt:check": "oxfmt --check"
  }
}