{
  "name": "tournament-organizer",
  "version": "4.1.1",
  "description": "JavaScript library for running tournaments",
  "exports": {
    ".": "./dist/index.js",
    "./interfaces": "./dist/interfaces/index.js",
    "./components": "./dist/components/index.js"
  },
  "types": "./dist/index.d.js",
  "files": [
    "dist/**/*"
  ],
  "type": "module",
  "engines": {
    "node": ">=16.7"
  },
  "scripts": {
    "build": "npx rimraf dist && tsc -p tsconfig.json",
    "docs": "typedoc --options typedoc.json",
    "prepare": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/slashinfty/tournament-organizer.git"
  },
  "keywords": [
    "tournament",
    "pairings",
    "scorekeeping",
    "swiss",
    "round robin",
    "single elimination",
    "double elimination"
  ],
  "author": "Matt Braddock",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/slashinfty/tournament-organizer/issues"
  },
  "homepage": "https://slashinfty.github.io/tournament-organizer/",
  "dependencies": {
    "tournament-pairings": "^2.0.1"
  },
  "devDependencies": {
    "@types/node": "^24.9.1",
    "ts-node": "^10.9.2",
    "tslib": "^2.8.1",
    "typedoc": "^0.28.14",
    "typedoc-plugin-merge-modules": "^7.0.0",
    "typescript": "^5.9.3"
  }
}
