Files
elysiacv/package.json
Tuan-Dat Tran 6db5d323c4 feat: Add PDF generation route and update dependencies
Introduces a new /pdf route to handle PDF generation.
Updates src/index.tsx to integrate the new PDF route.
Bumps puppeteer, tailwindcss, elysia, typed-html, and sortablejs dependencies in package.json and bun.lock.
These updates support the new PDF generation functionality.
2025-11-24 23:24:02 +01:00

28 lines
673 B
JSON

{
"name": "app",
"version": "1.0.50",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"dev": "bun run --watch src/index.ts",
"db:migrate": "bun run src/db/migrator.ts"
},
"dependencies": {
"@elysiajs/cookie": "^0.8.0",
"@elysiajs/html": "^1.4.0",
"@kitajs/ts-html-plugin": "^4.1.3",
"alpinejs": "^3.15.2",
"arctic": "^3.7.0",
"autoprefixer": "^10.4.22",
"elysia": "^1.4.16",
"postcss": "^8.5.6",
"puppeteer": "^24.31.0",
"sortablejs": "^1.15.6",
"tailwindcss": "^4.1.17",
"typed-html": "^3.0.1"
},
"devDependencies": {
"bun-types": "latest"
},
"module": "src/index.js"
}