{
  "name": "@vibesense/cli",
  "version": "2.3.1",
  "description": "Drive Claude Code with a game controller — and play retro games while the agent works.",
  "license": "Apache-2.0",
  "author": "stephenleo",
  "type": "module",
  "bin": {
    "vibesense": "dist/cli.js"
  },
  "files": [
    "dist",
    "games/snake",
    "games/tetris",
    "games/pacman",
    "games/breakout",
    "games/asteroids"
  ],
  "engines": {
    "node": ">=22"
  },
  "scripts": {
    "postinstall": "chmod +x node_modules/node-pty/prebuilds/*/spawn-helper ../node-pty/prebuilds/*/spawn-helper 2>/dev/null || true",
    "prepublishOnly": "npm run build",
    "build": "tsc -p tsconfig.build.json",
    "dev": "tsx src/cli.ts",
    "test": "vitest run --passWithNoTests",
    "typecheck": "tsc --noEmit",
    "lint": "eslint .",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "verify": "npm run typecheck && npm run lint && npm run format:check && npm run test"
  },
  "dependencies": {
    "dualsense-ts": "^5.5.0",
    "node-hid": "^3.3.0",
    "node-pty": "^1.1.0",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "eslint": "^9.0.0",
    "prettier": "^3.0.0",
    "tsx": "^4.19.0",
    "typescript": "^5.6.0",
    "typescript-eslint": "^8.0.0",
    "vitest": "^3.0.0"
  }
}
