2026-04-05 21:09:33 -05:00
|
|
|
{
|
|
|
|
|
"name": "@trustgraph/cli",
|
|
|
|
|
"version": "0.1.0",
|
|
|
|
|
"type": "module",
|
|
|
|
|
"bin": {
|
|
|
|
|
"tg": "dist/index.js"
|
|
|
|
|
},
|
|
|
|
|
"scripts": {
|
|
|
|
|
"build": "tsc",
|
|
|
|
|
"dev": "tsc --watch",
|
|
|
|
|
"clean": "rm -rf dist",
|
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
|
|
|
"test": "vitest run --passWithNoTests"
|
2026-04-05 21:09:33 -05:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
|
|
|
|
"@trustgraph/base": "workspace:*",
|
2026-04-05 22:44:45 -05:00
|
|
|
"@trustgraph/client": "workspace:*",
|
2026-04-05 21:09:33 -05:00
|
|
|
"commander": "^13.1.0",
|
|
|
|
|
"ws": "^8.18.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@types/ws": "^8.5.0",
|
|
|
|
|
"typescript": "^5.8.0",
|
|
|
|
|
"vitest": "^3.1.0"
|
|
|
|
|
}
|
|
|
|
|
}
|