{
  "name": "@13w/local-rag",
  "version": "2.0.1",
  "description": "Distributed semantic memory + code RAG as an MCP plugin for Claude Code agents",
  "logo": "logo.svg",
  "type": "module",
  "files": [
    "dist/",
    "logo.svg"
  ],
  "bin": {
    "local-rag": "dist/bin.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/13W/local-rag.git"
  },
  "homepage": "https://github.com/13W/local-rag#readme",
  "bugs": {
    "url": "https://github.com/13W/local-rag/issues"
  },
  "keywords": [
    "mcp",
    "claude",
    "claude-code",
    "rag",
    "memory",
    "vector-search",
    "qdrant",
    "ollama",
    "code-search"
  ],
  "dependencies": {
    "@fastify/static": "^9.1.3",
    "@modelcontextprotocol/sdk": "^1.29.0",
    "@qdrant/js-client-rest": "^1.18.0",
    "chokidar": "^5.0.0",
    "fastify": "^5.8.5",
    "ignore": "^7.0.5",
    "js-yaml": "^4.1.1",
    "smol-toml": "^1.6.1",
    "tree-sitter-go": "^0.25.0",
    "tree-sitter-rust": "^0.24.0",
    "tree-sitter-typescript": "^0.23.2",
    "web-tree-sitter": "^0.26.9",
    "zod": "^4.4.3"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^25.9.1",
    "@vitest/coverage-v8": "^4.1.7",
    "typescript": "^6.0.3",
    "vitest": "^4.1.7"
  },
  "scripts": {
    "build:ui": "pnpm -C src/dashboard-ui run build",
    "build": "pnpm run build:ui && tsc",
    "start": "node dist/bin.js serve",
    "index": "node dist/bin.js index",
    "watch": "node dist/bin.js watch",
    "re-embed": "node dist/bin.js re-embed",
    "test": "vitest run",
    "test:watch": "vitest",
    "bench:build": "tsc -p tsconfig.bench.json",
    "bench": "node dist/scripts/benchmark.js",
    "bench:fast": "node dist/scripts/benchmark.js --no-descriptions",
    "bench:rerun": "node dist/scripts/benchmark.js --skip-index",
    "prepublish": "pnpm build"
  }
}