fec598af62
- Add react-markdown + remark-gfm for GFM-compatible markdown rendering - Create MarkdownRenderer component with custom Tailwind-styled elements - Update TextSegmentView to render markdown instead of plain text - Update LongTextView to render markdown when expanded - Fix Lucide icon type in DocumentCard
31 lines
682 B
JSON
31 lines
682 B
JSON
{
|
|
"name": "hci-chatbox",
|
|
"private": true,
|
|
"version": "1.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"preview": "vite preview",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"lucide-react": "^0.400.0",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-markdown": "^10.1.0",
|
|
"remark-gfm": "^4.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/react": "^18.3.3",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react": "^4.3.1",
|
|
"autoprefixer": "^10.4.19",
|
|
"postcss": "^8.4.38",
|
|
"tailwindcss": "^3.4.4",
|
|
"typescript": "^5.5.3",
|
|
"vite": "^5.3.4",
|
|
"vitest": "^1.6.0"
|
|
}
|
|
}
|