{
  "name": "rea-agents",
  "version": "1.3.0",
  "description": "Reverse engineer anything from your terminal or agent with one CLI and MCP server.",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/morluto/rea.git"
  },
  "homepage": "https://github.com/morluto/rea#readme",
  "bugs": {
    "url": "https://github.com/morluto/rea/issues"
  },
  "keywords": [
    "reverse-engineering",
    "binary-analysis",
    "agents",
    "agent-skills",
    "cli",
    "mcp-server",
    "model-context-protocol",
    "static-analysis",
    "disassembler",
    "decompiler",
    "mcp",
    "hopper"
  ],
  "publishConfig": {
    "access": "public"
  },
  "type": "module",
  "bin": {
    "rea": "scripts/rea.mjs"
  },
  "engines": {
    "node": "^22.19.0 || >=24.11.0"
  },
  "packageManager": "npm@11.16.0",
  "files": [
    "dist",
    "install.sh",
    "bridge/hopper_bridge.py",
    "scripts/rea.mjs",
    "scripts/prepare-node-pty.mjs",
    "scripts/rebuild-native.mjs",
    "scripts/hopper-demo-x11.py",
    "skills",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc -p tsconfig.build.json",
    "check": "npm run typecheck && npm run lint && npm run format:check && npm test",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "oxlint",
    "lint:fix": "oxlint --fix",
    "knip": "knip",
    "lint:dead": "knip",
    "jscpd": "jscpd src/ tests/",
    "scan:todos": "node scripts/scan-todos.mjs",
    "start": "node dist/main.js",
    "pretest": "npm run build",
    "postinstall": "node scripts/prepare-node-pty.mjs",
    "test": "vitest run",
    "pretest:coverage": "npm run build",
    "test:coverage": "vitest run --coverage.enabled --coverage.provider=v8",
    "test:verbose": "vitest run --reporter=verbose",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "verify:hopper": "npm run build && node scripts/verify-real-hopper.mjs",
    "verify:hopper:linux": "npm run build && node scripts/verify-real-hopper-linux.mjs",
    "verify:setup:linux": "npm run build && node scripts/verify-linux-setup-e2e.mjs",
    "build:fixtures": "node scripts/build-conformance-fixtures.mjs",
    "verify:fixtures": "npm run build:fixtures && node scripts/verify-conformance-fixtures.mjs",
    "verify:package": "npm run build && node scripts/verify-package.mjs",
    "verify:published": "node scripts/verify-published-package.mjs",
    "config:print": "node scripts/print-mcp-config.mjs",
    "docs:generate": "typedoc",
    "prepack": "npm run build",
    "prepare": "husky",
    "rebuild:native": "node scripts/rebuild-native.mjs"
  },
  "lint-staged": {
    "*.{ts,mjs,json,md,yml,yaml}": "prettier --write",
    "*.ts": "oxlint --fix"
  },
  "dependencies": {
    "@babel/parser": "8.0.4",
    "@babel/types": "8.0.4",
    "@electron/asar": "4.2.0",
    "@modelcontextprotocol/server": "2.0.0-beta.3",
    "@xterm/addon-serialize": "0.14.0",
    "@xterm/headless": "6.0.0",
    "@zip.js/zip.js": "2.8.26",
    "canonicalize": "3.0.0",
    "diff": "9.0.0",
    "graphology": "0.26.0",
    "graphology-shortest-path": "2.1.0",
    "ignore": "7.0.6",
    "incur": "0.4.13",
    "isomorphic-git": "1.38.7",
    "node-pty": "1.1.0",
    "pino": "9.14.0",
    "plist": "5.0.0",
    "smol-toml": "^1.7.0",
    "write-file-atomic": "7.0.0",
    "ws": "8.21.0",
    "zod": "4.4.3"
  },
  "devDependencies": {
    "@fast-check/vitest": "0.4.1",
    "@modelcontextprotocol/client": "2.0.0-beta.3",
    "@types/node": "24.10.1",
    "@types/write-file-atomic": "4.0.3",
    "@types/ws": "8.18.1",
    "@vitest/coverage-v8": "4.1.10",
    "husky": "9.1.7",
    "jscpd": "5.0.12",
    "knip": "6.26.0",
    "lint-staged": "16.4.0",
    "oxlint": "1.73.0",
    "prettier": "3.6.2",
    "typedoc": "0.28.20",
    "typescript": "5.9.3",
    "vitest": "4.1.10"
  },
  "allowScripts": {
    "node-pty@1.1.0": true
  }
}
