{
  "name": "@kubb/plugin-client",
  "version": "4.39.2",
  "description": "API client generator plugin for Kubb, creating type-safe HTTP clients (Axios, Fetch) from OpenAPI specifications for making API requests.",
  "keywords": [
    "api-client",
    "http-client",
    "sdk-generator",
    "axios",
    "fetch",
    "rest-api",
    "typescript",
    "type-safety",
    "type-safe",
    "openapi",
    "swagger",
    "oas",
    "code-generator",
    "codegen",
    "plugins",
    "kubb"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kubb-labs/kubb.git",
    "directory": "packages/plugin-client"
  },
  "license": "MIT",
  "author": "stijnvanhulle",
  "sideEffects": false,
  "type": "module",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./clients/axios": {
      "import": "./dist/clients/axios.js",
      "require": "./dist/clients/axios.cjs"
    },
    "./clients/fetch": {
      "import": "./dist/clients/fetch.js",
      "require": "./dist/clients/fetch.cjs"
    },
    "./components": {
      "import": "./dist/components.js",
      "require": "./dist/components.cjs"
    },
    "./generators": {
      "import": "./dist/generators.js",
      "require": "./dist/generators.cjs"
    },
    "./templates/clients/axios.source": {
      "import": "./dist/templates/clients/axios.source.js",
      "require": "./dist/templates/clients/axios.source.cjs"
    },
    "./templates/clients/fetch.source": {
      "import": "./dist/templates/clients/fetch.source.js",
      "require": "./dist/templates/clients/fetch.source.cjs"
    },
    "./templates/config.source": {
      "import": "./dist/templates/config.source.js",
      "require": "./dist/templates/config.source.cjs"
    },
    "./package.json": "./package.json"
  },
  "types": "./dist/index.d.ts",
  "typesVersions": {
    "*": {
      "components": [
        "./dist/components.d.ts"
      ],
      "generators": [
        "./dist/generators.d.ts"
      ],
      "clients/axios": [
        "./dist/clients/axios.d.ts"
      ],
      "clients/fetch": [
        "./dist/clients/fetch.d.ts"
      ],
      "templates/config.source": [
        "./dist/templates/config.source.d.ts"
      ],
      "templates/clients/axios.source": [
        "./dist/templates/clients/axios.source.d.ts"
      ],
      "templates/clients/fetch.source": [
        "./dist/templates/clients/fetch.source.d.ts"
      ]
    }
  },
  "files": [
    "src",
    "dist",
    "templates",
    "*.d.ts",
    "*.d.cts",
    "!/**/**.test.**",
    "!/**/__tests__/**",
    "!/**/__snapshots__/**"
  ],
  "size-limit": [
    {
      "path": "./dist/*.js",
      "limit": "510 KiB",
      "gzip": true
    }
  ],
  "dependencies": {
    "@kubb/fabric-core": "0.14.0",
    "@kubb/react-fabric": "0.14.0",
    "@kubb/core": "4.39.2",
    "@kubb/oas": "4.39.2",
    "@kubb/plugin-oas": "4.39.2",
    "@kubb/plugin-ts": "4.39.2",
    "@kubb/plugin-zod": "4.39.2"
  },
  "devDependencies": {
    "axios": "^1.17.0",
    "@internals/utils": "0.0.0"
  },
  "peerDependencies": {
    "@kubb/fabric-core": "0.14.0",
    "@kubb/react-fabric": "0.14.0",
    "axios": "^1.7.2"
  },
  "peerDependenciesMeta": {
    "axios": {
      "optional": true
    }
  },
  "engines": {
    "node": ">=20"
  },
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.org/"
  },
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "scripts": {
    "build": "tsdown && size-limit",
    "clean": "npx rimraf ./dist",
    "lint": "bun biome lint .",
    "lint:fix": "bun biome lint --fix --unsafe .",
    "release": "pnpm publish --no-git-check",
    "release:canary": "bash ../../.github/canary.sh && node ../../scripts/build.js canary && pnpm publish --no-git-check",
    "start": "tsdown --watch",
    "test": "vitest --passWithNoTests",
    "typecheck": "tsc -p ./tsconfig.json --noEmit --emitDeclarationOnly false"
  }
}