UNPKG

aivox

Version:

A lightweight CLI tool for translating voice to text using Whisper, seamlessly piping the transcribed text to any Unix-like command for versatile integration.

9 lines (7 loc) 200 B
import { defineConfig } from "tsup"; export default defineConfig({ entry: ["src/index.ts", "src/build.ts"], outDir: "dist", dts: true, // external: ["node-record-lpcm16", "wav-headers"], });