{
  "name": "@lsproxy/cli",
  "version": "0.11.3",
  "description": "Standalone refactor CLI driving any LSP server: project-wide rename, file-move with importer updates, and move-symbol",
  "private": false,
  "keywords": [
    "lsp",
    "language-server-protocol",
    "refactor",
    "rename",
    "codemod",
    "move-symbol",
    "cli",
    "typescript"
  ],
  "homepage": "https://github.com/pradeepmouli/lspeasy#readme",
  "bugs": {
    "url": "https://github.com/pradeepmouli/lspeasy/issues"
  },
  "license": "MIT",
  "author": "Pradeep Mouli <pmouli@mac.com> (https://github.com/pradeepmouli)",
  "repository": {
    "type": "git",
    "url": "https://github.com/pradeepmouli/lspeasy.git",
    "directory": "apps/cli"
  },
  "type": "module",
  "bin": {
    "lsproxy": "./dist/cli.js"
  },
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "README.md",
    "skills",
    "skillit-postinstall.cjs"
  ],
  "publishConfig": {
    "access": "public"
  },
  "dependencies": {
    "commander": "^15.0.0",
    "smol-toml": "^1.7.0",
    "zod": "^4.4.3",
    "@lspeasy/client": "3.1.6",
    "@lsproxy/proxy": "1.2.1",
    "@lspeasy/core": "2.6.1"
  },
  "devDependencies": {
    "@skillit/cli": "^0.4.0",
    "tsx": "^4.22.4",
    "typedoc-plugin-skillit": "^1.4.1",
    "typescript": "^6.0.3"
  },
  "engines": {
    "node": ">=22.12.0"
  },
  "scripts": {
    "build": "tsgo --build",
    "clean": "rm -rf dist tsconfig.tsbuildinfo",
    "dev": "tsgo --build --watch",
    "type-check": "tsgo --noEmit",
    "postinstall": "node ./skillit-postinstall.cjs",
    "skill:gen": "tsx scripts/gen-skill.ts"
  }
}