{
  "name": "cccmemory",
  "version": "2.1.0",
  "description": "MCP server for indexing and searching Claude Code conversation history with decision tracking, git integration, and project migration/merge",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "cccmemory": "dist/index.js"
  },
  "files": [
    "dist",
    "scripts",
    "README.md",
    "LICENSE"
  ],
  "scripts": {
    "build": "tsc && npm run postbuild",
    "postbuild": "cp src/storage/schema.sql dist/storage/",
    "preinstall": "node scripts/check-node.js",
    "postinstall": "node scripts/postinstall.js",
    "dev": "tsc --watch",
    "dev:config": "node scripts/dev-config.js",
    "start": "node dist/index.js",
    "mcp:smoke": "node scripts/mcp-smoke-test.js",
    "test": "node --no-warnings --experimental-vm-modules node_modules/jest/bin/jest.js",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "type-check": "tsc --noEmit",
    "clean": "rm -rf dist",
    "docs": "typedoc --out docs src",
    "test:watch": "npm test -- --watch",
    "test:coverage": "npm test -- --coverage",
    "changelog:check": "bash scripts/changelog-check.sh",
    "pre-push": "npm run type-check && npm run lint && npm run build",
    "prepublishOnly": "npm run build",
    "prepare": "husky"
  },
  "keywords": [
    "mcp",
    "claude",
    "conversation",
    "memory",
    "semantic-search",
    "decision-tracking"
  ],
  "author": "xiaolai",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/xiaolai/cccmemory.git"
  },
  "bugs": {
    "url": "https://github.com/xiaolai/cccmemory/issues"
  },
  "homepage": "https://github.com/xiaolai/cccmemory#readme",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.25.2",
    "@xenova/transformers": "^2.17.2",
    "better-sqlite3": "^11.10.0",
    "chalk": "^5.3.0",
    "chokidar": "^5.0.0",
    "cli-table3": "^0.6.5",
    "commander": "^12.1.0",
    "lru-cache": "^10.0.0",
    "nanoid": "^5.0.0",
    "prompts": "^2.4.2",
    "simple-git": "^3.25.0",
    "sqlite-vec": "^0.1.6"
  },
  "optionalDependencies": {
    "openai": "^6.9.1"
  },
  "overrides": {
    "hono": "^4.11.4"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.11",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.10.5",
    "@types/prompts": "^2.4.9",
    "@typescript-eslint/eslint-plugin": "^8.19.1",
    "@typescript-eslint/parser": "^8.19.1",
    "eslint": "^9.18.0",
    "globals": "^16.5.0",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "lint-staged": "^16.2.6",
    "prettier": "^3.6.2",
    "ts-jest": "^29.2.5",
    "ts-node": "^10.9.2",
    "typescript": "^5.7.3"
  },
  "engines": {
    "node": ">=20"
  },
  "lint-staged": {
    "*.ts": [
      "eslint --fix",
      "prettier --write"
    ]
  }
}
