{
  "name": "fastify-zod",
  "version": "1.4.0",
  "description": "Zod integration with Fastify",
  "main": "build/index.js",
  "scripts": {
    "check:types": "tsc -p . --noEmit",
    "check:lint": "eslint src",
    "check": "npm run check:types && npm run check:lint",
    "clean": "rm -rf build",
    "build:types": "tsc -p . --emitDeclarationOnly",
    "build:babel": "babel src --out-dir build --extensions '.ts' --source-maps",
    "build:openapi-spec": "node build/__tests__/generate-spec.fixtures.js",
    "build:openapi-client": "rm -rf test-openapi-client && openapi-generator-cli generate && cd test-openapi-client && npm i",
    "build": "npm run clean && npm run build:babel && npm run build:openapi-spec && npm run build:openapi-client && npm run build:types",
    "test": "jest"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/elierotenberg/fastify-zod.git"
  },
  "keywords": [
    "zod",
    "fastify",
    "openapi"
  ],
  "author": "Elie Rotenberg <elie@rotenberg.io>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/elierotenberg/fastify-zod/issues"
  },
  "homepage": "https://github.com/elierotenberg/fastify-zod#readme",
  "devDependencies": {
    "@babel/cli": "^7.22.10",
    "@babel/core": "^7.22.10",
    "@babel/preset-env": "^7.22.10",
    "@babel/preset-typescript": "^7.22.5",
    "@openapitools/openapi-generator-cli": "^2.7.0",
    "@types/http-errors": "^2.0.1",
    "@types/jest": "^29.5.3",
    "@types/node": "^20.5.0",
    "@typescript-eslint/eslint-plugin": "^6.4.0",
    "@typescript-eslint/parser": "^6.4.0",
    "ajv-errors": "^3.0.0",
    "eslint": "^8.47.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-import": "^2.28.0",
    "eslint-plugin-prettier": "^5.0.0",
    "fastify": "^4.21.0",
    "fastify-zod-test-openapi-client": "file:test-openapi-client",
    "http-errors": "^2.0.0",
    "jest": "^29.6.2",
    "node-fetch": "^3.3.2",
    "pino-pretty": "^10.2.0",
    "prettier": "^3.0.2",
    "typed-jest-expect": "^1.0.1",
    "typescript": "^5.1.6"
  },
  "peerDependencies": {
    "fastify": "^4.15.0"
  },
  "dependencies": {
    "@fastify/swagger": "^8.9.0",
    "@fastify/swagger-ui": "^1.9.3",
    "@types/js-yaml": "^4.0.5",
    "change-case": "^4.1.2",
    "fast-deep-equal": "^3.1.3",
    "js-yaml": "^4.1.0",
    "tslib": "^2.6.1",
    "zod": "^3.22.1",
    "zod-to-json-schema": "^3.21.4"
  }
}