{
  "name": "teslo",
  "version": "0.6.1",
  "description": "Elo rating system",
  "author": "William Grosset",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/williamgrosset/teslo"
  },
  "homepage": "https://teslo.dev",
  "keywords": [
    "typescript",
    "elo",
    "rating",
    "elo-rating",
    "elo-rating-system",
    "multiplayer",
    "games",
    "matchmaking",
    "leaderboard",
    "ranking-system",
    "player-stats"
  ],
  "files": [
    "dist"
  ],
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "scripts": {
    "lint": "eslint .",
    "format": "prettier --write src/**/*.ts",
    "build": "rollup --config",
    "clean": "rm -rf ./dist",
    "start": "node dist/index.js",
    "test": "jest",
    "prepublish": "pnpm clean && pnpm build"
  },
  "devDependencies": {
    "@rollup/plugin-terser": "^0.4.4",
    "@types/jest": "^29.5.14",
    "@typescript-eslint/eslint-plugin": "^8.19.0",
    "@typescript-eslint/parser": "^8.19.0",
    "eslint": "^9.17.0",
    "eslint-config-prettier": "^9.1.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^15.3.0",
    "prettier": "^3.4.2",
    "rollup": "^4.29.1",
    "rollup-plugin-delete": "^2.1.0",
    "rollup-plugin-dts": "^6.1.1",
    "rollup-plugin-typescript2": "^0.36.0",
    "ts-jest": "^29.2.5",
    "tslib": "^2.8.1",
    "typescript": "^5.7.2"
  },
  "jest": {
    "preset": "ts-jest"
  },
  "lint-staged": {
    "src/**/*.ts": "prettier --write"
  }
}
