{
  "name": "@theholocron/http-client",
  "version": "1.11.0",
  "description": "Shared HTTP primitives for theholocron — REST client factory, auth resolver, and error types",
  "homepage": "https://github.com/theholocron/clients/tree/main/packages/http-client#readme",
  "bugs": "https://github.com/theholocron/clients/issues",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/theholocron/clients.git",
    "directory": "packages/http-client"
  },
  "license": "GPL-3.0",
  "author": "Newton Koumantzelis",
  "keywords": [
    "typescript",
    "http",
    "rest",
    "api",
    "fetch"
  ],
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.mjs",
  "exports": {
    ".": {
      "types": "./dist/index.d.mts",
      "import": "./dist/index.mjs",
      "default": "./dist/index.mjs"
    },
    "./testing": {
      "types": "./dist/testing.d.mts",
      "import": "./dist/testing.mjs",
      "default": "./dist/testing.mjs"
    }
  },
  "peerDependencies": {
    "vitest": ">=4.0.0"
  },
  "peerDependenciesMeta": {
    "vitest": {
      "optional": true
    }
  },
  "devDependencies": {
    "@types/node": "^26.2.0",
    "@theholocron/eslint-config": "^7.24.1",
    "@theholocron/tsconfig": "^7.24.1",
    "@theholocron/tsdown-config": "^7.24.1",
    "@theholocron/vitest-config": "^7.24.1",
    "@vitest/coverage-v8": "^4.1.10",
    "@vitest/eslint-plugin": "^1.6.25",
    "eslint": "^10.8.1",
    "eslint-plugin-n": "^18.3.0",
    "eslint-plugin-simple-import-sort": "^14.0.0",
    "globals": "^17.9.0",
    "tsdown": "^0.22.14",
    "typescript": "^5.9.3",
    "vitest": "^4.1.10"
  },
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "engines": {
    "node": ">=22.0.0"
  },
  "releases": "https://github.com/theholocron/clients/releases",
  "wiki": "https://github.com/theholocron/clients/wiki",
  "scripts": {
    "build": "tsdown",
    "lint": "eslint .",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit"
  },
  "types": "./dist/index.d.mts"
}