{
  "name": "@gmod/ucsc-hub",
  "version": "2.0.11",
  "description": "Read and write UCSC track and assembly hub files in node or the browser",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/GMOD/ucsc-hub-js.git"
  },
  "type": "module",
  "main": "dist/index.js",
  "exports": {
    "import": "./esm/index.js",
    "require": "./dist/index.js"
  },
  "author": {
    "name": "Garrett Stevens",
    "email": "stevens.garrett.j@gmail.com",
    "url": "https://github.com/garrettjstevens"
  },
  "files": [
    "dist",
    "esm",
    "src"
  ],
  "scripts": {
    "test": "vitest",
    "clean": "rimraf dist esm",
    "format": "prettier --write .",
    "lint": "eslint --report-unused-disable-directives --max-warnings 0",
    "prebuild": "pnpm clean",
    "build:esm": "tsc --outDir esm",
    "build:es5": "tsc --module commonjs --moduleResolution bundler --outDir dist",
    "postbuild:es5": "echo '{\"type\": \"commonjs\"}' > dist/package.json",
    "preversion": "pnpm lint && pnpm test --run && pnpm build",
    "postversion": "git push --follow-tags",
    "build": "pnpm build:esm && pnpm build:es5",
    "docs": "documentation readme src --section=API",
    "postdocs": "git add README.md"
  },
  "keywords": [
    "trackDb",
    "genomics",
    "bionode",
    "biojs"
  ],
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.8.0",
    "@vitest/coverage-v8": "^4.1.6",
    "documentation": "^14.0.3",
    "eslint": "^10.4.0",
    "eslint-plugin-import-x": "^4.16.2",
    "prettier": "^3.8.3",
    "rimraf": "^6.1.3",
    "typescript": "^6.0.3",
    "typescript-eslint": "^8.59.3",
    "vitest": "^4.1.6"
  },
  "publishConfig": {
    "access": "public"
  }
}
