Adds a DocBlock component that renders embedded documents, new export buttons for DOCX and PDF, and updates the file‑upload picker to accept *.txt, *.docx, *.pptx, and *.pdf. Introduces a DOCX→PDF conversion bridge in the backend and new /tts and /asr endpoints that expose TTS and speech‑recognition functionality. The README is rewritten to describe the new features and clean up legacy documentation. All changes are backward‑compatible and do not introduce breaking API changes.
39 lines
941 B
JSON
39 lines
941 B
JSON
{
|
|
"name": "llm-in-text",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"test": "echo 'No tests configured yet'",
|
|
"check": "npm run build"
|
|
},
|
|
"dependencies": {
|
|
"@blocknote/xl-docx-exporter": "^0.47.3",
|
|
"@milkdown/core": "^7.18.0",
|
|
"@milkdown/crepe": "^7.18.0",
|
|
"@milkdown/kit": "^7.18.0",
|
|
"@milkdown/theme-nord": "^7.18.0",
|
|
"@milkdown/vue": "^7.18.0",
|
|
"docx": "^9.6.0",
|
|
"docx-preview": "^0.3.7",
|
|
"docx2pdf-converter": "^2.1.1",
|
|
"html2pdf.js": "^0.14.0",
|
|
"jspdf": "^4.2.1",
|
|
"katex": "^0.16.9",
|
|
"markdown-it": "^13.0.0",
|
|
"markdown-it-math": "^3.0.2",
|
|
"mermaid": "^11.12.3",
|
|
"pinia": "^2.3.1",
|
|
"prismjs": "^1.29.0",
|
|
"vue": "^3.5.24",
|
|
"vue-router": "^4.6.4"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^6.0.1",
|
|
"vite": "^7.2.4"
|
|
}
|
|
}
|