-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
71 lines (69 loc) · 1.43 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "autosub",
"version": "1.0.4",
"description": "Automatically generate and overlay subtitles for any video.",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/ChetanXpro/autosub"
},
"bin": {
"autosub": "./bin/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "ts-node src/index.ts",
"dev": "nodemon --watch 'src/**/*.ts' --exec ts-node src/index.ts",
"typecheck": "tsc --noEmit",
"build": "tsc",
"format": "prettier --write src/**/*.ts"
},
"keywords": [
"subtitles",
"autosub",
"generate subtitle",
"whisper",
"video subtitles",
"CLI",
"ffmpeg",
"OpenAI",
"automatic subtitle generation",
"multimedia",
"transcription",
"AI",
"overlay",
"video processing",
"nodejs"
],
"author": "Chetan baliyan",
"license": "MIT",
"homepage": "https://github.com/ChetanXpro/autosub#readme",
"bugs": {
"url": "https://github.com/ChetanXpro/autosub/issues"
},
"dependencies": {
"axios": "^1.6.7",
"chalk": "^4",
"cli-spinners": "^3.0.0",
"commander": "^12.0.0",
"dotenv": "^16.4.3",
"fluent-ffmpeg": "^2.1.2",
"nodejs-whisper": "^0.1.10"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/fluent-ffmpeg": "^2.1.24",
"@types/node": "^22.7.7",
"prettier": "^3.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
,
"files": [
"dist",
"bin"
]
}