{
  "name": "claude-conversation-manager",
  "version": "2.0.0",
  "description": "A CLI tool for managing Claude Code conversation history with parsing and i18n support",
  "main": "dist/index.js",
  "bin": {
    "ccm": "dist/cli.js"
  },
  "files": [
    "dist/",
    "README.md",
    "USAGE.md"
  ],
  "scripts": {
    "prepublishOnly": "npm run build",
    "dev": "ts-node src/cli.ts interactive",
    "clean": "ts-node src/cli.ts interactive",
    "build": "tsc",
    "start": "node dist/cli.js",
    "pretest": "npm run build",
    "test": "jest",
    "type-check": "tsc --noEmit"
  },
  "keywords": [
    "claude-code",
    "claude",
    "conversation",
    "manager",
    "cli",
    "cleanup",
    "debug",
    "scroll",
    "fix",
    "anthropic",
    "ai",
    "chat",
    "history",
    "typescript",
    "i18n",
    "parser",
    "jsonl",
    "backup",
    "repair"
  ],
  "author": "Claude Code User",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/code-zyp1/claude-conversation-manager.git"
  },
  "homepage": "https://github.com/code-zyp1/claude-conversation-manager#readme",
  "bugs": {
    "url": "https://github.com/code-zyp1/claude-conversation-manager/issues"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "dependencies": {
    "commander": "^11.1.0",
    "chalk": "^4.1.2",
    "inquirer": "^8.2.6",
    "date-fns": "^3.0.6",
    "fs-extra": "^11.2.0"
  },
  "devDependencies": {
    "@types/node": "^20.10.6",
    "@types/inquirer": "^9.0.7",
    "@types/fs-extra": "^11.0.4",
    "typescript": "^5.3.3",
    "ts-node": "^10.9.2",
    "jest": "^29.7.0",
    "@types/jest": "^29.5.11"
  }
}
