{
  "name": "@pokertools/engine",
  "version": "1.0.16",
  "description": "Enterprise-grade Texas Hold'em poker engine",
  "author": "A.Aurelius",
  "license": "MIT",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "require": "./dist/index.js",
      "import": "./dist/index.js",
      "default": "./dist/index.js"
    },
    "./browser": {
      "types": "./dist/browser.d.ts",
      "browser": "./dist/browser.js",
      "require": "./dist/browser.js",
      "import": "./dist/browser.js",
      "default": "./dist/browser.js"
    }
  },
  "browser": "./dist/browser.js",
  "files": [
    "dist",
    "README.md",
    "LICENSE"
  ],
  "sideEffects": false,
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "clean": "rm -rf dist coverage",
    "typecheck": "tsc --noEmit",
    "lint": "eslint . --ext .ts",
    "lint:fix": "eslint . --ext .ts --fix",
    "test": "NODE_OPTIONS='--no-warnings' jest",
    "test:watch": "NODE_OPTIONS='--no-warnings' jest --watch",
    "test:coverage": "NODE_OPTIONS='--no-warnings' jest --coverage"
  },
  "keywords": [
    "poker",
    "texas-holdem",
    "engine",
    "game-engine",
    "redux",
    "immutable",
    "state-management",
    "tournament",
    "cash-game"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/aaurelions/pokertools.git",
    "directory": "packages/engine"
  },
  "homepage": "https://github.com/aaurelions/pokertools/tree/main/packages/engine#readme",
  "bugs": {
    "url": "https://github.com/aaurelions/pokertools/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=24.0.0"
  },
  "dependencies": {
    "@pokertools/evaluator": "1.0.16",
    "@pokertools/types": "1.0.16"
  },
  "peerDependencies": {
    "@pokertools/evaluator": "1.0.16",
    "@pokertools/types": "1.0.16"
  }
}
