{
  "name": "fathom-cli",
  "version": "0.4.0",
  "description": "Headless intelligence layer for AI-augmented development — intent-driven, provider-agnostic, self-improving. Active development.",
  "type": "module",
  "bin": {
    "fathom": "dist/index.js"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist",
    "dist/data",
    "plugins/fathom",
    "README.md"
  ],
  "keywords": [
    "ai",
    "ai-coding",
    "token-tracking",
    "token-estimation",
    "cost-tracking",
    "claude",
    "claude-code",
    "openai",
    "llm",
    "developer-tools",
    "devtools",
    "cli",
    "workflow",
    "velocity",
    "mcp",
    "anthropic",
    "model-routing",
    "prompt-engineering"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/olivelliott/fathom.git",
    "directory": "packages/cli"
  },
  "homepage": "https://github.com/olivelliott/fathom",
  "bugs": {
    "url": "https://github.com/olivelliott/fathom/issues"
  },
  "author": "olivelliott",
  "license": "MIT",
  "dependencies": {
    "@anthropic-ai/tokenizer": "^0.0.4",
    "@inquirer/prompts": "^8.3.0",
    "chalk": "^5.3.0",
    "cli-table3": "^0.6.5",
    "commander": "^12.1.0",
    "convex": "^1.17.0",
    "dotenv": "^17.3.1",
    "js-yaml": "^4.1.0",
    "remark-parse": "^11.0.0",
    "unified": "^11.0.0",
    "zod": "^3.24.0"
  },
  "optionalDependencies": {
    "@anthropic-ai/sdk": "^0.39.0"
  },
  "devDependencies": {
    "@types/js-yaml": "^4.0.9",
    "@types/node": "^22.0.0",
    "tsup": "^8.3.0",
    "typescript": "^5.7.0",
    "vitest": "^2.1.0",
    "@fathom/core": "0.1.0",
    "@fathom/intake": "0.1.0",
    "@fathom/intent": "0.1.0",
    "@fathom/reports": "0.1.0",
    "@fathom/projections": "0.1.0",
    "@fathom/router": "0.1.0",
    "@fathom/store": "0.1.0",
    "@fathom/sync": "0.1.0",
    "@fathom/tracker": "0.1.0",
    "@fathom/velocity": "0.1.0"
  },
  "scripts": {
    "build": "tsup",
    "test": "vitest run",
    "lint": "eslint src/",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}