lurqrun 0.0.4 → 0.0.5
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/bin/lurq.js +2 -2
- package/dist/bin/lurq.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +2 -2
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/bin/lurq.js
CHANGED
|
@@ -26,7 +26,7 @@ var init_constants = __esm({
|
|
|
26
26
|
init_esm_shims();
|
|
27
27
|
SERVER_NAME = "lurq";
|
|
28
28
|
PACKAGE_NAME = "lurqrun";
|
|
29
|
-
VERSION = "0.0.
|
|
29
|
+
VERSION = "0.0.5";
|
|
30
30
|
DEFAULT_ENDPOINT = "https://api.lurq.run/mcp";
|
|
31
31
|
API_KEY_PREFIX = "lurq_live_";
|
|
32
32
|
EMBEDDING_DIM = 1536;
|
|
@@ -5216,7 +5216,6 @@ __export(e2b_exports, {
|
|
|
5216
5216
|
shQuote: () => shQuote,
|
|
5217
5217
|
smokeCommand: () => smokeCommand
|
|
5218
5218
|
});
|
|
5219
|
-
import Sandbox from "e2b";
|
|
5220
5219
|
function shQuote(s) {
|
|
5221
5220
|
return `'${s.replace(/'/g, `'\\''`)}'`;
|
|
5222
5221
|
}
|
|
@@ -5280,6 +5279,7 @@ var init_e2b = __esm({
|
|
|
5280
5279
|
let installed = false;
|
|
5281
5280
|
let error = null;
|
|
5282
5281
|
const install = installCommand(specs, allowScripts);
|
|
5282
|
+
const { default: Sandbox } = await import("e2b");
|
|
5283
5283
|
const createOpts = {
|
|
5284
5284
|
apiKey: config.E2B_API_KEY,
|
|
5285
5285
|
timeoutMs: installTimeout + SMOKE_TIMEOUT_MS2 * packages2.length + 3e4
|