{
  "author": "Adrian de la Rosa <adrian@delarosab.me>",
  "bugs": {
    "url": "https://github.com/echecsjs/trf/issues"
  },
  "description": "Parse and stringify FIDE Tournament Report Files (TRF) from chess pairing software. Zero dependencies, strict TypeScript.",
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.5.0",
    "@typescript-eslint/parser": "^8.57.0",
    "@vitest/coverage-v8": "^4.1.0",
    "@vitest/eslint-plugin": "^1.6.12",
    "eslint": "^10.0.3",
    "eslint-config-prettier": "^10.1.8",
    "eslint-import-resolver-typescript": "^4.4.4",
    "eslint-plugin-import-x": "^4.16.2",
    "eslint-plugin-unicorn": "^64.0.0",
    "husky": "^9.1.7",
    "lint-staged": "^17.0.2",
    "prettier": "^3.8.1",
    "tsdown": "^0.22.0",
    "typedoc": "^0.28.17",
    "typescript": "^6.0.2",
    "typescript-eslint": "^8.57.0",
    "vitest": "^4.1.0"
  },
  "engines": {
    "node": ">=22"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "/dist/",
    "LICENSE",
    "README.md",
    "CHANGELOG.md"
  ],
  "homepage": "https://trf.echecs.dev",
  "keywords": [
    "arbiter",
    "chess",
    "fide",
    "no-dependencies",
    "pairing",
    "parser",
    "swiss",
    "tournament",
    "tournament report file",
    "trf",
    "typescript"
  ],
  "license": "MIT",
  "name": "@echecs/trf",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/echecsjs/trf.git"
  },
  "sideEffects": false,
  "type": "module",
  "types": "./dist/index.d.ts",
  "version": "4.0.0",
  "dependencies": {
    "@echecs/tournament": "^3.2.0"
  },
  "scripts": {
    "build": "tsdown",
    "docs": "typedoc",
    "format": "pnpm run format:ci --write",
    "format:ci": "prettier -l \"**/*.+(css|js|json|jsx|md|mjs|mts|ts|tsx|yml|yaml)\"",
    "lint": "pnpm run lint:style && pnpm run lint:types",
    "lint:ci": "pnpm run lint:style --max-warnings 0 && pnpm run lint:types",
    "lint:style": "eslint \"src/**/*.{ts,tsx}\" \"*.mjs\" --fix",
    "lint:types": "tsc --noEmit --project tsconfig.json",
    "test": "vitest run",
    "test:coverage": "pnpm run test --coverage",
    "test:watch": "pnpm run test --watch"
  }
}