-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.67 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.67 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
56
57
58
59
60
61
{
"name": "youtube-transcriber",
"version": "1.0.2",
"description": "TypeScript implementation of the YouTube Transcript API",
"type": "commonjs",
"main": "dist/index.js",
"bin": {
"youtube-transcriber": "dist/cli-main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/SourceShift/youtube-transcriber"
},
"homepage": "https://github.com/SourceShift/youtube-transcriber#readme",
"bugs": {
"url": "https://github.com/SourceShift/youtube-transcriber/issues"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli-main.js",
"prepare": "npm run build",
"lint": "eslint --ext .ts src/",
"lint:fix": "eslint --ext .ts src/ --fix",
"lint:report": "eslint --ext .ts src/ --output-file eslint-report.json --format json",
"lint:auto-fix": "eslint --ext .ts src/ --fix",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"keywords": [
"youtube",
"transcript",
"api",
"typescript"
],
"author": "",
"license": "MIT",
"dependencies": {
"axios": "^1.6.7",
"axios-cookiejar-support": "^4.0.7",
"cheerio": "^1.0.0-rc.12",
"commander": "^11.1.0",
"jsdom": "^22.1.0",
"tough-cookie": "^4.1.3"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@types/jest": "^29.5.14",
"@types/jsdom": "^21.1.6",
"@types/node": "^20.11.5",
"@types/tough-cookie": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^8.32.0",
"@typescript-eslint/parser": "^8.32.0",
"eslint": "^9.26.0",
"globals": "^16.1.0",
"jest": "^29.7.0",
"ts-jest": "^29.3.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.32.0"
}
}