{ "name": "video-to-mp3-transcriptor", "version": "1.0.0", "description": "Download YouTube videos/playlists to MP3 and transcribe them using OpenAI Whisper API", "main": "src/index.js", "type": "module", "bin": { "ytmp3": "./src/cli.js" }, "scripts": { "start": "node src/index.js", "cli": "node src/cli.js", "server": "node src/server.js" }, "keywords": [ "youtube", "mp3", "transcription", "whisper", "openai" ], "author": "", "license": "MIT", "dependencies": { "@anthropic-ai/sdk": "^0.70.1", "commander": "^12.1.0", "cors": "^2.8.5", "dotenv": "^16.4.5", "express": "^4.21.0", "multer": "^2.0.2", "openai": "^4.67.0", "youtube-dl-exec": "^3.0.7" } }