{
  "name": "@j0hanz/code-lens-mcp",
  "version": "0.12.0",
  "mcpName": "io.github.j0hanz/code-lens",
  "description": "Gemini-powered MCP server for code analysis.",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "default": "./dist/index.js"
    },
    "./package.json": "./package.json"
  },
  "bin": {
    "code-lens": "dist/index.js"
  },
  "files": [
    "dist",
    "README.md"
  ],
  "author": "j0hanz",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/j0hanz/code-lens.git"
  },
  "homepage": "https://github.com/j0hanz/code-lens#readme",
  "keywords": [
    "mcp",
    "mcp-server",
    "code-lens",
    "code-review",
    "code-suggestions",
    "code-explanations",
    "code-refactorings",
    "google-genai",
    "typescript"
  ],
  "scripts": {
    "clean": "node scripts/tasks.mjs clean",
    "build": "node scripts/tasks.mjs build",
    "copy:assets": "node scripts/tasks.mjs copy:assets",
    "prepare": "npm run build",
    "dev": "tsc --watch --preserveWatchOutput",
    "dev:run": "node --env-file=.env --watch dist/index.js",
    "start": "node dist/index.js",
    "format": "prettier --write .",
    "type-check": "node scripts/tasks.mjs type-check",
    "type-check:src": "node node_modules/typescript/bin/tsc -p tsconfig.json --noEmit",
    "type-check:tests": "node node_modules/typescript/bin/tsc -p tsconfig.test.json --noEmit",
    "type-check:diagnostics": "tsc --noEmit --extendedDiagnostics",
    "type-check:trace": "node -e \"require('fs').rmSync('.ts-trace',{recursive:true,force:true})\" && tsc --noEmit --generateTrace .ts-trace",
    "lint": "eslint .",
    "lint:tests": "eslint src/__tests__",
    "lint:fix": "eslint . --fix",
    "test": "node scripts/tasks.mjs test",
    "test:fast": "node --test --import tsx/esm tests/**/*.test.ts",
    "test:coverage": "node scripts/tasks.mjs test --coverage",
    "knip": "knip",
    "knip:fix": "knip --fix",
    "inspector": "npm run build && npx -y @modelcontextprotocol/inspector node --env-file=.env dist/index.js",
    "prepublishOnly": "npm run lint && npm run type-check && npm run build"
  },
  "dependencies": {
    "@google/genai": "^1.44.0",
    "@modelcontextprotocol/sdk": "^1.27.1",
    "diff": "^8.0.3",
    "zod": "^4.3.6"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@trivago/prettier-plugin-sort-imports": "^6.0.2",
    "@types/diff": "^8",
    "@types/node": "^24",
    "eslint": "^10.0.3",
    "eslint-config-prettier": "^10.1.8",
    "eslint-plugin-de-morgan": "^2.1.1",
    "eslint-plugin-depend": "^1.4.0",
    "eslint-plugin-unused-imports": "^4.4.1",
    "knip": "^5.86.0",
    "prettier": "^3.8.1",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.56.1"
  },
  "engines": {
    "node": ">=24"
  }
}
