{
  "name": "dexix-request",
  "version": "1.1.0",
  "description": "A tiny, zero-dependency HTTP client for JavaScript and TypeScript with interceptors, built-in retries, and a beautiful CLI. Built for the browser, Node.js, and React.",
  "keywords": [
    "http",
    "http-client",
    "fetch",
    "request",
    "api",
    "typescript",
    "axios-alternative",
    "react",
    "node",
    "cli",
    "interceptors",
    "retry"
  ],
  "homepage": "https://github.com/AkbariCodes/DexiX-Request/#readme",
  "bugs": {
    "url": "https://github.com/AkbariCodes/DexiX-Request/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AkbariCodes/DexiX-Request.git"
  },
  "license": "MIT",
  "author": "DexiX Contributors",
  "type": "module",
  "sideEffects": false,
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "dx": "./bin/dexix.mjs",
    "dexix": "./bin/dexix.mjs"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js",
      "require": "./dist/index.cjs"
    },
    "./package.json": "./package.json"
  },
  "files": [
    "dist",
    "bin",
    "scripts/postinstall.mjs",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "engines": {
    "node": ">=20"
  },
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "typecheck": "tsc --noEmit",
    "lint": "tsc --noEmit",
    "prepublishOnly": "npm run build",
    "postinstall": "node ./scripts/postinstall.mjs"
  },
  "devDependencies": {
    "tsup": "^8.5.1",
    "typescript": "^5.9.3",
    "vitest": "^4.1.10"
  },
  "publishConfig": {
    "access": "public"
  }
}
