-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.45 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.45 KB
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
47
48
49
50
51
52
53
54
55
{
"name": "youtube-caption-extractor",
"version": "1.9.1",
"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",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"test:debug": "DEBUG=youtube-caption-extractor vitest run",
"lint": "eslint src --ext .ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"youtube",
"captions",
"subtitles",
"scraper",
"extract",
"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": "MIT",
"dependencies": {
"he": "^1.2.0",
"striptags": "^3.2.0"
},
"devDependencies": {
"@types/he": "^1.2.0",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"typescript": "^5.3.3",
"vitest": "^1.1.3"
},
"engines": {
"node": ">=14.0.0"
}
}