{
  "name": "js-chess-engine",
  "version": "2.4.6",
  "description": "Simple and fast Node.js chess engine with configurable AI and no dependencies",
  "keywords": [
    "chess",
    "chess-engine",
    "chess-ai",
    "ai",
    "minimax",
    "alpha-beta",
    "quiescence-search",
    "evaluation",
    "move-generation",
    "legal-moves",
    "transposition-table",
    "zobrist",
    "fen",
    "typescript",
    "node",
    "browser",
    "esm",
    "commonjs",
    "react",
    "no-dependencies",
    "board-game"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "build:watch": "tsc --watch",
    "benchmark": "npm run build && node scripts/benchmark-levels.mjs",
    "clean": "rm -rf dist",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "prebuild": "npm run clean",
    "test": "jest",
    "test:watch": "jest --watch",
    "test:coverage": "jest --coverage",
    "test:tt-cache": "npm run build && node scripts/test-tt-cache.mjs",
    "typecheck": "tsc --noEmit",
    "play": "node example/play.mjs",
    "preversion": "npm run lint && npm test && npm run build",
    "version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
  },
  "author": "bc.josefjadrny@gmail.com",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/josefjadrny/js-chess-engine.git"
  },
  "homepage": "https://github.com/josefjadrny/js-chess-engine#readme",
  "license": "MIT",
  "engines": {
    "node": ">=24"
  },
  "devDependencies": {
    "@eslint/js": "^9.39.2",
    "@types/jest": "^30.0.0",
    "@types/node": "^25.0.9",
    "conventional-changelog-cli": "^5.0.0",
    "eslint": "^9.39.2",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-jest": "^29.12.1",
    "jest": "^30.2.0",
    "ts-jest": "^29.4.6",
    "ts-node": "^10.9.2",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.54.0"
  }
}
