d0ad362b20
- add unit test
20 lines
631 B
JSON
20 lines
631 B
JSON
{
|
|
"name": "audio-transcription-chrome",
|
|
"version": "1.0.0",
|
|
"description": "Audio Transcription is a Chrome extension that allows users to capture any audio playing on the current tab and transcribe it using OpenAI-whisper in real time. Users will have the option to do voice activity detection as well to not send audio to server when there is no speech.",
|
|
"main": "audiopreprocessor.js",
|
|
"scripts": {
|
|
"test": "jest"
|
|
},
|
|
"jest": {
|
|
"testEnvironment": "jsdom"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"jest": "^30.4.2",
|
|
"jest-environment-jsdom": "^30.4.1"
|
|
}
|
|
}
|