-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.71 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
{
"name": "@rxtk/stt-deepspeech",
"version": "0.9.0",
"description": "👂 RxJS operator for speech-to-text using DeepSpeech",
"main": "dist/index.js",
"repository": "https://github.com/rxtoolkit/stt-deepspeech.git",
"author": "Buccaneer LLC <opensource@buccaneer.ai>",
"license": "MIT",
"bugs": {
"url": "https://github.com/rxtoolkit/stt-deepspeech/issues"
},
"keywords": [
"speech-to-text",
"s2t",
"transcription",
"transcribe",
"voice control",
"deepspeech",
"speech recognition",
"rxjs",
"reactive",
"observables",
"stream",
"streaming",
"realtime"
],
"directories": {
"src": "src"
},
"files": [
"dist"
],
"scripts": {
"build": "BABEL_ENV=build babel src --out-dir dist --source-maps --extensions .js --config-file ./babel.config.js --delete-dir-on-start --no-comments",
"test": "mocha --require @babel/register --require @babel/polyfill \"./{,!(node_modules)/**/}*.test.js\" --exit --require source-map-support",
"demo": "node ./scripts/demo.js"
},
"dependencies": {
"deepspeech": "^0.9.3",
"lodash": "^4.17.20",
"rxjs": "^6.6.3"
},
"devDependencies": {
"@babel/cli": "^7.12.13",
"@babel/core": "^7.12.13",
"@babel/node": "^7.12.13",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.12.13",
"@babel/register": "^7.12.13",
"@bottlenose/rxfs": "^0.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"chai": "^4.2.0",
"commander": "^7.0.0",
"luxon": "^1.25.0",
"mocha": "^8.2.1",
"rxjs-marbles": "^6.0.1",
"semantic-release-export-data": "^1.0.1",
"sinon": "^9.2.4"
},
"engines": {
"node": ">= 11.0.0"
}
}