{
  "name": "@formkit/zod",
  "version": "2.0.0",
  "type": "module",
  "description": "Zod validation for FormKit.",
  "main": "dist/index.cjs",
  "types": "dist/index.d.cts",
  "exports": {
    "./package.json": "./package.json",
    ".": {
      "import": {
        "types": "./dist/index.d.mts",
        "development": "./dist/index.dev.mjs",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    }
  },
  "keywords": [
    "zod",
    "forms",
    "inputs",
    "validation"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/formkit/formkit.git",
    "directory": "packages/zod"
  },
  "contributors": [
    "Andrew Boyd <andrew@formkit.com>",
    "Justin Schroeder <justin@formkit.com>"
  ],
  "license": "MIT",
  "dependencies": {
    "@formkit/core": "^2.0.0"
  },
  "devDependencies": {
    "@formkit/vue": "^2.0.0"
  },
  "peerDependencies": {
    "zod": "^3.0.0"
  },
  "scripts": {
    "test": "jest"
  }
}