-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.35 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.35 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
{
"name": "media-translate-ai",
"version": "1.0.0",
"description": "A full-stack audio/video translation app that transcribes uploaded media with Whisper and translates the text using LibreTranslate.",
"main": "backend/server.js",
"scripts": {
"start": "node backend/server.js",
"test": "echo \"No tests configured yet\" && exit 0"
},
"keywords": [
"audio-translation",
"video-translation",
"speech-to-text",
"whisper",
"libretranslate",
"nodejs",
"express",
"full-stack",
"translation",
"transcription"
],
"author": "ShreeGopi",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/ShreeGopi/Real_Time_Translation_app.git"
},
"bugs": {
"url": "https://github.com/ShreeGopi/Real_Time_Translation_app/issues"
},
"homepage": "https://github.com/ShreeGopi/Real_Time_Translation_app#readme",
"dependencies": {
"@google-cloud/speech": "^6.7.0",
"axios": "^1.7.7",
"child_process": "^1.0.2",
"cors": "^2.8.5",
"epress": "^0.0.1-security",
"express": "^4.21.2",
"express-fileupload": "^1.5.1",
"fs": "^0.0.1-security",
"multer": "^1.4.5-lts.1",
"ws": "^8.18.0",
"youtube-dl-exec": "^3.0.10"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/express-fileupload": "^1.5.1",
"@types/ws": "^8.5.12"
}
}