{
  "name": "chess-mcp",
  "type": "module",
  "version": "0.0.7",
  "description": "Chess MCP server with position evaluation, move validation, and masters database",
  "main": "build/index.js",
  "bin": {
    "chess-mcp": "build/index.js"
  },
  "scripts": {
    "build": "tsc",
    "postbuild": "chmod +x build/index.js",
    "start": "node build/index.js",
    "dev": "tsc -w",
    "test": "NODE_OPTIONS=--experimental-vm-modules jest",
    "test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --watch",
    "prepublishOnly": "npm run build"
  },
  "files": [
    "build",
    "README.md",
    "LICENSE"
  ],
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "chess",
    "mcp",
    "stockfish",
    "claude",
    "anthropic",
    "chess-analysis"
  ],
  "author": "turlockmike",
  "license": "ISC",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.4",
    "@types/chess.js": "^0.13.7",
    "chess-fen2img": "^1.0.2",
    "chess.js": "^0.13.4",
    "node-fetch": "^3.3.2",
    "node-uci": "^1.3.4",
    "typescript": "^5.3.3",
    "winston": "^3.17.0"
  },
  "devDependencies": {
    "@babel/core": "^7.26.0",
    "@babel/preset-env": "^7.26.0",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.2",
    "@types/node-fetch": "^2.6.12",
    "@types/node-uci": "^1.3.6",
    "babel-jest": "^29.7.0",
    "jest": "^29.7.0",
    "ts-jest": "^29.2.5"
  }
}
