{
  "name": "@poker-apprentice/hand-evaluator",
  "version": "4.3.0",
  "description": "Evaluate the strength of a hand of poker",
  "main": "dist/cjs/index.js",
  "module": "dist/esm/index.js",
  "types": "dist/types/index.d.ts",
  "repository": "https://github.com/poker-apprentice/hand-evaluator",
  "author": "Matt Huggins <matt.huggins@gmail.com>",
  "license": "MIT",
  "private": false,
  "keywords": [
    "poker",
    "poker hand",
    "holdem",
    "casino",
    "cards",
    "deck of cards"
  ],
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "yarn build:types && yarn build:rollup",
    "build:types": "tsc --project tsconfig.build.json",
    "build:rollup": "cross-env NODE_ENV=production rollup -c",
    "clean": "rimraf dist",
    "lint": "eslint src",
    "lint:fix": "yarn lint src --fix",
    "format": "prettier . --check",
    "format:fix": "prettier . --write",
    "test": "cross-env NODE_ENV=test jest",
    "benchmark": "./bin/benchmark",
    "prepublishOnly": "yarn clean && yarn lint && yarn format && yarn test && yarn build",
    "generate:tables": "ts-node scripts/generateTables.ts && prettier --write src/core/tables/tables.generated.ts"
  },
  "dependencies": {
    "@poker-apprentice/types": "^1.4.0"
  },
  "devDependencies": {
    "@babel/plugin-transform-runtime": "^7.22.15",
    "@babel/preset-env": "^7.22.15",
    "@babel/preset-typescript": "^7.22.15",
    "@babel/runtime": "^7.22.15",
    "@rollup/plugin-babel": "^6.0.3",
    "@rollup/plugin-commonjs": "^25.0.4",
    "@rollup/plugin-node-resolve": "^15.2.1",
    "@rollup/plugin-terser": "^0.4.3",
    "@types/jest": "^29.2.4",
    "@types/node": "^22.10.0",
    "@typescript-eslint/eslint-plugin": "^6.7.0",
    "@typescript-eslint/parser": "^6.7.0",
    "babel-jest": "^29.3.1",
    "babel-plugin-module-resolver": "^5.0.2",
    "cross-env": "^7.0.3",
    "eslint": "^8.49.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-import-resolver-custom-alias": "^1.3.2",
    "eslint-plugin-import": "^2.29.1",
    "eslint-plugin-jsdoc": "^46.8.0",
    "jest": "^29.3.1",
    "prettier": "^2.8.1",
    "rimraf": "^5.0.5",
    "rollup": "^3.29.1",
    "tinybench": "^2.8.0",
    "ts-jest": "^29.4.11",
    "ts-node": "^10.9.2",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "typescript": "^5.9.3"
  }
}
