{
    "name": "@buildwithlayer/openapi-zod-spec",
    "version": "1.0.1",
    "description": "A Zod Schema for OpenAPI Schemas v3.X.X",
    "license": "MIT",
    "author": "GavynWithLayer",
    "homepage": "https://github.com/buildwithlayer/openapi-zod-spec",
    "bugs": "https://github.com/buildwithlayer/openapi-zod-spec/issues",
    "type": "module",
    "repository": {
        "type": "git",
        "url": "git+https://github.com/buildwithlayer/openapi-zod-spec.git"
    },
    "engines": {
        "node": ">=18"
    },
    "keywords": [
        "openapi",
        "swagger",
        "spec",
        "zod",
        "buildwithlayer"
    ],
    "exports": {
        "./*": {
            "import": "./dist/esm/*",
            "require": "./dist/cjs/*"
        }
    },
    "typesVersions": {
        "*": {
            "*": [
                "./dist/esm/*"
            ]
        }
    },
    "files": [
        "dist"
    ],
    "scripts": {
        "build": "npm run build:esm && npm run build:cjs",
        "build:esm": "tsc -p tsconfig.prod.json && echo '{\"type\": \"module\"}' > dist/esm/package.json",
        "build:cjs": "tsc -p tsconfig.cjs.json && echo '{\"type\": \"commonjs\"}' > dist/cjs/package.json",
        "prepack": "npm run build:esm && npm run build:cjs",
        "lint": "eslint src/",
        "test": "jest"
    },
    "devDependencies": {
        "@eslint/js": "^9.26.0",
        "@types/jest": "^29.5.14",
        "eslint": "^9.27.0",
        "eslint-plugin-jest": "^28.11.0",
        "eslint-plugin-sort": "^4.0.0",
        "jest": "^29.7.0",
        "ts-jest": "^29.3.2",
        "typescript": "^5.8.3",
        "typescript-eslint": "^8.32.0",
        "yaml": "^2.7.1"
    },
    "dependencies": {
        "@buildwithlayer/json-schema-zod-schema": "^1.0.0",
        "zod": "^3.24.3"
    }
}
