@pie-players/tts-client-server 0.2.3 → 0.2.4

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 +1 -1
  2. package/package.json +15 -2
package/README.md CHANGED
@@ -121,7 +121,7 @@ See the implementation guide in [tts-server-api-architecture.md](../../docs/tts-
121
121
 
122
122
  Example route structure:
123
123
  ```
124
- apps/example/src/routes/api/tts/
124
+ apps/<host-app>/src/routes/api/tts/
125
125
  ├── synthesize/+server.ts
126
126
  └── voices/+server.ts
127
127
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pie-players/tts-client-server",
3
- "version": "0.2.3",
3
+ "version": "0.2.4",
4
4
  "description": "Client-side TTS provider that calls server API for synthesis",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
@@ -29,14 +29,27 @@
29
29
  ],
30
30
  "author": "PIE Framework",
31
31
  "license": "MIT",
32
+ "repository": {
33
+ "type": "git",
34
+ "url": "git+https://github.com/pie-framework/pie-players.git",
35
+ "directory": "packages/tts-client-server"
36
+ },
32
37
  "publishConfig": {
33
38
  "access": "public"
34
39
  },
35
40
  "dependencies": {
36
- "@pie-players/pie-tts": "0.1.3"
41
+ "@pie-players/pie-tts": "0.1.4"
37
42
  },
38
43
  "devDependencies": {
39
44
  "typescript": "^5.3.3",
40
45
  "vitest": "^1.0.4"
46
+ },
47
+ "sideEffects": false,
48
+ "homepage": "https://github.com/pie-framework/pie-players/tree/master/packages/tts-client-server#readme",
49
+ "bugs": {
50
+ "url": "https://github.com/pie-framework/pie-players/issues"
51
+ },
52
+ "engines": {
53
+ "node": ">=18.0.0"
41
54
  }
42
55
  }