{
  "name": "@gmod/http-range-fetcher",
  "version": "5.0.7",
  "description": "caching, aggregating fetch manager for doing lots of HTTP range requests",
  "license": "MIT",
  "repository": "rbuels/http-range-fetcher",
  "type": "module",
  "types": "./dist/index.d.ts",
  "exports": {
    "import": {
      "import": "./esm/index.js"
    },
    "require": {
      "require": "./dist/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",
    "clean": "rimraf dist esm",
    "build:esm": "tsc --outDir esm",
    "build:es5": "tsc --module commonjs --outDir dist",
    "build": "yarn build:esm && yarn build:es5",
    "postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
    "prebuild": "yarn clean",
    "preversion": "yarn lint && yarn test --run && yarn build",
    "postversion": "git push --follow-tags",
    "version": "standard-changelog && git add CHANGELOG.md"
  },
  "dependencies": {
    "@jbrowse/quick-lru": "^7.0.0"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.53.0",
    "@typescript-eslint/parser": "^8.53.0",
    "@vitest/coverage-v8": "^4.0.17",
    "eslint": "^9.39.2",
    "eslint-plugin-import": "^2.32.0",
    "eslint-plugin-unicorn": "^62.0.0",
    "prettier": "^3.8.0",
    "rimraf": "^6.1.2",
    "standard-changelog": "^7.0.1",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.53.0",
    "vitest": "^4.0.17"
  },
  "publishConfig": {
    "access": "public"
  }
}
