{
  "name": "@gmod/ucsc-hub",
  "version": "1.0.1",
  "description": "Read and write UCSC track and assembly hub files in node or the browser",
  "license": "MIT",
  "repository": "github:GMOD/ucsc-hub-js",
  "main": "dist/index.js",
  "module": "esm/index.js",
  "author": {
    "name": "Garrett Stevens",
    "email": "stevens.garrett.j@gmail.com",
    "url": "https://github.com/garrettjstevens"
  },
  "files": [
    "dist",
    "esm",
    "src"
  ],
  "scripts": {
    "test": "vitest src",
    "lint": "eslint --report-unused-disable-directives --max-warnings 0",
    "docs": "documentation readme src --section=API",
    "postdocs": "git add README.md",
    "clean": "rimraf dist esm",
    "prebuild": "yarn docs && npm run clean",
    "build:esm": "tsc --target es2018 --outDir esm",
    "build:es5": "tsc --target es2018 --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": [
    "trackDb",
    "genomics",
    "bionode",
    "biojs"
  ],
  "devDependencies": {
    "@types/node": "^22.10.7",
    "@typescript-eslint/eslint-plugin": "^8.20.0",
    "@typescript-eslint/parser": "^8.20.0",
    "@vitest/coverage-v8": "^3.0.0",
    "documentation": "^14.0.1",
    "eslint": "^9.18.0",
    "eslint-plugin-unicorn": "^57.0.0",
    "prettier": "^3.0.3",
    "rimraf": "^6.0.1",
    "typescript": "^5.2.2",
    "typescript-eslint": "^8.20.0",
    "vitest": "^3.0.0"
  },
  "publishConfig": {
    "access": "public"
  }
}
