{
  "name": "tiebreak",
  "version": "0.4.0",
  "description": "Calculation of chess tournament tiebreaks compliant with FIDE regulations",
  "keywords": [
    "chess",
    "fide",
    "tiebreak",
    "tiebreaker",
    "ranking",
    "buchholz"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/marceljuenemann/tiebreak.git"
  },
  "author": {
    "name": "Marcel Juenemann",
    "email": "tiebreak@marcel.world",
    "url": "https://marcel.world/"
  },
  "type": "module",
  "exports": {
    ".": {
      "import": "./build/index.js",
      "types": "./build/src/index.d.ts"
    }
  },
  "types": "./build/src/index.d.ts",
  "license": "MIT",
  "engines": {
    "node": ">=18.15.0",
    "npm": ">=9.5.0"
  },
  "volta": {
    "node": "18.15.0",
    "npm": "10.2.0"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "npm run clean && npm run type:dts && npm run build:main",
    "build:main": "tsx ./scripts/build.ts",
    "clean": "tsx ./scripts/clean.ts",
    "type:dts": "tsc --emitDeclarationOnly --project tsconfig.build.json",
    "type:check": "tsc --noEmit",
    "format": "prettier \"src/**/*.ts\" --write",
    "format:check": "prettier \"src/**/*.ts\" --check",
    "lint": "eslint src --ext .ts --fix",
    "lint:check": "eslint src --ext .ts",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "test:coverage": "vitest run --coverage",
    "test:setup": "tsx ./scripts/test-setup.ts",
    "spell:check": "cspell \"{README.md,.github/*.md,src/**/*.ts}\"",
    "cz": "cz",
    "semantic-release": "semantic-release"
  },
  "devDependencies": {
    "@types/node": "^20.5.0",
    "@types/prompts": "^2.4.4",
    "@typescript-eslint/eslint-plugin": "^6.4.0",
    "@typescript-eslint/parser": "^6.4.0",
    "c8": "^8.0.1",
    "cspell": "^7.0.0",
    "csv-parse": "^5.5.5",
    "esbuild": "^0.19.2",
    "eslint": "^8.47.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-import-resolver-typescript": "^3.6.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-import": "^2.28.0",
    "nyc": "^15.1.0",
    "prettier": "^3.0.2",
    "source-map-support": "^0.5.21",
    "tsx": "^4.7.1",
    "typescript": "^5.1.6",
    "vitest": "^0.34.1"
  }
}
