@lunora/solid 1.0.0-alpha.22 → 1.0.0-alpha.24
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/dist/index.d.mts +583 -3
- package/dist/index.d.ts +583 -3
- package/dist/index.mjs +10 -4
- package/dist/packem_shared/createAgent-D7EZBeql.mjs +55 -0
- package/dist/packem_shared/createAgentChat-CsoyE3RE.mjs +150 -0
- package/dist/packem_shared/createAgentState-DckYu3G8.mjs +21 -0
- package/dist/packem_shared/createAgentToolEvents-UavTO16u.mjs +99 -0
- package/dist/packem_shared/{createFlag-DTGaIdMo.mjs → createFlag-Bu9YfzcJ.mjs} +1 -37
- package/dist/packem_shared/{createInfiniteQuery-q2r4PSqD.mjs → createInfiniteQuery-Dy9k7Px2.mjs} +22 -2
- package/dist/packem_shared/{createPresence-DMiDP353.mjs → createPresence-DM2cVkiG.mjs} +12 -5
- package/dist/packem_shared/createStream-D9ONbGAw.mjs +70 -0
- package/dist/packem_shared/{createSubscription-C_ed4Rov.mjs → createSubscription-D3HbChGe.mjs} +3 -1
- package/dist/packem_shared/createVoiceAgent-hu59SaDl.mjs +418 -0
- package/dist/packem_shared/stable-key-CGp4e2Ux.mjs +38 -0
- package/package.json +4 -4
|
@@ -0,0 +1,418 @@
|
|
|
1
|
+
import { createSignal, onCleanup } from 'solid-js';
|
|
2
|
+
import { useLunora } from './LunoraContext-C59PzHhN.mjs';
|
|
3
|
+
import { resolveMaybe } from './createAgent-D7EZBeql.mjs';
|
|
4
|
+
|
|
5
|
+
const TARGET_SAMPLE_RATE = 16e3;
|
|
6
|
+
const blockRms = (samples) => {
|
|
7
|
+
if (samples.length === 0) {
|
|
8
|
+
return 0;
|
|
9
|
+
}
|
|
10
|
+
let sum = 0;
|
|
11
|
+
for (const sample of samples) {
|
|
12
|
+
sum += sample * sample;
|
|
13
|
+
}
|
|
14
|
+
return Math.sqrt(sum / samples.length);
|
|
15
|
+
};
|
|
16
|
+
const toPcm16 = (samples, inputSampleRate) => {
|
|
17
|
+
const ratio = inputSampleRate / TARGET_SAMPLE_RATE;
|
|
18
|
+
const outLength = ratio > 1 ? Math.floor(samples.length / ratio) : samples.length;
|
|
19
|
+
const buffer = new ArrayBuffer(outLength * 2);
|
|
20
|
+
const view = new DataView(buffer);
|
|
21
|
+
for (let index = 0; index < outLength; index += 1) {
|
|
22
|
+
const sample = samples[Math.floor(index * ratio)] ?? 0;
|
|
23
|
+
const clamped = Math.max(-1, Math.min(1, sample));
|
|
24
|
+
view.setInt16(index * 2, clamped < 0 ? clamped * 32768 : clamped * 32767, true);
|
|
25
|
+
}
|
|
26
|
+
return new Uint8Array(buffer);
|
|
27
|
+
};
|
|
28
|
+
const createBrowserMicrophone = async (config) => {
|
|
29
|
+
const media = globalThis;
|
|
30
|
+
const getUserMedia = media.navigator?.mediaDevices?.getUserMedia.bind(media.navigator.mediaDevices);
|
|
31
|
+
const AudioContextClass = media.AudioContext ?? media.webkitAudioContext;
|
|
32
|
+
if (!getUserMedia || !AudioContextClass) {
|
|
33
|
+
throw new Error("createVoiceAgent: microphone capture requires getUserMedia + AudioContext (no browser audio available)");
|
|
34
|
+
}
|
|
35
|
+
const stream = await getUserMedia({
|
|
36
|
+
audio: {
|
|
37
|
+
channelCount: 1,
|
|
38
|
+
echoCancellation: true,
|
|
39
|
+
noiseSuppression: true
|
|
40
|
+
}
|
|
41
|
+
});
|
|
42
|
+
const context = new AudioContextClass();
|
|
43
|
+
const source = context.createMediaStreamSource(stream);
|
|
44
|
+
const processor = context.createScriptProcessor(4096, 1, 1);
|
|
45
|
+
let muted = false;
|
|
46
|
+
let sawSpeech = false;
|
|
47
|
+
let silentFor = 0;
|
|
48
|
+
let loudChunks = 0;
|
|
49
|
+
processor.onaudioprocess = (event) => {
|
|
50
|
+
const samples = event.inputBuffer.getChannelData(0);
|
|
51
|
+
const rms = muted ? 0 : blockRms(samples);
|
|
52
|
+
config.onLevel(rms);
|
|
53
|
+
if (muted) {
|
|
54
|
+
return;
|
|
55
|
+
}
|
|
56
|
+
config.onAudio(toPcm16(samples, context.sampleRate));
|
|
57
|
+
if (config.isSpeaking()) {
|
|
58
|
+
loudChunks = rms >= config.interruptThreshold ? loudChunks + 1 : 0;
|
|
59
|
+
if (loudChunks >= config.interruptChunks) {
|
|
60
|
+
loudChunks = 0;
|
|
61
|
+
config.onInterrupt();
|
|
62
|
+
}
|
|
63
|
+
return;
|
|
64
|
+
}
|
|
65
|
+
loudChunks = 0;
|
|
66
|
+
const chunkMs = samples.length / context.sampleRate * 1e3;
|
|
67
|
+
if (rms >= config.silenceThreshold) {
|
|
68
|
+
sawSpeech = true;
|
|
69
|
+
silentFor = 0;
|
|
70
|
+
return;
|
|
71
|
+
}
|
|
72
|
+
if (sawSpeech) {
|
|
73
|
+
silentFor += chunkMs;
|
|
74
|
+
if (silentFor >= config.silenceDurationMs) {
|
|
75
|
+
sawSpeech = false;
|
|
76
|
+
silentFor = 0;
|
|
77
|
+
config.onSilence();
|
|
78
|
+
}
|
|
79
|
+
}
|
|
80
|
+
};
|
|
81
|
+
source.connect(processor);
|
|
82
|
+
processor.connect(context.destination);
|
|
83
|
+
return {
|
|
84
|
+
setMuted: (next) => {
|
|
85
|
+
muted = next;
|
|
86
|
+
},
|
|
87
|
+
stop: () => {
|
|
88
|
+
processor.disconnect();
|
|
89
|
+
source.disconnect();
|
|
90
|
+
for (const track of stream.getTracks()) {
|
|
91
|
+
track.stop();
|
|
92
|
+
}
|
|
93
|
+
void context.close();
|
|
94
|
+
}
|
|
95
|
+
};
|
|
96
|
+
};
|
|
97
|
+
const createBrowserSpeaker = () => {
|
|
98
|
+
const media = globalThis;
|
|
99
|
+
const AudioContextClass = media.AudioContext ?? media.webkitAudioContext;
|
|
100
|
+
if (!AudioContextClass) {
|
|
101
|
+
throw new Error("createVoiceAgent: audio playback requires AudioContext (no browser audio available)");
|
|
102
|
+
}
|
|
103
|
+
const context = new AudioContextClass();
|
|
104
|
+
const sources = /* @__PURE__ */ new Set();
|
|
105
|
+
let playHead = 0;
|
|
106
|
+
let chain = Promise.resolve();
|
|
107
|
+
let generation = 0;
|
|
108
|
+
const scheduleChunk = async (bytes, scheduledGeneration) => {
|
|
109
|
+
if (scheduledGeneration !== generation) {
|
|
110
|
+
return;
|
|
111
|
+
}
|
|
112
|
+
let decoded;
|
|
113
|
+
try {
|
|
114
|
+
decoded = await context.decodeAudioData(bytes.buffer);
|
|
115
|
+
} catch {
|
|
116
|
+
return;
|
|
117
|
+
}
|
|
118
|
+
if (scheduledGeneration !== generation) {
|
|
119
|
+
return;
|
|
120
|
+
}
|
|
121
|
+
const node = context.createBufferSource();
|
|
122
|
+
node.buffer = decoded;
|
|
123
|
+
node.connect(context.destination);
|
|
124
|
+
const startAt = Math.max(context.currentTime, playHead);
|
|
125
|
+
node.start(startAt);
|
|
126
|
+
playHead = startAt + decoded.duration;
|
|
127
|
+
sources.add(node);
|
|
128
|
+
node.onended = () => {
|
|
129
|
+
sources.delete(node);
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
const enqueue = (audio) => {
|
|
133
|
+
const bytes = Uint8Array.from(audio);
|
|
134
|
+
const scheduledGeneration = generation;
|
|
135
|
+
chain = chain.then(() => scheduleChunk(bytes, scheduledGeneration));
|
|
136
|
+
};
|
|
137
|
+
const interrupt = () => {
|
|
138
|
+
generation += 1;
|
|
139
|
+
for (const node of sources) {
|
|
140
|
+
try {
|
|
141
|
+
node.stop();
|
|
142
|
+
} catch {
|
|
143
|
+
}
|
|
144
|
+
}
|
|
145
|
+
sources.clear();
|
|
146
|
+
playHead = context.currentTime;
|
|
147
|
+
};
|
|
148
|
+
return {
|
|
149
|
+
enqueue,
|
|
150
|
+
interrupt,
|
|
151
|
+
stop: () => {
|
|
152
|
+
interrupt();
|
|
153
|
+
void context.close();
|
|
154
|
+
}
|
|
155
|
+
};
|
|
156
|
+
};
|
|
157
|
+
|
|
158
|
+
const WS_OPEN = 1;
|
|
159
|
+
const DEFAULT_SILENCE_THRESHOLD = 0.01;
|
|
160
|
+
const DEFAULT_SILENCE_DURATION_MS = 1200;
|
|
161
|
+
const DEFAULT_INTERRUPT_THRESHOLD = 0.15;
|
|
162
|
+
const DEFAULT_INTERRUPT_CHUNKS = 3;
|
|
163
|
+
const deriveWebSocketUrl = (url) => {
|
|
164
|
+
if (url.startsWith("https://")) {
|
|
165
|
+
return `wss://${url.slice("https://".length)}`;
|
|
166
|
+
}
|
|
167
|
+
if (url.startsWith("http://")) {
|
|
168
|
+
return `ws://${url.slice("http://".length)}`;
|
|
169
|
+
}
|
|
170
|
+
return url;
|
|
171
|
+
};
|
|
172
|
+
const agentNameFromReference = (voice) => {
|
|
173
|
+
const reference = voice["__lunoraRef"];
|
|
174
|
+
const withoutNamespace = reference.startsWith("agents:") ? reference.slice("agents:".length) : reference;
|
|
175
|
+
return withoutNamespace.endsWith("Voice") ? withoutNamespace.slice(0, -"Voice".length) : withoutNamespace;
|
|
176
|
+
};
|
|
177
|
+
const voiceSocketUrl = (baseUrl, agent, threadKey) => {
|
|
178
|
+
const base = deriveWebSocketUrl(baseUrl);
|
|
179
|
+
const trimmed = base.endsWith("/") ? base.slice(0, -1) : base;
|
|
180
|
+
const search = new URLSearchParams({
|
|
181
|
+
threadKey
|
|
182
|
+
});
|
|
183
|
+
return `${trimmed}/_lunora/voice/${encodeURIComponent(agent)}?${search.toString()}`;
|
|
184
|
+
};
|
|
185
|
+
const createVoiceAgent = (options) => {
|
|
186
|
+
const {
|
|
187
|
+
createMicrophone = createBrowserMicrophone,
|
|
188
|
+
createSpeaker = createBrowserSpeaker,
|
|
189
|
+
createSocket,
|
|
190
|
+
interruptChunks = DEFAULT_INTERRUPT_CHUNKS,
|
|
191
|
+
interruptThreshold = DEFAULT_INTERRUPT_THRESHOLD,
|
|
192
|
+
silenceDurationMs = DEFAULT_SILENCE_DURATION_MS,
|
|
193
|
+
silenceThreshold = DEFAULT_SILENCE_THRESHOLD,
|
|
194
|
+
threadKey,
|
|
195
|
+
voice
|
|
196
|
+
} = options;
|
|
197
|
+
const client = useLunora();
|
|
198
|
+
const [status, setStatus] = createSignal("idle");
|
|
199
|
+
const [connected, setConnected] = createSignal(false);
|
|
200
|
+
const [transcript, setTranscript] = createSignal("");
|
|
201
|
+
const [interimTranscript, setInterimTranscript] = createSignal("");
|
|
202
|
+
const [audioLevel, setAudioLevel] = createSignal(0);
|
|
203
|
+
const [isMuted, setIsMuted] = createSignal(false);
|
|
204
|
+
const [error, setError] = createSignal(void 0);
|
|
205
|
+
let current;
|
|
206
|
+
let starting = false;
|
|
207
|
+
const sendFrame = (frame) => {
|
|
208
|
+
const socket = current?.socket;
|
|
209
|
+
if (socket?.readyState === WS_OPEN) {
|
|
210
|
+
socket.send(JSON.stringify(frame));
|
|
211
|
+
return true;
|
|
212
|
+
}
|
|
213
|
+
return false;
|
|
214
|
+
};
|
|
215
|
+
const teardown = () => {
|
|
216
|
+
const connection = current;
|
|
217
|
+
current = void 0;
|
|
218
|
+
if (connection) {
|
|
219
|
+
connection.microphone?.stop();
|
|
220
|
+
connection.speaker?.stop();
|
|
221
|
+
try {
|
|
222
|
+
connection.socket.close();
|
|
223
|
+
} catch {
|
|
224
|
+
}
|
|
225
|
+
}
|
|
226
|
+
starting = false;
|
|
227
|
+
setConnected(false);
|
|
228
|
+
setStatus("idle");
|
|
229
|
+
setAudioLevel(0);
|
|
230
|
+
};
|
|
231
|
+
const endCall = () => {
|
|
232
|
+
teardown();
|
|
233
|
+
};
|
|
234
|
+
const handleServerFrame = (frame) => {
|
|
235
|
+
const connection = current;
|
|
236
|
+
switch (frame.type) {
|
|
237
|
+
case "assistant_delta": {
|
|
238
|
+
if (connection) {
|
|
239
|
+
connection.speaking = true;
|
|
240
|
+
}
|
|
241
|
+
setStatus("speaking");
|
|
242
|
+
setInterimTranscript((previous) => previous + frame.text);
|
|
243
|
+
break;
|
|
244
|
+
}
|
|
245
|
+
case "assistant_done": {
|
|
246
|
+
if (connection) {
|
|
247
|
+
connection.speaking = false;
|
|
248
|
+
}
|
|
249
|
+
setInterimTranscript(frame.text);
|
|
250
|
+
setStatus("listening");
|
|
251
|
+
break;
|
|
252
|
+
}
|
|
253
|
+
case "error": {
|
|
254
|
+
if (connection) {
|
|
255
|
+
connection.speaking = false;
|
|
256
|
+
}
|
|
257
|
+
setError(new Error(frame.message));
|
|
258
|
+
setStatus("listening");
|
|
259
|
+
break;
|
|
260
|
+
}
|
|
261
|
+
case "interrupted": {
|
|
262
|
+
if (connection) {
|
|
263
|
+
connection.speaking = false;
|
|
264
|
+
connection.suppressAudio = false;
|
|
265
|
+
}
|
|
266
|
+
connection?.speaker?.interrupt();
|
|
267
|
+
setStatus("listening");
|
|
268
|
+
break;
|
|
269
|
+
}
|
|
270
|
+
case "ready": {
|
|
271
|
+
if (connection) {
|
|
272
|
+
connection.audioFormat = frame.audioFormat;
|
|
273
|
+
connection.suppressAudio = false;
|
|
274
|
+
}
|
|
275
|
+
setConnected(true);
|
|
276
|
+
setStatus("listening");
|
|
277
|
+
break;
|
|
278
|
+
}
|
|
279
|
+
case "user_transcript": {
|
|
280
|
+
if (connection) {
|
|
281
|
+
connection.suppressAudio = false;
|
|
282
|
+
}
|
|
283
|
+
setTranscript(frame.text);
|
|
284
|
+
setInterimTranscript("");
|
|
285
|
+
setStatus("thinking");
|
|
286
|
+
break;
|
|
287
|
+
}
|
|
288
|
+
}
|
|
289
|
+
};
|
|
290
|
+
const handleAudioChunk = (audio) => {
|
|
291
|
+
const connection = current;
|
|
292
|
+
if (!connection || connection.suppressAudio) {
|
|
293
|
+
return;
|
|
294
|
+
}
|
|
295
|
+
connection.speaker ??= createSpeaker({
|
|
296
|
+
audioFormat: connection.audioFormat
|
|
297
|
+
});
|
|
298
|
+
connection.speaking = true;
|
|
299
|
+
setStatus("speaking");
|
|
300
|
+
connection.speaker.enqueue(audio);
|
|
301
|
+
};
|
|
302
|
+
const startCall = async () => {
|
|
303
|
+
if (current || starting) {
|
|
304
|
+
return;
|
|
305
|
+
}
|
|
306
|
+
starting = true;
|
|
307
|
+
setError(void 0);
|
|
308
|
+
setTranscript("");
|
|
309
|
+
setInterimTranscript("");
|
|
310
|
+
try {
|
|
311
|
+
const url = voiceSocketUrl(client.url, agentNameFromReference(voice), resolveMaybe(threadKey));
|
|
312
|
+
const openSocket = createSocket ?? ((target) => new globalThis.WebSocket(target));
|
|
313
|
+
const socket = openSocket(url);
|
|
314
|
+
socket.binaryType = "arraybuffer";
|
|
315
|
+
const connection = {
|
|
316
|
+
audioFormat: "mp3",
|
|
317
|
+
microphone: void 0,
|
|
318
|
+
socket,
|
|
319
|
+
speaker: void 0,
|
|
320
|
+
speaking: false,
|
|
321
|
+
suppressAudio: false
|
|
322
|
+
};
|
|
323
|
+
current = connection;
|
|
324
|
+
socket.onmessage = (event) => {
|
|
325
|
+
if (typeof event.data === "string") {
|
|
326
|
+
try {
|
|
327
|
+
handleServerFrame(JSON.parse(event.data));
|
|
328
|
+
} catch {
|
|
329
|
+
}
|
|
330
|
+
return;
|
|
331
|
+
}
|
|
332
|
+
handleAudioChunk(new Uint8Array(event.data));
|
|
333
|
+
};
|
|
334
|
+
socket.onerror = () => {
|
|
335
|
+
setError(new Error("createVoiceAgent: voice socket error"));
|
|
336
|
+
};
|
|
337
|
+
socket.onclose = () => {
|
|
338
|
+
if (current === connection) {
|
|
339
|
+
teardown();
|
|
340
|
+
}
|
|
341
|
+
};
|
|
342
|
+
const microphone = await createMicrophone({
|
|
343
|
+
interruptChunks,
|
|
344
|
+
interruptThreshold,
|
|
345
|
+
isSpeaking: () => current?.speaking ?? false,
|
|
346
|
+
onAudio: (pcm) => {
|
|
347
|
+
if (socket.readyState === WS_OPEN) {
|
|
348
|
+
socket.send(pcm);
|
|
349
|
+
}
|
|
350
|
+
},
|
|
351
|
+
onInterrupt: () => {
|
|
352
|
+
sendFrame({
|
|
353
|
+
type: "interrupt"
|
|
354
|
+
});
|
|
355
|
+
current?.speaker?.interrupt();
|
|
356
|
+
if (current) {
|
|
357
|
+
current.speaking = false;
|
|
358
|
+
current.suppressAudio = true;
|
|
359
|
+
}
|
|
360
|
+
setStatus("listening");
|
|
361
|
+
},
|
|
362
|
+
onLevel: (rms) => {
|
|
363
|
+
setAudioLevel(rms);
|
|
364
|
+
},
|
|
365
|
+
onSilence: () => {
|
|
366
|
+
sendFrame({
|
|
367
|
+
type: "commit"
|
|
368
|
+
});
|
|
369
|
+
setStatus("thinking");
|
|
370
|
+
},
|
|
371
|
+
silenceDurationMs,
|
|
372
|
+
silenceThreshold
|
|
373
|
+
});
|
|
374
|
+
if (current === connection) {
|
|
375
|
+
connection.microphone = microphone;
|
|
376
|
+
setIsMuted(false);
|
|
377
|
+
setStatus("listening");
|
|
378
|
+
} else {
|
|
379
|
+
microphone.stop();
|
|
380
|
+
}
|
|
381
|
+
} catch (error_) {
|
|
382
|
+
setError(error_ instanceof Error ? error_ : new Error(String(error_)));
|
|
383
|
+
teardown();
|
|
384
|
+
} finally {
|
|
385
|
+
starting = false;
|
|
386
|
+
}
|
|
387
|
+
};
|
|
388
|
+
const toggleMute = () => {
|
|
389
|
+
const next = !isMuted();
|
|
390
|
+
current?.microphone?.setMuted(next);
|
|
391
|
+
setIsMuted(next);
|
|
392
|
+
return next;
|
|
393
|
+
};
|
|
394
|
+
const sendText = (text) => {
|
|
395
|
+
if (sendFrame({
|
|
396
|
+
text,
|
|
397
|
+
type: "text"
|
|
398
|
+
})) {
|
|
399
|
+
setStatus("thinking");
|
|
400
|
+
}
|
|
401
|
+
};
|
|
402
|
+
onCleanup(teardown);
|
|
403
|
+
return {
|
|
404
|
+
audioLevel,
|
|
405
|
+
connected,
|
|
406
|
+
endCall,
|
|
407
|
+
error,
|
|
408
|
+
interimTranscript,
|
|
409
|
+
isMuted,
|
|
410
|
+
sendText,
|
|
411
|
+
startCall,
|
|
412
|
+
status,
|
|
413
|
+
toggleMute,
|
|
414
|
+
transcript
|
|
415
|
+
};
|
|
416
|
+
};
|
|
417
|
+
|
|
418
|
+
export { createVoiceAgent };
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
const compareKeys = (a, b) => {
|
|
2
|
+
if (a < b) {
|
|
3
|
+
return -1;
|
|
4
|
+
}
|
|
5
|
+
return a > b ? 1 : 0;
|
|
6
|
+
};
|
|
7
|
+
const stableStringify = (value) => {
|
|
8
|
+
if (value === void 0) {
|
|
9
|
+
return "null";
|
|
10
|
+
}
|
|
11
|
+
if (typeof value === "bigint") {
|
|
12
|
+
throw new TypeError("stableStringify: cannot use a bigint in a cache key (query/subscription/shape args) — pass it as a string");
|
|
13
|
+
}
|
|
14
|
+
if (value === null || typeof value !== "object") {
|
|
15
|
+
return JSON.stringify(value);
|
|
16
|
+
}
|
|
17
|
+
if (Array.isArray(value)) {
|
|
18
|
+
return `[${value.map((item) => stableStringify(item)).join(",")}]`;
|
|
19
|
+
}
|
|
20
|
+
const proto = Object.getPrototypeOf(value);
|
|
21
|
+
if (proto !== null && proto !== Object.prototype) {
|
|
22
|
+
const name = value.constructor?.name ?? "value";
|
|
23
|
+
throw new TypeError(`stableStringify: cannot use a ${name} in a cache key (query/subscription/shape args) — only plain objects, arrays, and JSON primitives are supported`);
|
|
24
|
+
}
|
|
25
|
+
const record = value;
|
|
26
|
+
const keys = Object.keys(record).toSorted(compareKeys);
|
|
27
|
+
const parts = [];
|
|
28
|
+
for (const key of keys) {
|
|
29
|
+
const raw = record[key];
|
|
30
|
+
if (raw === void 0) {
|
|
31
|
+
continue;
|
|
32
|
+
}
|
|
33
|
+
parts.push(`${JSON.stringify(key)}:${stableStringify(raw)}`);
|
|
34
|
+
}
|
|
35
|
+
return `{${parts.join(",")}}`;
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
export { stableStringify as s };
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lunora/solid",
|
|
3
|
-
"version": "1.0.0-alpha.
|
|
3
|
+
"version": "1.0.0-alpha.24",
|
|
4
4
|
"description": "SolidJS adapter for Lunora — live queries, optimistic mutations, and reactive loaders",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"cloudflare",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"access": "public"
|
|
51
51
|
},
|
|
52
52
|
"dependencies": {
|
|
53
|
-
"@lunora/client": "1.0.0-alpha.
|
|
54
|
-
"@lunora/errors": "1.0.0-alpha.
|
|
55
|
-
"@lunora/ratelimit": "1.0.0-alpha.
|
|
53
|
+
"@lunora/client": "1.0.0-alpha.21",
|
|
54
|
+
"@lunora/errors": "1.0.0-alpha.4",
|
|
55
|
+
"@lunora/ratelimit": "1.0.0-alpha.7"
|
|
56
56
|
},
|
|
57
57
|
"peerDependencies": {
|
|
58
58
|
"solid-js": "^1.9.0"
|