-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 919 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
30
31
32
33
34
{
"name": "transcribe-yt",
"version": "1.0.0",
"description": "A simple script to download YouTube videos, extract audio, and transcribe them using OpenAI's API.",
"main": "processVideos.ts",
"scripts": {
"start": "tsx processVideos.ts",
"build": "tsc"
},
"packageManager": "[email protected]",
"dependencies": {
"@distube/ytdl-core": "^4.14.4",
"ascii-art": "^2.8.5",
"assemblyai": "^4.7.1",
"cli-progress": "^3.12.0",
"dotenv": "^16.4.5",
"fluent-ffmpeg": "^2.1.3",
"fs-extra": "^11.2.0",
"handbrake-js": "^7.0.0",
"js-yaml": "^4.1.0",
"openai": "^4.21.0",
"p-limit": "^6.1.0",
"tsx": "^4.19.1",
"ytdl-core": "^4.11.5"
},
"license": "UNLICENSED",
"devDependencies": {
"@types/ascii-art": "^1.4.3",
"@types/cli-progress": "^3.11.6",
"@types/fluent-ffmpeg": "^2.1.26",
"@types/node": "^20.0.0",
"typescript": "^5.0.0"
}
}