forked from Schroedinger-Hat/youtube-to-spotify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 821 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "youtube-to-anchorfm",
"version": "2.0.0",
"description": "Github action and general-purpose tool to publish youtube video as anchorfm episode",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"download-audio-yt": "node download-episode.js",
"upload-audio-anchor": "node upload-episode.js",
"upload": "npm run download-audio-yt && npm run upload-audio-anchor"
},
"dependencies": {
"puppeteer": "16.1.0",
"youtube-dl": "^3.0.2",
"youtube-dl-exec": "2.1.5",
"dotenv": "16.0.1"
},
"repository": {
"type": "git",
"url": "git://github.com/Schrodinger-Hat/youtube-to-anchorfm.git"
},
"author": "thejoin",
"license": "MIT",
"keywords": [
"anchorfm",
"youtube"
]
}