-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
57 lines (57 loc) · 1.39 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "gen-subs",
"version": "1.0.6",
"description": "A CLI tool to generate subtitles from audio and video files and then either burn them in or add them as a separate track.",
"main": "./dist/cli.js",
"type": "module",
"bin": {
"gen-subs": "./dist/cli.js"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsup-node ./cli.ts --format cjs,esm --out-dir dist",
"prepublishOnly": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"machine learning",
"ai",
"artificial intelligence",
"subtitles",
"video subtitles",
"closed captions",
"accessibility"
],
"author": {
"name": "Tejas Kumar",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"dependencies": {
"@ffmpeg-installer/ffmpeg": "^1.1.0",
"cli-progress": "^3.12.0",
"commander": "^11.1.0",
"fluent-ffmpeg": "^2.1.2",
"inquirer": "^9.2.12",
"mkdirp": "^3.0.1",
"ora": "^7.0.1",
"subtitle": "^4.2.1",
"vosk": "^0.3.39",
"wav": "^1.0.2",
"rimraf": "^5.0.5",
"yauzl": "^2.10.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.5",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/inquirer": "^9.0.7",
"@types/node": "^20.9.1",
"@types/vosk": "link:../../DefinitelyTyped/types/vosk",
"@types/wav": "^1.0.4",
"@types/yauzl": "^2.10.3",
"prettier": "^3.1.0",
"tsup": "^8.0.0"
}
}