-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "youtube-caption-extractor",
"version": "1.4.3",
"description": "A simple and efficient package to scrape and parse captions (subtitles) from YouTube videos, supporting both user-submitted and auto-generated captions with language options.",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"build": "tsc"
},
"keywords": [
"youtube",
"captions",
"subtitles",
"scraper",
"parser",
"video",
"transcript"
],
"author": {
"name": "Himanshu Gupta",
"email": "thinktank.himanshu@gmail.com",
"url": "https://github.com/devhims"
},
"repository": {
"type": "git",
"url": "https://github.com/devhims/youtube-caption-extractor.git"
},
"bugs": {
"url": "https://github.com/devhims/youtube-caption-extractor/issues"
},
"homepage": "https://github.com/devhims/youtube-caption-extractor",
"license": "ISC",
"dependencies": {
"@types/he": "^1.2.0",
"he": "^1.2.0",
"striptags": "^3.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@jest/types": "^29.5.0",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"ts-jest": "^29.1.0"
}
}