{
  "name": "@gmod/twobit",
  "version": "4.0.1",
  "description": "Read .2bit files in node or webpack",
  "license": "MIT",
  "main": "dist/index.js",
  "module": "esm/index.js",
  "repository": "GMOD/twobit-js",
  "author": {
    "name": "Robert Buels",
    "email": "rbuels@gmail.com",
    "url": "https://github.com/rbuels"
  },
  "engines": {
    "node": ">=6"
  },
  "files": [
    "dist",
    "esm",
    "src"
  ],
  "scripts": {
    "test": "vitest",
    "format": "prettier --write .",
    "coverage": "yarn test --coverage",
    "lint": "eslint --report-unused-disable-directives --max-warnings 0",
    "docs": "documentation readme src/twoBitFile.ts --section=TwoBitFile",
    "clean": "rimraf dist esm",
    "prebuild": "yarn docs && yarn clean",
    "build:esm": "tsc --outDir esm",
    "build:es5": "tsc --module commonjs --outDir dist",
    "build": "yarn build:esm && yarn build:es5",
    "version": "standard-changelog && git add CHANGELOG.md",
    "prepublishOnly": "yarn lint && yarn test --run && yarn build",
    "postversion": "git push --follow-tags"
  },
  "keywords": [
    "bionode",
    "biojs"
  ],
  "dependencies": {
    "generic-filehandle2": "^1.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.1",
    "eslint": "^9.7.0",
    "eslint-plugin-unicorn": "^56.0.0",
    "prettier": "^3.4.2",
    "rimraf": "^6.0.1",
    "standard-changelog": "^6.0.0",
    "typescript": "^5.5.3",
    "typescript-eslint": "^8.13.0",
    "vitest": "^2.1.4"
  },
  "publishConfig": {
    "access": "public"
  }
}
