- Set up Express.js server with YouTube search and MP3 conversion API - Created Telegram Web App frontend with responsive design - Implemented SQLite database for user management and history - Added Telegram Bot integration with commands and Web App support - Configured FFmpeg-based audio conversion pipeline - Added comprehensive documentation and deployment guides 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
24 lines
536 B
JSON
24 lines
536 B
JSON
{
|
|
"name": "quixotic",
|
|
"version": "1.0.0",
|
|
"description": "Telegram miniapp for YouTube music search and MP3 conversion",
|
|
"main": "src/server.js",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"dev": "nodemon src/server.js"
|
|
},
|
|
"dependencies": {
|
|
"express": "^4.18.2",
|
|
"sqlite3": "^5.1.6",
|
|
"node-telegram-bot-api": "^0.64.0",
|
|
"ytdl-core": "^4.11.5",
|
|
"fluent-ffmpeg": "^2.1.2",
|
|
"axios": "^1.6.2"
|
|
},
|
|
"devDependencies": {
|
|
"nodemon": "^3.0.2"
|
|
},
|
|
"engines": {
|
|
"node": ">=16.0.0"
|
|
}
|
|
} |