{
  "name": "@gmod/http-range-fetcher",
  "version": "4.0.0",
  "description": "caching, aggregating fetch manager for doing lots of HTTP range requests",
  "license": "MIT",
  "repository": "rbuels/http-range-fetcher",
  "main": "dist/index.js",
  "module": "esm/index.js",
  "author": {
    "name": "Robert Buels",
    "email": "rbuels@gmail.com",
    "url": "https://github.com/rbuels"
  },
  "files": [
    "dist",
    "esm",
    "src"
  ],
  "scripts": {
    "test": "vitest",
    "lint": "eslint --report-unused-disable-directives --max-warnings 0",
    "docs": "documentation readme --shallow src/HttpRangeFetcher.js --section=API",
    "clean": "rimraf dist esm",
    "build:esm": "tsc --outDir esm",
    "build:es5": "tsc --module commonjs --outDir dist",
    "build": "npm run build:esm && npm run build:es5",
    "prebuild": "npm run clean",
    "prepublishOnly": "npm run lint && npm test run && npm run build",
    "postversion": "git push --follow-tags",
    "version": "standard-changelog && git add CHANGELOG.md"
  },
  "dependencies": {
    "quick-lru": "^4.0.0"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.0.1",
    "@typescript-eslint/parser": "^8.0.1",
    "@vitest/coverage-v8": "^2.1.8",
    "documentation": "^14.0.2",
    "eslint": "^9.9.0",
    "eslint-plugin-unicorn": "^56.0.1",
    "prettier": "^3.4.2",
    "rimraf": "^6.0.1",
    "standard-changelog": "^6.0.0",
    "typescript": "^5.1.3",
    "typescript-eslint": "^8.18.0",
    "vitest": "^2.0.5"
  },
  "publishConfig": {
    "access": "public"
  }
}
