@mcptoolshop/voice-soundboard-core 0.2.1 → 0.2.2

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.
Files changed (2) hide show
  1. package/README.md +15 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,3 +1,7 @@
1
+ <p align="center">
2
+ <strong>English</strong> | <a href="README.ja.md">日本語</a> | <a href="README.zh.md">中文</a> | <a href="README.es.md">Español</a> | <a href="README.fr.md">Français</a> | <a href="README.hi.md">हिन्दी</a> | <a href="README.it.md">Italiano</a> | <a href="README.pt-BR.md">Português</a>
3
+ </p>
4
+
1
5
  <p align="center">
2
6
  <img src="https://raw.githubusercontent.com/mcp-tool-shop-org/mcp-voice-soundboard/main/assets/logo-dark.jpg" alt="MCP Voice Soundboard" width="420" />
3
7
  </p>
@@ -5,8 +9,8 @@
5
9
  <h3 align="center">Text-to-speech MCP server for AI agents.</h3>
6
10
 
7
11
  <p align="center">
8
- <a href="https://github.com/mcp-tool-shop-org/mcp-voice-soundboard/actions"><img src="https://img.shields.io/github/actions/workflow/status/mcp-tool-shop-org/mcp-voice-soundboard/ci.yml?style=flat-square&label=CI" alt="CI"></a>
9
- <a href="https://www.npmjs.com/package/@mcptoolshop/voice-soundboard-mcp"><img src="https://img.shields.io/npm/v/@mcptoolshop/voice-soundboard-mcp?style=flat-square&color=cb3837&logo=npm" alt="npm"></a>
12
+ <a href="https://github.com/mcp-tool-shop-org/mcp-voice-soundboard/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/mcp-tool-shop-org/mcp-voice-soundboard/ci.yml?branch=main&style=flat-square&label=CI" alt="CI"></a>
13
+ <a href="https://www.npmjs.com/package/@mcptoolshop/voice-soundboard-core"><img src="https://img.shields.io/npm/v/@mcptoolshop/voice-soundboard-core?style=flat-square&color=cb3837&logo=npm" alt="npm"></a>
10
14
  <img src="https://img.shields.io/badge/node-%E2%89%A520-339933?style=flat-square&logo=node.js&logoColor=white" alt="Node.js 20+">
11
15
  <img src="https://img.shields.io/badge/TypeScript-5.7-3178c6?style=flat-square&logo=typescript&logoColor=white" alt="TypeScript">
12
16
  <a href="LICENSE"><img src="https://img.shields.io/badge/license-MIT-green?style=flat-square" alt="License: MIT"></a>
@@ -143,7 +147,7 @@ category?: "thinking" # general | thinking | observation | debug
143
147
  | `if_` / `im_` | Italian |
144
148
  | `pf_` / `pm_` | Brazilian Portuguese |
145
149
 
146
- See the [full voice list](https://github.com/mcp-tool-shop-org/mcp-voice-soundboard#voices) in the main README.
150
+ See the [full voice list](https://github.com/mcp-tool-shop-org/mcp-voice-soundboard#voices) for all 48 voices with names and styles.
147
151
 
148
152
  ### Presets
149
153
 
@@ -198,12 +202,10 @@ pnpm build
198
202
 
199
203
  # Test (342 tests)
200
204
  pnpm test
201
-
202
- # Lint
203
- pnpm --filter @mcptoolshop/voice-soundboard-core exec ruff check . # Python legacy
204
- pnpm exec ruff check voice_soundboard/ tests/ --ignore=E501 # Python legacy
205
205
  ```
206
206
 
207
+ > Part of [MCP Tool Shop](https://mcp-tool-shop.github.io/)
208
+
207
209
  ### Project Structure
208
210
 
209
211
  ```
@@ -250,6 +252,12 @@ See [THREAT_MODEL.md](THREAT_MODEL.md) for the full threat surface analysis.
250
252
  |---------|-------------|
251
253
  | [soundboard-plugin](https://github.com/mcp-tool-shop-org/soundboard-plugin) | Claude Code plugin &mdash; slash commands, emotion-aware narration |
252
254
 
255
+ ## Support
256
+
257
+ - **Questions / help:** [Discussions](https://github.com/mcp-tool-shop-org/mcp-voice-soundboard/discussions)
258
+ - **Bug reports:** [Issues](https://github.com/mcp-tool-shop-org/mcp-voice-soundboard/issues)
259
+ - **Security:** [SECURITY.md](SECURITY.md)
260
+
253
261
  ## License
254
262
 
255
263
  [MIT](LICENSE)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mcptoolshop/voice-soundboard-core",
3
- "version": "0.2.1",
3
+ "version": "0.2.2",
4
4
  "description": "Backend-agnostic core library for MCP Voice Soundboard — 48 voices, 9 languages, validation, SSML-lite, chunking, emotion spans, SFX tags, and schemas.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",