aeap-speech-to-text/package.json
Kevin Harwell 1f701bd265 Adding Asterisk external speech to text application
This patch adds basic functionality for translating speech to text, using
the Google speech API, from audio received over a websocket after a successful
negotiation with Asterisk using the Asterisk External Application Protocol.
2022-02-15 13:05:43 -06:00

26 lines
594 B
JSON

{
"name": "aeap-speech-to-text",
"description": "asterisk external speech to text application",
"version": "0.1.0",
"homepage": "https://github.com/asterisk/aeap-speech-to-text#README.md",
"main": "./index.js",
"bin": "./index.js",
"license": "Apache-2.0",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/asterisk/aeap-speech-to-text.git"
},
"keywords": [
"asterisk",
"asterisk external application protocol",
"aeap",
"speech"
],
"dependencies": {
"@google-cloud/speech": "^4.9.0",
"ws": "^8.3.0",
"yargs": "^17.3.1"
}
}