@contractspec/example.voice-providers 1.59.0 → 1.61.0

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.
@@ -3,7 +3,7 @@ $ bun run prebuild && bun run build:bundle && bun run build:types
3
3
  $ contractspec-bun-build prebuild
4
4
  $ contractspec-bun-build transpile
5
5
  [contractspec-bun-build] transpile target=bun root=src entries=9
6
- Bundled 9 modules in 18ms
6
+ Bundled 9 modules in 13ms
7
7
 
8
8
  ./connection.sample.js 1.50 KB (entry point)
9
9
  ./run.js 5.59 KB (entry point)
@@ -16,7 +16,7 @@ Bundled 9 modules in 18ms
16
16
  handlers/create-provider.js 1.27 KB (entry point)
17
17
 
18
18
  [contractspec-bun-build] transpile target=node root=src entries=9
19
- Bundled 9 modules in 14ms
19
+ Bundled 9 modules in 29ms
20
20
 
21
21
  ./connection.sample.js 1.49 KB (entry point)
22
22
  ./run.js 5.58 KB (entry point)
@@ -29,7 +29,7 @@ Bundled 9 modules in 14ms
29
29
  handlers/create-provider.js 1.26 KB (entry point)
30
30
 
31
31
  [contractspec-bun-build] transpile target=browser root=src entries=9
32
- Bundled 9 modules in 26ms
32
+ Bundled 9 modules in 40ms
33
33
 
34
34
  ./connection.sample.js 1.49 KB (entry point)
35
35
  ./run.js 5.58 KB (entry point)
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @contractspec/example.voice-providers
2
2
 
3
+ ## 1.61.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 374fd71: fix: publishing
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [374fd71]
12
+ - @contractspec/integration.providers-impls@1.61.0
13
+ - @contractspec/lib.contracts@1.61.0
14
+
15
+ ## 1.60.0
16
+
17
+ ### Minor Changes
18
+
19
+ - fix: publish with bun
20
+
21
+ ### Patch Changes
22
+
23
+ - Updated dependencies
24
+ - @contractspec/integration.providers-impls@1.60.0
25
+ - @contractspec/lib.contracts@1.60.0
26
+
3
27
  ## 1.59.0
4
28
 
5
29
  ### Minor Changes
package/package.json CHANGED
@@ -1,20 +1,80 @@
1
1
  {
2
2
  "name": "@contractspec/example.voice-providers",
3
- "version": "1.59.0",
3
+ "version": "1.61.0",
4
4
  "description": "Voice provider example: Gradium and Fal text-to-speech integration patterns.",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "exports": {
8
- ".": "./src/index.ts",
9
- "./connection.sample": "./src/connection.sample.ts",
10
- "./docs": "./src/docs/index.ts",
11
- "./docs/index": "./src/docs/index.ts",
12
- "./docs/voice-providers.docblock": "./src/docs/voice-providers.docblock.ts",
13
- "./example": "./src/example.ts",
14
- "./handlers/create-provider": "./src/handlers/create-provider.ts",
15
- "./handlers/list-voices": "./src/handlers/list-voices.ts",
16
- "./handlers/synthesize": "./src/handlers/synthesize.ts",
17
- "./run": "./src/run.ts"
8
+ ".": {
9
+ "types": "./dist/index.d.ts",
10
+ "bun": "./dist/index.js",
11
+ "node": "./dist/node/index.js",
12
+ "browser": "./dist/browser/index.js",
13
+ "default": "./dist/index.js"
14
+ },
15
+ "./connection.sample": {
16
+ "types": "./dist/connection.sample.d.ts",
17
+ "bun": "./dist/connection.sample.js",
18
+ "node": "./dist/node/connection.sample.js",
19
+ "browser": "./dist/browser/connection.sample.js",
20
+ "default": "./dist/connection.sample.js"
21
+ },
22
+ "./docs": {
23
+ "types": "./dist/docs/index.d.ts",
24
+ "bun": "./dist/docs/index.js",
25
+ "node": "./dist/node/docs/index.js",
26
+ "browser": "./dist/browser/docs/index.js",
27
+ "default": "./dist/docs/index.js"
28
+ },
29
+ "./docs/index": {
30
+ "types": "./dist/docs/index.d.ts",
31
+ "bun": "./dist/docs/index.js",
32
+ "node": "./dist/node/docs/index.js",
33
+ "browser": "./dist/browser/docs/index.js",
34
+ "default": "./dist/docs/index.js"
35
+ },
36
+ "./docs/voice-providers.docblock": {
37
+ "types": "./dist/docs/voice-providers.docblock.d.ts",
38
+ "bun": "./dist/docs/voice-providers.docblock.js",
39
+ "node": "./dist/node/docs/voice-providers.docblock.js",
40
+ "browser": "./dist/browser/docs/voice-providers.docblock.js",
41
+ "default": "./dist/docs/voice-providers.docblock.js"
42
+ },
43
+ "./example": {
44
+ "types": "./dist/example.d.ts",
45
+ "bun": "./dist/example.js",
46
+ "node": "./dist/node/example.js",
47
+ "browser": "./dist/browser/example.js",
48
+ "default": "./dist/example.js"
49
+ },
50
+ "./handlers/create-provider": {
51
+ "types": "./dist/handlers/create-provider.d.ts",
52
+ "bun": "./dist/handlers/create-provider.js",
53
+ "node": "./dist/node/handlers/create-provider.js",
54
+ "browser": "./dist/browser/handlers/create-provider.js",
55
+ "default": "./dist/handlers/create-provider.js"
56
+ },
57
+ "./handlers/list-voices": {
58
+ "types": "./dist/handlers/list-voices.d.ts",
59
+ "bun": "./dist/handlers/list-voices.js",
60
+ "node": "./dist/node/handlers/list-voices.js",
61
+ "browser": "./dist/browser/handlers/list-voices.js",
62
+ "default": "./dist/handlers/list-voices.js"
63
+ },
64
+ "./handlers/synthesize": {
65
+ "types": "./dist/handlers/synthesize.d.ts",
66
+ "bun": "./dist/handlers/synthesize.js",
67
+ "node": "./dist/node/handlers/synthesize.js",
68
+ "browser": "./dist/browser/handlers/synthesize.js",
69
+ "default": "./dist/handlers/synthesize.js"
70
+ },
71
+ "./run": {
72
+ "types": "./dist/run.d.ts",
73
+ "bun": "./dist/run.js",
74
+ "node": "./dist/node/run.js",
75
+ "browser": "./dist/browser/run.js",
76
+ "default": "./dist/run.js"
77
+ }
18
78
  },
19
79
  "scripts": {
20
80
  "publish:pkg": "bun publish --tolerate-republish --ignore-scripts --verbose",
@@ -32,13 +92,13 @@
32
92
  "typecheck": "tsc --noEmit"
33
93
  },
34
94
  "dependencies": {
35
- "@contractspec/integration.providers-impls": "1.59.0",
36
- "@contractspec/lib.contracts": "1.59.0"
95
+ "@contractspec/integration.providers-impls": "1.61.0",
96
+ "@contractspec/lib.contracts": "1.61.0"
37
97
  },
38
98
  "devDependencies": {
39
- "@contractspec/tool.typescript": "1.59.0",
99
+ "@contractspec/tool.typescript": "1.61.0",
40
100
  "typescript": "^5.9.3",
41
- "@contractspec/tool.bun": "1.58.0"
101
+ "@contractspec/tool.bun": "1.60.0"
42
102
  },
43
103
  "publishConfig": {
44
104
  "access": "public",
@@ -46,70 +106,70 @@
46
106
  ".": {
47
107
  "types": "./dist/index.d.ts",
48
108
  "bun": "./dist/index.js",
49
- "node": "./dist/node/index.mjs",
109
+ "node": "./dist/node/index.js",
50
110
  "browser": "./dist/browser/index.js",
51
111
  "default": "./dist/index.js"
52
112
  },
53
113
  "./connection.sample": {
54
114
  "types": "./dist/connection.sample.d.ts",
55
115
  "bun": "./dist/connection.sample.js",
56
- "node": "./dist/node/connection.sample.mjs",
116
+ "node": "./dist/node/connection.sample.js",
57
117
  "browser": "./dist/browser/connection.sample.js",
58
118
  "default": "./dist/connection.sample.js"
59
119
  },
60
120
  "./docs": {
61
121
  "types": "./dist/docs/index.d.ts",
62
122
  "bun": "./dist/docs/index.js",
63
- "node": "./dist/node/docs/index.mjs",
123
+ "node": "./dist/node/docs/index.js",
64
124
  "browser": "./dist/browser/docs/index.js",
65
125
  "default": "./dist/docs/index.js"
66
126
  },
67
127
  "./docs/index": {
68
128
  "types": "./dist/docs/index.d.ts",
69
129
  "bun": "./dist/docs/index.js",
70
- "node": "./dist/node/docs/index.mjs",
130
+ "node": "./dist/node/docs/index.js",
71
131
  "browser": "./dist/browser/docs/index.js",
72
132
  "default": "./dist/docs/index.js"
73
133
  },
74
134
  "./docs/voice-providers.docblock": {
75
135
  "types": "./dist/docs/voice-providers.docblock.d.ts",
76
136
  "bun": "./dist/docs/voice-providers.docblock.js",
77
- "node": "./dist/node/docs/voice-providers.docblock.mjs",
137
+ "node": "./dist/node/docs/voice-providers.docblock.js",
78
138
  "browser": "./dist/browser/docs/voice-providers.docblock.js",
79
139
  "default": "./dist/docs/voice-providers.docblock.js"
80
140
  },
81
141
  "./example": {
82
142
  "types": "./dist/example.d.ts",
83
143
  "bun": "./dist/example.js",
84
- "node": "./dist/node/example.mjs",
144
+ "node": "./dist/node/example.js",
85
145
  "browser": "./dist/browser/example.js",
86
146
  "default": "./dist/example.js"
87
147
  },
88
148
  "./handlers/create-provider": {
89
149
  "types": "./dist/handlers/create-provider.d.ts",
90
150
  "bun": "./dist/handlers/create-provider.js",
91
- "node": "./dist/node/handlers/create-provider.mjs",
151
+ "node": "./dist/node/handlers/create-provider.js",
92
152
  "browser": "./dist/browser/handlers/create-provider.js",
93
153
  "default": "./dist/handlers/create-provider.js"
94
154
  },
95
155
  "./handlers/list-voices": {
96
156
  "types": "./dist/handlers/list-voices.d.ts",
97
157
  "bun": "./dist/handlers/list-voices.js",
98
- "node": "./dist/node/handlers/list-voices.mjs",
158
+ "node": "./dist/node/handlers/list-voices.js",
99
159
  "browser": "./dist/browser/handlers/list-voices.js",
100
160
  "default": "./dist/handlers/list-voices.js"
101
161
  },
102
162
  "./handlers/synthesize": {
103
163
  "types": "./dist/handlers/synthesize.d.ts",
104
164
  "bun": "./dist/handlers/synthesize.js",
105
- "node": "./dist/node/handlers/synthesize.mjs",
165
+ "node": "./dist/node/handlers/synthesize.js",
106
166
  "browser": "./dist/browser/handlers/synthesize.js",
107
167
  "default": "./dist/handlers/synthesize.js"
108
168
  },
109
169
  "./run": {
110
170
  "types": "./dist/run.d.ts",
111
171
  "bun": "./dist/run.js",
112
- "node": "./dist/node/run.mjs",
172
+ "node": "./dist/node/run.js",
113
173
  "browser": "./dist/browser/run.js",
114
174
  "default": "./dist/run.js"
115
175
  }