{
  "name": "ccrecall",
  "version": "0.0.15",
  "description": "Sync Claude Code transcripts to SQLite and recall context from past sessions",
  "keywords": [
    "analytics",
    "claude",
    "claude-code",
    "context",
    "memory",
    "recall",
    "sqlite"
  ],
  "license": "MIT",
  "bin": {
    "ccrecall": "./dist/index.js"
  },
  "files": [
    "dist"
  ],
  "type": "module",
  "dependencies": {
    "citty": "^0.2.2",
    "tinyglobby": "^0.2.16"
  },
  "devDependencies": {
    "@changesets/cli": "^2.30.0",
    "@types/node": "^25.6.0",
    "vite-plus": "^0.1.16",
    "vitest": "^4.1.4"
  },
  "engines": {
    "node": ">=22.0.0"
  },
  "scripts": {
    "build": "vp pack",
    "dev": "vp pack --watch",
    "start": "node ./dist/index.js",
    "check": "vp check",
    "check:fix": "vp check --fix",
    "format": "vp check --fix",
    "test": "vp test",
    "test:watch": "vp test watch",
    "changeset": "changeset",
    "version": "changeset version",
    "release": "pnpm run build && changeset publish"
  }
}