{
  "name": "meeting-whisperer",
  "version": "0.1.0",
  "description": "CLI tool that transcribes audio/video files using AssemblyAI's API and outputs formatted markdown transcripts",
  "main": "dist/index.js",
  "type": "module",
  "bin": {
    "meeting-whisperer": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "npm run build",
    "transcribe": "tsx assembly-whisperer.ts",
    "test-setup": "tsx test-setup.ts",
    "dev": "tsx assembly-whisperer.ts"
  },
  "keywords": [
    "transcription",
    "audio",
    "video",
    "assemblyai",
    "cli",
    "speech-to-text",
    "meeting",
    "whisperer"
  ],
  "author": "",
  "license": "ISC",
  "dependencies": {
    "assemblyai": "^4.7.1",
    "chalk": "^5.3.0",
    "commander": "^12.1.0",
    "inquirer": "^12.0.0",
    "ora": "^8.1.0"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/commander": "^2.12.0",
    "@types/inquirer": "^9.0.7",
    "@types/node": "^20.16.11",
    "tsx": "^4.19.1",
    "typescript": "^5.6.0"
  }
}
