{
  "name": "@nodeboot/starter-http",
  "version": "3.5.7",
  "description": "Node-Boot starter package for HTTP clients",
  "author": "Manuel Santos <ney.br.santos@gmail.com>",
  "license": "MIT",
  "keywords": [
    "monorepo",
    "typescript"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/nodejs-boot/node-boot.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "dependencies": {
    "@nodeboot/context": "2.3.0",
    "@nodeboot/error": "1.3.0"
  },
  "peerDependencies": {
    "axios": ">=1.12.2",
    "axios-rate-limit": ">=1.4.0"
  },
  "devDependencies": {},
  "files": [
    "dist",
    "package.json",
    "README.md",
    "config.d.ts"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "clean:build": "rimraf ./dist",
    "dev": "nodemon",
    "lint": "eslint . --ext .js,.ts",
    "lint:fix": "pnpm lint --fix",
    "format": "prettier --check .",
    "format:fix": "prettier --write .",
    "test": "jest",
    "typecheck": "tsc"
  }
}