- src/utils/downloadFile.ts: Blob + createObjectURL + anchor click download - src/utils/downloadZip.ts: JSZip archive builder with same Blob download pattern - npm install jszip ^3.10.1 (only new runtime dependency in phase 4)
36 lines
855 B
JSON
36 lines
855 B
JSON
{
|
|
"name": "ready2blob",
|
|
"private": true,
|
|
"version": "0.0.0",
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "tsc -b && vite build",
|
|
"lint": "eslint .",
|
|
"preview": "vite preview",
|
|
"test": "vitest run"
|
|
},
|
|
"dependencies": {
|
|
"@hookform/resolvers": "^5.2.2",
|
|
"jszip": "^3.10.1",
|
|
"react": "^18.3.1",
|
|
"react-dom": "^18.3.1",
|
|
"react-hook-form": "^7.72.0",
|
|
"zod": "^4.3.6"
|
|
},
|
|
"devDependencies": {
|
|
"@tailwindcss/vite": "^4.2.2",
|
|
"@testing-library/dom": "^10.4.1",
|
|
"@testing-library/react": "^16.3.2",
|
|
"@testing-library/user-event": "^14.6.1",
|
|
"@types/react": "^18.3.5",
|
|
"@types/react-dom": "^18.3.0",
|
|
"@vitejs/plugin-react": "^4.7.0",
|
|
"jsdom": "^29.0.1",
|
|
"tailwindcss": "^4.2.2",
|
|
"typescript": "^5.5.3",
|
|
"vite": "^6.0.0",
|
|
"vitest": "^4.1.1"
|
|
}
|
|
}
|