{
  "name": "@mindflight/ghostcrab-personal-mcp",
  "version": "0.6.5",
  "description": "SQLite-backed MCP memory server (MindBrain + Zig backend), part of the MindBrain ecosystem.",
  "license": "SEE LICENSE IN Licence.md",
  "type": "module",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "bin": {
    "gcp": "bin/gcp.mjs",
    "ghostcrab": "bin/ghostcrab.mjs"
  },
  "exports": {
    ".": "./dist/index.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mindflight-orchestrator/ghostcrab-personal-mcp.git"
  },
  "homepage": "https://github.com/mindflight-orchestrator/ghostcrab-personal-mcp#readme",
  "bugs": {
    "url": "https://github.com/mindflight-orchestrator/ghostcrab-personal-mcp/issues"
  },
  "keywords": [
    "mcp",
    "sqlite",
    "memory",
    "agent",
    "ghostcrab",
    "mindbrain"
  ],
  "files": [
    "scripts/verify-mcp-tools.mjs",
    "scripts/verify-mcp-all-tools.mjs",
    "scripts/mcp-smoke-shared.mjs",
    "scripts/load-tool-manifest.mjs",
    "scripts/sync-ide-skill-bundles.mjs",
    "bin/commands",
    "bin/lib",
    "bin/ide-skills",
    "dist",
    "ghostcrab-skills",
    "installations",
    "docs/index.md",
    "docs/architecture",
    "docs/dev",
    "docs/installers",
    "docs/posts/*.md",
    "docs/reference",
    "docs/setup",
    "examples/ghostcrab-docs",
    "examples/node-stdio-client",
    "README.md",
    "INSTALL.md",
    "Licence.md",
    ".env.example"
  ],
  "packageManager": "pnpm@10.10.0",
  "engines": {
    "node": ">=20.0.0"
  },
  "scripts": {
    "postinstall": "node ./bin/lib/postinstall-prebuilds.mjs",
    "build": "tsc --project tsconfig.json && node scripts/copy-sql.mjs && node scripts/sync-ide-skill-bundles.mjs",
    "sync:ide-skills": "node scripts/sync-ide-skill-bundles.mjs",
    "clean": "rm -rf coverage dist",
    "dev": "tsx src/index.ts",
    "demo:load": "tsx src/cli/demo-load.ts",
    "demo:load:immeuble": "tsx src/cli/demo-load.ts --profile-file examples/immeuble/contracts/answer_artifacts.seed.jsonl",
    "backend:ensure-vendor": "scripts/ensure-vendor.sh",
    "backend:sqlite3": "scripts/download-sqlite3.sh",
    "backend:build": "sh scripts/backend-build-full.sh",
    "prebuild:all": "sh scripts/prebuilds-all.sh",
    "prebuild:local": "pnpm run prebuild:all",
    "prebuild:stage-packages": "node scripts/stage-platform-packages.mjs",
    "backend:build:debug": "cd cmd/backend && ZIG_LOCAL_CACHE_DIR=\"${ZIG_LOCAL_CACHE_DIR:-/tmp/ghostcrab-zig-local-cache}\" ZIG_GLOBAL_CACHE_DIR=\"${ZIG_GLOBAL_CACHE_DIR:-/tmp/ghostcrab-zig-global-cache}\" \"${ZIG:-zig}\" build",
    "backend:dev": "GHOSTCRAB_BACKEND_ADDR=:8091 GHOSTCRAB_SQLITE_PATH=data/ghostcrab.sqlite cmd/backend/zig-out/bin/ghostcrab-backend",
    "smoke:backend": "scripts/smoke-backend.sh",
    "embeddings:backfill": "tsx src/cli/embeddings-backfill.ts",
    "format": "prettier --write .",
    "format:check": "prettier --check .",
    "lint": "eslint .",
    "migrate": "tsx src/cli/migrate.ts",
    "smoke:mcp": "node scripts/mcp-smoke.mjs",
    "verify:mcp-tools": "node scripts/verify-mcp-tools.mjs",
    "verify:mcp-all-tools": "node scripts/verify-mcp-all-tools.mjs",
    "smoke:mcp:embeddings-fake": "node scripts/mcp-smoke-embeddings-fake.mjs",
    "smoke:mcp:embeddings-real": "node scripts/mcp-smoke-embeddings-real.mjs",
    "smoke:mcp:incomplete-graph": "node scripts/mcp-smoke-incomplete-graph.mjs",
    "smoke:mcp:long-running": "node scripts/mcp-smoke-long-running.mjs",
    "smoke:mcp:memory-workflow": "node scripts/mcp-smoke-memory-workflow.mjs",
    "smoke:example-client": "node scripts/example-client-smoke.mjs",
    "structured-import:smoke": "node examples/immeuble/scripts/build-immeuble-model.mjs && node examples/immeuble/scripts/run-immeuble-import.mjs --skip-preflight --skip-provenance-validation",
    "immeuble:build": "node examples/immeuble/scripts/build-immeuble-model.mjs",
    "immeuble:import": "node examples/immeuble/scripts/run-immeuble-import.mjs --skip-preflight --skip-provenance-validation --apply",
    "immeuble:import:hybrid": "node examples/immeuble/scripts/run-immeuble-import.mjs --apply --engine both --skip-preflight --skip-provenance-validation --db /tmp/immeuble-hybrid.sqlite --compare-output examples/immeuble/reports/hybrid-compare.json && node examples/immeuble/scripts/verify-immeuble-acceptance.mjs --db /tmp/immeuble-hybrid.sqlite --require-hybrid",
    "immeuble:audit": "node examples/immeuble/scripts/audit-immeuble-projections.mjs",
    "immeuble:projection:plan": "node examples/immeuble/scripts/starterkit/analyze-projection-candidates.mjs --db \"${GHOSTCRAB_SQLITE_PATH:-data/immeuble.sqlite}\" --workspace immeuble --projection-catalog examples/immeuble/contracts/projection_catalog.yaml --model-contract examples/immeuble/contracts/model_contract.json --output-dir examples/immeuble/reports --include-blind-spots --include-jtbd",
    "immeuble:projection:plan:strict": "npm run immeuble:projection:plan -- --strict",
    "immeuble:projection:audit": "node examples/immeuble/scripts/starterkit/audit-ghostcrab-projections.mjs --db \"${GHOSTCRAB_SQLITE_PATH:-data/immeuble.sqlite}\" --workspace immeuble --model examples/immeuble/contracts/model_contract.json --answer-artifacts-seed examples/immeuble/contracts/answer_artifacts.seed.jsonl --output-dir examples/immeuble/reports",
    "immeuble:projection:audit:strict": "npm run immeuble:projection:audit -- --strict",
    "immeuble:verify:live": "node examples/immeuble/scripts/verify-immeuble-live-artifacts.mjs",
    "immeuble:verify": "node examples/immeuble/scripts/verify-immeuble-acceptance.mjs",
    "immeuble:reset": "node examples/immeuble/scripts/reset-immeuble-workspace.mjs --skip-provenance-validation",
    "immeuble:compare:snapshots": "bash examples/immeuble/scripts/compare-immeuble-snapshots.sh",
    "structured-import:scenario:immeuble": "node examples/immeuble/scripts/run-immeuble-import.mjs --skip-preflight --skip-provenance-validation --apply",
    "verify:semantic-golden": "node scripts/verify-semantic-proposal-golden.mjs",
    "start": "node dist/index.js",
    "immeuble:run:live-lab": "bash examples/immeuble/scripts/run-immeuble-live-lab.sh",
    "immeuble:backend:run": "bash examples/immeuble/scripts/run-immeuble-backend.sh",
    "test": "vitest run",
    "test:coverage": "vitest run --coverage --coverage.reporter=text-summary --coverage.reporter=json-summary",
    "test:integration": "sh scripts/run-integration-tests.sh",
    "test:integration:optional": "vitest run --config vitest.integration.config.ts",
    "test:integration:live": "sh scripts/run-integration-tests.sh",
    "test:all:live": "pnpm test && pnpm run test:integration:live",
    "typecheck": "tsc --noEmit --project tsconfig.json",
    "verify:pack": "node scripts/verify-pack.mjs",
    "verify:local-install": "node scripts/verify-local-install.mjs",
    "pack:local": "pnpm run prebuild:all && pnpm run build && node scripts/pack-local.mjs",
    "pack:local:reuse-prebuilds": "pnpm run build && node scripts/pack-local.mjs",
    "beta:bundle": "node scripts/make-beta-bundle.mjs",
    "beta:smoke": "node scripts/smoke-beta-install.mjs",
    "beta:smoke:ide": "node scripts/smoke-beta-ide-install.mjs",
    "verify:e2e": "node scripts/verify-e2e.mjs",
    "ontology:compile": "node bin/gcp.mjs brain ontology compile",
    "ontology:export-linkml": "node bin/gcp.mjs brain ontology export-linkml",
    "publish:npm-split": "node scripts/publish-npm-split.mjs",
    "stage:npm": "node scripts/npm-stage.mjs",
    "stage:npm:list": "node scripts/npm-stage.mjs list",
    "stage:npm:view": "node scripts/npm-stage.mjs view",
    "stage:npm:approve": "node scripts/npm-stage.mjs approve"
  },
  "devDependencies": {
    "@eslint/js": "^10.0.1",
    "@types/node": "^25.5.0",
    "@vitest/coverage-v8": "4.1.0",
    "eslint": "^10.1.0",
    "globals": "^17.4.0",
    "prettier": "^3.8.1",
    "tsx": "^4.21.0",
    "typescript": "^5.9.3",
    "typescript-eslint": "^8.57.1",
    "vitest": "^4.1.0"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.27.1",
    "yaml": "^2.8.3",
    "zod": "^4.3.6"
  },
  "optionalDependencies": {
    "@mindflight/ghostcrab-personal-mcp-darwin-arm64": "0.6.5",
    "@mindflight/ghostcrab-personal-mcp-darwin-x64": "0.6.5",
    "@mindflight/ghostcrab-personal-mcp-linux-arm64": "0.6.5",
    "@mindflight/ghostcrab-personal-mcp-linux-x64": "0.6.5",
    "@mindflight/ghostcrab-personal-mcp-win32-x64": "0.6.5",
    "@mindflight/ghostcrab-personal-mcp-win32-arm64": "0.6.5"
  }
}
