vibe-notify 0.2.0 → 0.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.ja.md CHANGED
@@ -103,10 +103,17 @@ vibe-notify [options] [sound-name]
103
103
 
104
104
  - **ランタイム依存ゼロ** — すべてのサウンド生成は純粋な Node.js で行います
105
105
  - 内蔵サウンドは WAV オーディオとしてメモリ上で生成(エンベロープ付き正弦波)
106
- - 再生にはネイティブシステムプレイヤーを使用:PowerShell SoundPlayer (Windows)、afplay (macOS)、paplay/aplay (Linux)
107
- - WAV 再生に失敗した場合は `[System.Console]::Beep()` または端末ベルにフォールバック
108
106
  - 一時ファイルは再生後すぐにクリーンアップ
109
107
 
108
+ ### ファイルフォーマット対応
109
+
110
+ | フォーマット | Windows | macOS | Linux |
111
+ |--------|---------|-------|-------|
112
+ | `.wav` | ✅ ネイティブ | ✅ ネイティブ | ✅ ネイティブ |
113
+ | `.mp3` / その他 | ✅ ffplay¹ | ✅ ネイティブ | ✅ ffplay¹ |
114
+
115
+ ¹ ffmpeg をインストール: `winget install ffmpeg` (Windows) / `sudo apt install ffmpeg` (Linux)
116
+
110
117
  ## ライセンス
111
118
 
112
119
  MIT
package/README.md CHANGED
@@ -105,10 +105,17 @@ Options:
105
105
 
106
106
  - **Zero runtime dependencies** — all sound generation is pure Node.js
107
107
  - Built-in sounds are generated as WAV audio in-memory (sine waves with envelope)
108
- - Playback uses native system players: PowerShell SoundPlayer (Windows), afplay (macOS), paplay/aplay (Linux)
109
- - Falls back to `[System.Console]::Beep()` or terminal bell if WAV playback fails
110
108
  - Temp files are cleaned up immediately after playback
111
109
 
110
+ ### File Format Support
111
+
112
+ | Format | Windows | macOS | Linux |
113
+ |--------|---------|-------|-------|
114
+ | `.wav` | ✅ Native | ✅ Native | ✅ Native |
115
+ | `.mp3` / other | ✅ ffplay¹ | ✅ Native | ✅ ffplay¹ |
116
+
117
+ ¹ Install ffmpeg: `winget install ffmpeg` (Windows) / `sudo apt install ffmpeg` (Linux)
118
+
112
119
  ## License
113
120
 
114
121
  MIT
package/README.zh-CN.md CHANGED
@@ -103,10 +103,17 @@ vibe-notify [options] [sound-name]
103
103
 
104
104
  - **零运行时依赖** — 所有音频均使用纯 Node.js 生成
105
105
  - 内置音效以 WAV 格式在内存中生成(带包络的正弦波)
106
- - 播放使用系统原生播放器:PowerShell SoundPlayer (Windows)、afplay (macOS)、paplay/aplay (Linux)
107
- - 如果 WAV 播放失败,回退到 `[System.Console]::Beep()` 或终端响铃
108
106
  - 临时文件在播放后立即清理
109
107
 
108
+ ### 文件格式支持
109
+
110
+ | 格式 | Windows | macOS | Linux |
111
+ |--------|---------|-------|-------|
112
+ | `.wav` | ✅ 原生 | ✅ 原生 | ✅ 原生 |
113
+ | `.mp3` / 其他 | ✅ ffplay¹ | ✅ 原生 | ✅ ffplay¹ |
114
+
115
+ ¹ 安装 ffmpeg:`winget install ffmpeg` (Windows) / `sudo apt install ffmpeg` (Linux)
116
+
110
117
  ## 许可证
111
118
 
112
119
  MIT
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vibe-notify",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "Notification sounds for Claude Code completions — customizable beeps when your session finishes",
5
5
  "keywords": ["claude", "claude-code", "notification", "sound", "beep", "alert"],
6
6
  "license": "MIT",