{
  "_from": "zod@^3.23.8",
  "_id": "zod@3.24.1",
  "_inBundle": false,
  "_integrity": "sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==",
  "_location": "/zod",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "zod@^3.23.8",
    "name": "zod",
    "escapedName": "zod",
    "rawSpec": "^3.23.8",
    "saveSpec": null,
    "fetchSpec": "^3.23.8"
  },
  "_requiredBy": [
    "/",
    "/@langchain/anthropic",
    "/@langchain/cohere",
    "/@langchain/community",
    "/@langchain/core",
    "/@langchain/langgraph",
    "/@langchain/openai",
    "/langchain",
    "/langchain/@langchain/openai"
  ],
  "_resolved": "https://registry.npmjs.org/zod/-/zod-3.24.1.tgz",
  "_shasum": "27445c912738c8ad1e9de1bea0359fa44d9d35ee",
  "_spec": "zod@^3.23.8",
  "_where": "/home/hlxgazog/nodevenv/ai.opunet.com/chat/mic2/10/lib",
  "author": {
    "name": "Colin McDonnell",
    "email": "colin@colinhacks.com"
  },
  "bugs": {
    "url": "https://github.com/colinhacks/zod/issues"
  },
  "bundleDependencies": false,
  "deprecated": false,
  "description": "TypeScript-first schema declaration and validation library with static type inference",
  "devDependencies": {
    "@babel/core": "^7.22.5",
    "@babel/preset-env": "^7.22.5",
    "@babel/preset-typescript": "^7.22.5",
    "@jest/globals": "^29.4.3",
    "@rollup/plugin-typescript": "^8.2.0",
    "@standard-schema/spec": "^1.0.0-beta.4",
    "@swc/core": "^1.3.66",
    "@swc/jest": "^0.2.26",
    "@types/benchmark": "^2.1.0",
    "@types/jest": "^29.2.2",
    "@types/node": "14",
    "@typescript-eslint/eslint-plugin": "^5.15.0",
    "@typescript-eslint/parser": "^5.15.0",
    "babel-jest": "^29.5.0",
    "benchmark": "^2.1.4",
    "dependency-cruiser": "^9.19.0",
    "eslint": "^8.11.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-ban": "^1.6.0",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "eslint-plugin-unused-imports": "^2.0.0",
    "husky": "^7.0.4",
    "jest": "^29.3.1",
    "lint-staged": "^12.3.7",
    "netlify-cli": "^17.26.2",
    "nodemon": "^2.0.15",
    "prettier": "^2.6.0",
    "pretty-quick": "^3.1.3",
    "rollup": "^2.70.1",
    "ts-jest": "^29.1.0",
    "ts-morph": "^14.0.0",
    "ts-node": "^10.9.1",
    "tslib": "^2.3.1",
    "tsx": "^3.8.0",
    "typescript": "^5.0.0",
    "vitest": "^0.32.2"
  },
  "exports": {
    ".": {
      "types": "./index.d.ts",
      "require": "./lib/index.js",
      "import": "./lib/index.mjs"
    },
    "./package.json": "./package.json",
    "./locales/*": "./lib/locales/*"
  },
  "files": [
    "/lib",
    "/index.d.ts"
  ],
  "funding": "https://github.com/sponsors/colinhacks",
  "homepage": "https://zod.dev",
  "keywords": [
    "typescript",
    "schema",
    "validation",
    "type",
    "inference"
  ],
  "license": "MIT",
  "lint-staged": {
    "src/*.ts": [
      "eslint --cache --fix",
      "prettier --ignore-unknown --write"
    ],
    "*.md": [
      "prettier --ignore-unknown --write"
    ]
  },
  "main": "./lib/index.js",
  "module": "./lib/index.mjs",
  "name": "zod",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/colinhacks/zod.git"
  },
  "scripts": {
    "benchmark": "tsx src/benchmarks/index.ts",
    "build": "yarn run clean && npm run build:cjs && npm run build:esm && npm run build:deno",
    "build:cjs": "tsc -p ./configs/tsconfig.cjs.json",
    "build:deno": "node ./deno-build.mjs && cp ./README.md ./deno/lib",
    "build:esm": "rollup --config ./configs/rollup.config.js",
    "build:test": "tsc -p ./configs/tsconfig.test.json",
    "build:types": "tsc -p ./configs/tsconfig.types.json",
    "check": "yarn lint:check && yarn prettier:check",
    "clean": "rm -rf lib/* deno/lib/*",
    "depcruise": "depcruise -c .dependency-cruiser.js src",
    "docs": "netlify dev",
    "fix": "yarn lint:fix && yarn prettier:fix",
    "lint:check": "eslint --cache --ext .ts ./src",
    "lint:fix": "eslint --cache --fix --ext .ts ./src",
    "play": "nodemon -e ts -w . -x tsx playground.ts",
    "prepare": "husky install",
    "prepublishOnly": "npm run test && npm run build && npm run build:deno",
    "prettier:check": "prettier --check src/**/*.ts deno/lib/**/*.ts *.md --no-error-on-unmatched-pattern",
    "prettier:fix": "prettier --write src/**/*.ts deno/lib/**/*.ts *.md --ignore-unknown --no-error-on-unmatched-pattern",
    "test": "yarn test:ts-jest",
    "test:babel": "jest --coverage --config ./configs/babel-jest.config.json",
    "test:bun": "bun test src/",
    "test:deno": "cd deno && deno test",
    "test:swc": "npx jest --config ./configs/swc-jest.config.json",
    "test:ts-jest": "npx jest --config ./configs/ts-jest.config.json",
    "test:vitest": "npx vitest --config ./configs/vitest.config.ts",
    "test:watch": "yarn test:ts-jest --watch"
  },
  "sideEffects": false,
  "support": {
    "backing": {
      "npm-funding": true
    }
  },
  "types": "./index.d.ts",
  "version": "3.24.1"
}
