{
  "name": "@zod-to-form/cli",
  "version": "0.8.5",
  "description": "Build-time code generator for Zod v4 form components",
  "license": "MIT",
  "homepage": "https://github.com/pradeepmouli/zod-to-form#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/pradeepmouli/zod-to-form.git",
    "directory": "packages/cli"
  },
  "keywords": [
    "zod",
    "zod-v4",
    "codegen",
    "forms",
    "form-generation",
    "react-hook-form",
    "schema-driven",
    "cli",
    "generator",
    "component-codegen",
    "schema-to-tsx"
  ],
  "type": "module",
  "bin": {
    "zod-to-form": "./dist/index.js",
    "z2f": "./dist/index.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist"
  ],
  "dependencies": {
    "chokidar": "^5.0.0",
    "commander": "^14.0.3",
    "@zod-to-form/codegen": "0.10.2",
    "@zod-to-form/core": "0.11.2"
  },
  "devDependencies": {
    "zod": "^4.4.3"
  },
  "author": "Pradeep Mouli <pmouli@mac.com> (https://github.com/pradeepmouli)",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "tsgo -p tsconfig.build.json",
    "clean": "rm -rf dist tsconfig.build.tsbuildinfo tsconfig.tsbuildinfo",
    "dev": "tsgo -p tsconfig.build.json --watch",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage",
    "type-check": "tsgo --noEmit"
  }
}