{
  "name": "generic-filehandle2",
  "description": "uniform interface for accessing binary data from local files, remote HTTP resources, and browser Blob data",
  "version": "1.0.0",
  "main": "dist/index.js",
  "module": "esm/index.js",
  "repository": "GMOD/generic-filehandle2",
  "license": "MIT",
  "author": {
    "name": "Colin Diesh",
    "email": "colin.diesh@gmail.com",
    "url": "https://github.com/cmdcolin"
  },
  "engines": {
    "node": ">=12"
  },
  "files": [
    "dist",
    "esm",
    "src"
  ],
  "scripts": {
    "test": "vitest",
    "coverage": "yarn test --coverage",
    "lint": "eslint --report-unused-disable-directives --max-warnings 0 src test",
    "clean": "rimraf dist esm",
    "prebuild": "yarn clean",
    "build:esm": "tsc --outDir esm",
    "build:es5": "tsc --module commonjs --outDir dist",
    "build": "yarn build:esm && yarn build:es5",
    "preversion": "yarn lint && yarn test --run && yarn build",
    "postversion": "git push --follow-tags"
  },
  "keywords": [
    "bionode",
    "biojs",
    "ucsc",
    "genomics"
  ],
  "devDependencies": {
    "@types/fetch-mock": "^7.3.8",
    "@types/node": "^20.11.24",
    "@types/range-parser": "^1.2.7",
    "@typescript-eslint/eslint-plugin": "^8.16.0",
    "@typescript-eslint/parser": "^8.16.0",
    "@vitest/coverage-v8": "^2.1.8",
    "eslint": "^9.16.0",
    "eslint-plugin-unicorn": "^56.0.1",
    "fetch-mock": "^9.0.0",
    "node-fetch": "^2.0.0",
    "prettier": "^3.4.1",
    "range-parser": "^1.2.1",
    "rimraf": "^6.0.0",
    "standard-changelog": "^6.0.0",
    "typescript": "^5.7.0",
    "typescript-eslint": "^8.18.0",
    "vitest": "^2.1.8"
  },
  "publishConfig": {
    "access": "public"
  },
  "browser": {
    "./dist/localFile.js": false,
    "./esm/localFile.js": false
  }
}
