{
  "name": "@iam4x/request",
  "version": "2.0.0",
  "description": "A lightweight, TypeScript-first HTTP request utility with built-in retry logic, query string handling, and automatic undefined value filtering",
  "keywords": [
    "http",
    "request",
    "fetch",
    "typescript",
    "retry",
    "query-string",
    "api",
    "client"
  ],
  "main": "./dist/index.js",
  "type": "module",
  "license": "MIT",
  "private": false,
  "types": "./dist/index.d.ts",
  "module": "./dist/index.js",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rm -rf dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
    "fmt": "prettier --write README.md package.json eslint.config.js tsconfig.json tsconfig.build.json \"src/**/*.ts\" \"test/**/*.ts\"",
    "test": "bun test src",
    "test:vitest": "bun run build && vitest run test/vitest",
    "lint": "bun run lint:eslint && bun run lint:tsc",
    "lint:eslint": "eslint src",
    "lint:tsc": "tsc --noEmit",
    "prepare": "husky",
    "prepublishOnly": "bun run build"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.4",
    "@types/bun": "latest",
    "@typescript-eslint/parser": "^8.63.0",
    "eslint": "^9.39.4",
    "eslint-config-prettier": "10.1.1",
    "eslint-import-resolver-typescript": "4.3.1",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-prettier": "^5.5.6",
    "globals": "^16.5.0",
    "happy-dom": "^20.10.6",
    "husky": "^9.1.7",
    "prettier": "^3.9.5",
    "tsc-alias": "^1.9.0",
    "typescript-eslint": "^8.63.0",
    "vitest": "^4.1.10"
  },
  "peerDependencies": {
    "typescript": "^5.9.3"
  }
}
