@acpfx/tts-pocket 0.2.2 → 0.2.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@acpfx/tts-pocket",
3
- "version": "0.2.2",
3
+ "version": "0.2.3",
4
4
  "description": "Local TTS via Pocket TTS (on-device, Rust/Candle, CPU-capable)",
5
5
  "repository": {
6
6
  "type": "git",
@@ -7,8 +7,9 @@ const path = require("path");
7
7
 
8
8
  const SUPPORTED_PLATFORMS = {
9
9
  "darwin arm64": "tts-pocket-darwin-arm64",
10
- "darwin x64": "tts-pocket-darwin-x64",
10
+ "linux arm64": "tts-pocket-linux-arm64",
11
11
  "linux x64": "tts-pocket-linux-x64",
12
+ "win32 arm64": "tts-pocket-win32-arm64.exe",
12
13
  "win32 x64": "tts-pocket-win32-x64.exe",
13
14
  };
14
15