{
    "name": "tournament-pairings",
    "version": "2.0.0",
    "description": "Functions to generate pairings for tournaments ",
    "exports": {
        ".": "./dist/index.js",
        "./interfaces": "./dist/interfaces.js"
    },
    "files": [
        "dist/**/*"
    ],
    "type": "module",
    "types": "./dist/index.d.ts",
    "scripts": {
        "build": "rm -rf dist/* && tsc -p tsconfig.json && rollup --config rollup.config.ts --configPlugin typescript",
        "test": "mocha"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/slashinfty/tournament-pairings.git"
    },
    "keywords": [
        "elimination",
        "roundrobin",
        "swiss",
        "pairings",
        "tournament"
    ],
    "author": "Matt Braddock",
    "license": "GPL-3.0-or-later",
    "devDependencies": {
        "@rollup/plugin-commonjs": "^28.0.2",
        "@rollup/plugin-node-resolve": "^16.0.0",
        "@rollup/plugin-typescript": "^12.1.2",
        "@types/chai": "^5.2.0",
        "@types/edmonds-blossom": "^1.0.4",
        "@types/mocha": "^10.0.10",
        "@types/node": "^22.13.9",
        "chai": "^5.2.0",
        "mocha": "^11.1.0",
        "rollup": "^4.34.9",
        "ts-node": "^10.9.2",
        "tslib": "^2.8.1",
        "typescript": "^5.8.2"
    },
    "dependencies": {
        "edmonds-blossom-fixed": "^1.0.1"
    }
}
