{
  "name": "@tsuyoshi-otake/http-driver-optimized",
  "version": "0.4.1",
  "description": "http-driver-optimized is a fully typed per-service HTTP client for Axios and Fetch.",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./dist/utils": {
      "types": "./dist/utils/index.d.ts",
      "default": "./dist/utils/index.js"
    }
  },
  "files": [
    "dist"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tsuyoshi-otake/http-driver-optimized.git"
  },
  "keywords": [
    "javascript",
    "axios",
    "fetch",
    "typescript",
    "http-driver",
    "api",
    "network",
    "http"
  ],
  "author": "tsuyoshi-otake",
  "license": "MIT",
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -rf dist && tsc",
    "start": "node dist/index.js",
    "test": "jest --coverage",
    "start:example": "ts-node example/index.ts",
    "bench:optimizations": "node -r ts-node/register bench/optimizations.cjs",
    "bench:memory": "node --expose-gc -r ts-node/register bench/memory-progress.cjs",
    "bench:memory:formdata": "node --expose-gc bench/memory-formdata.cjs"
  },
  "dependencies": {
    "axios": "^1.17.0",
    "qs": "^6.15.2"
  },
  "devDependencies": {
    "@jest/globals": "^29.7.0",
    "@types/jest": "^29.5.14",
    "@types/qs": "^6.14.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.0"
  },
  "directories": {
    "example": "example"
  },
  "bugs": {
    "url": "https://github.com/tsuyoshi-otake/http-driver-optimized/issues"
  },
  "homepage": "https://github.com/tsuyoshi-otake/http-driver-optimized#readme"
}
