{
  "name": "speech-transcriber",
  "version": "1.0.0",
  "description": "A node.js library for transcribing audio to text using OpenAIs Whisper model",
  "main": "dist/transcriber.js",
  "type": "module",
  "files": [
    "dist/"
  ],
  "scripts": {
    "build": "npm run clean && tsc && npm run copy-files",
    "clean": "rimraf dist/",
    "copy-files": "copyfiles -u 1 model/*.onnx dist/model/",
    "prepublishOnly": "npm run build"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/ianmarmour/speech-transcriber.git"
  },
  "keywords": [
    "OpenAI",
    "Whisper",
    "Transcript",
    "Transcriber",
    "Audio",
    "Speech",
    "Speech-to-Text"
  ],
  "author": "Ian Armour <ianmarmour@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/ianmarmour/speech-transcriber/issues"
  },
  "homepage": "https://github.com/ianmarmour/speech-transcriber#readme",
  "devDependencies": {
    "@types/node": "^20.8.9",
    "copyfiles": "^2.4.1",
    "prettier": "^3.0.3",
    "rimraf": "^5.0.5",
    "ts-node": "^10.9.1",
    "typescript": "^5.2.2"
  },
  "dependencies": {
    "onnxruntime-web": "^1.16.1"
  }
}
