{
  "name": "@uploadx/client",
  "version": "0.0.5",
  "description": "Resumable upload client for browser and Node.js",
  "type": "commonjs",
  "main": "lib/index.js",
  "module": "lib/esm/index.js",
  "types": "lib/index.d.ts",
  "exports": {
    ".": {
      "types": "./lib/index.d.ts",
      "import": "./lib/esm/index.js",
      "require": "./lib/index.js",
      "browser": "./lib/browser/index.js"
    }
  },
  "files": [
    "lib"
  ],
  "scripts": {
    "build": "npm run clean && npm run build:cjs && npm run build:esm && npm run build:web",
    "build:cjs": "tsc -p tsconfig.json",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:web": "rollup -c",
    "clean": "rimraf ./lib",
    "watch": "tsc -b . --watch",
    "watch:web": "rollup -c --watch",
    "lint": "biome check --write src examples",
    "test": "jest",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "uploadx",
    "upload",
    "resumable",
    "chunked",
    "file-upload"
  ],
  "author": {
    "name": "Oleg Kukhariev",
    "url": "https://github.com/kukhariev"
  },
  "repository": {
    "url": "git+https://github.com/kukhariev/uploadx-client.git"
  },
  "engines": {
    "node": ">=18"
  },
  "bugs": {
    "url": "https://github.com/kukhariev/uploadx-client/issues"
  },
  "license": "MIT",
  "workspaces": [
    "examples"
  ],
  "dependencies": {
    "axios": "^1.13.6",
    "axios-retry": "^4.5.0"
  },
  "devDependencies": {
    "@biomejs/biome": "2.4.5",
    "@rollup/plugin-commonjs": "^29.0.0",
    "@rollup/plugin-json": "^6.1.0",
    "@rollup/plugin-node-resolve": "^16.0.3",
    "@rollup/plugin-terser": "^0.4.4",
    "@rollup/plugin-typescript": "^12.3.0",
    "@types/jest": "^30.0.0",
    "@types/node": "24.11.0",
    "jest": "30.2.0",
    "lint-staged": "16.3.1",
    "rimraf": "6.1.3",
    "rollup": "^4.59.0",
    "ts-jest": "29.4.6",
    "tsconfig-paths": "4.2.0",
    "tslib": "^2.8.1",
    "typescript": "^5.9.3"
  },
  "publishConfig": {
    "access": "public"
  }
}
