{
  "name": "diffx-cli",
  "version": "0.16.0",
  "description": "Local code review tool for git diffs with a GitHub PR-like web UI",
  "type": "module",
  "license": "MIT",
  "homepage": "https://github.com/wong2/diffx",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/wong2/diffx.git"
  },
  "bugs": {
    "url": "https://github.com/wong2/diffx/issues"
  },
  "keywords": [
    "git",
    "diff",
    "code-review",
    "cli"
  ],
  "bin": {
    "diffx": "./dist/cli.mjs"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@hono/node-server": "^1.14.1",
    "@tanstack/react-query": "^5.96.2",
    "editorconfig": "^3.0.2",
    "get-port": "^7.2.0",
    "hono": "^4.7.6",
    "open": "^11.0.0",
    "react-resizable": "^4.0.1"
  },
  "devDependencies": {
    "@changesets/changelog-git": "^0.2.1",
    "@changesets/cli": "^2.30.0",
    "@pierre/diffs": "^1.2.9",
    "@types/node": "^25.5.2",
    "@types/react": "^19.1.2",
    "@types/react-dom": "^19.1.2",
    "@vitejs/plugin-react": "^6.0.1",
    "lucide-react": "^1.7.0",
    "react": "^19.1.0",
    "react-dom": "^19.1.0",
    "tsdown": "^0.21.7",
    "tsx": "^4.19.4",
    "typescript": "^6.0.2",
    "vite": "^8.0.3"
  },
  "scripts": {
    "build": "vite build && tsdown",
    "changeset": "changeset",
    "dev:client": "vite",
    "dev:server": "tsx src/cli.ts --no-open -p 3433",
    "release": "pnpm run build && changeset publish",
    "version-packages": "changeset version"
  }
}