2026-04-05 21:09:33 -05:00
|
|
|
{
|
|
|
|
|
"name": "@trustgraph/flow",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"main": "dist/index.js",
|
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
|
"scripts": {
|
2026-05-12 08:06:58 -05:00
|
|
|
"build": "bunx --bun tsc",
|
2026-04-05 21:09:33 -05:00
|
|
|
"dev": "tsc --watch",
|
|
|
|
|
"clean": "rm -rf dist",
|
2026-05-12 08:06:58 -05:00
|
|
|
"test": "bunx --bun vitest run"
|
2026-04-05 21:09:33 -05:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@anthropic-ai/sdk": "^0.39.0",
|
2026-04-06 23:47:43 -05:00
|
|
|
"@fastify/websocket": "^11.0.0",
|
2026-04-05 21:09:33 -05:00
|
|
|
"@qdrant/js-client-rest": "^1.13.0",
|
2026-04-06 23:47:43 -05:00
|
|
|
"@trustgraph/base": "workspace:*",
|
2026-04-05 22:44:45 -05:00
|
|
|
"falkordb": "^5.0.0",
|
2026-04-05 21:09:33 -05:00
|
|
|
"fastify": "^5.2.0",
|
2026-04-06 23:47:43 -05:00
|
|
|
"ollama": "^0.6.3",
|
feat: add Docker entrypoints, LLM providers, pipeline hardening, workbench pages
Phase 9 — four parallel workstreams:
- Stream A: 14 Docker entrypoints for containerized deployment
- Stream B: Pipeline hardening — robust JSON parsing, LLM retry logic,
consumer negative-ack, FalkorDB test import fix
- Stream C: Azure OpenAI, OpenAI-compatible, and Mistral LLM providers
- Stream D: Workbench Prompts, Token Cost, Knowledge Cores pages +
Settings feature switches
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 03:22:55 -05:00
|
|
|
"@mistralai/mistralai": "^1.0.0",
|
2026-06-01 16:22:25 -05:00
|
|
|
"@effect/platform-node": "4.0.0-beta.74",
|
|
|
|
|
"@effect/platform-node-shared": "4.0.0-beta.74",
|
|
|
|
|
"@effect/ai-anthropic": "4.0.0-beta.74",
|
|
|
|
|
"@effect/ai-openai": "4.0.0-beta.74",
|
|
|
|
|
"@effect/ai-openrouter": "4.0.0-beta.74",
|
|
|
|
|
"@effect/atom-react": "4.0.0-beta.74",
|
|
|
|
|
"@effect/openapi-generator": "4.0.0-beta.74",
|
|
|
|
|
"@effect/opentelemetry": "4.0.0-beta.74",
|
|
|
|
|
"@effect/platform-browser": "4.0.0-beta.74",
|
|
|
|
|
"@effect/platform-bun": "4.0.0-beta.74",
|
|
|
|
|
"@effect/tsgo": "0.13.0",
|
|
|
|
|
"@effect/vitest": "4.0.0-beta.74",
|
2026-04-10 05:45:46 -05:00
|
|
|
"@modelcontextprotocol/sdk": "^1.12.0",
|
2026-06-01 16:22:25 -05:00
|
|
|
"effect": "4.0.0-beta.74",
|
2026-04-06 23:47:43 -05:00
|
|
|
"openai": "^4.85.0",
|
|
|
|
|
"pdfjs-dist": "^5.6.205"
|
2026-04-05 21:09:33 -05:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2026-06-01 16:22:25 -05:00
|
|
|
"@effect/vitest": "4.0.0-beta.74",
|
fix: comprehensive QA audit — light mode, accessibility, error handling, code quality
- Fix light mode: theme-aware graph node labels, remove prose-invert for
theme-safe markdown, add brand/semantic color overrides for light backgrounds
- Add 404 catch-all route redirecting unknown paths to /chat
- FalkorDB: add .catch() to connectPromise, add ensureConnected() to all
store methods (createLiteral, relateNode, relateLiteral, deleteCollection)
- Accessibility: dialog role/aria-modal, toast aria-live, dismiss/zoom/search
button aria-labels, close panel aria-label
- Lazy-load ForceGraph2D (splits 189KB into separate chunk, main bundle -26%)
- Cap conversation localStorage at 200 messages to prevent quota overflow
- Fix pnpm test: add --passWithNoTests to cli/mcp packages
- Add upload error notification instead of silent catch
- Remove unused class-variance-authority dep and dead tabs.tsx component
- Add @types/node to flow package devDependencies
- Remove stale FIXME comment in messages.ts
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-07 09:15:59 -05:00
|
|
|
"@types/node": "^22.0.0",
|
2026-04-05 21:09:33 -05:00
|
|
|
"typescript": "^5.8.0",
|
2026-05-12 08:06:58 -05:00
|
|
|
"vitest": "^4.1.6"
|
2026-04-05 21:09:33 -05:00
|
|
|
}
|
|
|
|
|
}
|