5b1182a818
- Fix Unicode escapes (\u26A1, \u2192, \u{1F6E1}) rendered as literal text in JSX
by wrapping them in JSX expressions
- Increase orbit radii (520/320px -> 720/480px) so items don't overlap hero text
- Add orbit animation keyframes (orbit-slow, orbit-med) to globals.css
- Add Tesseract.js OCR fallback for scanned/image-based PDFs that have no
extractable text layer — renders pages to canvas then runs browser-based OCR
- Thread onProgress through all PDF conversion functions for OCR progress
51 lines
1.2 KiB
JSON
51 lines
1.2 KiB
JSON
{
|
|
"name": "transmute",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"dev": "next dev",
|
|
"build": "next build",
|
|
"start": "next start",
|
|
"lint": "eslint"
|
|
},
|
|
"dependencies": {
|
|
"@ffmpeg/ffmpeg": "^0.12.15",
|
|
"@ffmpeg/util": "^0.12.2",
|
|
"ag-psd": "^30.1.0",
|
|
"docx": "^9.6.0",
|
|
"fast-xml-parser": "^5.4.2",
|
|
"framer-motion": "^12.35.2",
|
|
"heic2any": "^0.0.4",
|
|
"html2canvas-pro": "^2.0.2",
|
|
"js-yaml": "^4.1.1",
|
|
"jspdf": "^4.2.0",
|
|
"jszip": "^3.10.1",
|
|
"mammoth": "^1.11.0",
|
|
"marked": "^17.0.4",
|
|
"next": "16.1.6",
|
|
"opentype.js": "^1.3.4",
|
|
"papaparse": "^5.5.3",
|
|
"pdfjs-dist": "^5.5.207",
|
|
"pptxgenjs": "^4.0.1",
|
|
"react": "19.2.3",
|
|
"react-dom": "19.2.3",
|
|
"smol-toml": "^1.6.0",
|
|
"tesseract.js": "^7.0.0",
|
|
"woff2-encoder": "^2.0.0",
|
|
"xlsx": "^0.18.5"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/postcss": "^4",
|
|
"@types/js-yaml": "^4.0.9",
|
|
"@types/node": "^20",
|
|
"@types/opentype.js": "^1.3.9",
|
|
"@types/papaparse": "^5.5.2",
|
|
"@types/react": "^19",
|
|
"@types/react-dom": "^19",
|
|
"eslint": "^9",
|
|
"eslint-config-next": "16.1.6",
|
|
"tailwindcss": "^4",
|
|
"typescript": "^5"
|
|
}
|
|
}
|