{
  "name": "@debugr/http-common",
  "version": "4.0.2",
  "description": "Common interfaces and utility functions for HTTP plugins",
  "homepage": "https://github.com/cdn77/debugr",
  "license": "MIT",
  "author": {
    "name": "Eliška Daniela Kaderová",
    "email": "eliska.kaderova@cdn77.com"
  },
  "repository": {
    "url": "https://github.com/cdn77/debugr",
    "directory": "packages/http-common"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "main": "dist/index.cjs",
  "module": "dist/index.mjs",
  "types": "dist/index.d.mts",
  "exports": {
    ".": {
      "types": {
        "require": "./dist/index.d.cts",
        "import": "./dist/index.d.mts"
      },
      "require": "./dist/index.cjs",
      "import": "./dist/index.mjs"
    }
  },
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "@debugr/core": "^4.0.2"
  },
  "devDependencies": {
    "@types/node": "^24.13.3",
    "oxfmt": "^0.63.0",
    "oxlint": "^1.78.0",
    "publint": "^0.3.23",
    "tsdown": "^0.22.14",
    "typescript": "^7.0.2"
  },
  "engines": {
    "node": ">=24"
  },
  "engineStrict": true,
  "scripts": {
    "cleanup": "rm -rf dist",
    "oxlint": "oxlint",
    "oxlint:fix": "oxlint --fix",
    "oxfmt": "oxfmt --check",
    "oxfmt:fix": "oxfmt --write",
    "lint": "pnpm run '/^(oxlint|oxfmt)$/'",
    "format": "pnpm run --sequential '/^(oxlint|oxfmt):fix$/'",
    "build": "tsc --noEmit && tsdown",
    "publint": "publint"
  }
}