{
  "name": "zod-gpt",
  "description": "Get structured, fully typed JSON outputs from OpenAI and Anthropic LLMs",
  "version": "0.16.0",
  "main": "dist/src/index.js",
  "types": "dist/src/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "keywords": [
    "typescript",
    "zod",
    "gpt",
    "chatgpt",
    "llama",
    "llm",
    "ai",
    "ml",
    "prompt",
    "prompt engineering",
    "openai"
  ],
  "author": "David Zhang <david@aomni.com>",
  "license": "MIT",
  "homepage": "https://github.com/dzhng/zod-gpt",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/dzhng/zod-gpt.git"
  },
  "bugs": {
    "url": "https://github.com/dzhng/zod-gpt/issues"
  },
  "scripts": {
    "setup": "husky install",
    "build": "tsc --build --pretty",
    "lint": "eslint src --ext ts,tsx,js,jsx --ignore-path .gitignore --fix",
    "test": "jest --passWithNoTests",
    "test:update": "jest -u --passWithNoTests",
    "playground": "tsx playground"
  },
  "dependencies": {
    "debug": "^4.3.4",
    "jsonic": "^1.0.1",
    "jsonrepair": "^3.4.0",
    "lodash": "^4.17.21",
    "tsx": "^4.7.1",
    "type-fest": "^4.6.0",
    "zod-to-json-schema": "^3.21.4"
  },
  "peerDependencies": {
    "llm-api": "^1.6.0",
    "zod": "^3.22.4"
  },
  "devDependencies": {
    "@types/debug": "^4.1.10",
    "@types/jest": "^29.5.7",
    "@types/jsonic": "^0.3.2",
    "@types/lodash": "^4.14.200",
    "eslint": "^8.36.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-universe": "^11.1.1",
    "eslint-import-resolver-typescript": "^3.3.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.2.1",
    "husky": "^8.0.2",
    "jest": "^29.7.0",
    "lint-staged": "^13.2.0",
    "llm-api": "^1.6.0",
    "prettier": "^2.8.0",
    "ts-jest": "^29.1.1",
    "typescript": "^5.2.2",
    "zod": "^3.22.4"
  },
  "lint-staged": {
    "*.{js,jsx,ts,tsx}": [
      "eslint --ext ts,tsx,js,jsx --fix --ignore-path .gitignore ",
      "prettier --write"
    ],
    "*.{json,md,css,scss}": [
      "prettier --write"
    ]
  }
}
