{
  "name": "@ahmetshbz/zap",
  "version": "1.1.3",
  "description": "⚡ Lightning-fast HTTP client - 145% faster than fetch with enterprise features: deduplication, retry, caching, security",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "react-native": {
        "types": "./dist/index.native.d.mts",
        "default": "./dist/index.native.mjs"
      },
      "import": {
        "types": "./dist/index.d.mts",
        "default": "./dist/index.mjs"
      },
      "require": {
        "types": "./dist/index.d.cts",
        "default": "./dist/index.cjs"
      }
    },
    "./axios": {
      "import": {
        "types": "./dist/axios.d.mts",
        "default": "./dist/axios.mjs"
      },
      "require": {
        "types": "./dist/axios.d.cts",
        "default": "./dist/axios.cjs"
      }
    }
  },
  "react-native": "./dist/index.native.mjs",
  "files": [
    "dist",
    "scripts"
  ],
  "scripts": {
    "dev": "unbuild --stub",
    "build": "unbuild",
    "format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
    "format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
    "lint": "eslint src test --ext .ts",
    "lint:fix": "eslint src test --ext .ts --fix",
    "type-check": "tsc --noEmit",
    "test": "bun test",
    "test:watch": "bun test --watch",
    "bench": "node benchmarks/client-bench.cjs",
    "bench:axios": "bun add -D axios && node benchmarks/client-bench.cjs",
    "quality": "bun run format && bun run lint:fix && bun run type-check && bun run test",
    "prepublishOnly": "bun run build",
    "postinstall": "node scripts/postinstall.cjs || exit 0",
    "release:patch": "npm version patch -m 'chore: release v%s' && git push && git push --tags",
    "release:minor": "npm version minor -m 'chore: release v%s' && git push && git push --tags",
    "release:major": "npm version major -m 'chore: release v%s' && git push && git push --tags"
  },
  "keywords": [
    "zap",
    "http",
    "fetch",
    "request",
    "client",
    "lightning",
    "fast",
    "typescript",
    "universal",
    "undici",
    "performance",
    "deduplication",
    "coalescing",
    "retry",
    "cache",
    "enterprise",
    "production",
    "high-performance",
    "request-dedup",
    "http-client"
  ],
  "author": "Ahmet Şahbazoğlu <ahmetshbz1@outlook.com> (https://www.velyo.xyz)",
  "license": "MIT",
  "dependencies": {
    "ufo": "^1.5.4",
    "destr": "^2.0.3"
  },
  "peerDependencies": {
    "undici": "^6.0.0",
    "zod": "^3.22.0"
  },
  "peerDependenciesMeta": {
    "undici": {
      "optional": true
    },
    "zod": {
      "optional": true
    }
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.46.2",
    "@typescript-eslint/parser": "^8.46.2",
    "axios": "^1.12.2",
    "eslint": "^9.38.0",
    "prettier": "^3.6.2",
    "typescript": "^5.7.2",
    "unbuild": "^2.0.0",
    "undici": "^6.21.0",
    "vitest": "^2.1.8",
    "zod": "^3.24.1"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ahmetshbzz/sdk.git",
    "directory": "packages/http"
  },
  "homepage": "https://github.com/Ahmetshbzz/sdk/tree/main/packages/http",
  "bugs": {
    "url": "https://github.com/Ahmetshbzz/sdk/issues"
  },
  "sideEffects": false,
  "publishConfig": {
    "access": "public"
  }
}
