@jellypod/speech-sdk 0.0.1 → 0.0.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 +3 -3
  2. package/package.json +5 -1
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
- # speech-sdk
1
+ # Speech SDK
2
2
 
3
- A TypeScript SDK for text-to-speech with multiple provider support. Universal (Node, Edge, Browser).
3
+ Universal Text-To-Speech TypeScript SDK with Multi-Provider Support (ElevenLabs, OpenAI, and more). Cross-platform (Node, Edge, Browser), Open-Source, and Minimal Dependencies.
4
4
 
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- npm install speech-sdk
8
+ npm install @Jellypod-Inc/speech-sdk
9
9
  ```
10
10
 
11
11
  ### Using an AI Coding Assistant?
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jellypod/speech-sdk",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "description": "A TypeScript SDK for text-to-speech with multiple provider support",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -37,6 +37,10 @@
37
37
  "ai"
38
38
  ],
39
39
  "license": "MIT",
40
+ "repository": {
41
+ "type": "git",
42
+ "url": "https://github.com/Jellypod-Inc/speech-sdk"
43
+ },
40
44
  "dependencies": {
41
45
  "p-retry": "^8.0.0"
42
46
  },