{
  "name": "@chess-labs/terminal",
  "version": "1.0.5",
  "description": "A command-line chess game powered by Stockfish",
  "main": "dist/index.js",
  "type": "module",
  "keywords": [
    "chess",
    "terminal",
    "stockfish",
    "cli",
    "game",
    "command-line",
    "interactive"
  ],
  "author": "Chess Labs",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/chess-labs/terminal.git"
  },
  "homepage": "https://github.com/chess-labs/terminal#readme",
  "bugs": {
    "url": "https://github.com/chess-labs/terminal/issues"
  },
  "dependencies": {
    "@chess-labs/core": "^1.0.22",
    "chalk": "^5.4.1",
    "commander": "^14.0.0",
    "inquirer": "^12.6.3"
  },
  "devDependencies": {
    "@types/inquirer": "^9.0.8",
    "@types/node": "^20.17.50",
    "tsx": "^4.19.4",
    "typescript": "^5.8.3",
    "vitest": "^3.1.4"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "bin": {
    "terminal-chess": "./dist/index.js",
    "chess": "./dist/index.js"
  },
  "files": [
    "dist/**/*",
    "README.md",
    "LICENSE",
    "CHANGELOG.md"
  ],
  "scripts": {
    "build": "tsc",
    "start": "pnpm build && node dist/index.js",
    "dev": "tsx src/index.ts",
    "test": "vitest",
    "type-check": "tsc --noEmit"
  }
}