- Remove old backend (transcription, translation, summarization) - Add Camoufox stealth cookie extraction - Add automatic cookie refresh (14 days) - Add cookie validation - Simplified to focus on YouTube → MP3 downloads - Auto-retry on bot detection - Streaming support with range requests - Clean architecture (services pattern) - Full documentation
28 lines
725 B
JSON
28 lines
725 B
JSON
{
|
|
"name": "hanasuba-music-service",
|
|
"version": "2.0.0",
|
|
"description": "YouTube to MP3 download service with Camoufox stealth cookies for Hanasuba",
|
|
"main": "src/server.js",
|
|
"scripts": {
|
|
"start": "node src/server.js",
|
|
"dev": "node --watch src/server.js",
|
|
"setup": "python3 -m pip install -r requirements.txt && playwright install firefox",
|
|
"cookies:extract": "python3 src/python/extract_cookies.py",
|
|
"cookies:validate": "python3 src/python/validate_cookies.py"
|
|
},
|
|
"keywords": [
|
|
"youtube",
|
|
"mp3",
|
|
"music",
|
|
"camoufox",
|
|
"stealth",
|
|
"hanasuba"
|
|
],
|
|
"author": "StillHammer",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"express": "^4.21.0",
|
|
"dotenv": "^16.4.5"
|
|
}
|
|
}
|