{
  "name": "http-debugger",
  "version": "1.7.1",
  "description": "Zero-dependency HTTP debug middleware for Node.js, Deno, Bun, and the Edge. Stream-level request capture, smart body truncation, cURL generation, and framework adapters for Astro, Express, Fastify, Hono, Astro, Elysia and Next.js.",
  "license": "SEE LICENSE IN LICENSE",
  "repository": {
    "type": "git",
    "url": "https://github.com/nacimoualla/http-debugger.git"
  },
  "bugs": {
    "url": "https://github.com/nacimoualla/http-debugger/issues"
  },
  "homepage": "https://github.com/nacimoualla/http-debugger#readme",
  "keywords": [
    "http",
    "debug",
    "middleware",
    "astro",
    "express",
    "fastify",
    "hono",
    "nextjs",
    "next.js",
    "logger",
    "request",
    "response",
    "terminal",
    "ansi",
    "stream",
    "inspect",
    "devtools",
    "development",
    "debugger",
    "curl",
    "truncation",
    "body",
    "headers",
    "timing",
    "performance",
    "node",
    "deno",
    "bun",
    "edge",
    "cloudflare",
    "workers",
    "http-debugger",
    "express-middleware",
    "fastify-plugin",
    "astro-middleware",
    "hono-middleware",
    "nextjs-middleware",
    "api-debugging",
    "http-logger",
    "request-logger",
    "debugging-tools",
    "devtools",
    "api-debugging",
    "http-inspector",
    "request-inspector",
    "response-inspector",
    "stream-debugging",
    "body-parser",
    "request-body",
    "response-body",
    "http-timing",
    "cURL-generator",
    "morgan-alternative",
    "pino-alternative",
    "winston-alternative",
    "api-development",
    "backend-debugging",
    "http-debugging",
    "request-debugging",
    "response-debugging",
    "elysia",
    "bun",
    "elysia-middleware",
    "astro",
    "astro-middleware"
  ],
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./astro": {
      "types": "./dist/adapters/astro.d.ts",
      "import": "./dist/adapters/astro.js",
      "require": "./dist/adapters/astro.cjs"
    },
    "./express": {
      "types": "./dist/adapters/express.d.ts",
      "import": "./dist/adapters/express.js",
      "require": "./dist/adapters/express.cjs"
    },
    "./fastify": {
      "types": "./dist/adapters/fastify.d.ts",
      "import": "./dist/adapters/fastify.js",
      "require": "./dist/adapters/fastify.cjs"
    },
    "./hono": {
      "types": "./dist/adapters/hono.d.ts",
      "import": "./dist/adapters/hono.js",
      "require": "./dist/adapters/hono.cjs"
    },
    "./types": {
      "types": "./dist/types.d.ts",
      "import": "./dist/types.js",
      "require": "./dist/types.cjs"
    },
    "./next": {
      "types": "./dist/next.d.ts",
      "import": "./dist/next.js",
      "require": "./dist/next.cjs"
    },
    "./elysia": {
      "types": "./dist/adapters/elysia.d.ts",
      "import": "./dist/adapters/elysia.js",
      "require": "./dist/adapters/elysia.cjs"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsup",
    "test": "vitest",
    "test:run": "vitest run",
    "typecheck": "tsc --noEmit",
    "lint": "eslint src/ tests/",
    "lint:fix": "eslint src/ tests/ --fix",
    "format": "prettier --write 'src/**/*.ts' 'tests/**/*.ts'",
    "format:check": "prettier --check 'src/**/*.ts' 'tests/**/*.ts'",
    "docs:dev": "vitepress dev docs",
    "docs:build": "typedoc --out docs/.vitepress/api src && vitepress build docs",
    "docs:preview": "vitepress preview docs",
    "prepublishOnly": "npm run build"
  },
  "peerDependencies": {
    "astro": ">=4.0.0",
    "elysia": ">=1.0.0",
    "express": ">=4.0.0",
    "fastify": ">=4.0.0",
    "hono": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "astro": {
      "optional": true
    },
    "elysia": {
      "optional": true
    },
    "express": {
      "optional": true
    },
    "fastify": {
      "optional": true
    },
    "hono": {
      "optional": true
    }
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/express": "^4.17.21",
    "@types/node": "^20.14.0",
    "astro": "^7.1.6",
    "elysia": "^1.4.29",
    "eslint": "^10.8.0",
    "express": "^4.19.0",
    "fastify": "^5.10.0",
    "hono": "^4.12.32",
    "prettier": "^3.9.6",
    "tsup": "^8.0.0",
    "typedoc": "^0.28.0",
    "typedoc-vitepress-theme": "^1.0.0",
    "typescript": "^5.5.0",
    "typescript-eslint": "^8.65.0",
    "vitepress": "^1.0.0",
    "vitest": "^2.0.0",
    "vue": "^3.4.0"
  },
  "engines": {
    "node": ">=18"
  }
}
