{
  "name": "@aws-lambda-powertools/validation",
  "version": "2.33.1",
  "description": "An utility to validate events and responses using JSON Schemas",
  "author": {
    "name": "Amazon Web Services",
    "url": "https://aws.amazon.com"
  },
  "license": "MIT-0",
  "homepage": "https://github.com/aws-powertools/powertools-lambda-typescript#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/aws-powertools/powertools-lambda-typescript.git"
  },
  "bugs": {
    "url": "https://github.com/aws-powertools/powertools-lambda-typescript/issues"
  },
  "keywords": [
    "aws",
    "lambda",
    "powertools",
    "json-schema",
    "validation",
    "event",
    "handler",
    "nodejs",
    "serverless"
  ],
  "dependencies": {
    "@aws-lambda-powertools/commons": "2.33.1",
    "@aws-lambda-powertools/jmespath": "2.33.1",
    "ajv": "^8.20.0"
  },
  "main": "./lib/cjs/index.js",
  "types": "./lib/cjs/index.d.ts",
  "files": [
    "lib"
  ],
  "type": "module",
  "exports": {
    ".": {
      "require": {
        "types": "./lib/cjs/validate.d.ts",
        "default": "./lib/cjs/validate.js"
      },
      "import": {
        "types": "./lib/esm/validate.d.ts",
        "default": "./lib/esm/validate.js"
      }
    },
    "./middleware": {
      "require": {
        "types": "./lib/cjs/middleware.d.ts",
        "default": "./lib/cjs/middleware.js"
      },
      "import": {
        "types": "./lib/esm/middleware.d.ts",
        "default": "./lib/esm/middleware.js"
      }
    },
    "./errors": {
      "require": {
        "types": "./lib/cjs/errors.d.ts",
        "default": "./lib/cjs/errors.js"
      },
      "import": {
        "types": "./lib/esm/errors.d.ts",
        "default": "./lib/esm/errors.js"
      }
    },
    "./decorator": {
      "require": {
        "types": "./lib/cjs/decorator.d.ts",
        "default": "./lib/cjs/decorator.js"
      },
      "import": {
        "types": "./lib/esm/decorator.d.ts",
        "default": "./lib/esm/decorator.js"
      }
    }
  },
  "typesVersions": {
    "*": {
      "middleware": [
        "lib/cjs/middleware.d.ts",
        "lib/esm/middleware.d.ts"
      ],
      "errors": [
        "lib/cjs/errors.d.ts",
        "lib/esm/errors.d.ts"
      ],
      "decorator": [
        "lib/cjs/decorator.d.ts",
        "lib/esm/decorator.d.ts"
      ]
    }
  }
}