Files
Understand-Anything/packages/dashboard/package.json
T
Lum1104 0daac92c80 fix(dashboard): add markdown rendering for chat messages and API key management
- Render assistant messages with ReactMarkdown (headers, code blocks,
  lists, bold, links, blockquotes) instead of plain whitespace-pre-wrap
- Add "Change Key" button in chat header to clear and re-enter API key
- Document the plain-text localStorage tradeoff for API key storage

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-14 19:26:48 +08:00

32 lines
779 B
JSON

{
"name": "@understand-anything/dashboard",
"private": true,
"version": "0.1.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc -b && vite build",
"preview": "vite preview"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@dagrejs/dagre": "^2.0.4",
"@monaco-editor/react": "^4.7.0",
"@understand-anything/core": "workspace:*",
"@xyflow/react": "^12.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"react-markdown": "^10.1.0",
"zustand": "^5.0.0"
},
"devDependencies": {
"@tailwindcss/vite": "^4.0.0",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^4.3.0",
"tailwindcss": "^4.0.0",
"typescript": "^5.7.0",
"vite": "^6.0.0"
}
}