{
  "name": "context-mem",
  "version": "4.0.0",
  "description": "Memory + context infrastructure for AI agents. LLM Wiki auto-sync, 15 content-aware summarizers, hybrid search (BM25 + vector + optional LLM judge), entity intelligence, decision trails, Obsidian plugin. Fully local, zero cost. MIT.",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "context-mem": "./dist/cli/index.js"
  },
  "scripts": {
    "build": "tsc",
    "dev": "tsc --watch",
    "test": "node --test $(find dist/tests -name '*.test.js')",
    "test:watch": "tsc --watch & node --test --watch $(find dist/tests -name '*.test.js')",
    "lint": "tsc --noEmit",
    "bench": "node benchmarks/run-all.js",
    "bench:full": "node benchmarks/run-all.js --full",
    "bench:quick": "node benchmarks/longmemeval.js /tmp/longmemeval-data/longmemeval_s_cleaned.json --limit 50",
    "bench:e2e-qa": "node benchmarks/e2e-qa.js",
    "prepublishOnly": "npm run build && npm test"
  },
  "keywords": [
    "mcp",
    "context",
    "llm",
    "token-optimization",
    "claude-code",
    "ai-coding"
  ],
  "author": "Juba Kitiashvili",
  "license": "MIT",
  "files": [
    "dist",
    "!dist/tests",
    "hooks",
    "dashboard",
    "configs",
    ".context-mem.json.example"
  ],
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "better-sqlite3": "^11.0.0",
    "ws": "^8.20.0"
  },
  "optionalDependencies": {
    "@huggingface/transformers": "^3.0.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.0",
    "@types/node": "^20.0.0",
    "@types/ws": "^8.18.1",
    "typescript": "^5.5.0"
  },
  "mcpName": "io.github.JubaKitiashvili/context-mem"
}
