whisper-web-transcriber
Version:
Real-time audio transcription in the browser using OpenAI's Whisper model via WebAssembly
61 lines (60 loc) • 1.51 kB
JSON
{
"name": "whisper-web-transcriber",
"version": "0.2.4",
"description": "Real-time audio transcription in the browser using OpenAI's Whisper model via WebAssembly",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.esm.js",
"require": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"prepublishOnly": "npm run build",
"demo": "python3 server.py"
},
"keywords": [
"whisper",
"speech-to-text",
"transcription",
"webassembly",
"audio",
"real-time",
"openai",
"whisper.cpp"
],
"author": "Khaled Bin A Quadir",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^11.1.5",
"rollup": "^4.9.2",
"rollup-plugin-copy": "^3.5.0",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"repository": {
"type": "git",
"url": "https://github.com/perception30/whisper-web-transcriber.git"
},
"bugs": {
"url": "https://github.com/perception30/whisper-web-transcriber/issues"
},
"homepage": "https://github.com/perception30/whisper-web-transcriber#readme",
"dependencies": {
"whisper-web-transcriber": "^0.1.7"
}
}