{
  "name": "aivox",
  "version": "0.0.10",
  "bin": {
    "aivox": "dist/main.js"
  },
  "description": "A lightweight CLI tool for translating voice to text using Whisper, seamlessly piping the transcribed text to any Unix-like command for versatile integration.",
  "main": "dist/main.js",
  "scripts": {
    "test": "jest",
    "build": "tsup src/main.ts --out-dir dist && tsup src/worker.ts --out-dir dist && tsup src/recording.ts --out-dir dist",
    "postbuild": "chmod +x dist/main.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ikana/aivox.git"
  },
  "keywords": [
    "voice",
    "whisper",
    "voice-to-text",
    "cli"
  ],
  "author": "Rod Quezada",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Ikana/aivox/issues"
  },
  "homepage": "https://github.com/Ikana/aivox#readme",
  "dependencies": {
    "node-fetch": "^3.3.2",
    "node-record-lpcm16": "^1.0.1",
    "node-wav": "^0.0.2",
    "smart-whisper": "^0.7.0",
    "wav-headers": "^1.0.1"
  },
  "devDependencies": {
    "@types/node-fetch": "^2.6.11",
    "tsup": "^8.1.0",
    "typescript": "^5.5.3"
  }
}
