{
  "name": "@gmod/indexedfasta",
  "version": "3.0.1",
  "description": "read indexed fasta and bgzipped fasta formats",
  "license": "MIT",
  "repository": "GMOD/indexedfasta-js",
  "main": "dist/index.js",
  "module": "esm/index.js",
  "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",
    "docs": "documentation readme src --section=API",
    "clean": "rimraf dist esm",
    "prebuild": "yarn clean",
    "build:esm": "tsc --target es2020 --outDir esm",
    "build:es5": "tsc --target es2020 --module commonjs --outDir dist",
    "build": "yarn build:esm && yarn run build:es5",
    "version": "standard-changelog && git add CHANGELOG.md",
    "prepublishOnly": "yarn test --run && yarn build",
    "postversion": "git push --follow-tags"
  },
  "keywords": [
    "fasta",
    "genomics",
    "biojs",
    "bionode"
  ],
  "dependencies": {
    "@gmod/bgzf-filehandle": "^2.0.0",
    "generic-filehandle2": "^1.0.0"
  },
  "devDependencies": {
    "@typescript-eslint/eslint-plugin": "^8.17.0",
    "@typescript-eslint/parser": "^8.17.0",
    "@vitest/coverage-v8": "^2.1.8",
    "cross-fetch": "^4.0.0",
    "documentation": "^14.0.1",
    "eslint": "^9.5.0",
    "eslint-plugin-unicorn": "^56.0.1",
    "prettier": "^3.0.3",
    "rimraf": "^6.0.1",
    "standard-changelog": "^6.0.0",
    "typescript": "^5.0.2",
    "typescript-eslint": "^8.17.0",
    "vitest": "^2.1.8"
  },
  "publishConfig": {
    "access": "public"
  }
}
