{
  "name": "temporal-zod",
  "description": "Zod validators for Temporal types.",
  "author": "Ian Macalinao <me@ianm.com>",
  "version": "0.6.3",
  "license": "Apache-2.0",
  "type": "module",
  "sideEffects": [
    "./dist/json-schemas.js",
    "./dist/index.js"
  ],
  "files": [
    "dist/",
    "src/",
    "README.md"
  ],
  "repository": "github:macalinao/temporal-utils",
  "homepage": "https://github.com/macalinao/temporal-utils",
  "bugs": {
    "url": "https://github.com/macalinao/temporal-utils/issues"
  },
  "keywords": [
    "temporal",
    "zod"
  ],
  "dependencies": {
    "tslib": "^2.8.1"
  },
  "devDependencies": {
    "@macalinao/eslint-config": "^8.1.0",
    "@macalinao/tsconfig": "^3.2.5",
    "@types/bun": "latest",
    "ajv": "^8.18.0",
    "ajv-formats": "^3.0.1",
    "eslint": "^10.0.2",
    "temporal-polyfill": "^0.3.0",
    "typescript": "^5.9.2",
    "zod": "^4.1.11"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./base": {
      "types": "./dist/base/index.d.ts",
      "import": "./dist/base/index.js"
    }
  },
  "scripts": {
    "build": "tsc",
    "clean": "tsc --build --clean && rm -fr dist/",
    "lint": "eslint .",
    "test": "bun test src/"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/",
    "access": "public"
  },
  "peerDependencies": {
    "temporal-polyfill": "^0.3.0",
    "zod": "^4.0.0"
  }
}
