UNPKG

whisper-node-server

Version:

Local audio transcription on CPU. Node.js bindings for OpenAI's Whisper. Modified from node-whisper

54 lines (53 loc) 1.29 kB
{ "name": "whisper-node-server", "version": "1.0.0", "description": "Local audio transcription on CPU. Node.js bindings for OpenAI's Whisper. Modified from node-whisper", "homepage": "https://npmjs.com/whisper-node-server", "author": "robertinglin", "main": "dist/index.js", "bin": { "download": "dist/download.js" }, "scripts": { "start": "echo Starting with: npm run dev... && npm run dev", "dev": "NODE_ENV='development' nodemon --watch './**/*.ts' --exec 'ts-node' src/test.ts", "build": "npx tsc && chmod +x dist/download.js", "test": "node dist/test.js" }, "devDependencies": { "@types/node": "^18.11.13", "nodemon": "^2.0.20", "ts-node": "^10.9.1", "typescript": "^4.9.3" }, "dependencies": { "readline-sync": "^1.4.10", "shelljs": "^0.8.5", "node-fetch": "^2.6.9", "form-data": "^4.0.0" }, "repository": { "type": "git", "url": "https://github.com/robertinglin/whisper-node-server.git" }, "license": "MIT", "keywords": [ "OpenAI", "Whisper", "CPP", "C++", "Bindings", "Transcribe", "Transcriber", "Transcript", "Transcription", "Audio", "Speech", "Speech-to-Text", "STT", "TTS", "SRT", "Diarization", "local" ] }