586026bff6
Replace plain textarea with Tiptap (ProseMirror) WYSIWYG editor for notes and tasks. Headings, bold, lists, and code blocks now render inline while editing. Tags and wikilinks get visual highlighting via decoration plugins, and autocomplete uses @tiptap/suggestion with heading disambiguation. Layout: pin navbar with app-shell flex column (100dvh), sticky editor toolbar above scrolling content, AI Assist panel fixed at bottom 1/3 with full-height section selector and prompt. Increase max-width to 960px across all views. Hide assist controls during streaming/review. Other fixes: markdown paste handling, auto-syncing assist sections via body watcher, trailing newline on AI accept, ChatView height fix. Add README.md describing the app, usage guide, and technical overview. Update summary.md with Phase 5.2 roadmap and current status. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
32 lines
763 B
JSON
32 lines
763 B
JSON
{
|
|
"name": "fabledassistant-frontend",
|
|
"private": true,
|
|
"version": "0.1.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vue-tsc --noEmit && vite build",
|
|
"preview": "vite preview"
|
|
},
|
|
"dependencies": {
|
|
"@tiptap/extension-link": "^2.11.0",
|
|
"@tiptap/extension-placeholder": "^2.11.0",
|
|
"@tiptap/pm": "^2.11.0",
|
|
"@tiptap/starter-kit": "^2.11.0",
|
|
"@tiptap/suggestion": "^2.11.0",
|
|
"@tiptap/vue-3": "^2.11.0",
|
|
"pinia": "^2.2.0",
|
|
"vue": "^3.5.0",
|
|
"marked": "^15.0.0",
|
|
"dompurify": "^3.1.0",
|
|
"vue-router": "^4.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/dompurify": "^3.0.0",
|
|
"@vitejs/plugin-vue": "^5.1.0",
|
|
"typescript": "~5.6.0",
|
|
"vite": "^6.0.0",
|
|
"vue-tsc": "^2.1.0"
|
|
}
|
|
}
|