{
  "name": "@kubun/http-client",
  "version": "0.10.0",
  "license": "see LICENSE.md",
  "keywords": [],
  "type": "module",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": "./lib/index.js"
  },
  "files": [
    "lib/*",
    "LICENSE.md"
  ],
  "sideEffects": false,
  "dependencies": {
    "@enkaku/http-client-transport": "^0.16.0",
    "@kubun/client": "^0.10.0"
  },
  "devDependencies": {
    "@enkaku/token": "^0.16.0",
    "@kubun/logger": "^0.10.0",
    "@kubun/protocol": "^0.10.0"
  },
  "scripts": {
    "build:clean": "del lib",
    "build:js": "swc src -d ./lib --config-file ../../swc.json --strip-leading-paths",
    "build:types": "tsc --emitDeclarationOnly --skipLibCheck",
    "build:types:ci": "tsc --emitDeclarationOnly --declarationMap false",
    "build": "pnpm run build:clean && pnpm run build:js && pnpm run build:types",
    "test:types": "tsc --noEmit",
    "test:unit": "vitest run",
    "test": "pnpm run test:types && pnpm run test:unit"
  }
}