{
  "name": "piper-announce",
  "version": "1.2.10",
  "description": "AI-powered announcement generator using Piper TTS and OpenAI GPT models",
  "type": "module",
  "main": "src/index.js",
  "bin": {
    "make-announcement": "bin/make-announcement",
    "piper-voices": "bin/piper-voices"
  },
  "scripts": {
    "start": "node bin/make-announcement",
    "test": "node examples/basic-usage.js",
    "example": "node examples/basic-usage.js",
    "postinstall": "echo '🎵 Downloading Piper TTS voice models...' && node scripts/post-install.js",
    "prepare": "node scripts/post-install.js",
    "download-voices": "node scripts/download-voices.js",
    "download-voices:force": "node scripts/download-voices.js --force",
    "check-voices": "node bin/piper-voices status",
    "setup": "node scripts/post-install.js"
  },
  "keywords": [
    "tts",
    "piper",
    "announcement",
    "text-to-speech",
    "openai",
    "audio-generation",
    "voice-synthesis",
    "ai",
    "speech"
  ],
  "author": "Your Name <your.email@example.com>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/zahraajamali/speech-scheduler.git"
  },
  "bugs": {
    "url": "https://github.com/zahraajamali/speech-scheduler/issues"
  },
  "homepage": "https://github.com/zahraajamali/speech-scheduler#readme",
  "engines": {
    "node": ">=16.0.0"
  },
  "dependencies": {
    "dotenv": "^16.4.5",
    "openai": "^4.56.0"
  },
  "peerDependencies": {
    "piper": "*"
  },
  "files": [
    "src/",
    "bin/",
    "scripts/",
    "examples/",
    "README.md",
    "LICENSE"
  ],
  "config": {
    "voice_download_timeout": 300000,
    "voice_download_retries": 3
  }
}
