-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
123 lines (123 loc) · 3.25 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "echogarden",
"version": "2.0.14",
"description": "An easy-to-use speech toolset. Includes tools for synthesis, recognition, alignment, speech translation, language detection, source separation and more.",
"author": "Rotem Dan",
"license": "GPL-3.0",
"keywords": [
"speech",
"text-to-speech",
"speech synthesis",
"speech-to-text",
"speech recognition",
"speech alignment",
"forced alignment",
"speech translation",
"language identification",
"language detection",
"source separation"
],
"repository": {
"type": "git",
"url": "https://github.com/echogarden-project/echogarden"
},
"bugs": {
"url": "https://github.com/echogarden-project/echogarden/issues"
},
"engines": {
"node": ">=18"
},
"os": [
"win32",
"darwin",
"linux"
],
"main": "./dist/api/API.js",
"type": "module",
"files": [
"src",
"dist",
"data",
"docs",
"README.md",
"LICENSE.md",
"tsconfig.json"
],
"scripts": {
"test": "node --experimental-wasi-unstable-preview1 --no-warnings --trace-uncaught ./dist/tests/Test.js",
"generate-options-schema": "npx ts-json-schema-generator --path ./src/api/APIOptions.ts --unstable --type APIOptions --tsconfig ./tsconfig.json --out ./data/schemas/options.json",
"make-tarballs": "node --no-warnings ./dist/build-tools/MakeTarballsForInstalledPackages.js"
},
"bin": {
"echogarden": "./dist/cli/CLILauncher.js"
},
"dependencies": {
"@aws-sdk/client-polly": "^3.716.0",
"@aws-sdk/client-transcribe-streaming": "^3.716.0",
"@echogarden/audio-io": "^0.3.0",
"@echogarden/espeak-ng-emscripten": "^0.3.3",
"@echogarden/fasttext-wasm": "^0.1.0",
"@echogarden/flite-wasi": "^0.1.1",
"@echogarden/fvad-wasm": "^0.2.0",
"@echogarden/pffft-wasm": "^0.4.2",
"@echogarden/rnnoise-wasm": "^0.2.0",
"@echogarden/rubberband-wasm": "^0.2.0",
"@echogarden/sonic-wasm": "^0.2.0",
"@echogarden/speex-resampler-wasm": "^0.3.0",
"@echogarden/svoxpico-wasm": "^0.2.0",
"@echogarden/transformers-nodejs-lite": "^2.17.1-lite.3",
"@mozilla/readability": "^0.5.0",
"alawmulaw": "^6.0.0",
"chalk": "^5.4.1",
"cldr-segmentation": "^2.2.1",
"command-exists": "^1.2.9",
"compromise": "^14.14.3",
"fs-extra": "^11.2.0",
"gaxios": "^6.7.1",
"graceful-fs": "^4.2.11",
"html-to-text": "^9.0.5",
"import-meta-resolve": "^4.1.0",
"jieba-wasm": "^2.2.0",
"jsdom": "^25.0.1",
"json5": "^2.2.3",
"kuromoji": "^0.1.2",
"microsoft-cognitiveservices-speech-sdk": "^1.42.0",
"msgpack-lite": "^0.1.26",
"onnxruntime-node": "^1.20.1",
"openai": "^4.77.0",
"sam-js": "^0.3.1",
"strip-ansi": "^7.1.0",
"tar": "^7.4.3",
"tiktoken": "^1.0.18",
"tinyld": "^1.3.4",
"wasm-feature-detect": "^1.8.0",
"ws": "^8.18.0",
"wtf_wikipedia": "^10.3.2"
},
"peerDependencies": {
"@echogarden/vosk": "^0.3.39-patched.1",
"winax": "^3.4.2"
},
"peerDependenciesMeta": {
"@echogarden/vosk": {
"optional": true
},
"winax": {
"optional": true
}
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/graceful-fs": "^4.1.9",
"@types/jsdom": "^21.1.7",
"@types/msgpack-lite": "^0.1.11",
"@types/node": "^22.10.2",
"@types/tar": "^6.1.13",
"@types/ws": "^8.5.13",
"ts-json-schema-generator": "^2.3.0",
"typescript": "^5.7.2"
},
"overrides": {
"whatwg-url": "^14.0.0"
}
}