-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.21 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.21 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
{
"name": "speech-eval-tool",
"version": "1.0.0",
"description": "STT/TTS evaluation tool for measuring RTF and CER/WER metrics",
"main": "cli/index.ts",
"type": "module",
"bin": {
"voicebench": "cli/index.ts"
},
"scripts": {
"dev": "tsx cli/index.ts",
"test": "jest",
"lint": "eslint . --ext .ts"
},
"keywords": [
"stt",
"tts",
"evaluation",
"rtf",
"cer",
"wer"
],
"author": "",
"license": "MIT",
"dependencies": {
"@google-cloud/speech": "^6.0.0",
"chalk": "^4.1.2",
"commander": "^11.1.0",
"dotenv": "^16.6.1",
"fluent-ffmpeg": "^2.1.2",
"form-data": "^4.0.0",
"microsoft-cognitiveservices-speech-sdk": "^1.34.0",
"node-fetch": "^2.7.0",
"ora": "^5.4.1",
"p-limit": "^3.1.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/fluent-ffmpeg": "^2.1.24",
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@types/node-fetch": "^2.6.7",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"tsx": "^4.6.0",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
}
}