{
  "name": "@sashabogi/foundation",
  "version": "4.0.1",
  "description": "MCP server for AI-assisted development: codebase intelligence (Demerzel) and persistent searchable memory (Gaia), with a shared LLM provider registry",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "foundation": "./dist/cli.js"
  },
  "scripts": {
    "build": "tsc",
    "build:ui": "cd packages/ui && npm run build",
    "build:all": "npm run build && npm run build:ui",
    "dev": "tsc --watch",
    "start": "node dist/index.js",
    "cli": "node dist/cli.js",
    "lint": "eslint src --ext .ts",
    "lint:fix": "eslint src --ext .ts --fix",
    "typecheck": "tsc --noEmit",
    "test": "vitest",
    "test:run": "vitest run",
    "clean": "rm -rf dist",
    "prepublishOnly": "npm run build:all"
  },
  "engines": {
    "node": ">=20.0.0"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/sashabogi/foundation.git"
  },
  "homepage": "https://github.com/sashabogi/foundation#readme",
  "bugs": {
    "url": "https://github.com/sashabogi/foundation/issues"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "claude",
    "claude-code",
    "codebase-intelligence",
    "multi-agent",
    "orchestration",
    "worktree",
    "git",
    "ai",
    "llm",
    "foundation",
    "argus",
    "hari-seldon"
  ],
  "author": "Sasha Bogojevic",
  "license": "MIT",
  "dependencies": {
    "@anthropic-ai/sdk": "^0.71.0",
    "@clack/prompts": "^1.0.0",
    "@modelcontextprotocol/sdk": "^1.0.0",
    "@mongodb-js/zstd": "^7.0.0",
    "better-sqlite3": "^12.0.0",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "date-fns": "^4.1.0",
    "dotenv": "^16.4.5",
    "nanoid": "^5.0.7",
    "node-fetch": "^3.3.2",
    "openai": "^4.58.0",
    "ora": "^8.0.1",
    "picocolors": "^1.1.1",
    "pino": "^9.6.0",
    "simple-git": "^3.22.0",
    "yaml": "^2.7.0",
    "zod": "^3.23.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^22.10.0",
    "@typescript-eslint/eslint-plugin": "^8.21.0",
    "@typescript-eslint/parser": "^8.21.0",
    "eslint": "^9.39.0",
    "typescript": "^5.7.0",
    "vitest": "^3.0.0"
  },
  "files": [
    "dist",
    "packages/ui/dist",
    "README.md",
    "LICENSE",
    "docs/USER-GUIDE.md",
    "docs/MIGRATION-GUIDE.md",
    "docs/PRD.md",
    "docs/foundation-banner.jpg"
  ]
}
