- Add jsPDF for PDF generation from text/Markdown/HTML - Add PDF.js for PDF text extraction (read PDFs) - Support PDF → Text/Markdown conversions - Support Markdown/HTML/Text → PDF conversions - Implement page-by-page PDF text extraction - Automatic pagination and formatting for generated PDFs Supported PDF operations: - Extract text from PDF files (all pages) - Convert PDF to Markdown or plain text - Create formatted PDFs from Markdown, HTML, or plain text - Automatic text wrapping and page breaks 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
41 lines
977 B
JSON
41 lines
977 B
JSON
{
|
|
"name": "convert-ui",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev --turbopack",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "next lint"
|
|
},
|
|
"dependencies": {
|
|
"@ffmpeg/ffmpeg": "^0.12.10",
|
|
"@ffmpeg/util": "^0.12.1",
|
|
"@imagemagick/magick-wasm": "^0.0.30",
|
|
"clsx": "^2.1.1",
|
|
"dompurify": "^3.2.2",
|
|
"fuse.js": "^7.1.0",
|
|
"jspdf": "^2.5.2",
|
|
"lucide-react": "^0.553.0",
|
|
"marked": "^15.0.4",
|
|
"next": "^16.0.0",
|
|
"pdfjs-dist": "^4.10.38",
|
|
"react": "^19.0.0",
|
|
"react-dom": "^19.0.0",
|
|
"tailwind-merge": "^3.3.1",
|
|
"turndown": "^7.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4.1.17",
|
|
"@types/node": "^22",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"@types/turndown": "^5.0.5",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "^16.0.0",
|
|
"tailwindcss": "^4.0.0",
|
|
"typescript": "^5"
|
|
},
|
|
"packageManager": "pnpm@9.0.0"
|
|
}
|