UNPKG

sofya.transcription

Version:

a JavaScript library that provides a robust and flexible solution for real-time audio transcription. It is designed to transcribe audio streams and can be easily integrated into web applications.

42 lines 1.27 kB
{ "name": "sofya.transcription", "version": "0.0.20", "description": "a JavaScript library that provides a robust and flexible solution for real-time audio transcription. It is designed to transcribe audio streams and can be easily integrated into web applications.", "homepage": "https://transcriptiondocs.netlify.app/", "main": "dist/bundle.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc --declaration && webpack --config webpack.config.js", "local-test": "npm pack", "test": "jest" }, "keywords": [ "Speech to Text", "Transcription", "audio", "capture", "stream", "MediaStream" ], "author": "Jhonatan Leandro", "license": "ISC", "devDependencies": { "@babel/cli": "^7.14.5", "@babel/core": "^7.14.6", "@babel/preset-env": "^7.14.5", "@types/jest": "^27.0.1", "copy-webpack-plugin": "^12.0.2", "dotenv": "^16.4.5", "jest": "^27.0.6", "ts-loader": "^9.5.1", "typescript": "^5.5.4", "webpack": "^5.64.0", "webpack-cli": "^4.9.1", "webpack-dev-server": "^4.3.1", "webpack-dotenv-plugin": "^2.1.0" }, "dependencies": { "axios": "^1.7.7", "microsoft-cognitiveservices-speech-sdk": "^1.38.0" } }