2025-11-17 10:44:49 +01:00
|
|
|
{
|
|
|
|
|
"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",
|
|
|
|
|
"fuse.js": "^7.1.0",
|
2025-11-17 13:13:52 +01:00
|
|
|
"jszip": "^3.10.1",
|
2025-11-17 10:44:49 +01:00
|
|
|
"lucide-react": "^0.553.0",
|
|
|
|
|
"next": "^16.0.0",
|
|
|
|
|
"react": "^19.0.0",
|
|
|
|
|
"react-dom": "^19.0.0",
|
refactor: remove all document conversion support, keep only media conversions
This commit completely removes document conversion functionality to focus
exclusively on media file conversions (video, audio, images).
Changes:
- Remove all document converter services (pandocService.ts, pdfService.ts, docxService.ts)
- Uninstall document-related packages: marked, turndown, dompurify, jspdf, pdfjs-dist, docx, mammoth, @types/turndown
- Remove document formats (PDF, DOCX, Markdown, HTML, TXT) from formatMappings.ts
- Remove pandoc converter from FileConverter.tsx
- Remove pandoc loader and references from wasmLoader.ts
- Update TypeScript types to remove 'pandoc' from ConverterEngine and 'document' from FileCategory
- Remove pandoc from WASMModuleState interface
- Update README.md to remove all document conversion documentation
- Update UI descriptions to reflect media-only conversions
Supported conversions now:
- Video: MP4, WebM, AVI, MOV, MKV, GIF
- Audio: MP3, WAV, OGG, AAC, FLAC
- Images: PNG, JPG, WebP, GIF, BMP, TIFF, SVG
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-17 11:35:20 +01:00
|
|
|
"tailwind-merge": "^3.3.1"
|
2025-11-17 10:44:49 +01:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
|
|
|
|
"@tailwindcss/postcss": "^4.1.17",
|
|
|
|
|
"@types/node": "^22",
|
|
|
|
|
"@types/react": "^19",
|
|
|
|
|
"@types/react-dom": "^19",
|
|
|
|
|
"eslint": "^9",
|
|
|
|
|
"eslint-config-next": "^16.0.0",
|
|
|
|
|
"tailwindcss": "^4.0.0",
|
|
|
|
|
"typescript": "^5"
|
|
|
|
|
},
|
|
|
|
|
"packageManager": "pnpm@9.0.0"
|
|
|
|
|
}
|