@contractspec/integration.providers-impls 1.58.0 → 1.60.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.
- package/package.json +341 -61
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@contractspec/integration.providers-impls",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.60.0",
|
|
4
4
|
"description": "Integration provider implementations for email, payments, storage, and more",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"contractspec",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"typecheck": "tsc --noEmit"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@contractspec/lib.contracts": "1.
|
|
36
|
-
"@contractspec/integration.runtime": "1.
|
|
35
|
+
"@contractspec/lib.contracts": "1.60.0",
|
|
36
|
+
"@contractspec/integration.runtime": "1.60.0",
|
|
37
37
|
"@elevenlabs/elevenlabs-js": "^2.34.0",
|
|
38
38
|
"@fal-ai/client": "^1.9.0",
|
|
39
39
|
"@google-cloud/storage": "^7.19.0",
|
|
@@ -54,67 +54,347 @@
|
|
|
54
54
|
},
|
|
55
55
|
"devDependencies": {
|
|
56
56
|
"@types/bun": "latest",
|
|
57
|
-
"@contractspec/tool.typescript": "1.
|
|
57
|
+
"@contractspec/tool.typescript": "1.60.0",
|
|
58
58
|
"typescript": "^5.9.3",
|
|
59
|
-
"@contractspec/tool.bun": "1.
|
|
59
|
+
"@contractspec/tool.bun": "1.59.0"
|
|
60
60
|
},
|
|
61
61
|
"exports": {
|
|
62
|
-
".":
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
"./
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
"./
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
"./
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
"./
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
"./
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
"./impls
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
"./impls/
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
"./
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
"./
|
|
117
|
-
|
|
62
|
+
".": {
|
|
63
|
+
"types": "./dist/index.d.ts",
|
|
64
|
+
"bun": "./dist/index.js",
|
|
65
|
+
"node": "./dist/node/index.mjs",
|
|
66
|
+
"default": "./dist/index.js"
|
|
67
|
+
},
|
|
68
|
+
"./analytics": {
|
|
69
|
+
"types": "./dist/analytics.d.ts",
|
|
70
|
+
"bun": "./dist/analytics.js",
|
|
71
|
+
"node": "./dist/node/analytics.mjs",
|
|
72
|
+
"default": "./dist/analytics.js"
|
|
73
|
+
},
|
|
74
|
+
"./calendar": {
|
|
75
|
+
"types": "./dist/calendar.d.ts",
|
|
76
|
+
"bun": "./dist/calendar.js",
|
|
77
|
+
"node": "./dist/node/calendar.mjs",
|
|
78
|
+
"default": "./dist/calendar.js"
|
|
79
|
+
},
|
|
80
|
+
"./database": {
|
|
81
|
+
"types": "./dist/database.d.ts",
|
|
82
|
+
"bun": "./dist/database.js",
|
|
83
|
+
"node": "./dist/node/database.mjs",
|
|
84
|
+
"default": "./dist/database.js"
|
|
85
|
+
},
|
|
86
|
+
"./email": {
|
|
87
|
+
"types": "./dist/email.d.ts",
|
|
88
|
+
"bun": "./dist/email.js",
|
|
89
|
+
"node": "./dist/node/email.mjs",
|
|
90
|
+
"default": "./dist/email.js"
|
|
91
|
+
},
|
|
92
|
+
"./embedding": {
|
|
93
|
+
"types": "./dist/embedding.d.ts",
|
|
94
|
+
"bun": "./dist/embedding.js",
|
|
95
|
+
"node": "./dist/node/embedding.mjs",
|
|
96
|
+
"default": "./dist/embedding.js"
|
|
97
|
+
},
|
|
98
|
+
"./impls": {
|
|
99
|
+
"types": "./dist/impls/index.d.ts",
|
|
100
|
+
"bun": "./dist/impls/index.js",
|
|
101
|
+
"node": "./dist/node/impls/index.mjs",
|
|
102
|
+
"default": "./dist/impls/index.js"
|
|
103
|
+
},
|
|
104
|
+
"./impls/elevenlabs-voice": {
|
|
105
|
+
"types": "./dist/impls/elevenlabs-voice.d.ts",
|
|
106
|
+
"bun": "./dist/impls/elevenlabs-voice.js",
|
|
107
|
+
"node": "./dist/node/impls/elevenlabs-voice.mjs",
|
|
108
|
+
"default": "./dist/impls/elevenlabs-voice.js"
|
|
109
|
+
},
|
|
110
|
+
"./impls/fal-voice": {
|
|
111
|
+
"types": "./dist/impls/fal-voice.d.ts",
|
|
112
|
+
"bun": "./dist/impls/fal-voice.js",
|
|
113
|
+
"node": "./dist/node/impls/fal-voice.mjs",
|
|
114
|
+
"default": "./dist/impls/fal-voice.js"
|
|
115
|
+
},
|
|
116
|
+
"./impls/fathom-meeting-recorder": {
|
|
117
|
+
"types": "./dist/impls/fathom-meeting-recorder.d.ts",
|
|
118
|
+
"bun": "./dist/impls/fathom-meeting-recorder.js",
|
|
119
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.mjs",
|
|
120
|
+
"default": "./dist/impls/fathom-meeting-recorder.js"
|
|
121
|
+
},
|
|
122
|
+
"./impls/fathom-meeting-recorder.mapper": {
|
|
123
|
+
"types": "./dist/impls/fathom-meeting-recorder.mapper.d.ts",
|
|
124
|
+
"bun": "./dist/impls/fathom-meeting-recorder.mapper.js",
|
|
125
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.mapper.mjs",
|
|
126
|
+
"default": "./dist/impls/fathom-meeting-recorder.mapper.js"
|
|
127
|
+
},
|
|
128
|
+
"./impls/fathom-meeting-recorder.types": {
|
|
129
|
+
"types": "./dist/impls/fathom-meeting-recorder.types.d.ts",
|
|
130
|
+
"bun": "./dist/impls/fathom-meeting-recorder.types.js",
|
|
131
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.types.mjs",
|
|
132
|
+
"default": "./dist/impls/fathom-meeting-recorder.types.js"
|
|
133
|
+
},
|
|
134
|
+
"./impls/fathom-meeting-recorder.utils": {
|
|
135
|
+
"types": "./dist/impls/fathom-meeting-recorder.utils.d.ts",
|
|
136
|
+
"bun": "./dist/impls/fathom-meeting-recorder.utils.js",
|
|
137
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.utils.mjs",
|
|
138
|
+
"default": "./dist/impls/fathom-meeting-recorder.utils.js"
|
|
139
|
+
},
|
|
140
|
+
"./impls/fathom-meeting-recorder.webhooks": {
|
|
141
|
+
"types": "./dist/impls/fathom-meeting-recorder.webhooks.d.ts",
|
|
142
|
+
"bun": "./dist/impls/fathom-meeting-recorder.webhooks.js",
|
|
143
|
+
"node": "./dist/node/impls/fathom-meeting-recorder.webhooks.mjs",
|
|
144
|
+
"default": "./dist/impls/fathom-meeting-recorder.webhooks.js"
|
|
145
|
+
},
|
|
146
|
+
"./impls/fireflies-meeting-recorder": {
|
|
147
|
+
"types": "./dist/impls/fireflies-meeting-recorder.d.ts",
|
|
148
|
+
"bun": "./dist/impls/fireflies-meeting-recorder.js",
|
|
149
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.mjs",
|
|
150
|
+
"default": "./dist/impls/fireflies-meeting-recorder.js"
|
|
151
|
+
},
|
|
152
|
+
"./impls/fireflies-meeting-recorder.queries": {
|
|
153
|
+
"types": "./dist/impls/fireflies-meeting-recorder.queries.d.ts",
|
|
154
|
+
"bun": "./dist/impls/fireflies-meeting-recorder.queries.js",
|
|
155
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.queries.mjs",
|
|
156
|
+
"default": "./dist/impls/fireflies-meeting-recorder.queries.js"
|
|
157
|
+
},
|
|
158
|
+
"./impls/fireflies-meeting-recorder.types": {
|
|
159
|
+
"types": "./dist/impls/fireflies-meeting-recorder.types.d.ts",
|
|
160
|
+
"bun": "./dist/impls/fireflies-meeting-recorder.types.js",
|
|
161
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.types.mjs",
|
|
162
|
+
"default": "./dist/impls/fireflies-meeting-recorder.types.js"
|
|
163
|
+
},
|
|
164
|
+
"./impls/fireflies-meeting-recorder.utils": {
|
|
165
|
+
"types": "./dist/impls/fireflies-meeting-recorder.utils.d.ts",
|
|
166
|
+
"bun": "./dist/impls/fireflies-meeting-recorder.utils.js",
|
|
167
|
+
"node": "./dist/node/impls/fireflies-meeting-recorder.utils.mjs",
|
|
168
|
+
"default": "./dist/impls/fireflies-meeting-recorder.utils.js"
|
|
169
|
+
},
|
|
170
|
+
"./impls/gcs-storage": {
|
|
171
|
+
"types": "./dist/impls/gcs-storage.d.ts",
|
|
172
|
+
"bun": "./dist/impls/gcs-storage.js",
|
|
173
|
+
"node": "./dist/node/impls/gcs-storage.mjs",
|
|
174
|
+
"default": "./dist/impls/gcs-storage.js"
|
|
175
|
+
},
|
|
176
|
+
"./impls/gmail-inbound": {
|
|
177
|
+
"types": "./dist/impls/gmail-inbound.d.ts",
|
|
178
|
+
"bun": "./dist/impls/gmail-inbound.js",
|
|
179
|
+
"node": "./dist/node/impls/gmail-inbound.mjs",
|
|
180
|
+
"default": "./dist/impls/gmail-inbound.js"
|
|
181
|
+
},
|
|
182
|
+
"./impls/gmail-outbound": {
|
|
183
|
+
"types": "./dist/impls/gmail-outbound.d.ts",
|
|
184
|
+
"bun": "./dist/impls/gmail-outbound.js",
|
|
185
|
+
"node": "./dist/node/impls/gmail-outbound.mjs",
|
|
186
|
+
"default": "./dist/impls/gmail-outbound.js"
|
|
187
|
+
},
|
|
188
|
+
"./impls/google-calendar": {
|
|
189
|
+
"types": "./dist/impls/google-calendar.d.ts",
|
|
190
|
+
"bun": "./dist/impls/google-calendar.js",
|
|
191
|
+
"node": "./dist/node/impls/google-calendar.mjs",
|
|
192
|
+
"default": "./dist/impls/google-calendar.js"
|
|
193
|
+
},
|
|
194
|
+
"./impls/gradium-voice": {
|
|
195
|
+
"types": "./dist/impls/gradium-voice.d.ts",
|
|
196
|
+
"bun": "./dist/impls/gradium-voice.js",
|
|
197
|
+
"node": "./dist/node/impls/gradium-voice.mjs",
|
|
198
|
+
"default": "./dist/impls/gradium-voice.js"
|
|
199
|
+
},
|
|
200
|
+
"./impls/granola-meeting-recorder": {
|
|
201
|
+
"types": "./dist/impls/granola-meeting-recorder.d.ts",
|
|
202
|
+
"bun": "./dist/impls/granola-meeting-recorder.js",
|
|
203
|
+
"node": "./dist/node/impls/granola-meeting-recorder.mjs",
|
|
204
|
+
"default": "./dist/impls/granola-meeting-recorder.js"
|
|
205
|
+
},
|
|
206
|
+
"./impls/granola-meeting-recorder.mcp": {
|
|
207
|
+
"types": "./dist/impls/granola-meeting-recorder.mcp.d.ts",
|
|
208
|
+
"bun": "./dist/impls/granola-meeting-recorder.mcp.js",
|
|
209
|
+
"node": "./dist/node/impls/granola-meeting-recorder.mcp.mjs",
|
|
210
|
+
"default": "./dist/impls/granola-meeting-recorder.mcp.js"
|
|
211
|
+
},
|
|
212
|
+
"./impls/granola-meeting-recorder.types": {
|
|
213
|
+
"types": "./dist/impls/granola-meeting-recorder.types.d.ts",
|
|
214
|
+
"bun": "./dist/impls/granola-meeting-recorder.types.js",
|
|
215
|
+
"node": "./dist/node/impls/granola-meeting-recorder.types.mjs",
|
|
216
|
+
"default": "./dist/impls/granola-meeting-recorder.types.js"
|
|
217
|
+
},
|
|
218
|
+
"./impls/index": {
|
|
219
|
+
"types": "./dist/impls/index.d.ts",
|
|
220
|
+
"bun": "./dist/impls/index.js",
|
|
221
|
+
"node": "./dist/node/impls/index.mjs",
|
|
222
|
+
"default": "./dist/impls/index.js"
|
|
223
|
+
},
|
|
224
|
+
"./impls/jira": {
|
|
225
|
+
"types": "./dist/impls/jira.d.ts",
|
|
226
|
+
"bun": "./dist/impls/jira.js",
|
|
227
|
+
"node": "./dist/node/impls/jira.mjs",
|
|
228
|
+
"default": "./dist/impls/jira.js"
|
|
229
|
+
},
|
|
230
|
+
"./impls/linear": {
|
|
231
|
+
"types": "./dist/impls/linear.d.ts",
|
|
232
|
+
"bun": "./dist/impls/linear.js",
|
|
233
|
+
"node": "./dist/node/impls/linear.mjs",
|
|
234
|
+
"default": "./dist/impls/linear.js"
|
|
235
|
+
},
|
|
236
|
+
"./impls/mistral-embedding": {
|
|
237
|
+
"types": "./dist/impls/mistral-embedding.d.ts",
|
|
238
|
+
"bun": "./dist/impls/mistral-embedding.js",
|
|
239
|
+
"node": "./dist/node/impls/mistral-embedding.mjs",
|
|
240
|
+
"default": "./dist/impls/mistral-embedding.js"
|
|
241
|
+
},
|
|
242
|
+
"./impls/mistral-llm": {
|
|
243
|
+
"types": "./dist/impls/mistral-llm.d.ts",
|
|
244
|
+
"bun": "./dist/impls/mistral-llm.js",
|
|
245
|
+
"node": "./dist/node/impls/mistral-llm.mjs",
|
|
246
|
+
"default": "./dist/impls/mistral-llm.js"
|
|
247
|
+
},
|
|
248
|
+
"./impls/notion": {
|
|
249
|
+
"types": "./dist/impls/notion.d.ts",
|
|
250
|
+
"bun": "./dist/impls/notion.js",
|
|
251
|
+
"node": "./dist/node/impls/notion.mjs",
|
|
252
|
+
"default": "./dist/impls/notion.js"
|
|
253
|
+
},
|
|
254
|
+
"./impls/posthog": {
|
|
255
|
+
"types": "./dist/impls/posthog.d.ts",
|
|
256
|
+
"bun": "./dist/impls/posthog.js",
|
|
257
|
+
"node": "./dist/node/impls/posthog.mjs",
|
|
258
|
+
"default": "./dist/impls/posthog.js"
|
|
259
|
+
},
|
|
260
|
+
"./impls/posthog-reader": {
|
|
261
|
+
"types": "./dist/impls/posthog-reader.d.ts",
|
|
262
|
+
"bun": "./dist/impls/posthog-reader.js",
|
|
263
|
+
"node": "./dist/node/impls/posthog-reader.mjs",
|
|
264
|
+
"default": "./dist/impls/posthog-reader.js"
|
|
265
|
+
},
|
|
266
|
+
"./impls/posthog-utils": {
|
|
267
|
+
"types": "./dist/impls/posthog-utils.d.ts",
|
|
268
|
+
"bun": "./dist/impls/posthog-utils.js",
|
|
269
|
+
"node": "./dist/node/impls/posthog-utils.mjs",
|
|
270
|
+
"default": "./dist/impls/posthog-utils.js"
|
|
271
|
+
},
|
|
272
|
+
"./impls/postmark-email": {
|
|
273
|
+
"types": "./dist/impls/postmark-email.d.ts",
|
|
274
|
+
"bun": "./dist/impls/postmark-email.js",
|
|
275
|
+
"node": "./dist/node/impls/postmark-email.mjs",
|
|
276
|
+
"default": "./dist/impls/postmark-email.js"
|
|
277
|
+
},
|
|
278
|
+
"./impls/powens-client": {
|
|
279
|
+
"types": "./dist/impls/powens-client.d.ts",
|
|
280
|
+
"bun": "./dist/impls/powens-client.js",
|
|
281
|
+
"node": "./dist/node/impls/powens-client.mjs",
|
|
282
|
+
"default": "./dist/impls/powens-client.js"
|
|
283
|
+
},
|
|
284
|
+
"./impls/powens-openbanking": {
|
|
285
|
+
"types": "./dist/impls/powens-openbanking.d.ts",
|
|
286
|
+
"bun": "./dist/impls/powens-openbanking.js",
|
|
287
|
+
"node": "./dist/node/impls/powens-openbanking.mjs",
|
|
288
|
+
"default": "./dist/impls/powens-openbanking.js"
|
|
289
|
+
},
|
|
290
|
+
"./impls/provider-factory": {
|
|
291
|
+
"types": "./dist/impls/provider-factory.d.ts",
|
|
292
|
+
"bun": "./dist/impls/provider-factory.js",
|
|
293
|
+
"node": "./dist/node/impls/provider-factory.mjs",
|
|
294
|
+
"default": "./dist/impls/provider-factory.js"
|
|
295
|
+
},
|
|
296
|
+
"./impls/qdrant-vector": {
|
|
297
|
+
"types": "./dist/impls/qdrant-vector.d.ts",
|
|
298
|
+
"bun": "./dist/impls/qdrant-vector.js",
|
|
299
|
+
"node": "./dist/node/impls/qdrant-vector.mjs",
|
|
300
|
+
"default": "./dist/impls/qdrant-vector.js"
|
|
301
|
+
},
|
|
302
|
+
"./impls/stripe-payments": {
|
|
303
|
+
"types": "./dist/impls/stripe-payments.d.ts",
|
|
304
|
+
"bun": "./dist/impls/stripe-payments.js",
|
|
305
|
+
"node": "./dist/node/impls/stripe-payments.mjs",
|
|
306
|
+
"default": "./dist/impls/stripe-payments.js"
|
|
307
|
+
},
|
|
308
|
+
"./impls/supabase-psql": {
|
|
309
|
+
"types": "./dist/impls/supabase-psql.d.ts",
|
|
310
|
+
"bun": "./dist/impls/supabase-psql.js",
|
|
311
|
+
"node": "./dist/node/impls/supabase-psql.mjs",
|
|
312
|
+
"default": "./dist/impls/supabase-psql.js"
|
|
313
|
+
},
|
|
314
|
+
"./impls/supabase-vector": {
|
|
315
|
+
"types": "./dist/impls/supabase-vector.d.ts",
|
|
316
|
+
"bun": "./dist/impls/supabase-vector.js",
|
|
317
|
+
"node": "./dist/node/impls/supabase-vector.mjs",
|
|
318
|
+
"default": "./dist/impls/supabase-vector.js"
|
|
319
|
+
},
|
|
320
|
+
"./impls/tldv-meeting-recorder": {
|
|
321
|
+
"types": "./dist/impls/tldv-meeting-recorder.d.ts",
|
|
322
|
+
"bun": "./dist/impls/tldv-meeting-recorder.js",
|
|
323
|
+
"node": "./dist/node/impls/tldv-meeting-recorder.mjs",
|
|
324
|
+
"default": "./dist/impls/tldv-meeting-recorder.js"
|
|
325
|
+
},
|
|
326
|
+
"./impls/twilio-sms": {
|
|
327
|
+
"types": "./dist/impls/twilio-sms.d.ts",
|
|
328
|
+
"bun": "./dist/impls/twilio-sms.js",
|
|
329
|
+
"node": "./dist/node/impls/twilio-sms.mjs",
|
|
330
|
+
"default": "./dist/impls/twilio-sms.js"
|
|
331
|
+
},
|
|
332
|
+
"./llm": {
|
|
333
|
+
"types": "./dist/llm.d.ts",
|
|
334
|
+
"bun": "./dist/llm.js",
|
|
335
|
+
"node": "./dist/node/llm.mjs",
|
|
336
|
+
"default": "./dist/llm.js"
|
|
337
|
+
},
|
|
338
|
+
"./meeting-recorder": {
|
|
339
|
+
"types": "./dist/meeting-recorder.d.ts",
|
|
340
|
+
"bun": "./dist/meeting-recorder.js",
|
|
341
|
+
"node": "./dist/node/meeting-recorder.mjs",
|
|
342
|
+
"default": "./dist/meeting-recorder.js"
|
|
343
|
+
},
|
|
344
|
+
"./openbanking": {
|
|
345
|
+
"types": "./dist/openbanking.d.ts",
|
|
346
|
+
"bun": "./dist/openbanking.js",
|
|
347
|
+
"node": "./dist/node/openbanking.mjs",
|
|
348
|
+
"default": "./dist/openbanking.js"
|
|
349
|
+
},
|
|
350
|
+
"./payments": {
|
|
351
|
+
"types": "./dist/payments.d.ts",
|
|
352
|
+
"bun": "./dist/payments.js",
|
|
353
|
+
"node": "./dist/node/payments.mjs",
|
|
354
|
+
"default": "./dist/payments.js"
|
|
355
|
+
},
|
|
356
|
+
"./project-management": {
|
|
357
|
+
"types": "./dist/project-management.d.ts",
|
|
358
|
+
"bun": "./dist/project-management.js",
|
|
359
|
+
"node": "./dist/node/project-management.mjs",
|
|
360
|
+
"default": "./dist/project-management.js"
|
|
361
|
+
},
|
|
362
|
+
"./runtime": {
|
|
363
|
+
"types": "./dist/runtime.d.ts",
|
|
364
|
+
"bun": "./dist/runtime.js",
|
|
365
|
+
"node": "./dist/node/runtime.mjs",
|
|
366
|
+
"default": "./dist/runtime.js"
|
|
367
|
+
},
|
|
368
|
+
"./secrets/provider": {
|
|
369
|
+
"types": "./dist/secrets/provider.d.ts",
|
|
370
|
+
"bun": "./dist/secrets/provider.js",
|
|
371
|
+
"node": "./dist/node/secrets/provider.mjs",
|
|
372
|
+
"default": "./dist/secrets/provider.js"
|
|
373
|
+
},
|
|
374
|
+
"./sms": {
|
|
375
|
+
"types": "./dist/sms.d.ts",
|
|
376
|
+
"bun": "./dist/sms.js",
|
|
377
|
+
"node": "./dist/node/sms.mjs",
|
|
378
|
+
"default": "./dist/sms.js"
|
|
379
|
+
},
|
|
380
|
+
"./storage": {
|
|
381
|
+
"types": "./dist/storage.d.ts",
|
|
382
|
+
"bun": "./dist/storage.js",
|
|
383
|
+
"node": "./dist/node/storage.mjs",
|
|
384
|
+
"default": "./dist/storage.js"
|
|
385
|
+
},
|
|
386
|
+
"./vector-store": {
|
|
387
|
+
"types": "./dist/vector-store.d.ts",
|
|
388
|
+
"bun": "./dist/vector-store.js",
|
|
389
|
+
"node": "./dist/node/vector-store.mjs",
|
|
390
|
+
"default": "./dist/vector-store.js"
|
|
391
|
+
},
|
|
392
|
+
"./voice": {
|
|
393
|
+
"types": "./dist/voice.d.ts",
|
|
394
|
+
"bun": "./dist/voice.js",
|
|
395
|
+
"node": "./dist/node/voice.mjs",
|
|
396
|
+
"default": "./dist/voice.js"
|
|
397
|
+
}
|
|
118
398
|
},
|
|
119
399
|
"publishConfig": {
|
|
120
400
|
"access": "public",
|