Files
TeleUploader/package.json
T
MythEclipseandClaude Opus 4.7 434905313c refactor: replace TypeScript with ESM JavaScript
Remove index.ts and tsconfig.json, update package.json, and install dependencies.

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
2026-05-18 07:15:05 +07:00

24 lines
546 B
JSON

{
"name": "teleuploader",
"version": "1.0.0",
"description": "Telegram file uploader backend",
"type": "module",
"scripts": {
"dev": "bun --hot index.js",
"start": "NODE_ENV=production bun index.js",
"db:migrate": "psql $DATABASE_URL -f schema.sql"
},
"dependencies": {
"@prisma/engines": "^7.8.0",
"drizzle-orm": "^0.45.2",
"nanoid": "^5.0.4",
"pg": "^8.11.0",
"postgres": "^3.4.9",
"telegraf": "^4.15.0",
"winston": "^3.11.0"
},
"devDependencies": {
"drizzle-kit": "^0.31.10"
}
}