- Install marked and highlight.js for better markdown rendering - Create nameGenerator service with 50 unique names - Update DocumentViewer to use marked instead of regex parsing - Add syntax highlighting for code blocks - Improve styling for code with proper colors
25 lines
479 B
JSON
25 lines
479 B
JSON
{
|
|
"name": "frontend",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@vueuse/core": "^13.9.0",
|
|
"highlight.js": "^11.11.1",
|
|
"marked": "^16.4.1",
|
|
"mermaid": "^11.12.0",
|
|
"pinia": "^3.0.3",
|
|
"radix-vue": "^1.9.17",
|
|
"vue": "^3.5.22"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"vite": "^7.1.7"
|
|
}
|
|
}
|