{
  "name": "openskill",
  "version": "4.1.1",
  "description": "Weng-Lin Bayesian approximation method for online skill-ranking.",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.cjs",
      "import": "./dist/index.js"
    },
    "./models": {
      "types": "./dist/models/index.d.ts",
      "require": "./dist/models/index.cjs",
      "import": "./dist/models/index.js"
    }
  },
  "scripts": {
    "build": "tsup",
    "lint": "eslint .",
    "prepare": "husky && npm run build",
    "release": "np",
    "test": "jest",
    "test:coverage": "npm run test -- --coverage"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "files": [
    "/dist",
    "!/dist/**/__tests__/*"
  ],
  "sideEffects": false,
  "repository": {
    "type": "git",
    "url": "git+https://github.com/philihp/openskill.js.git"
  },
  "keywords": [
    "ranking",
    "trueskill",
    "bayesian"
  ],
  "author": "Philihp Busby <philihp@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/philihp/openskill.js/issues"
  },
  "homepage": "https://github.com/philihp/openskill.js#readme",
  "devDependencies": {
    "@eslint/js": "10.0.1",
    "@philihp/prettier-config": "1.0.0",
    "@tsconfig/recommended": "1.0.13",
    "@types/jest": "30.0.0",
    "esbuild": "0.27.3",
    "esbuild-jest": "0.5.0",
    "eslint": "10.0.2",
    "eslint-config-prettier": "10.1.8",
    "eslint-plugin-jest": "29.15.0",
    "eslint-plugin-prettier": "5.5.5",
    "husky": "9.1.7",
    "jest": "30.2.0",
    "lint-staged": "16.3.1",
    "tsup": "8.5.1",
    "typescript": "5.9.3",
    "typescript-eslint": "8.56.1"
  },
  "prettier": "@philihp/prettier-config",
  "dependencies": {
    "@types/gaussian": "1.2.2",
    "@types/ramda": "0.31.1",
    "gaussian": "1.3.0",
    "ramda": "0.32.0",
    "sort-unwind": "3.1.0"
  }
}
