genlayer 0.12.2 → 0.12.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.
- package/CHANGELOG.md +12 -0
- package/dist/index.js +350 -349
- package/esbuild.config.prod.js +2 -1
- package/package.json +1 -1
- package/src/lib/actions/BaseAction.ts +5 -0
- package/tests/libs/baseAction.test.ts +17 -0
package/dist/index.js
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
const _importMetaUrl = new URL(import.meta.url).pathname;
|
|
3
|
-
"use strict";
|
|
4
3
|
var __create = Object.create;
|
|
5
4
|
var __defProp = Object.defineProperty;
|
|
6
5
|
var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
|
|
@@ -11,10 +10,16 @@ var __typeError = (msg) => {
|
|
|
11
10
|
throw TypeError(msg);
|
|
12
11
|
};
|
|
13
12
|
var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value;
|
|
13
|
+
var __require = /* @__PURE__ */ ((x2) => typeof require !== "undefined" ? require : typeof Proxy !== "undefined" ? new Proxy(x2, {
|
|
14
|
+
get: (a, b) => (typeof require !== "undefined" ? require : a)[b]
|
|
15
|
+
}) : x2)(function(x2) {
|
|
16
|
+
if (typeof require !== "undefined") return require.apply(this, arguments);
|
|
17
|
+
throw Error('Dynamic require of "' + x2 + '" is not supported');
|
|
18
|
+
});
|
|
14
19
|
var __esm = (fn, res) => function __init() {
|
|
15
20
|
return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
|
|
16
21
|
};
|
|
17
|
-
var __commonJS = (cb, mod2) => function
|
|
22
|
+
var __commonJS = (cb, mod2) => function __require2() {
|
|
18
23
|
return mod2 || (0, cb[__getOwnPropNames(cb)[0]])((mod2 = { exports: {} }).exports, mod2), mod2.exports;
|
|
19
24
|
};
|
|
20
25
|
var __export = (target, all) => {
|
|
@@ -37,7 +42,6 @@ var __toESM = (mod2, isNodeMode, target) => (target = mod2 != null ? __create(__
|
|
|
37
42
|
isNodeMode || !mod2 || !mod2.__esModule ? __defProp(target, "default", { value: mod2, enumerable: true }) : target,
|
|
38
43
|
mod2
|
|
39
44
|
));
|
|
40
|
-
var __toCommonJS = (mod2) => __copyProps(__defProp({}, "__esModule", { value: true }), mod2);
|
|
41
45
|
var __publicField = (obj, key, value) => __defNormalProp(obj, typeof key !== "symbol" ? key + "" : key, value);
|
|
42
46
|
var __accessCheck = (obj, member, msg) => member.has(obj) || __typeError("Cannot " + msg);
|
|
43
47
|
var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read from private field"), getter ? getter.call(obj) : member.get(obj));
|
|
@@ -55,11 +59,11 @@ var __privateWrapper = (obj, member, setter, getter) => ({
|
|
|
55
59
|
|
|
56
60
|
// node_modules/web-streams-polyfill/dist/ponyfill.es2018.js
|
|
57
61
|
var require_ponyfill_es2018 = __commonJS({
|
|
58
|
-
"node_modules/web-streams-polyfill/dist/ponyfill.es2018.js"(
|
|
62
|
+
"node_modules/web-streams-polyfill/dist/ponyfill.es2018.js"(exports, module) {
|
|
59
63
|
"use strict";
|
|
60
64
|
(function(global3, factory) {
|
|
61
|
-
typeof
|
|
62
|
-
})(
|
|
65
|
+
typeof exports === "object" && typeof module !== "undefined" ? factory(exports) : typeof define === "function" && define.amd ? define(["exports"], factory) : (global3 = typeof globalThis !== "undefined" ? globalThis : global3 || self, factory(global3.WebStreamsPolyfill = {}));
|
|
66
|
+
})(exports, function(exports2) {
|
|
63
67
|
"use strict";
|
|
64
68
|
function noop2() {
|
|
65
69
|
return void 0;
|
|
@@ -4312,19 +4316,19 @@ var require_ponyfill_es2018 = __commonJS({
|
|
|
4312
4316
|
function streamBrandCheckException(name) {
|
|
4313
4317
|
return new TypeError(`TransformStream.prototype.${name} can only be used on a TransformStream`);
|
|
4314
4318
|
}
|
|
4315
|
-
|
|
4316
|
-
|
|
4317
|
-
|
|
4318
|
-
|
|
4319
|
-
|
|
4320
|
-
|
|
4321
|
-
|
|
4322
|
-
|
|
4323
|
-
|
|
4324
|
-
|
|
4325
|
-
|
|
4326
|
-
|
|
4327
|
-
|
|
4319
|
+
exports2.ByteLengthQueuingStrategy = ByteLengthQueuingStrategy;
|
|
4320
|
+
exports2.CountQueuingStrategy = CountQueuingStrategy;
|
|
4321
|
+
exports2.ReadableByteStreamController = ReadableByteStreamController;
|
|
4322
|
+
exports2.ReadableStream = ReadableStream2;
|
|
4323
|
+
exports2.ReadableStreamBYOBReader = ReadableStreamBYOBReader;
|
|
4324
|
+
exports2.ReadableStreamBYOBRequest = ReadableStreamBYOBRequest;
|
|
4325
|
+
exports2.ReadableStreamDefaultController = ReadableStreamDefaultController;
|
|
4326
|
+
exports2.ReadableStreamDefaultReader = ReadableStreamDefaultReader;
|
|
4327
|
+
exports2.TransformStream = TransformStream;
|
|
4328
|
+
exports2.TransformStreamDefaultController = TransformStreamDefaultController;
|
|
4329
|
+
exports2.WritableStream = WritableStream;
|
|
4330
|
+
exports2.WritableStreamDefaultController = WritableStreamDefaultController;
|
|
4331
|
+
exports2.WritableStreamDefaultWriter = WritableStreamDefaultWriter;
|
|
4328
4332
|
});
|
|
4329
4333
|
}
|
|
4330
4334
|
});
|
|
@@ -4336,12 +4340,12 @@ var require_streams = __commonJS({
|
|
|
4336
4340
|
var POOL_SIZE2 = 65536;
|
|
4337
4341
|
if (!globalThis.ReadableStream) {
|
|
4338
4342
|
try {
|
|
4339
|
-
const process15 =
|
|
4343
|
+
const process15 = __require("node:process");
|
|
4340
4344
|
const { emitWarning } = process15;
|
|
4341
4345
|
try {
|
|
4342
4346
|
process15.emitWarning = () => {
|
|
4343
4347
|
};
|
|
4344
|
-
Object.assign(globalThis,
|
|
4348
|
+
Object.assign(globalThis, __require("node:stream/web"));
|
|
4345
4349
|
process15.emitWarning = emitWarning;
|
|
4346
4350
|
} catch (error) {
|
|
4347
4351
|
process15.emitWarning = emitWarning;
|
|
@@ -4352,7 +4356,7 @@ var require_streams = __commonJS({
|
|
|
4352
4356
|
}
|
|
4353
4357
|
}
|
|
4354
4358
|
try {
|
|
4355
|
-
const { Blob: Blob2 } =
|
|
4359
|
+
const { Blob: Blob2 } = __require("buffer");
|
|
4356
4360
|
if (Blob2 && !Blob2.prototype.stream) {
|
|
4357
4361
|
Blob2.prototype.stream = function name(params) {
|
|
4358
4362
|
let position = 0;
|
|
@@ -4726,30 +4730,30 @@ var init_esm_min = __esm({
|
|
|
4726
4730
|
|
|
4727
4731
|
// node_modules/node-domexception/index.js
|
|
4728
4732
|
var require_node_domexception = __commonJS({
|
|
4729
|
-
"node_modules/node-domexception/index.js"(
|
|
4733
|
+
"node_modules/node-domexception/index.js"(exports, module) {
|
|
4730
4734
|
"use strict";
|
|
4731
4735
|
if (!globalThis.DOMException) {
|
|
4732
4736
|
try {
|
|
4733
|
-
const { MessageChannel } =
|
|
4737
|
+
const { MessageChannel } = __require("worker_threads"), port = new MessageChannel().port1, ab = new ArrayBuffer();
|
|
4734
4738
|
port.postMessage(ab, [ab, ab]);
|
|
4735
4739
|
} catch (err) {
|
|
4736
4740
|
err.constructor.name === "DOMException" && (globalThis.DOMException = err.constructor);
|
|
4737
4741
|
}
|
|
4738
4742
|
}
|
|
4739
|
-
|
|
4743
|
+
module.exports = globalThis.DOMException;
|
|
4740
4744
|
}
|
|
4741
4745
|
});
|
|
4742
4746
|
|
|
4743
4747
|
// node_modules/fetch-blob/from.js
|
|
4744
|
-
|
|
4748
|
+
import { statSync, createReadStream, promises as fs } from "node:fs";
|
|
4749
|
+
var import_node_domexception, stat;
|
|
4745
4750
|
var init_from = __esm({
|
|
4746
4751
|
"node_modules/fetch-blob/from.js"() {
|
|
4747
4752
|
"use strict";
|
|
4748
|
-
import_node_fs = require("node:fs");
|
|
4749
4753
|
import_node_domexception = __toESM(require_node_domexception(), 1);
|
|
4750
4754
|
init_file();
|
|
4751
4755
|
init_fetch_blob();
|
|
4752
|
-
({ stat } =
|
|
4756
|
+
({ stat } = fs);
|
|
4753
4757
|
}
|
|
4754
4758
|
});
|
|
4755
4759
|
|
|
@@ -5118,8 +5122,8 @@ var init_multipart_parser = __esm({
|
|
|
5118
5122
|
|
|
5119
5123
|
// node_modules/cli-spinners/spinners.json
|
|
5120
5124
|
var require_spinners = __commonJS({
|
|
5121
|
-
"node_modules/cli-spinners/spinners.json"(
|
|
5122
|
-
|
|
5125
|
+
"node_modules/cli-spinners/spinners.json"(exports, module) {
|
|
5126
|
+
module.exports = {
|
|
5123
5127
|
dots: {
|
|
5124
5128
|
interval: 80,
|
|
5125
5129
|
frames: [
|
|
@@ -6746,7 +6750,7 @@ var require_spinners = __commonJS({
|
|
|
6746
6750
|
|
|
6747
6751
|
// node_modules/cli-spinners/index.js
|
|
6748
6752
|
var require_cli_spinners = __commonJS({
|
|
6749
|
-
"node_modules/cli-spinners/index.js"(
|
|
6753
|
+
"node_modules/cli-spinners/index.js"(exports, module) {
|
|
6750
6754
|
"use strict";
|
|
6751
6755
|
var spinners = Object.assign({}, require_spinners());
|
|
6752
6756
|
var spinnersList = Object.keys(spinners);
|
|
@@ -6757,15 +6761,15 @@ var require_cli_spinners = __commonJS({
|
|
|
6757
6761
|
return spinners[spinnerName];
|
|
6758
6762
|
}
|
|
6759
6763
|
});
|
|
6760
|
-
|
|
6764
|
+
module.exports = spinners;
|
|
6761
6765
|
}
|
|
6762
6766
|
});
|
|
6763
6767
|
|
|
6764
6768
|
// node_modules/emoji-regex/index.js
|
|
6765
6769
|
var require_emoji_regex = __commonJS({
|
|
6766
|
-
"node_modules/emoji-regex/index.js"(
|
|
6770
|
+
"node_modules/emoji-regex/index.js"(exports, module) {
|
|
6767
6771
|
"use strict";
|
|
6768
|
-
|
|
6772
|
+
module.exports = () => {
|
|
6769
6773
|
return /[#*0-9]\uFE0F?\u20E3|[\xA9\xAE\u203C\u2049\u2122\u2139\u2194-\u2199\u21A9\u21AA\u231A\u231B\u2328\u23CF\u23ED-\u23EF\u23F1\u23F2\u23F8-\u23FA\u24C2\u25AA\u25AB\u25B6\u25C0\u25FB\u25FC\u25FE\u2600-\u2604\u260E\u2611\u2614\u2615\u2618\u2620\u2622\u2623\u2626\u262A\u262E\u262F\u2638-\u263A\u2640\u2642\u2648-\u2653\u265F\u2660\u2663\u2665\u2666\u2668\u267B\u267E\u267F\u2692\u2694-\u2697\u2699\u269B\u269C\u26A0\u26A7\u26AA\u26B0\u26B1\u26BD\u26BE\u26C4\u26C8\u26CF\u26D1\u26E9\u26F0-\u26F5\u26F7\u26F8\u26FA\u2702\u2708\u2709\u270F\u2712\u2714\u2716\u271D\u2721\u2733\u2734\u2744\u2747\u2757\u2763\u27A1\u2934\u2935\u2B05-\u2B07\u2B1B\u2B1C\u2B55\u3030\u303D\u3297\u3299]\uFE0F?|[\u261D\u270C\u270D](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\u270A\u270B](?:\uD83C[\uDFFB-\uDFFF])?|[\u23E9-\u23EC\u23F0\u23F3\u25FD\u2693\u26A1\u26AB\u26C5\u26CE\u26D4\u26EA\u26FD\u2705\u2728\u274C\u274E\u2753-\u2755\u2795-\u2797\u27B0\u27BF\u2B50]|\u26D3\uFE0F?(?:\u200D\uD83D\uDCA5)?|\u26F9(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\u2764\uFE0F?(?:\u200D(?:\uD83D\uDD25|\uD83E\uDE79))?|\uD83C(?:[\uDC04\uDD70\uDD71\uDD7E\uDD7F\uDE02\uDE37\uDF21\uDF24-\uDF2C\uDF36\uDF7D\uDF96\uDF97\uDF99-\uDF9B\uDF9E\uDF9F\uDFCD\uDFCE\uDFD4-\uDFDF\uDFF5\uDFF7]\uFE0F?|[\uDF85\uDFC2\uDFC7](?:\uD83C[\uDFFB-\uDFFF])?|[\uDFC4\uDFCA](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDFCB\uDFCC](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDCCF\uDD8E\uDD91-\uDD9A\uDE01\uDE1A\uDE2F\uDE32-\uDE36\uDE38-\uDE3A\uDE50\uDE51\uDF00-\uDF20\uDF2D-\uDF35\uDF37-\uDF43\uDF45-\uDF4A\uDF4C-\uDF7C\uDF7E-\uDF84\uDF86-\uDF93\uDFA0-\uDFC1\uDFC5\uDFC6\uDFC8\uDFC9\uDFCF-\uDFD3\uDFE0-\uDFF0\uDFF8-\uDFFF]|\uDDE6\uD83C[\uDDE8-\uDDEC\uDDEE\uDDF1\uDDF2\uDDF4\uDDF6-\uDDFA\uDDFC\uDDFD\uDDFF]|\uDDE7\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEF\uDDF1-\uDDF4\uDDF6-\uDDF9\uDDFB\uDDFC\uDDFE\uDDFF]|\uDDE8\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDEE\uDDF0-\uDDF7\uDDFA-\uDDFF]|\uDDE9\uD83C[\uDDEA\uDDEC\uDDEF\uDDF0\uDDF2\uDDF4\uDDFF]|\uDDEA\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDED\uDDF7-\uDDFA]|\uDDEB\uD83C[\uDDEE-\uDDF0\uDDF2\uDDF4\uDDF7]|\uDDEC\uD83C[\uDDE6\uDDE7\uDDE9-\uDDEE\uDDF1-\uDDF3\uDDF5-\uDDFA\uDDFC\uDDFE]|\uDDED\uD83C[\uDDF0\uDDF2\uDDF3\uDDF7\uDDF9\uDDFA]|\uDDEE\uD83C[\uDDE8-\uDDEA\uDDF1-\uDDF4\uDDF6-\uDDF9]|\uDDEF\uD83C[\uDDEA\uDDF2\uDDF4\uDDF5]|\uDDF0\uD83C[\uDDEA\uDDEC-\uDDEE\uDDF2\uDDF3\uDDF5\uDDF7\uDDFC\uDDFE\uDDFF]|\uDDF1\uD83C[\uDDE6-\uDDE8\uDDEE\uDDF0\uDDF7-\uDDFB\uDDFE]|\uDDF2\uD83C[\uDDE6\uDDE8-\uDDED\uDDF0-\uDDFF]|\uDDF3\uD83C[\uDDE6\uDDE8\uDDEA-\uDDEC\uDDEE\uDDF1\uDDF4\uDDF5\uDDF7\uDDFA\uDDFF]|\uDDF4\uD83C\uDDF2|\uDDF5\uD83C[\uDDE6\uDDEA-\uDDED\uDDF0-\uDDF3\uDDF7-\uDDF9\uDDFC\uDDFE]|\uDDF6\uD83C\uDDE6|\uDDF7\uD83C[\uDDEA\uDDF4\uDDF8\uDDFA\uDDFC]|\uDDF8\uD83C[\uDDE6-\uDDEA\uDDEC-\uDDF4\uDDF7-\uDDF9\uDDFB\uDDFD-\uDDFF]|\uDDF9\uD83C[\uDDE6\uDDE8\uDDE9\uDDEB-\uDDED\uDDEF-\uDDF4\uDDF7\uDDF9\uDDFB\uDDFC\uDDFF]|\uDDFA\uD83C[\uDDE6\uDDEC\uDDF2\uDDF3\uDDF8\uDDFE\uDDFF]|\uDDFB\uD83C[\uDDE6\uDDE8\uDDEA\uDDEC\uDDEE\uDDF3\uDDFA]|\uDDFC\uD83C[\uDDEB\uDDF8]|\uDDFD\uD83C\uDDF0|\uDDFE\uD83C[\uDDEA\uDDF9]|\uDDFF\uD83C[\uDDE6\uDDF2\uDDFC]|\uDF44(?:\u200D\uD83D\uDFEB)?|\uDF4B(?:\u200D\uD83D\uDFE9)?|\uDFC3(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDFF3\uFE0F?(?:\u200D(?:\u26A7\uFE0F?|\uD83C\uDF08))?|\uDFF4(?:\u200D\u2620\uFE0F?|\uDB40\uDC67\uDB40\uDC62\uDB40(?:\uDC65\uDB40\uDC6E\uDB40\uDC67|\uDC73\uDB40\uDC63\uDB40\uDC74|\uDC77\uDB40\uDC6C\uDB40\uDC73)\uDB40\uDC7F)?)|\uD83D(?:[\uDC3F\uDCFD\uDD49\uDD4A\uDD6F\uDD70\uDD73\uDD76-\uDD79\uDD87\uDD8A-\uDD8D\uDDA5\uDDA8\uDDB1\uDDB2\uDDBC\uDDC2-\uDDC4\uDDD1-\uDDD3\uDDDC-\uDDDE\uDDE1\uDDE3\uDDE8\uDDEF\uDDF3\uDDFA\uDECB\uDECD-\uDECF\uDEE0-\uDEE5\uDEE9\uDEF0\uDEF3]\uFE0F?|[\uDC42\uDC43\uDC46-\uDC50\uDC66\uDC67\uDC6B-\uDC6D\uDC72\uDC74-\uDC76\uDC78\uDC7C\uDC83\uDC85\uDC8F\uDC91\uDCAA\uDD7A\uDD95\uDD96\uDE4C\uDE4F\uDEC0\uDECC](?:\uD83C[\uDFFB-\uDFFF])?|[\uDC6E\uDC70\uDC71\uDC73\uDC77\uDC81\uDC82\uDC86\uDC87\uDE45-\uDE47\uDE4B\uDE4D\uDE4E\uDEA3\uDEB4\uDEB5](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD74\uDD90](?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?|[\uDC00-\uDC07\uDC09-\uDC14\uDC16-\uDC25\uDC27-\uDC3A\uDC3C-\uDC3E\uDC40\uDC44\uDC45\uDC51-\uDC65\uDC6A\uDC79-\uDC7B\uDC7D-\uDC80\uDC84\uDC88-\uDC8E\uDC90\uDC92-\uDCA9\uDCAB-\uDCFC\uDCFF-\uDD3D\uDD4B-\uDD4E\uDD50-\uDD67\uDDA4\uDDFB-\uDE2D\uDE2F-\uDE34\uDE37-\uDE41\uDE43\uDE44\uDE48-\uDE4A\uDE80-\uDEA2\uDEA4-\uDEB3\uDEB7-\uDEBF\uDEC1-\uDEC5\uDED0-\uDED2\uDED5-\uDED7\uDEDC-\uDEDF\uDEEB\uDEEC\uDEF4-\uDEFC\uDFE0-\uDFEB\uDFF0]|\uDC08(?:\u200D\u2B1B)?|\uDC15(?:\u200D\uD83E\uDDBA)?|\uDC26(?:\u200D(?:\u2B1B|\uD83D\uDD25))?|\uDC3B(?:\u200D\u2744\uFE0F?)?|\uDC41\uFE0F?(?:\u200D\uD83D\uDDE8\uFE0F?)?|\uDC68(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDC68\uDC69]\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?)|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?\uDC68\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D\uDC68\uD83C[\uDFFB-\uDFFE])))?))?|\uDC69(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:\uDC8B\u200D\uD83D)?[\uDC68\uDC69]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D(?:[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?|\uDC69\u200D\uD83D(?:\uDC66(?:\u200D\uD83D\uDC66)?|\uDC67(?:\u200D\uD83D[\uDC66\uDC67])?))|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFC-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFD-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFD\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D\uD83D(?:[\uDC68\uDC69]|\uDC8B\u200D\uD83D[\uDC68\uDC69])\uD83C[\uDFFB-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83D[\uDC68\uDC69]\uD83C[\uDFFB-\uDFFE])))?))?|\uDC6F(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDD75(?:\uD83C[\uDFFB-\uDFFF]|\uFE0F)?(?:\u200D[\u2640\u2642]\uFE0F?)?|\uDE2E(?:\u200D\uD83D\uDCA8)?|\uDE35(?:\u200D\uD83D\uDCAB)?|\uDE36(?:\u200D\uD83C\uDF2B\uFE0F?)?|\uDE42(?:\u200D[\u2194\u2195]\uFE0F?)?|\uDEB6(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?)|\uD83E(?:[\uDD0C\uDD0F\uDD18-\uDD1F\uDD30-\uDD34\uDD36\uDD77\uDDB5\uDDB6\uDDBB\uDDD2\uDDD3\uDDD5\uDEC3-\uDEC5\uDEF0\uDEF2-\uDEF8](?:\uD83C[\uDFFB-\uDFFF])?|[\uDD26\uDD35\uDD37-\uDD39\uDD3D\uDD3E\uDDB8\uDDB9\uDDCD\uDDCF\uDDD4\uDDD6-\uDDDD](?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDDDE\uDDDF](?:\u200D[\u2640\u2642]\uFE0F?)?|[\uDD0D\uDD0E\uDD10-\uDD17\uDD20-\uDD25\uDD27-\uDD2F\uDD3A\uDD3F-\uDD45\uDD47-\uDD76\uDD78-\uDDB4\uDDB7\uDDBA\uDDBC-\uDDCC\uDDD0\uDDE0-\uDDFF\uDE70-\uDE7C\uDE80-\uDE89\uDE8F-\uDEC2\uDEC6\uDECE-\uDEDC\uDEDF-\uDEE9]|\uDD3C(?:\u200D[\u2640\u2642]\uFE0F?|\uD83C[\uDFFB-\uDFFF])?|\uDDCE(?:\uD83C[\uDFFB-\uDFFF])?(?:\u200D(?:[\u2640\u2642]\uFE0F?(?:\u200D\u27A1\uFE0F?)?|\u27A1\uFE0F?))?|\uDDD1(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1|\uDDD1\u200D\uD83E\uDDD2(?:\u200D\uD83E\uDDD2)?|\uDDD2(?:\u200D\uD83E\uDDD2)?))|\uD83C(?:\uDFFB(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFC-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFC(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFD-\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFD(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFE(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFD\uDFFF]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?|\uDFFF(?:\u200D(?:[\u2695\u2696\u2708]\uFE0F?|\u2764\uFE0F?\u200D(?:\uD83D\uDC8B\u200D)?\uD83E\uDDD1\uD83C[\uDFFB-\uDFFE]|\uD83C[\uDF3E\uDF73\uDF7C\uDF84\uDF93\uDFA4\uDFA8\uDFEB\uDFED]|\uD83D[\uDCBB\uDCBC\uDD27\uDD2C\uDE80\uDE92]|\uD83E(?:[\uDDAF\uDDBC\uDDBD](?:\u200D\u27A1\uFE0F?)?|[\uDDB0-\uDDB3]|\uDD1D\u200D\uD83E\uDDD1\uD83C[\uDFFB-\uDFFF])))?))?|\uDEF1(?:\uD83C(?:\uDFFB(?:\u200D\uD83E\uDEF2\uD83C[\uDFFC-\uDFFF])?|\uDFFC(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFD-\uDFFF])?|\uDFFD(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB\uDFFC\uDFFE\uDFFF])?|\uDFFE(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFD\uDFFF])?|\uDFFF(?:\u200D\uD83E\uDEF2\uD83C[\uDFFB-\uDFFE])?))?)/g;
|
|
6770
6774
|
};
|
|
6771
6775
|
}
|
|
@@ -6773,7 +6777,7 @@ var require_emoji_regex = __commonJS({
|
|
|
6773
6777
|
|
|
6774
6778
|
// node_modules/semver/internal/constants.js
|
|
6775
6779
|
var require_constants = __commonJS({
|
|
6776
|
-
"node_modules/semver/internal/constants.js"(
|
|
6780
|
+
"node_modules/semver/internal/constants.js"(exports, module) {
|
|
6777
6781
|
"use strict";
|
|
6778
6782
|
var SEMVER_SPEC_VERSION = "2.0.0";
|
|
6779
6783
|
var MAX_LENGTH = 256;
|
|
@@ -6790,7 +6794,7 @@ var require_constants = __commonJS({
|
|
|
6790
6794
|
"prepatch",
|
|
6791
6795
|
"prerelease"
|
|
6792
6796
|
];
|
|
6793
|
-
|
|
6797
|
+
module.exports = {
|
|
6794
6798
|
MAX_LENGTH,
|
|
6795
6799
|
MAX_SAFE_COMPONENT_LENGTH,
|
|
6796
6800
|
MAX_SAFE_BUILD_LENGTH,
|
|
@@ -6805,17 +6809,17 @@ var require_constants = __commonJS({
|
|
|
6805
6809
|
|
|
6806
6810
|
// node_modules/semver/internal/debug.js
|
|
6807
6811
|
var require_debug = __commonJS({
|
|
6808
|
-
"node_modules/semver/internal/debug.js"(
|
|
6812
|
+
"node_modules/semver/internal/debug.js"(exports, module) {
|
|
6809
6813
|
"use strict";
|
|
6810
6814
|
var debug = typeof process === "object" && process.env && process.env.NODE_DEBUG && /\bsemver\b/i.test(process.env.NODE_DEBUG) ? (...args) => console.error("SEMVER", ...args) : () => {
|
|
6811
6815
|
};
|
|
6812
|
-
|
|
6816
|
+
module.exports = debug;
|
|
6813
6817
|
}
|
|
6814
6818
|
});
|
|
6815
6819
|
|
|
6816
6820
|
// node_modules/semver/internal/re.js
|
|
6817
6821
|
var require_re = __commonJS({
|
|
6818
|
-
"node_modules/semver/internal/re.js"(
|
|
6822
|
+
"node_modules/semver/internal/re.js"(exports, module) {
|
|
6819
6823
|
"use strict";
|
|
6820
6824
|
var {
|
|
6821
6825
|
MAX_SAFE_COMPONENT_LENGTH,
|
|
@@ -6823,12 +6827,12 @@ var require_re = __commonJS({
|
|
|
6823
6827
|
MAX_LENGTH
|
|
6824
6828
|
} = require_constants();
|
|
6825
6829
|
var debug = require_debug();
|
|
6826
|
-
|
|
6827
|
-
var re =
|
|
6828
|
-
var safeRe =
|
|
6829
|
-
var src =
|
|
6830
|
-
var safeSrc =
|
|
6831
|
-
var t2 =
|
|
6830
|
+
exports = module.exports = {};
|
|
6831
|
+
var re = exports.re = [];
|
|
6832
|
+
var safeRe = exports.safeRe = [];
|
|
6833
|
+
var src = exports.src = [];
|
|
6834
|
+
var safeSrc = exports.safeSrc = [];
|
|
6835
|
+
var t2 = exports.t = {};
|
|
6832
6836
|
var R = 0;
|
|
6833
6837
|
var LETTERDASHNUMBER = "[a-zA-Z0-9-]";
|
|
6834
6838
|
var safeRegexReplacements = [
|
|
@@ -6881,18 +6885,18 @@ var require_re = __commonJS({
|
|
|
6881
6885
|
createToken("COERCERTLFULL", src[t2.COERCEFULL], true);
|
|
6882
6886
|
createToken("LONETILDE", "(?:~>?)");
|
|
6883
6887
|
createToken("TILDETRIM", `(\\s*)${src[t2.LONETILDE]}\\s+`, true);
|
|
6884
|
-
|
|
6888
|
+
exports.tildeTrimReplace = "$1~";
|
|
6885
6889
|
createToken("TILDE", `^${src[t2.LONETILDE]}${src[t2.XRANGEPLAIN]}$`);
|
|
6886
6890
|
createToken("TILDELOOSE", `^${src[t2.LONETILDE]}${src[t2.XRANGEPLAINLOOSE]}$`);
|
|
6887
6891
|
createToken("LONECARET", "(?:\\^)");
|
|
6888
6892
|
createToken("CARETTRIM", `(\\s*)${src[t2.LONECARET]}\\s+`, true);
|
|
6889
|
-
|
|
6893
|
+
exports.caretTrimReplace = "$1^";
|
|
6890
6894
|
createToken("CARET", `^${src[t2.LONECARET]}${src[t2.XRANGEPLAIN]}$`);
|
|
6891
6895
|
createToken("CARETLOOSE", `^${src[t2.LONECARET]}${src[t2.XRANGEPLAINLOOSE]}$`);
|
|
6892
6896
|
createToken("COMPARATORLOOSE", `^${src[t2.GTLT]}\\s*(${src[t2.LOOSEPLAIN]})$|^$`);
|
|
6893
6897
|
createToken("COMPARATOR", `^${src[t2.GTLT]}\\s*(${src[t2.FULLPLAIN]})$|^$`);
|
|
6894
6898
|
createToken("COMPARATORTRIM", `(\\s*)${src[t2.GTLT]}\\s*(${src[t2.LOOSEPLAIN]}|${src[t2.XRANGEPLAIN]})`, true);
|
|
6895
|
-
|
|
6899
|
+
exports.comparatorTrimReplace = "$1$2$3";
|
|
6896
6900
|
createToken("HYPHENRANGE", `^\\s*(${src[t2.XRANGEPLAIN]})\\s+-\\s+(${src[t2.XRANGEPLAIN]})\\s*$`);
|
|
6897
6901
|
createToken("HYPHENRANGELOOSE", `^\\s*(${src[t2.XRANGEPLAINLOOSE]})\\s+-\\s+(${src[t2.XRANGEPLAINLOOSE]})\\s*$`);
|
|
6898
6902
|
createToken("STAR", "(<|>)?=?\\s*\\*");
|
|
@@ -6903,7 +6907,7 @@ var require_re = __commonJS({
|
|
|
6903
6907
|
|
|
6904
6908
|
// node_modules/semver/internal/parse-options.js
|
|
6905
6909
|
var require_parse_options = __commonJS({
|
|
6906
|
-
"node_modules/semver/internal/parse-options.js"(
|
|
6910
|
+
"node_modules/semver/internal/parse-options.js"(exports, module) {
|
|
6907
6911
|
"use strict";
|
|
6908
6912
|
var looseOption = Object.freeze({ loose: true });
|
|
6909
6913
|
var emptyOpts = Object.freeze({});
|
|
@@ -6916,13 +6920,13 @@ var require_parse_options = __commonJS({
|
|
|
6916
6920
|
}
|
|
6917
6921
|
return options;
|
|
6918
6922
|
};
|
|
6919
|
-
|
|
6923
|
+
module.exports = parseOptions;
|
|
6920
6924
|
}
|
|
6921
6925
|
});
|
|
6922
6926
|
|
|
6923
6927
|
// node_modules/semver/internal/identifiers.js
|
|
6924
6928
|
var require_identifiers = __commonJS({
|
|
6925
|
-
"node_modules/semver/internal/identifiers.js"(
|
|
6929
|
+
"node_modules/semver/internal/identifiers.js"(exports, module) {
|
|
6926
6930
|
"use strict";
|
|
6927
6931
|
var numeric = /^[0-9]+$/;
|
|
6928
6932
|
var compareIdentifiers = (a, b) => {
|
|
@@ -6935,7 +6939,7 @@ var require_identifiers = __commonJS({
|
|
|
6935
6939
|
return a === b ? 0 : anum2 && !bnum ? -1 : bnum && !anum2 ? 1 : a < b ? -1 : 1;
|
|
6936
6940
|
};
|
|
6937
6941
|
var rcompareIdentifiers = (a, b) => compareIdentifiers(b, a);
|
|
6938
|
-
|
|
6942
|
+
module.exports = {
|
|
6939
6943
|
compareIdentifiers,
|
|
6940
6944
|
rcompareIdentifiers
|
|
6941
6945
|
};
|
|
@@ -6944,7 +6948,7 @@ var require_identifiers = __commonJS({
|
|
|
6944
6948
|
|
|
6945
6949
|
// node_modules/semver/classes/semver.js
|
|
6946
6950
|
var require_semver = __commonJS({
|
|
6947
|
-
"node_modules/semver/classes/semver.js"(
|
|
6951
|
+
"node_modules/semver/classes/semver.js"(exports, module) {
|
|
6948
6952
|
"use strict";
|
|
6949
6953
|
var debug = require_debug();
|
|
6950
6954
|
var { MAX_LENGTH, MAX_SAFE_INTEGER } = require_constants();
|
|
@@ -7200,13 +7204,13 @@ var require_semver = __commonJS({
|
|
|
7200
7204
|
return this;
|
|
7201
7205
|
}
|
|
7202
7206
|
};
|
|
7203
|
-
|
|
7207
|
+
module.exports = SemVer;
|
|
7204
7208
|
}
|
|
7205
7209
|
});
|
|
7206
7210
|
|
|
7207
7211
|
// node_modules/semver/functions/parse.js
|
|
7208
7212
|
var require_parse = __commonJS({
|
|
7209
|
-
"node_modules/semver/functions/parse.js"(
|
|
7213
|
+
"node_modules/semver/functions/parse.js"(exports, module) {
|
|
7210
7214
|
"use strict";
|
|
7211
7215
|
var SemVer = require_semver();
|
|
7212
7216
|
var parse2 = (version5, options, throwErrors = false) => {
|
|
@@ -7222,39 +7226,39 @@ var require_parse = __commonJS({
|
|
|
7222
7226
|
throw er;
|
|
7223
7227
|
}
|
|
7224
7228
|
};
|
|
7225
|
-
|
|
7229
|
+
module.exports = parse2;
|
|
7226
7230
|
}
|
|
7227
7231
|
});
|
|
7228
7232
|
|
|
7229
7233
|
// node_modules/semver/functions/valid.js
|
|
7230
7234
|
var require_valid = __commonJS({
|
|
7231
|
-
"node_modules/semver/functions/valid.js"(
|
|
7235
|
+
"node_modules/semver/functions/valid.js"(exports, module) {
|
|
7232
7236
|
"use strict";
|
|
7233
7237
|
var parse2 = require_parse();
|
|
7234
7238
|
var valid = (version5, options) => {
|
|
7235
7239
|
const v = parse2(version5, options);
|
|
7236
7240
|
return v ? v.version : null;
|
|
7237
7241
|
};
|
|
7238
|
-
|
|
7242
|
+
module.exports = valid;
|
|
7239
7243
|
}
|
|
7240
7244
|
});
|
|
7241
7245
|
|
|
7242
7246
|
// node_modules/semver/functions/clean.js
|
|
7243
7247
|
var require_clean = __commonJS({
|
|
7244
|
-
"node_modules/semver/functions/clean.js"(
|
|
7248
|
+
"node_modules/semver/functions/clean.js"(exports, module) {
|
|
7245
7249
|
"use strict";
|
|
7246
7250
|
var parse2 = require_parse();
|
|
7247
7251
|
var clean = (version5, options) => {
|
|
7248
7252
|
const s2 = parse2(version5.trim().replace(/^[=v]+/, ""), options);
|
|
7249
7253
|
return s2 ? s2.version : null;
|
|
7250
7254
|
};
|
|
7251
|
-
|
|
7255
|
+
module.exports = clean;
|
|
7252
7256
|
}
|
|
7253
7257
|
});
|
|
7254
7258
|
|
|
7255
7259
|
// node_modules/semver/functions/inc.js
|
|
7256
7260
|
var require_inc = __commonJS({
|
|
7257
|
-
"node_modules/semver/functions/inc.js"(
|
|
7261
|
+
"node_modules/semver/functions/inc.js"(exports, module) {
|
|
7258
7262
|
"use strict";
|
|
7259
7263
|
var SemVer = require_semver();
|
|
7260
7264
|
var inc = (version5, release, options, identifier, identifierBase) => {
|
|
@@ -7272,13 +7276,13 @@ var require_inc = __commonJS({
|
|
|
7272
7276
|
return null;
|
|
7273
7277
|
}
|
|
7274
7278
|
};
|
|
7275
|
-
|
|
7279
|
+
module.exports = inc;
|
|
7276
7280
|
}
|
|
7277
7281
|
});
|
|
7278
7282
|
|
|
7279
7283
|
// node_modules/semver/functions/diff.js
|
|
7280
7284
|
var require_diff = __commonJS({
|
|
7281
|
-
"node_modules/semver/functions/diff.js"(
|
|
7285
|
+
"node_modules/semver/functions/diff.js"(exports, module) {
|
|
7282
7286
|
"use strict";
|
|
7283
7287
|
var parse2 = require_parse();
|
|
7284
7288
|
var diff = (version1, version22) => {
|
|
@@ -7316,86 +7320,86 @@ var require_diff = __commonJS({
|
|
|
7316
7320
|
}
|
|
7317
7321
|
return "prerelease";
|
|
7318
7322
|
};
|
|
7319
|
-
|
|
7323
|
+
module.exports = diff;
|
|
7320
7324
|
}
|
|
7321
7325
|
});
|
|
7322
7326
|
|
|
7323
7327
|
// node_modules/semver/functions/major.js
|
|
7324
7328
|
var require_major = __commonJS({
|
|
7325
|
-
"node_modules/semver/functions/major.js"(
|
|
7329
|
+
"node_modules/semver/functions/major.js"(exports, module) {
|
|
7326
7330
|
"use strict";
|
|
7327
7331
|
var SemVer = require_semver();
|
|
7328
7332
|
var major = (a, loose) => new SemVer(a, loose).major;
|
|
7329
|
-
|
|
7333
|
+
module.exports = major;
|
|
7330
7334
|
}
|
|
7331
7335
|
});
|
|
7332
7336
|
|
|
7333
7337
|
// node_modules/semver/functions/minor.js
|
|
7334
7338
|
var require_minor = __commonJS({
|
|
7335
|
-
"node_modules/semver/functions/minor.js"(
|
|
7339
|
+
"node_modules/semver/functions/minor.js"(exports, module) {
|
|
7336
7340
|
"use strict";
|
|
7337
7341
|
var SemVer = require_semver();
|
|
7338
7342
|
var minor = (a, loose) => new SemVer(a, loose).minor;
|
|
7339
|
-
|
|
7343
|
+
module.exports = minor;
|
|
7340
7344
|
}
|
|
7341
7345
|
});
|
|
7342
7346
|
|
|
7343
7347
|
// node_modules/semver/functions/patch.js
|
|
7344
7348
|
var require_patch = __commonJS({
|
|
7345
|
-
"node_modules/semver/functions/patch.js"(
|
|
7349
|
+
"node_modules/semver/functions/patch.js"(exports, module) {
|
|
7346
7350
|
"use strict";
|
|
7347
7351
|
var SemVer = require_semver();
|
|
7348
7352
|
var patch = (a, loose) => new SemVer(a, loose).patch;
|
|
7349
|
-
|
|
7353
|
+
module.exports = patch;
|
|
7350
7354
|
}
|
|
7351
7355
|
});
|
|
7352
7356
|
|
|
7353
7357
|
// node_modules/semver/functions/prerelease.js
|
|
7354
7358
|
var require_prerelease = __commonJS({
|
|
7355
|
-
"node_modules/semver/functions/prerelease.js"(
|
|
7359
|
+
"node_modules/semver/functions/prerelease.js"(exports, module) {
|
|
7356
7360
|
"use strict";
|
|
7357
7361
|
var parse2 = require_parse();
|
|
7358
7362
|
var prerelease = (version5, options) => {
|
|
7359
7363
|
const parsed = parse2(version5, options);
|
|
7360
7364
|
return parsed && parsed.prerelease.length ? parsed.prerelease : null;
|
|
7361
7365
|
};
|
|
7362
|
-
|
|
7366
|
+
module.exports = prerelease;
|
|
7363
7367
|
}
|
|
7364
7368
|
});
|
|
7365
7369
|
|
|
7366
7370
|
// node_modules/semver/functions/compare.js
|
|
7367
7371
|
var require_compare = __commonJS({
|
|
7368
|
-
"node_modules/semver/functions/compare.js"(
|
|
7372
|
+
"node_modules/semver/functions/compare.js"(exports, module) {
|
|
7369
7373
|
"use strict";
|
|
7370
7374
|
var SemVer = require_semver();
|
|
7371
7375
|
var compare = (a, b, loose) => new SemVer(a, loose).compare(new SemVer(b, loose));
|
|
7372
|
-
|
|
7376
|
+
module.exports = compare;
|
|
7373
7377
|
}
|
|
7374
7378
|
});
|
|
7375
7379
|
|
|
7376
7380
|
// node_modules/semver/functions/rcompare.js
|
|
7377
7381
|
var require_rcompare = __commonJS({
|
|
7378
|
-
"node_modules/semver/functions/rcompare.js"(
|
|
7382
|
+
"node_modules/semver/functions/rcompare.js"(exports, module) {
|
|
7379
7383
|
"use strict";
|
|
7380
7384
|
var compare = require_compare();
|
|
7381
7385
|
var rcompare = (a, b, loose) => compare(b, a, loose);
|
|
7382
|
-
|
|
7386
|
+
module.exports = rcompare;
|
|
7383
7387
|
}
|
|
7384
7388
|
});
|
|
7385
7389
|
|
|
7386
7390
|
// node_modules/semver/functions/compare-loose.js
|
|
7387
7391
|
var require_compare_loose = __commonJS({
|
|
7388
|
-
"node_modules/semver/functions/compare-loose.js"(
|
|
7392
|
+
"node_modules/semver/functions/compare-loose.js"(exports, module) {
|
|
7389
7393
|
"use strict";
|
|
7390
7394
|
var compare = require_compare();
|
|
7391
7395
|
var compareLoose = (a, b) => compare(a, b, true);
|
|
7392
|
-
|
|
7396
|
+
module.exports = compareLoose;
|
|
7393
7397
|
}
|
|
7394
7398
|
});
|
|
7395
7399
|
|
|
7396
7400
|
// node_modules/semver/functions/compare-build.js
|
|
7397
7401
|
var require_compare_build = __commonJS({
|
|
7398
|
-
"node_modules/semver/functions/compare-build.js"(
|
|
7402
|
+
"node_modules/semver/functions/compare-build.js"(exports, module) {
|
|
7399
7403
|
"use strict";
|
|
7400
7404
|
var SemVer = require_semver();
|
|
7401
7405
|
var compareBuild = (a, b, loose) => {
|
|
@@ -7403,93 +7407,93 @@ var require_compare_build = __commonJS({
|
|
|
7403
7407
|
const versionB = new SemVer(b, loose);
|
|
7404
7408
|
return versionA.compare(versionB) || versionA.compareBuild(versionB);
|
|
7405
7409
|
};
|
|
7406
|
-
|
|
7410
|
+
module.exports = compareBuild;
|
|
7407
7411
|
}
|
|
7408
7412
|
});
|
|
7409
7413
|
|
|
7410
7414
|
// node_modules/semver/functions/sort.js
|
|
7411
7415
|
var require_sort = __commonJS({
|
|
7412
|
-
"node_modules/semver/functions/sort.js"(
|
|
7416
|
+
"node_modules/semver/functions/sort.js"(exports, module) {
|
|
7413
7417
|
"use strict";
|
|
7414
7418
|
var compareBuild = require_compare_build();
|
|
7415
7419
|
var sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose));
|
|
7416
|
-
|
|
7420
|
+
module.exports = sort;
|
|
7417
7421
|
}
|
|
7418
7422
|
});
|
|
7419
7423
|
|
|
7420
7424
|
// node_modules/semver/functions/rsort.js
|
|
7421
7425
|
var require_rsort = __commonJS({
|
|
7422
|
-
"node_modules/semver/functions/rsort.js"(
|
|
7426
|
+
"node_modules/semver/functions/rsort.js"(exports, module) {
|
|
7423
7427
|
"use strict";
|
|
7424
7428
|
var compareBuild = require_compare_build();
|
|
7425
7429
|
var rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose));
|
|
7426
|
-
|
|
7430
|
+
module.exports = rsort;
|
|
7427
7431
|
}
|
|
7428
7432
|
});
|
|
7429
7433
|
|
|
7430
7434
|
// node_modules/semver/functions/gt.js
|
|
7431
7435
|
var require_gt = __commonJS({
|
|
7432
|
-
"node_modules/semver/functions/gt.js"(
|
|
7436
|
+
"node_modules/semver/functions/gt.js"(exports, module) {
|
|
7433
7437
|
"use strict";
|
|
7434
7438
|
var compare = require_compare();
|
|
7435
7439
|
var gt = (a, b, loose) => compare(a, b, loose) > 0;
|
|
7436
|
-
|
|
7440
|
+
module.exports = gt;
|
|
7437
7441
|
}
|
|
7438
7442
|
});
|
|
7439
7443
|
|
|
7440
7444
|
// node_modules/semver/functions/lt.js
|
|
7441
7445
|
var require_lt = __commonJS({
|
|
7442
|
-
"node_modules/semver/functions/lt.js"(
|
|
7446
|
+
"node_modules/semver/functions/lt.js"(exports, module) {
|
|
7443
7447
|
"use strict";
|
|
7444
7448
|
var compare = require_compare();
|
|
7445
7449
|
var lt = (a, b, loose) => compare(a, b, loose) < 0;
|
|
7446
|
-
|
|
7450
|
+
module.exports = lt;
|
|
7447
7451
|
}
|
|
7448
7452
|
});
|
|
7449
7453
|
|
|
7450
7454
|
// node_modules/semver/functions/eq.js
|
|
7451
7455
|
var require_eq = __commonJS({
|
|
7452
|
-
"node_modules/semver/functions/eq.js"(
|
|
7456
|
+
"node_modules/semver/functions/eq.js"(exports, module) {
|
|
7453
7457
|
"use strict";
|
|
7454
7458
|
var compare = require_compare();
|
|
7455
7459
|
var eq = (a, b, loose) => compare(a, b, loose) === 0;
|
|
7456
|
-
|
|
7460
|
+
module.exports = eq;
|
|
7457
7461
|
}
|
|
7458
7462
|
});
|
|
7459
7463
|
|
|
7460
7464
|
// node_modules/semver/functions/neq.js
|
|
7461
7465
|
var require_neq = __commonJS({
|
|
7462
|
-
"node_modules/semver/functions/neq.js"(
|
|
7466
|
+
"node_modules/semver/functions/neq.js"(exports, module) {
|
|
7463
7467
|
"use strict";
|
|
7464
7468
|
var compare = require_compare();
|
|
7465
7469
|
var neq = (a, b, loose) => compare(a, b, loose) !== 0;
|
|
7466
|
-
|
|
7470
|
+
module.exports = neq;
|
|
7467
7471
|
}
|
|
7468
7472
|
});
|
|
7469
7473
|
|
|
7470
7474
|
// node_modules/semver/functions/gte.js
|
|
7471
7475
|
var require_gte = __commonJS({
|
|
7472
|
-
"node_modules/semver/functions/gte.js"(
|
|
7476
|
+
"node_modules/semver/functions/gte.js"(exports, module) {
|
|
7473
7477
|
"use strict";
|
|
7474
7478
|
var compare = require_compare();
|
|
7475
7479
|
var gte = (a, b, loose) => compare(a, b, loose) >= 0;
|
|
7476
|
-
|
|
7480
|
+
module.exports = gte;
|
|
7477
7481
|
}
|
|
7478
7482
|
});
|
|
7479
7483
|
|
|
7480
7484
|
// node_modules/semver/functions/lte.js
|
|
7481
7485
|
var require_lte = __commonJS({
|
|
7482
|
-
"node_modules/semver/functions/lte.js"(
|
|
7486
|
+
"node_modules/semver/functions/lte.js"(exports, module) {
|
|
7483
7487
|
"use strict";
|
|
7484
7488
|
var compare = require_compare();
|
|
7485
7489
|
var lte = (a, b, loose) => compare(a, b, loose) <= 0;
|
|
7486
|
-
|
|
7490
|
+
module.exports = lte;
|
|
7487
7491
|
}
|
|
7488
7492
|
});
|
|
7489
7493
|
|
|
7490
7494
|
// node_modules/semver/functions/cmp.js
|
|
7491
7495
|
var require_cmp = __commonJS({
|
|
7492
|
-
"node_modules/semver/functions/cmp.js"(
|
|
7496
|
+
"node_modules/semver/functions/cmp.js"(exports, module) {
|
|
7493
7497
|
"use strict";
|
|
7494
7498
|
var eq = require_eq();
|
|
7495
7499
|
var neq = require_neq();
|
|
@@ -7533,13 +7537,13 @@ var require_cmp = __commonJS({
|
|
|
7533
7537
|
throw new TypeError(`Invalid operator: ${op}`);
|
|
7534
7538
|
}
|
|
7535
7539
|
};
|
|
7536
|
-
|
|
7540
|
+
module.exports = cmp;
|
|
7537
7541
|
}
|
|
7538
7542
|
});
|
|
7539
7543
|
|
|
7540
7544
|
// node_modules/semver/functions/coerce.js
|
|
7541
7545
|
var require_coerce = __commonJS({
|
|
7542
|
-
"node_modules/semver/functions/coerce.js"(
|
|
7546
|
+
"node_modules/semver/functions/coerce.js"(exports, module) {
|
|
7543
7547
|
"use strict";
|
|
7544
7548
|
var SemVer = require_semver();
|
|
7545
7549
|
var parse2 = require_parse();
|
|
@@ -7579,13 +7583,13 @@ var require_coerce = __commonJS({
|
|
|
7579
7583
|
const build = options.includePrerelease && match[6] ? `+${match[6]}` : "";
|
|
7580
7584
|
return parse2(`${major}.${minor}.${patch}${prerelease}${build}`, options);
|
|
7581
7585
|
};
|
|
7582
|
-
|
|
7586
|
+
module.exports = coerce;
|
|
7583
7587
|
}
|
|
7584
7588
|
});
|
|
7585
7589
|
|
|
7586
7590
|
// node_modules/semver/internal/lrucache.js
|
|
7587
7591
|
var require_lrucache = __commonJS({
|
|
7588
|
-
"node_modules/semver/internal/lrucache.js"(
|
|
7592
|
+
"node_modules/semver/internal/lrucache.js"(exports, module) {
|
|
7589
7593
|
"use strict";
|
|
7590
7594
|
var LRUCache = class {
|
|
7591
7595
|
constructor() {
|
|
@@ -7617,13 +7621,13 @@ var require_lrucache = __commonJS({
|
|
|
7617
7621
|
return this;
|
|
7618
7622
|
}
|
|
7619
7623
|
};
|
|
7620
|
-
|
|
7624
|
+
module.exports = LRUCache;
|
|
7621
7625
|
}
|
|
7622
7626
|
});
|
|
7623
7627
|
|
|
7624
7628
|
// node_modules/semver/classes/range.js
|
|
7625
7629
|
var require_range = __commonJS({
|
|
7626
|
-
"node_modules/semver/classes/range.js"(
|
|
7630
|
+
"node_modules/semver/classes/range.js"(exports, module) {
|
|
7627
7631
|
"use strict";
|
|
7628
7632
|
var SPACE_CHARACTERS = /\s+/g;
|
|
7629
7633
|
var Range = class _Range {
|
|
@@ -7764,7 +7768,7 @@ var require_range = __commonJS({
|
|
|
7764
7768
|
return false;
|
|
7765
7769
|
}
|
|
7766
7770
|
};
|
|
7767
|
-
|
|
7771
|
+
module.exports = Range;
|
|
7768
7772
|
var LRU = require_lrucache();
|
|
7769
7773
|
var cache = new LRU();
|
|
7770
7774
|
var parseOptions = require_parse_options();
|
|
@@ -7999,7 +8003,7 @@ var require_range = __commonJS({
|
|
|
7999
8003
|
|
|
8000
8004
|
// node_modules/semver/classes/comparator.js
|
|
8001
8005
|
var require_comparator = __commonJS({
|
|
8002
|
-
"node_modules/semver/classes/comparator.js"(
|
|
8006
|
+
"node_modules/semver/classes/comparator.js"(exports, module) {
|
|
8003
8007
|
"use strict";
|
|
8004
8008
|
var ANY = Symbol("SemVer ANY");
|
|
8005
8009
|
var Comparator = class _Comparator {
|
|
@@ -8100,7 +8104,7 @@ var require_comparator = __commonJS({
|
|
|
8100
8104
|
return false;
|
|
8101
8105
|
}
|
|
8102
8106
|
};
|
|
8103
|
-
|
|
8107
|
+
module.exports = Comparator;
|
|
8104
8108
|
var parseOptions = require_parse_options();
|
|
8105
8109
|
var { safeRe: re, t: t2 } = require_re();
|
|
8106
8110
|
var cmp = require_cmp();
|
|
@@ -8112,7 +8116,7 @@ var require_comparator = __commonJS({
|
|
|
8112
8116
|
|
|
8113
8117
|
// node_modules/semver/functions/satisfies.js
|
|
8114
8118
|
var require_satisfies = __commonJS({
|
|
8115
|
-
"node_modules/semver/functions/satisfies.js"(
|
|
8119
|
+
"node_modules/semver/functions/satisfies.js"(exports, module) {
|
|
8116
8120
|
"use strict";
|
|
8117
8121
|
var Range = require_range();
|
|
8118
8122
|
var satisfies2 = (version5, range, options) => {
|
|
@@ -8123,23 +8127,23 @@ var require_satisfies = __commonJS({
|
|
|
8123
8127
|
}
|
|
8124
8128
|
return range.test(version5);
|
|
8125
8129
|
};
|
|
8126
|
-
|
|
8130
|
+
module.exports = satisfies2;
|
|
8127
8131
|
}
|
|
8128
8132
|
});
|
|
8129
8133
|
|
|
8130
8134
|
// node_modules/semver/ranges/to-comparators.js
|
|
8131
8135
|
var require_to_comparators = __commonJS({
|
|
8132
|
-
"node_modules/semver/ranges/to-comparators.js"(
|
|
8136
|
+
"node_modules/semver/ranges/to-comparators.js"(exports, module) {
|
|
8133
8137
|
"use strict";
|
|
8134
8138
|
var Range = require_range();
|
|
8135
8139
|
var toComparators = (range, options) => new Range(range, options).set.map((comp) => comp.map((c) => c.value).join(" ").trim().split(" "));
|
|
8136
|
-
|
|
8140
|
+
module.exports = toComparators;
|
|
8137
8141
|
}
|
|
8138
8142
|
});
|
|
8139
8143
|
|
|
8140
8144
|
// node_modules/semver/ranges/max-satisfying.js
|
|
8141
8145
|
var require_max_satisfying = __commonJS({
|
|
8142
|
-
"node_modules/semver/ranges/max-satisfying.js"(
|
|
8146
|
+
"node_modules/semver/ranges/max-satisfying.js"(exports, module) {
|
|
8143
8147
|
"use strict";
|
|
8144
8148
|
var SemVer = require_semver();
|
|
8145
8149
|
var Range = require_range();
|
|
@@ -8162,13 +8166,13 @@ var require_max_satisfying = __commonJS({
|
|
|
8162
8166
|
});
|
|
8163
8167
|
return max;
|
|
8164
8168
|
};
|
|
8165
|
-
|
|
8169
|
+
module.exports = maxSatisfying;
|
|
8166
8170
|
}
|
|
8167
8171
|
});
|
|
8168
8172
|
|
|
8169
8173
|
// node_modules/semver/ranges/min-satisfying.js
|
|
8170
8174
|
var require_min_satisfying = __commonJS({
|
|
8171
|
-
"node_modules/semver/ranges/min-satisfying.js"(
|
|
8175
|
+
"node_modules/semver/ranges/min-satisfying.js"(exports, module) {
|
|
8172
8176
|
"use strict";
|
|
8173
8177
|
var SemVer = require_semver();
|
|
8174
8178
|
var Range = require_range();
|
|
@@ -8191,13 +8195,13 @@ var require_min_satisfying = __commonJS({
|
|
|
8191
8195
|
});
|
|
8192
8196
|
return min;
|
|
8193
8197
|
};
|
|
8194
|
-
|
|
8198
|
+
module.exports = minSatisfying;
|
|
8195
8199
|
}
|
|
8196
8200
|
});
|
|
8197
8201
|
|
|
8198
8202
|
// node_modules/semver/ranges/min-version.js
|
|
8199
8203
|
var require_min_version = __commonJS({
|
|
8200
|
-
"node_modules/semver/ranges/min-version.js"(
|
|
8204
|
+
"node_modules/semver/ranges/min-version.js"(exports, module) {
|
|
8201
8205
|
"use strict";
|
|
8202
8206
|
var SemVer = require_semver();
|
|
8203
8207
|
var Range = require_range();
|
|
@@ -8250,13 +8254,13 @@ var require_min_version = __commonJS({
|
|
|
8250
8254
|
}
|
|
8251
8255
|
return null;
|
|
8252
8256
|
};
|
|
8253
|
-
|
|
8257
|
+
module.exports = minVersion;
|
|
8254
8258
|
}
|
|
8255
8259
|
});
|
|
8256
8260
|
|
|
8257
8261
|
// node_modules/semver/ranges/valid.js
|
|
8258
8262
|
var require_valid2 = __commonJS({
|
|
8259
|
-
"node_modules/semver/ranges/valid.js"(
|
|
8263
|
+
"node_modules/semver/ranges/valid.js"(exports, module) {
|
|
8260
8264
|
"use strict";
|
|
8261
8265
|
var Range = require_range();
|
|
8262
8266
|
var validRange = (range, options) => {
|
|
@@ -8266,13 +8270,13 @@ var require_valid2 = __commonJS({
|
|
|
8266
8270
|
return null;
|
|
8267
8271
|
}
|
|
8268
8272
|
};
|
|
8269
|
-
|
|
8273
|
+
module.exports = validRange;
|
|
8270
8274
|
}
|
|
8271
8275
|
});
|
|
8272
8276
|
|
|
8273
8277
|
// node_modules/semver/ranges/outside.js
|
|
8274
8278
|
var require_outside = __commonJS({
|
|
8275
|
-
"node_modules/semver/ranges/outside.js"(
|
|
8279
|
+
"node_modules/semver/ranges/outside.js"(exports, module) {
|
|
8276
8280
|
"use strict";
|
|
8277
8281
|
var SemVer = require_semver();
|
|
8278
8282
|
var Comparator = require_comparator();
|
|
@@ -8335,33 +8339,33 @@ var require_outside = __commonJS({
|
|
|
8335
8339
|
}
|
|
8336
8340
|
return true;
|
|
8337
8341
|
};
|
|
8338
|
-
|
|
8342
|
+
module.exports = outside;
|
|
8339
8343
|
}
|
|
8340
8344
|
});
|
|
8341
8345
|
|
|
8342
8346
|
// node_modules/semver/ranges/gtr.js
|
|
8343
8347
|
var require_gtr = __commonJS({
|
|
8344
|
-
"node_modules/semver/ranges/gtr.js"(
|
|
8348
|
+
"node_modules/semver/ranges/gtr.js"(exports, module) {
|
|
8345
8349
|
"use strict";
|
|
8346
8350
|
var outside = require_outside();
|
|
8347
8351
|
var gtr = (version5, range, options) => outside(version5, range, ">", options);
|
|
8348
|
-
|
|
8352
|
+
module.exports = gtr;
|
|
8349
8353
|
}
|
|
8350
8354
|
});
|
|
8351
8355
|
|
|
8352
8356
|
// node_modules/semver/ranges/ltr.js
|
|
8353
8357
|
var require_ltr = __commonJS({
|
|
8354
|
-
"node_modules/semver/ranges/ltr.js"(
|
|
8358
|
+
"node_modules/semver/ranges/ltr.js"(exports, module) {
|
|
8355
8359
|
"use strict";
|
|
8356
8360
|
var outside = require_outside();
|
|
8357
8361
|
var ltr = (version5, range, options) => outside(version5, range, "<", options);
|
|
8358
|
-
|
|
8362
|
+
module.exports = ltr;
|
|
8359
8363
|
}
|
|
8360
8364
|
});
|
|
8361
8365
|
|
|
8362
8366
|
// node_modules/semver/ranges/intersects.js
|
|
8363
8367
|
var require_intersects = __commonJS({
|
|
8364
|
-
"node_modules/semver/ranges/intersects.js"(
|
|
8368
|
+
"node_modules/semver/ranges/intersects.js"(exports, module) {
|
|
8365
8369
|
"use strict";
|
|
8366
8370
|
var Range = require_range();
|
|
8367
8371
|
var intersects = (r1, r2, options) => {
|
|
@@ -8369,17 +8373,17 @@ var require_intersects = __commonJS({
|
|
|
8369
8373
|
r2 = new Range(r2, options);
|
|
8370
8374
|
return r1.intersects(r2, options);
|
|
8371
8375
|
};
|
|
8372
|
-
|
|
8376
|
+
module.exports = intersects;
|
|
8373
8377
|
}
|
|
8374
8378
|
});
|
|
8375
8379
|
|
|
8376
8380
|
// node_modules/semver/ranges/simplify.js
|
|
8377
8381
|
var require_simplify = __commonJS({
|
|
8378
|
-
"node_modules/semver/ranges/simplify.js"(
|
|
8382
|
+
"node_modules/semver/ranges/simplify.js"(exports, module) {
|
|
8379
8383
|
"use strict";
|
|
8380
8384
|
var satisfies2 = require_satisfies();
|
|
8381
8385
|
var compare = require_compare();
|
|
8382
|
-
|
|
8386
|
+
module.exports = (versions, range, options) => {
|
|
8383
8387
|
const set = [];
|
|
8384
8388
|
let first = null;
|
|
8385
8389
|
let prev = null;
|
|
@@ -8425,7 +8429,7 @@ var require_simplify = __commonJS({
|
|
|
8425
8429
|
|
|
8426
8430
|
// node_modules/semver/ranges/subset.js
|
|
8427
8431
|
var require_subset = __commonJS({
|
|
8428
|
-
"node_modules/semver/ranges/subset.js"(
|
|
8432
|
+
"node_modules/semver/ranges/subset.js"(exports, module) {
|
|
8429
8433
|
"use strict";
|
|
8430
8434
|
var Range = require_range();
|
|
8431
8435
|
var Comparator = require_comparator();
|
|
@@ -8581,13 +8585,13 @@ var require_subset = __commonJS({
|
|
|
8581
8585
|
const comp = compare(a.semver, b.semver, options);
|
|
8582
8586
|
return comp < 0 ? a : comp > 0 ? b : b.operator === "<" && a.operator === "<=" ? b : a;
|
|
8583
8587
|
};
|
|
8584
|
-
|
|
8588
|
+
module.exports = subset;
|
|
8585
8589
|
}
|
|
8586
8590
|
});
|
|
8587
8591
|
|
|
8588
8592
|
// node_modules/semver/index.js
|
|
8589
8593
|
var require_semver2 = __commonJS({
|
|
8590
|
-
"node_modules/semver/index.js"(
|
|
8594
|
+
"node_modules/semver/index.js"(exports, module) {
|
|
8591
8595
|
"use strict";
|
|
8592
8596
|
var internalRe = require_re();
|
|
8593
8597
|
var constants = require_constants();
|
|
@@ -8630,7 +8634,7 @@ var require_semver2 = __commonJS({
|
|
|
8630
8634
|
var intersects = require_intersects();
|
|
8631
8635
|
var simplifyRange = require_simplify();
|
|
8632
8636
|
var subset = require_subset();
|
|
8633
|
-
|
|
8637
|
+
module.exports = {
|
|
8634
8638
|
parse: parse2,
|
|
8635
8639
|
valid,
|
|
8636
8640
|
clean,
|
|
@@ -10402,11 +10406,11 @@ var init_u64 = __esm({
|
|
|
10402
10406
|
});
|
|
10403
10407
|
|
|
10404
10408
|
// node_modules/viem/node_modules/@noble/hashes/esm/cryptoNode.js
|
|
10405
|
-
|
|
10409
|
+
import * as nc from "node:crypto";
|
|
10410
|
+
var crypto2;
|
|
10406
10411
|
var init_cryptoNode = __esm({
|
|
10407
10412
|
"node_modules/viem/node_modules/@noble/hashes/esm/cryptoNode.js"() {
|
|
10408
10413
|
"use strict";
|
|
10409
|
-
nc = __toESM(require("node:crypto"), 1);
|
|
10410
10414
|
crypto2 = nc && typeof nc === "object" && "webcrypto" in nc ? nc.webcrypto : nc && typeof nc === "object" && "randomBytes" in nc ? nc : void 0;
|
|
10411
10415
|
}
|
|
10412
10416
|
});
|
|
@@ -16846,15 +16850,10 @@ var init_call = __esm({
|
|
|
16846
16850
|
});
|
|
16847
16851
|
|
|
16848
16852
|
// src/index.ts
|
|
16849
|
-
|
|
16850
|
-
__export(index_exports, {
|
|
16851
|
-
initializeCLI: () => initializeCLI
|
|
16852
|
-
});
|
|
16853
|
-
module.exports = __toCommonJS(index_exports);
|
|
16854
|
-
var import_commander = require("commander");
|
|
16853
|
+
import { program } from "commander";
|
|
16855
16854
|
|
|
16856
16855
|
// package.json
|
|
16857
|
-
var version = "0.12.
|
|
16856
|
+
var version = "0.12.4";
|
|
16858
16857
|
var package_default = {
|
|
16859
16858
|
name: "genlayer",
|
|
16860
16859
|
version,
|
|
@@ -16940,7 +16939,7 @@ var package_default = {
|
|
|
16940
16939
|
var CLI_DESCRIPTION = "GenLayer CLI is a development environment for the GenLayer ecosystem. It allows developers to interact with the protocol by creating accounts, sending transactions, and working with Intelligent Contracts by testing, debugging, and deploying them.";
|
|
16941
16940
|
|
|
16942
16941
|
// src/commands/general/init.ts
|
|
16943
|
-
|
|
16942
|
+
import inquirer2 from "inquirer";
|
|
16944
16943
|
|
|
16945
16944
|
// src/lib/config/simulator.ts
|
|
16946
16945
|
var localnetCompatibleVersion = "v0.42.0";
|
|
@@ -16985,14 +16984,14 @@ var AI_PROVIDERS_CONFIG = {
|
|
|
16985
16984
|
};
|
|
16986
16985
|
|
|
16987
16986
|
// src/commands/update/ollama.ts
|
|
16988
|
-
|
|
16987
|
+
import Docker from "dockerode";
|
|
16989
16988
|
|
|
16990
16989
|
// node_modules/node-fetch/src/index.js
|
|
16991
|
-
|
|
16992
|
-
|
|
16993
|
-
|
|
16994
|
-
|
|
16995
|
-
|
|
16990
|
+
import http2 from "node:http";
|
|
16991
|
+
import https from "node:https";
|
|
16992
|
+
import zlib from "node:zlib";
|
|
16993
|
+
import Stream2, { PassThrough as PassThrough2, pipeline as pump } from "node:stream";
|
|
16994
|
+
import { Buffer as Buffer3 } from "node:buffer";
|
|
16996
16995
|
|
|
16997
16996
|
// node_modules/data-uri-to-buffer/dist/index.js
|
|
16998
16997
|
function dataUriToBuffer(uri) {
|
|
@@ -17034,11 +17033,11 @@ function dataUriToBuffer(uri) {
|
|
|
17034
17033
|
var dist_default = dataUriToBuffer;
|
|
17035
17034
|
|
|
17036
17035
|
// node_modules/node-fetch/src/body.js
|
|
17037
|
-
var import_node_stream = __toESM(require("node:stream"), 1);
|
|
17038
|
-
var import_node_util = require("node:util");
|
|
17039
|
-
var import_node_buffer = require("node:buffer");
|
|
17040
17036
|
init_fetch_blob();
|
|
17041
17037
|
init_esm_min();
|
|
17038
|
+
import Stream, { PassThrough } from "node:stream";
|
|
17039
|
+
import { types, deprecate, promisify } from "node:util";
|
|
17040
|
+
import { Buffer as Buffer2 } from "node:buffer";
|
|
17042
17041
|
|
|
17043
17042
|
// node_modules/node-fetch/src/errors/base.js
|
|
17044
17043
|
var FetchBaseError = class extends Error {
|
|
@@ -17094,7 +17093,7 @@ var isSameProtocol = (destination, original) => {
|
|
|
17094
17093
|
};
|
|
17095
17094
|
|
|
17096
17095
|
// node_modules/node-fetch/src/body.js
|
|
17097
|
-
var pipeline =
|
|
17096
|
+
var pipeline = promisify(Stream.pipeline);
|
|
17098
17097
|
var INTERNALS = Symbol("Body internals");
|
|
17099
17098
|
var Body = class {
|
|
17100
17099
|
constructor(body, {
|
|
@@ -17104,25 +17103,25 @@ var Body = class {
|
|
|
17104
17103
|
if (body === null) {
|
|
17105
17104
|
body = null;
|
|
17106
17105
|
} else if (isURLSearchParameters(body)) {
|
|
17107
|
-
body =
|
|
17106
|
+
body = Buffer2.from(body.toString());
|
|
17108
17107
|
} else if (isBlob(body)) {
|
|
17109
|
-
} else if (
|
|
17110
|
-
} else if (
|
|
17111
|
-
body =
|
|
17108
|
+
} else if (Buffer2.isBuffer(body)) {
|
|
17109
|
+
} else if (types.isAnyArrayBuffer(body)) {
|
|
17110
|
+
body = Buffer2.from(body);
|
|
17112
17111
|
} else if (ArrayBuffer.isView(body)) {
|
|
17113
|
-
body =
|
|
17114
|
-
} else if (body instanceof
|
|
17112
|
+
body = Buffer2.from(body.buffer, body.byteOffset, body.byteLength);
|
|
17113
|
+
} else if (body instanceof Stream) {
|
|
17115
17114
|
} else if (body instanceof FormData) {
|
|
17116
17115
|
body = formDataToBlob(body);
|
|
17117
17116
|
boundary = body.type.split("=")[1];
|
|
17118
17117
|
} else {
|
|
17119
|
-
body =
|
|
17118
|
+
body = Buffer2.from(String(body));
|
|
17120
17119
|
}
|
|
17121
17120
|
let stream = body;
|
|
17122
|
-
if (
|
|
17123
|
-
stream =
|
|
17121
|
+
if (Buffer2.isBuffer(body)) {
|
|
17122
|
+
stream = Stream.Readable.from(body);
|
|
17124
17123
|
} else if (isBlob(body)) {
|
|
17125
|
-
stream =
|
|
17124
|
+
stream = Stream.Readable.from(body.stream());
|
|
17126
17125
|
}
|
|
17127
17126
|
this[INTERNALS] = {
|
|
17128
17127
|
body,
|
|
@@ -17132,7 +17131,7 @@ var Body = class {
|
|
|
17132
17131
|
error: null
|
|
17133
17132
|
};
|
|
17134
17133
|
this.size = size5;
|
|
17135
|
-
if (body instanceof
|
|
17134
|
+
if (body instanceof Stream) {
|
|
17136
17135
|
body.on("error", (error_) => {
|
|
17137
17136
|
const error = error_ instanceof FetchBaseError ? error_ : new FetchError(`Invalid response body while trying to fetch ${this.url}: ${error_.message}`, "system", error_);
|
|
17138
17137
|
this[INTERNALS].error = error;
|
|
@@ -17206,7 +17205,7 @@ var Body = class {
|
|
|
17206
17205
|
return consumeBody(this);
|
|
17207
17206
|
}
|
|
17208
17207
|
};
|
|
17209
|
-
Body.prototype.buffer =
|
|
17208
|
+
Body.prototype.buffer = deprecate(Body.prototype.buffer, "Please use 'response.arrayBuffer()' instead of 'response.buffer()'", "node-fetch#buffer");
|
|
17210
17209
|
Object.defineProperties(Body.prototype, {
|
|
17211
17210
|
body: { enumerable: true },
|
|
17212
17211
|
bodyUsed: { enumerable: true },
|
|
@@ -17214,7 +17213,7 @@ Object.defineProperties(Body.prototype, {
|
|
|
17214
17213
|
blob: { enumerable: true },
|
|
17215
17214
|
json: { enumerable: true },
|
|
17216
17215
|
text: { enumerable: true },
|
|
17217
|
-
data: { get:
|
|
17216
|
+
data: { get: deprecate(
|
|
17218
17217
|
() => {
|
|
17219
17218
|
},
|
|
17220
17219
|
"data doesn't exist, use json(), text(), arrayBuffer(), or body instead",
|
|
@@ -17231,10 +17230,10 @@ async function consumeBody(data) {
|
|
|
17231
17230
|
}
|
|
17232
17231
|
const { body } = data;
|
|
17233
17232
|
if (body === null) {
|
|
17234
|
-
return
|
|
17233
|
+
return Buffer2.alloc(0);
|
|
17235
17234
|
}
|
|
17236
|
-
if (!(body instanceof
|
|
17237
|
-
return
|
|
17235
|
+
if (!(body instanceof Stream)) {
|
|
17236
|
+
return Buffer2.alloc(0);
|
|
17238
17237
|
}
|
|
17239
17238
|
const accum = [];
|
|
17240
17239
|
let accumBytes = 0;
|
|
@@ -17255,9 +17254,9 @@ async function consumeBody(data) {
|
|
|
17255
17254
|
if (body.readableEnded === true || body._readableState.ended === true) {
|
|
17256
17255
|
try {
|
|
17257
17256
|
if (accum.every((c) => typeof c === "string")) {
|
|
17258
|
-
return
|
|
17257
|
+
return Buffer2.from(accum.join(""));
|
|
17259
17258
|
}
|
|
17260
|
-
return
|
|
17259
|
+
return Buffer2.concat(accum, accumBytes);
|
|
17261
17260
|
} catch (error) {
|
|
17262
17261
|
throw new FetchError(`Could not create Buffer from response body for ${data.url}: ${error.message}`, "system", error);
|
|
17263
17262
|
}
|
|
@@ -17272,9 +17271,9 @@ var clone = (instance, highWaterMark) => {
|
|
|
17272
17271
|
if (instance.bodyUsed) {
|
|
17273
17272
|
throw new Error("cannot clone body after it is used");
|
|
17274
17273
|
}
|
|
17275
|
-
if (body instanceof
|
|
17276
|
-
p1 = new
|
|
17277
|
-
p2 = new
|
|
17274
|
+
if (body instanceof Stream && typeof body.getBoundary !== "function") {
|
|
17275
|
+
p1 = new PassThrough({ highWaterMark });
|
|
17276
|
+
p2 = new PassThrough({ highWaterMark });
|
|
17278
17277
|
body.pipe(p1);
|
|
17279
17278
|
body.pipe(p2);
|
|
17280
17279
|
instance[INTERNALS].stream = p1;
|
|
@@ -17282,7 +17281,7 @@ var clone = (instance, highWaterMark) => {
|
|
|
17282
17281
|
}
|
|
17283
17282
|
return body;
|
|
17284
17283
|
};
|
|
17285
|
-
var getNonSpecFormDataBoundary =
|
|
17284
|
+
var getNonSpecFormDataBoundary = deprecate(
|
|
17286
17285
|
(body) => body.getBoundary(),
|
|
17287
17286
|
"form-data doesn't follow the spec and requires special treatment. Use alternative package",
|
|
17288
17287
|
"https://github.com/node-fetch/node-fetch/issues/1167"
|
|
@@ -17300,7 +17299,7 @@ var extractContentType = (body, request) => {
|
|
|
17300
17299
|
if (isBlob(body)) {
|
|
17301
17300
|
return body.type || null;
|
|
17302
17301
|
}
|
|
17303
|
-
if (
|
|
17302
|
+
if (Buffer2.isBuffer(body) || types.isAnyArrayBuffer(body) || ArrayBuffer.isView(body)) {
|
|
17304
17303
|
return null;
|
|
17305
17304
|
}
|
|
17306
17305
|
if (body instanceof FormData) {
|
|
@@ -17309,7 +17308,7 @@ var extractContentType = (body, request) => {
|
|
|
17309
17308
|
if (body && typeof body.getBoundary === "function") {
|
|
17310
17309
|
return `multipart/form-data;boundary=${getNonSpecFormDataBoundary(body)}`;
|
|
17311
17310
|
}
|
|
17312
|
-
if (body instanceof
|
|
17311
|
+
if (body instanceof Stream) {
|
|
17313
17312
|
return null;
|
|
17314
17313
|
}
|
|
17315
17314
|
return "text/plain;charset=UTF-8";
|
|
@@ -17322,7 +17321,7 @@ var getTotalBytes = (request) => {
|
|
|
17322
17321
|
if (isBlob(body)) {
|
|
17323
17322
|
return body.size;
|
|
17324
17323
|
}
|
|
17325
|
-
if (
|
|
17324
|
+
if (Buffer2.isBuffer(body)) {
|
|
17326
17325
|
return body.length;
|
|
17327
17326
|
}
|
|
17328
17327
|
if (body && typeof body.getLengthSync === "function") {
|
|
@@ -17339,16 +17338,16 @@ var writeToStream = async (dest, { body }) => {
|
|
|
17339
17338
|
};
|
|
17340
17339
|
|
|
17341
17340
|
// node_modules/node-fetch/src/headers.js
|
|
17342
|
-
|
|
17343
|
-
|
|
17344
|
-
var validateHeaderName = typeof
|
|
17341
|
+
import { types as types2 } from "node:util";
|
|
17342
|
+
import http from "node:http";
|
|
17343
|
+
var validateHeaderName = typeof http.validateHeaderName === "function" ? http.validateHeaderName : (name) => {
|
|
17345
17344
|
if (!/^[\^`\-\w!#$%&'*+.|~]+$/.test(name)) {
|
|
17346
17345
|
const error = new TypeError(`Header name must be a valid HTTP token [${name}]`);
|
|
17347
17346
|
Object.defineProperty(error, "code", { value: "ERR_INVALID_HTTP_TOKEN" });
|
|
17348
17347
|
throw error;
|
|
17349
17348
|
}
|
|
17350
17349
|
};
|
|
17351
|
-
var validateHeaderValue = typeof
|
|
17350
|
+
var validateHeaderValue = typeof http.validateHeaderValue === "function" ? http.validateHeaderValue : (name, value) => {
|
|
17352
17351
|
if (/[^\t\u0020-\u007E\u0080-\u00FF]/.test(value)) {
|
|
17353
17352
|
const error = new TypeError(`Invalid character in header content ["${name}"]`);
|
|
17354
17353
|
Object.defineProperty(error, "code", { value: "ERR_INVALID_CHAR" });
|
|
@@ -17370,7 +17369,7 @@ var Headers = class _Headers extends URLSearchParams {
|
|
|
17370
17369
|
result.push(...values.map((value) => [name, value]));
|
|
17371
17370
|
}
|
|
17372
17371
|
} else if (init == null) {
|
|
17373
|
-
} else if (typeof init === "object" && !
|
|
17372
|
+
} else if (typeof init === "object" && !types2.isBoxedPrimitive(init)) {
|
|
17374
17373
|
const method = init[Symbol.iterator];
|
|
17375
17374
|
if (method == null) {
|
|
17376
17375
|
result.push(...Object.entries(init));
|
|
@@ -17379,7 +17378,7 @@ var Headers = class _Headers extends URLSearchParams {
|
|
|
17379
17378
|
throw new TypeError("Header pairs must be iterable");
|
|
17380
17379
|
}
|
|
17381
17380
|
result = [...init].map((pair) => {
|
|
17382
|
-
if (typeof pair !== "object" ||
|
|
17381
|
+
if (typeof pair !== "object" || types2.isBoxedPrimitive(pair)) {
|
|
17383
17382
|
throw new TypeError("Each header pair must be an iterable object");
|
|
17384
17383
|
}
|
|
17385
17384
|
return [...pair];
|
|
@@ -17649,8 +17648,8 @@ Object.defineProperties(Response.prototype, {
|
|
|
17649
17648
|
});
|
|
17650
17649
|
|
|
17651
17650
|
// node_modules/node-fetch/src/request.js
|
|
17652
|
-
|
|
17653
|
-
|
|
17651
|
+
import { format as formatUrl } from "node:url";
|
|
17652
|
+
import { deprecate as deprecate2 } from "node:util";
|
|
17654
17653
|
|
|
17655
17654
|
// node_modules/node-fetch/src/utils/get-search.js
|
|
17656
17655
|
var getSearch = (parsedURL) => {
|
|
@@ -17663,7 +17662,7 @@ var getSearch = (parsedURL) => {
|
|
|
17663
17662
|
};
|
|
17664
17663
|
|
|
17665
17664
|
// node_modules/node-fetch/src/utils/referrer.js
|
|
17666
|
-
|
|
17665
|
+
import { isIP } from "node:net";
|
|
17667
17666
|
function stripURLForUseAsAReferrer(url, originOnly = false) {
|
|
17668
17667
|
if (url == null) {
|
|
17669
17668
|
return "no-referrer";
|
|
@@ -17704,7 +17703,7 @@ function isOriginPotentiallyTrustworthy(url) {
|
|
|
17704
17703
|
return true;
|
|
17705
17704
|
}
|
|
17706
17705
|
const hostIp = url.host.replace(/(^\[)|(]$)/g, "");
|
|
17707
|
-
const hostIPVersion =
|
|
17706
|
+
const hostIPVersion = isIP(hostIp);
|
|
17708
17707
|
if (hostIPVersion === 4 && /^127\./.test(hostIp)) {
|
|
17709
17708
|
return true;
|
|
17710
17709
|
}
|
|
@@ -17807,7 +17806,7 @@ var INTERNALS3 = Symbol("Request internals");
|
|
|
17807
17806
|
var isRequest = (object) => {
|
|
17808
17807
|
return typeof object === "object" && typeof object[INTERNALS3] === "object";
|
|
17809
17808
|
};
|
|
17810
|
-
var doBadDataWarn = (
|
|
17809
|
+
var doBadDataWarn = deprecate2(
|
|
17811
17810
|
() => {
|
|
17812
17811
|
},
|
|
17813
17812
|
".data is not a valid RequestInit property, use .body instead",
|
|
@@ -17884,7 +17883,7 @@ var Request = class _Request extends Body {
|
|
|
17884
17883
|
}
|
|
17885
17884
|
/** @returns {string} */
|
|
17886
17885
|
get url() {
|
|
17887
|
-
return (
|
|
17886
|
+
return formatUrl(this[INTERNALS3].parsedURL);
|
|
17888
17887
|
}
|
|
17889
17888
|
/** @returns {Headers} */
|
|
17890
17889
|
get headers() {
|
|
@@ -18019,13 +18018,13 @@ async function fetch2(url, options_) {
|
|
|
18019
18018
|
resolve2(response2);
|
|
18020
18019
|
return;
|
|
18021
18020
|
}
|
|
18022
|
-
const send = (parsedURL.protocol === "https:" ?
|
|
18021
|
+
const send = (parsedURL.protocol === "https:" ? https : http2).request;
|
|
18023
18022
|
const { signal } = request;
|
|
18024
18023
|
let response = null;
|
|
18025
18024
|
const abort = () => {
|
|
18026
18025
|
const error = new AbortError("The operation was aborted.");
|
|
18027
18026
|
reject(error);
|
|
18028
|
-
if (request.body && request.body instanceof
|
|
18027
|
+
if (request.body && request.body instanceof Stream2.Readable) {
|
|
18029
18028
|
request.body.destroy(error);
|
|
18030
18029
|
}
|
|
18031
18030
|
if (!response || !response.body) {
|
|
@@ -18124,7 +18123,7 @@ async function fetch2(url, options_) {
|
|
|
18124
18123
|
requestOptions.headers.delete(name);
|
|
18125
18124
|
}
|
|
18126
18125
|
}
|
|
18127
|
-
if (response_.statusCode !== 303 && request.body && options_.body instanceof
|
|
18126
|
+
if (response_.statusCode !== 303 && request.body && options_.body instanceof Stream2.Readable) {
|
|
18128
18127
|
reject(new FetchError("Cannot follow redirect with body being a readable stream", "unsupported-redirect"));
|
|
18129
18128
|
finalize();
|
|
18130
18129
|
return;
|
|
@@ -18151,7 +18150,7 @@ async function fetch2(url, options_) {
|
|
|
18151
18150
|
signal.removeEventListener("abort", abortAndFinalize);
|
|
18152
18151
|
});
|
|
18153
18152
|
}
|
|
18154
|
-
let body = (
|
|
18153
|
+
let body = pump(response_, new PassThrough2(), (error) => {
|
|
18155
18154
|
if (error) {
|
|
18156
18155
|
reject(error);
|
|
18157
18156
|
}
|
|
@@ -18175,11 +18174,11 @@ async function fetch2(url, options_) {
|
|
|
18175
18174
|
return;
|
|
18176
18175
|
}
|
|
18177
18176
|
const zlibOptions = {
|
|
18178
|
-
flush:
|
|
18179
|
-
finishFlush:
|
|
18177
|
+
flush: zlib.Z_SYNC_FLUSH,
|
|
18178
|
+
finishFlush: zlib.Z_SYNC_FLUSH
|
|
18180
18179
|
};
|
|
18181
18180
|
if (codings === "gzip" || codings === "x-gzip") {
|
|
18182
|
-
body = (
|
|
18181
|
+
body = pump(body, zlib.createGunzip(zlibOptions), (error) => {
|
|
18183
18182
|
if (error) {
|
|
18184
18183
|
reject(error);
|
|
18185
18184
|
}
|
|
@@ -18189,20 +18188,20 @@ async function fetch2(url, options_) {
|
|
|
18189
18188
|
return;
|
|
18190
18189
|
}
|
|
18191
18190
|
if (codings === "deflate" || codings === "x-deflate") {
|
|
18192
|
-
const raw = (
|
|
18191
|
+
const raw = pump(response_, new PassThrough2(), (error) => {
|
|
18193
18192
|
if (error) {
|
|
18194
18193
|
reject(error);
|
|
18195
18194
|
}
|
|
18196
18195
|
});
|
|
18197
18196
|
raw.once("data", (chunk) => {
|
|
18198
18197
|
if ((chunk[0] & 15) === 8) {
|
|
18199
|
-
body = (
|
|
18198
|
+
body = pump(body, zlib.createInflate(), (error) => {
|
|
18200
18199
|
if (error) {
|
|
18201
18200
|
reject(error);
|
|
18202
18201
|
}
|
|
18203
18202
|
});
|
|
18204
18203
|
} else {
|
|
18205
|
-
body = (
|
|
18204
|
+
body = pump(body, zlib.createInflateRaw(), (error) => {
|
|
18206
18205
|
if (error) {
|
|
18207
18206
|
reject(error);
|
|
18208
18207
|
}
|
|
@@ -18220,7 +18219,7 @@ async function fetch2(url, options_) {
|
|
|
18220
18219
|
return;
|
|
18221
18220
|
}
|
|
18222
18221
|
if (codings === "br") {
|
|
18223
|
-
body = (
|
|
18222
|
+
body = pump(body, zlib.createBrotliDecompress(), (error) => {
|
|
18224
18223
|
if (error) {
|
|
18225
18224
|
reject(error);
|
|
18226
18225
|
}
|
|
@@ -18236,7 +18235,7 @@ async function fetch2(url, options_) {
|
|
|
18236
18235
|
});
|
|
18237
18236
|
}
|
|
18238
18237
|
function fixResponseChunkedTransferBadEnding(request, errorCallback) {
|
|
18239
|
-
const LAST_CHUNK =
|
|
18238
|
+
const LAST_CHUNK = Buffer3.from("0\r\n\r\n");
|
|
18240
18239
|
let isChunkedTransfer = false;
|
|
18241
18240
|
let properLastChunkReceived = false;
|
|
18242
18241
|
let previousChunk;
|
|
@@ -18253,9 +18252,9 @@ function fixResponseChunkedTransferBadEnding(request, errorCallback) {
|
|
|
18253
18252
|
}
|
|
18254
18253
|
};
|
|
18255
18254
|
const onData = (buf) => {
|
|
18256
|
-
properLastChunkReceived =
|
|
18255
|
+
properLastChunkReceived = Buffer3.compare(buf.slice(-5), LAST_CHUNK) === 0;
|
|
18257
18256
|
if (!properLastChunkReceived && previousChunk) {
|
|
18258
|
-
properLastChunkReceived =
|
|
18257
|
+
properLastChunkReceived = Buffer3.compare(previousChunk.slice(-3), LAST_CHUNK.slice(0, 3)) === 0 && Buffer3.compare(buf.slice(-2), LAST_CHUNK.slice(3)) === 0;
|
|
18259
18258
|
}
|
|
18260
18259
|
previousChunk = buf;
|
|
18261
18260
|
};
|
|
@@ -18278,20 +18277,20 @@ function unsafeStringify(arr, offset = 0) {
|
|
|
18278
18277
|
}
|
|
18279
18278
|
|
|
18280
18279
|
// node_modules/uuid/dist/esm/rng.js
|
|
18281
|
-
|
|
18280
|
+
import { randomFillSync } from "crypto";
|
|
18282
18281
|
var rnds8Pool = new Uint8Array(256);
|
|
18283
18282
|
var poolPtr = rnds8Pool.length;
|
|
18284
18283
|
function rng() {
|
|
18285
18284
|
if (poolPtr > rnds8Pool.length - 16) {
|
|
18286
|
-
|
|
18285
|
+
randomFillSync(rnds8Pool);
|
|
18287
18286
|
poolPtr = 0;
|
|
18288
18287
|
}
|
|
18289
18288
|
return rnds8Pool.slice(poolPtr, poolPtr += 16);
|
|
18290
18289
|
}
|
|
18291
18290
|
|
|
18292
18291
|
// node_modules/uuid/dist/esm/native.js
|
|
18293
|
-
|
|
18294
|
-
var native_default = { randomUUID
|
|
18292
|
+
import { randomUUID } from "crypto";
|
|
18293
|
+
var native_default = { randomUUID };
|
|
18295
18294
|
|
|
18296
18295
|
// node_modules/uuid/dist/esm/v4.js
|
|
18297
18296
|
function v4(options, buf, offset) {
|
|
@@ -18348,36 +18347,36 @@ var JsonRpcClient = class {
|
|
|
18348
18347
|
var rpcClient = new JsonRpcClient(DEFAULT_JSON_RPC_URL);
|
|
18349
18348
|
|
|
18350
18349
|
// src/lib/config/ConfigFileManager.ts
|
|
18351
|
-
|
|
18352
|
-
|
|
18353
|
-
|
|
18350
|
+
import path from "path";
|
|
18351
|
+
import os from "os";
|
|
18352
|
+
import fs2 from "fs";
|
|
18354
18353
|
var ConfigFileManager = class {
|
|
18355
18354
|
constructor(baseFolder = ".genlayer/", configFileName = "genlayer-config.json") {
|
|
18356
18355
|
__publicField(this, "folderPath");
|
|
18357
18356
|
__publicField(this, "configFilePath");
|
|
18358
|
-
this.folderPath =
|
|
18359
|
-
this.configFilePath =
|
|
18357
|
+
this.folderPath = path.resolve(os.homedir(), baseFolder);
|
|
18358
|
+
this.configFilePath = path.resolve(this.folderPath, configFileName);
|
|
18360
18359
|
this.ensureFolderExists();
|
|
18361
18360
|
this.ensureConfigFileExists();
|
|
18362
18361
|
}
|
|
18363
18362
|
ensureFolderExists() {
|
|
18364
|
-
if (!
|
|
18365
|
-
|
|
18363
|
+
if (!fs2.existsSync(this.folderPath)) {
|
|
18364
|
+
fs2.mkdirSync(this.folderPath, { recursive: true });
|
|
18366
18365
|
}
|
|
18367
18366
|
}
|
|
18368
18367
|
ensureConfigFileExists() {
|
|
18369
|
-
if (!
|
|
18370
|
-
|
|
18368
|
+
if (!fs2.existsSync(this.configFilePath)) {
|
|
18369
|
+
fs2.writeFileSync(this.configFilePath, JSON.stringify({}, null, 2));
|
|
18371
18370
|
}
|
|
18372
18371
|
}
|
|
18373
18372
|
getFolderPath() {
|
|
18374
18373
|
return this.folderPath;
|
|
18375
18374
|
}
|
|
18376
18375
|
getFilePath(fileName) {
|
|
18377
|
-
return
|
|
18376
|
+
return path.resolve(this.folderPath, fileName);
|
|
18378
18377
|
}
|
|
18379
18378
|
getConfig() {
|
|
18380
|
-
const configContent =
|
|
18379
|
+
const configContent = fs2.readFileSync(this.configFilePath, "utf-8");
|
|
18381
18380
|
return JSON.parse(configContent);
|
|
18382
18381
|
}
|
|
18383
18382
|
getConfigByKey(key) {
|
|
@@ -18387,12 +18386,12 @@ var ConfigFileManager = class {
|
|
|
18387
18386
|
writeConfig(key, value) {
|
|
18388
18387
|
const config = this.getConfig();
|
|
18389
18388
|
config[key] = value;
|
|
18390
|
-
|
|
18389
|
+
fs2.writeFileSync(this.configFilePath, JSON.stringify(config, null, 2));
|
|
18391
18390
|
}
|
|
18392
18391
|
};
|
|
18393
18392
|
|
|
18394
18393
|
// node_modules/ora/index.js
|
|
18395
|
-
|
|
18394
|
+
import process9 from "node:process";
|
|
18396
18395
|
|
|
18397
18396
|
// node_modules/chalk/source/vendor/ansi-styles/index.js
|
|
18398
18397
|
var ANSI_BACKGROUND_OFFSET = 10;
|
|
@@ -18581,16 +18580,16 @@ var ansiStyles = assembleStyles();
|
|
|
18581
18580
|
var ansi_styles_default = ansiStyles;
|
|
18582
18581
|
|
|
18583
18582
|
// node_modules/chalk/source/vendor/supports-color/index.js
|
|
18584
|
-
|
|
18585
|
-
|
|
18586
|
-
|
|
18587
|
-
function hasFlag(flag, argv = globalThis.Deno ? globalThis.Deno.args :
|
|
18583
|
+
import process2 from "node:process";
|
|
18584
|
+
import os2 from "node:os";
|
|
18585
|
+
import tty from "node:tty";
|
|
18586
|
+
function hasFlag(flag, argv = globalThis.Deno ? globalThis.Deno.args : process2.argv) {
|
|
18588
18587
|
const prefix = flag.startsWith("-") ? "" : flag.length === 1 ? "-" : "--";
|
|
18589
18588
|
const position = argv.indexOf(prefix + flag);
|
|
18590
18589
|
const terminatorPosition = argv.indexOf("--");
|
|
18591
18590
|
return position !== -1 && (terminatorPosition === -1 || position < terminatorPosition);
|
|
18592
18591
|
}
|
|
18593
|
-
var { env } =
|
|
18592
|
+
var { env } = process2;
|
|
18594
18593
|
var flagForceColor;
|
|
18595
18594
|
if (hasFlag("no-color") || hasFlag("no-colors") || hasFlag("color=false") || hasFlag("color=never")) {
|
|
18596
18595
|
flagForceColor = 0;
|
|
@@ -18646,8 +18645,8 @@ function _supportsColor(haveStream, { streamIsTTY, sniffFlags = true } = {}) {
|
|
|
18646
18645
|
if (env.TERM === "dumb") {
|
|
18647
18646
|
return min;
|
|
18648
18647
|
}
|
|
18649
|
-
if (
|
|
18650
|
-
const osRelease =
|
|
18648
|
+
if (process2.platform === "win32") {
|
|
18649
|
+
const osRelease = os2.release().split(".");
|
|
18651
18650
|
if (Number(osRelease[0]) >= 10 && Number(osRelease[2]) >= 10586) {
|
|
18652
18651
|
return Number(osRelease[2]) >= 14931 ? 3 : 2;
|
|
18653
18652
|
}
|
|
@@ -18701,8 +18700,8 @@ function createSupportsColor(stream, options = {}) {
|
|
|
18701
18700
|
return translateLevel(level);
|
|
18702
18701
|
}
|
|
18703
18702
|
var supportsColor = {
|
|
18704
|
-
stdout: createSupportsColor({ isTTY:
|
|
18705
|
-
stderr: createSupportsColor({ isTTY:
|
|
18703
|
+
stdout: createSupportsColor({ isTTY: tty.isatty(1) }),
|
|
18704
|
+
stderr: createSupportsColor({ isTTY: tty.isatty(2) })
|
|
18706
18705
|
};
|
|
18707
18706
|
var supports_color_default = supportsColor;
|
|
18708
18707
|
|
|
@@ -18884,10 +18883,10 @@ var chalkStderr = createChalk({ level: stderrColor ? stderrColor.level : 0 });
|
|
|
18884
18883
|
var source_default = chalk;
|
|
18885
18884
|
|
|
18886
18885
|
// node_modules/cli-cursor/index.js
|
|
18887
|
-
|
|
18886
|
+
import process5 from "node:process";
|
|
18888
18887
|
|
|
18889
18888
|
// node_modules/restore-cursor/index.js
|
|
18890
|
-
|
|
18889
|
+
import process4 from "node:process";
|
|
18891
18890
|
|
|
18892
18891
|
// node_modules/mimic-function/index.js
|
|
18893
18892
|
var copyProperty = (to, from5, property, ignoreNonConfigurable) => {
|
|
@@ -19228,7 +19227,7 @@ var {
|
|
|
19228
19227
|
} = signalExitWrap(processOk(process3) ? new SignalExit(process3) : new SignalExitFallback());
|
|
19229
19228
|
|
|
19230
19229
|
// node_modules/restore-cursor/index.js
|
|
19231
|
-
var terminal =
|
|
19230
|
+
var terminal = process4.stderr.isTTY ? process4.stderr : process4.stdout.isTTY ? process4.stdout : void 0;
|
|
19232
19231
|
var restoreCursor = terminal ? onetime_default(() => {
|
|
19233
19232
|
onExit(() => {
|
|
19234
19233
|
terminal.write("\x1B[?25h");
|
|
@@ -19240,14 +19239,14 @@ var restore_cursor_default = restoreCursor;
|
|
|
19240
19239
|
// node_modules/cli-cursor/index.js
|
|
19241
19240
|
var isHidden = false;
|
|
19242
19241
|
var cliCursor = {};
|
|
19243
|
-
cliCursor.show = (writableStream =
|
|
19242
|
+
cliCursor.show = (writableStream = process5.stderr) => {
|
|
19244
19243
|
if (!writableStream.isTTY) {
|
|
19245
19244
|
return;
|
|
19246
19245
|
}
|
|
19247
19246
|
isHidden = false;
|
|
19248
19247
|
writableStream.write("\x1B[?25h");
|
|
19249
19248
|
};
|
|
19250
|
-
cliCursor.hide = (writableStream =
|
|
19249
|
+
cliCursor.hide = (writableStream = process5.stderr) => {
|
|
19251
19250
|
if (!writableStream.isTTY) {
|
|
19252
19251
|
return;
|
|
19253
19252
|
}
|
|
@@ -19271,12 +19270,12 @@ var cli_cursor_default = cliCursor;
|
|
|
19271
19270
|
var import_cli_spinners = __toESM(require_cli_spinners(), 1);
|
|
19272
19271
|
|
|
19273
19272
|
// node_modules/log-symbols/node_modules/is-unicode-supported/index.js
|
|
19274
|
-
|
|
19273
|
+
import process6 from "node:process";
|
|
19275
19274
|
function isUnicodeSupported() {
|
|
19276
|
-
if (
|
|
19277
|
-
return
|
|
19275
|
+
if (process6.platform !== "win32") {
|
|
19276
|
+
return process6.env.TERM !== "linux";
|
|
19278
19277
|
}
|
|
19279
|
-
return Boolean(
|
|
19278
|
+
return Boolean(process6.env.CI) || Boolean(process6.env.WT_SESSION) || Boolean(process6.env.TERMINUS_SUBLIME) || process6.env.ConEmuTask === "{cmd::Cmder}" || process6.env.TERM_PROGRAM === "Terminus-Sublime" || process6.env.TERM_PROGRAM === "vscode" || process6.env.TERM === "xterm-256color" || process6.env.TERM === "alacritty" || process6.env.TERMINAL_EMULATOR === "JetBrains-JediTerm";
|
|
19280
19279
|
}
|
|
19281
19280
|
|
|
19282
19281
|
// node_modules/log-symbols/index.js
|
|
@@ -19396,18 +19395,18 @@ function isInteractive({ stream = process.stdout } = {}) {
|
|
|
19396
19395
|
}
|
|
19397
19396
|
|
|
19398
19397
|
// node_modules/is-unicode-supported/index.js
|
|
19399
|
-
|
|
19398
|
+
import process7 from "node:process";
|
|
19400
19399
|
function isUnicodeSupported2() {
|
|
19401
|
-
const { env: env2 } =
|
|
19400
|
+
const { env: env2 } = process7;
|
|
19402
19401
|
const { TERM, TERM_PROGRAM } = env2;
|
|
19403
|
-
if (
|
|
19402
|
+
if (process7.platform !== "win32") {
|
|
19404
19403
|
return TERM !== "linux";
|
|
19405
19404
|
}
|
|
19406
19405
|
return Boolean(env2.WT_SESSION) || Boolean(env2.TERMINUS_SUBLIME) || env2.ConEmuTask === "{cmd::Cmder}" || TERM_PROGRAM === "Terminus-Sublime" || TERM_PROGRAM === "vscode" || TERM === "xterm-256color" || TERM === "alacritty" || TERM === "rxvt-unicode" || TERM === "rxvt-unicode-256color" || env2.TERMINAL_EMULATOR === "JetBrains-JediTerm";
|
|
19407
19406
|
}
|
|
19408
19407
|
|
|
19409
19408
|
// node_modules/stdin-discarder/index.js
|
|
19410
|
-
|
|
19409
|
+
import process8 from "node:process";
|
|
19411
19410
|
var ASCII_ETX_CODE = 3;
|
|
19412
19411
|
var _activeCount, _StdinDiscarder_instances, realStart_fn, realStop_fn, handleInput_fn;
|
|
19413
19412
|
var StdinDiscarder = class {
|
|
@@ -19434,24 +19433,24 @@ var StdinDiscarder = class {
|
|
|
19434
19433
|
_activeCount = new WeakMap();
|
|
19435
19434
|
_StdinDiscarder_instances = new WeakSet();
|
|
19436
19435
|
realStart_fn = function() {
|
|
19437
|
-
if (
|
|
19436
|
+
if (process8.platform === "win32" || !process8.stdin.isTTY) {
|
|
19438
19437
|
return;
|
|
19439
19438
|
}
|
|
19440
|
-
|
|
19441
|
-
|
|
19442
|
-
|
|
19439
|
+
process8.stdin.setRawMode(true);
|
|
19440
|
+
process8.stdin.on("data", __privateMethod(this, _StdinDiscarder_instances, handleInput_fn));
|
|
19441
|
+
process8.stdin.resume();
|
|
19443
19442
|
};
|
|
19444
19443
|
realStop_fn = function() {
|
|
19445
|
-
if (!
|
|
19444
|
+
if (!process8.stdin.isTTY) {
|
|
19446
19445
|
return;
|
|
19447
19446
|
}
|
|
19448
|
-
|
|
19449
|
-
|
|
19450
|
-
|
|
19447
|
+
process8.stdin.off("data", __privateMethod(this, _StdinDiscarder_instances, handleInput_fn));
|
|
19448
|
+
process8.stdin.pause();
|
|
19449
|
+
process8.stdin.setRawMode(false);
|
|
19451
19450
|
};
|
|
19452
19451
|
handleInput_fn = function(chunk) {
|
|
19453
19452
|
if (chunk[0] === ASCII_ETX_CODE) {
|
|
19454
|
-
|
|
19453
|
+
process8.emit("SIGINT");
|
|
19455
19454
|
}
|
|
19456
19455
|
};
|
|
19457
19456
|
var stdinDiscarder = new StdinDiscarder();
|
|
@@ -19487,7 +19486,7 @@ var Ora = class {
|
|
|
19487
19486
|
}
|
|
19488
19487
|
__privateSet(this, _options, {
|
|
19489
19488
|
color: "cyan",
|
|
19490
|
-
stream:
|
|
19489
|
+
stream: process9.stderr,
|
|
19491
19490
|
discardStdin: true,
|
|
19492
19491
|
hideCursor: true,
|
|
19493
19492
|
...options
|
|
@@ -19502,7 +19501,7 @@ var Ora = class {
|
|
|
19502
19501
|
this.prefixText = __privateGet(this, _options).prefixText;
|
|
19503
19502
|
this.suffixText = __privateGet(this, _options).suffixText;
|
|
19504
19503
|
this.indent = __privateGet(this, _options).indent;
|
|
19505
|
-
if (
|
|
19504
|
+
if (process9.env.NODE_ENV === "test") {
|
|
19506
19505
|
this._stream = __privateGet(this, _stream);
|
|
19507
19506
|
this._isEnabled = __privateGet(this, _isEnabled);
|
|
19508
19507
|
Object.defineProperty(this, "_linesToClear", {
|
|
@@ -19664,7 +19663,7 @@ var Ora = class {
|
|
|
19664
19663
|
if (__privateGet(this, _options).hideCursor) {
|
|
19665
19664
|
cli_cursor_default.hide(__privateGet(this, _stream));
|
|
19666
19665
|
}
|
|
19667
|
-
if (__privateGet(this, _options).discardStdin &&
|
|
19666
|
+
if (__privateGet(this, _options).discardStdin && process9.stdin.isTTY) {
|
|
19668
19667
|
__privateSet(this, _isDiscardingStdin, true);
|
|
19669
19668
|
stdin_discarder_default.start();
|
|
19670
19669
|
}
|
|
@@ -19683,7 +19682,7 @@ var Ora = class {
|
|
|
19683
19682
|
if (__privateGet(this, _options).hideCursor) {
|
|
19684
19683
|
cli_cursor_default.show(__privateGet(this, _stream));
|
|
19685
19684
|
}
|
|
19686
|
-
if (__privateGet(this, _options).discardStdin &&
|
|
19685
|
+
if (__privateGet(this, _options).discardStdin && process9.stdin.isTTY && __privateGet(this, _isDiscardingStdin)) {
|
|
19687
19686
|
stdin_discarder_default.stop();
|
|
19688
19687
|
__privateSet(this, _isDiscardingStdin, false);
|
|
19689
19688
|
}
|
|
@@ -19769,7 +19768,7 @@ function ora(options) {
|
|
|
19769
19768
|
}
|
|
19770
19769
|
|
|
19771
19770
|
// src/lib/actions/BaseAction.ts
|
|
19772
|
-
|
|
19771
|
+
import inquirer from "inquirer";
|
|
19773
19772
|
var BaseAction = class extends ConfigFileManager {
|
|
19774
19773
|
constructor() {
|
|
19775
19774
|
super();
|
|
@@ -19777,7 +19776,7 @@ var BaseAction = class extends ConfigFileManager {
|
|
|
19777
19776
|
this.spinner = ora({ text: "", spinner: "dots" });
|
|
19778
19777
|
}
|
|
19779
19778
|
async confirmPrompt(message) {
|
|
19780
|
-
const answer = await
|
|
19779
|
+
const answer = await inquirer.prompt([
|
|
19781
19780
|
{
|
|
19782
19781
|
type: "confirm",
|
|
19783
19782
|
name: "confirmAction",
|
|
@@ -19799,6 +19798,9 @@ var BaseAction = class extends ConfigFileManager {
|
|
|
19799
19798
|
};
|
|
19800
19799
|
return JSON.stringify(errorDetails, null, 2);
|
|
19801
19800
|
}
|
|
19801
|
+
if (data instanceof Map) {
|
|
19802
|
+
data = Object.fromEntries(data);
|
|
19803
|
+
}
|
|
19802
19804
|
return typeof data === "object" ? JSON.stringify(data, null, 2) : String(data);
|
|
19803
19805
|
}
|
|
19804
19806
|
log(message, data) {
|
|
@@ -19851,7 +19853,7 @@ var OllamaAction = class extends BaseAction {
|
|
|
19851
19853
|
constructor() {
|
|
19852
19854
|
super();
|
|
19853
19855
|
__publicField(this, "docker");
|
|
19854
|
-
this.docker = new
|
|
19856
|
+
this.docker = new Docker();
|
|
19855
19857
|
}
|
|
19856
19858
|
async updateModel(modelName) {
|
|
19857
19859
|
try {
|
|
@@ -19932,40 +19934,40 @@ var OllamaAction = class extends BaseAction {
|
|
|
19932
19934
|
};
|
|
19933
19935
|
|
|
19934
19936
|
// src/lib/services/simulator.ts
|
|
19935
|
-
var import_dockerode2 = __toESM(require("dockerode"), 1);
|
|
19936
|
-
var fs7 = __toESM(require("fs"), 1);
|
|
19937
|
-
var dotenv = __toESM(require("dotenv"), 1);
|
|
19938
|
-
var path3 = __toESM(require("path"), 1);
|
|
19939
19937
|
var semver = __toESM(require_semver2(), 1);
|
|
19940
|
-
|
|
19941
|
-
|
|
19938
|
+
import Docker2 from "dockerode";
|
|
19939
|
+
import * as fs7 from "fs";
|
|
19940
|
+
import * as dotenv from "dotenv";
|
|
19941
|
+
import * as path3 from "path";
|
|
19942
|
+
import updateCheck from "update-check";
|
|
19943
|
+
import { fileURLToPath as fileURLToPath2 } from "url";
|
|
19942
19944
|
|
|
19943
19945
|
// src/lib/clients/system.ts
|
|
19944
|
-
|
|
19945
|
-
|
|
19946
|
+
import util from "node:util";
|
|
19947
|
+
import { exec } from "child_process";
|
|
19946
19948
|
|
|
19947
19949
|
// node_modules/open/index.js
|
|
19948
|
-
|
|
19949
|
-
|
|
19950
|
-
|
|
19951
|
-
|
|
19952
|
-
|
|
19953
|
-
|
|
19950
|
+
import process14 from "node:process";
|
|
19951
|
+
import { Buffer as Buffer4 } from "node:buffer";
|
|
19952
|
+
import path2 from "node:path";
|
|
19953
|
+
import { fileURLToPath } from "node:url";
|
|
19954
|
+
import childProcess from "node:child_process";
|
|
19955
|
+
import fs6, { constants as fsConstants } from "node:fs/promises";
|
|
19954
19956
|
|
|
19955
19957
|
// node_modules/is-wsl/index.js
|
|
19956
|
-
|
|
19957
|
-
|
|
19958
|
-
|
|
19958
|
+
import process10 from "node:process";
|
|
19959
|
+
import os3 from "node:os";
|
|
19960
|
+
import fs5 from "node:fs";
|
|
19959
19961
|
|
|
19960
19962
|
// node_modules/is-inside-container/index.js
|
|
19961
|
-
|
|
19963
|
+
import fs4 from "node:fs";
|
|
19962
19964
|
|
|
19963
19965
|
// node_modules/is-docker/index.js
|
|
19964
|
-
|
|
19966
|
+
import fs3 from "node:fs";
|
|
19965
19967
|
var isDockerCached;
|
|
19966
19968
|
function hasDockerEnv() {
|
|
19967
19969
|
try {
|
|
19968
|
-
|
|
19970
|
+
fs3.statSync("/.dockerenv");
|
|
19969
19971
|
return true;
|
|
19970
19972
|
} catch {
|
|
19971
19973
|
return false;
|
|
@@ -19973,7 +19975,7 @@ function hasDockerEnv() {
|
|
|
19973
19975
|
}
|
|
19974
19976
|
function hasDockerCGroup() {
|
|
19975
19977
|
try {
|
|
19976
|
-
return
|
|
19978
|
+
return fs3.readFileSync("/proc/self/cgroup", "utf8").includes("docker");
|
|
19977
19979
|
} catch {
|
|
19978
19980
|
return false;
|
|
19979
19981
|
}
|
|
@@ -19989,7 +19991,7 @@ function isDocker() {
|
|
|
19989
19991
|
var cachedResult;
|
|
19990
19992
|
var hasContainerEnv = () => {
|
|
19991
19993
|
try {
|
|
19992
|
-
|
|
19994
|
+
fs4.statSync("/run/.containerenv");
|
|
19993
19995
|
return true;
|
|
19994
19996
|
} catch {
|
|
19995
19997
|
return false;
|
|
@@ -20004,22 +20006,22 @@ function isInsideContainer() {
|
|
|
20004
20006
|
|
|
20005
20007
|
// node_modules/is-wsl/index.js
|
|
20006
20008
|
var isWsl = () => {
|
|
20007
|
-
if (
|
|
20009
|
+
if (process10.platform !== "linux") {
|
|
20008
20010
|
return false;
|
|
20009
20011
|
}
|
|
20010
|
-
if (
|
|
20012
|
+
if (os3.release().toLowerCase().includes("microsoft")) {
|
|
20011
20013
|
if (isInsideContainer()) {
|
|
20012
20014
|
return false;
|
|
20013
20015
|
}
|
|
20014
20016
|
return true;
|
|
20015
20017
|
}
|
|
20016
20018
|
try {
|
|
20017
|
-
return
|
|
20019
|
+
return fs5.readFileSync("/proc/version", "utf8").toLowerCase().includes("microsoft") ? !isInsideContainer() : false;
|
|
20018
20020
|
} catch {
|
|
20019
20021
|
return false;
|
|
20020
20022
|
}
|
|
20021
20023
|
};
|
|
20022
|
-
var is_wsl_default =
|
|
20024
|
+
var is_wsl_default = process10.env.__IS_WSL_TEST__ ? isWsl : isWsl();
|
|
20023
20025
|
|
|
20024
20026
|
// node_modules/define-lazy-prop/index.js
|
|
20025
20027
|
function defineLazyProperty(object, propertyName, valueGetter) {
|
|
@@ -20040,17 +20042,17 @@ function defineLazyProperty(object, propertyName, valueGetter) {
|
|
|
20040
20042
|
}
|
|
20041
20043
|
|
|
20042
20044
|
// node_modules/default-browser/index.js
|
|
20043
|
-
|
|
20044
|
-
|
|
20045
|
-
|
|
20045
|
+
import { promisify as promisify5 } from "node:util";
|
|
20046
|
+
import process13 from "node:process";
|
|
20047
|
+
import { execFile as execFile4 } from "node:child_process";
|
|
20046
20048
|
|
|
20047
20049
|
// node_modules/default-browser-id/index.js
|
|
20048
|
-
|
|
20049
|
-
|
|
20050
|
-
|
|
20051
|
-
var execFileAsync = (
|
|
20050
|
+
import { promisify as promisify2 } from "node:util";
|
|
20051
|
+
import process11 from "node:process";
|
|
20052
|
+
import { execFile } from "node:child_process";
|
|
20053
|
+
var execFileAsync = promisify2(execFile);
|
|
20052
20054
|
async function defaultBrowserId() {
|
|
20053
|
-
if (
|
|
20055
|
+
if (process11.platform !== "darwin") {
|
|
20054
20056
|
throw new Error("macOS only");
|
|
20055
20057
|
}
|
|
20056
20058
|
const { stdout } = await execFileAsync("defaults", ["read", "com.apple.LaunchServices/com.apple.launchservices.secure", "LSHandlers"]);
|
|
@@ -20059,12 +20061,12 @@ async function defaultBrowserId() {
|
|
|
20059
20061
|
}
|
|
20060
20062
|
|
|
20061
20063
|
// node_modules/run-applescript/index.js
|
|
20062
|
-
|
|
20063
|
-
|
|
20064
|
-
|
|
20065
|
-
var execFileAsync2 = (
|
|
20064
|
+
import process12 from "node:process";
|
|
20065
|
+
import { promisify as promisify3 } from "node:util";
|
|
20066
|
+
import { execFile as execFile2, execFileSync } from "node:child_process";
|
|
20067
|
+
var execFileAsync2 = promisify3(execFile2);
|
|
20066
20068
|
async function runAppleScript(script, { humanReadableOutput = true } = {}) {
|
|
20067
|
-
if (
|
|
20069
|
+
if (process12.platform !== "darwin") {
|
|
20068
20070
|
throw new Error("macOS only");
|
|
20069
20071
|
}
|
|
20070
20072
|
const outputArguments = humanReadableOutput ? [] : ["-ss"];
|
|
@@ -20079,9 +20081,9 @@ tell application "System Events" to get value of property list item "CFBundleNam
|
|
|
20079
20081
|
}
|
|
20080
20082
|
|
|
20081
20083
|
// node_modules/default-browser/windows.js
|
|
20082
|
-
|
|
20083
|
-
|
|
20084
|
-
var execFileAsync3 = (
|
|
20084
|
+
import { promisify as promisify4 } from "node:util";
|
|
20085
|
+
import { execFile as execFile3 } from "node:child_process";
|
|
20086
|
+
var execFileAsync3 = promisify4(execFile3);
|
|
20085
20087
|
var windowsBrowserProgIds = {
|
|
20086
20088
|
AppXq0fevzme2pys62n3e0fbqa7peapykr8v: { name: "Edge", id: "com.microsoft.edge.old" },
|
|
20087
20089
|
MSEdgeDHTML: { name: "Edge", id: "com.microsoft.edge" },
|
|
@@ -20117,30 +20119,30 @@ async function defaultBrowser(_execFileAsync = execFileAsync3) {
|
|
|
20117
20119
|
}
|
|
20118
20120
|
|
|
20119
20121
|
// node_modules/default-browser/index.js
|
|
20120
|
-
var execFileAsync4 = (
|
|
20122
|
+
var execFileAsync4 = promisify5(execFile4);
|
|
20121
20123
|
var titleize = (string) => string.toLowerCase().replaceAll(/(?:^|\s|-)\S/g, (x2) => x2.toUpperCase());
|
|
20122
20124
|
async function defaultBrowser2() {
|
|
20123
|
-
if (
|
|
20125
|
+
if (process13.platform === "darwin") {
|
|
20124
20126
|
const id = await defaultBrowserId();
|
|
20125
20127
|
const name = await bundleName(id);
|
|
20126
20128
|
return { name, id };
|
|
20127
20129
|
}
|
|
20128
|
-
if (
|
|
20130
|
+
if (process13.platform === "linux") {
|
|
20129
20131
|
const { stdout } = await execFileAsync4("xdg-mime", ["query", "default", "x-scheme-handler/http"]);
|
|
20130
20132
|
const id = stdout.trim();
|
|
20131
20133
|
const name = titleize(id.replace(/.desktop$/, "").replace("-", " "));
|
|
20132
20134
|
return { name, id };
|
|
20133
20135
|
}
|
|
20134
|
-
if (
|
|
20136
|
+
if (process13.platform === "win32") {
|
|
20135
20137
|
return defaultBrowser();
|
|
20136
20138
|
}
|
|
20137
20139
|
throw new Error("Only macOS, Linux, and Windows are supported");
|
|
20138
20140
|
}
|
|
20139
20141
|
|
|
20140
20142
|
// node_modules/open/index.js
|
|
20141
|
-
var __dirname =
|
|
20142
|
-
var localXdgOpenPath =
|
|
20143
|
-
var { platform, arch } =
|
|
20143
|
+
var __dirname = path2.dirname(fileURLToPath(import.meta.url));
|
|
20144
|
+
var localXdgOpenPath = path2.join(__dirname, "xdg-open");
|
|
20145
|
+
var { platform, arch } = process14;
|
|
20144
20146
|
var getWslDrivesMountPoint = /* @__PURE__ */ (() => {
|
|
20145
20147
|
const defaultMountPoint = "/mnt/";
|
|
20146
20148
|
let mountPoint;
|
|
@@ -20151,14 +20153,14 @@ var getWslDrivesMountPoint = /* @__PURE__ */ (() => {
|
|
|
20151
20153
|
const configFilePath = "/etc/wsl.conf";
|
|
20152
20154
|
let isConfigFileExists = false;
|
|
20153
20155
|
try {
|
|
20154
|
-
await
|
|
20156
|
+
await fs6.access(configFilePath, fsConstants.F_OK);
|
|
20155
20157
|
isConfigFileExists = true;
|
|
20156
20158
|
} catch {
|
|
20157
20159
|
}
|
|
20158
20160
|
if (!isConfigFileExists) {
|
|
20159
20161
|
return defaultMountPoint;
|
|
20160
20162
|
}
|
|
20161
|
-
const configContent = await
|
|
20163
|
+
const configContent = await fs6.readFile(configFilePath, { encoding: "utf8" });
|
|
20162
20164
|
const configMountPoint = /(?<!#.*)root\s*=\s*(?<mountPoint>.*)/g.exec(configContent);
|
|
20163
20165
|
if (!configMountPoint) {
|
|
20164
20166
|
return defaultMountPoint;
|
|
@@ -20254,7 +20256,7 @@ var baseOpen = async (options) => {
|
|
|
20254
20256
|
}
|
|
20255
20257
|
} else if (platform === "win32" || is_wsl_default && !isInsideContainer() && !app) {
|
|
20256
20258
|
const mountPoint = await getWslDrivesMountPoint();
|
|
20257
|
-
command = is_wsl_default ? `${mountPoint}c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe` : `${
|
|
20259
|
+
command = is_wsl_default ? `${mountPoint}c/Windows/System32/WindowsPowerShell/v1.0/powershell.exe` : `${process14.env.SYSTEMROOT || process14.env.windir || "C:\\Windows"}\\System32\\WindowsPowerShell\\v1.0\\powershell`;
|
|
20258
20260
|
cliArguments.push(
|
|
20259
20261
|
"-NoProfile",
|
|
20260
20262
|
"-NonInteractive",
|
|
@@ -20281,7 +20283,7 @@ var baseOpen = async (options) => {
|
|
|
20281
20283
|
appArguments = appArguments.map((argument) => `"\`"${argument}\`""`);
|
|
20282
20284
|
encodedArguments.push("-ArgumentList", appArguments.join(","));
|
|
20283
20285
|
}
|
|
20284
|
-
options.target =
|
|
20286
|
+
options.target = Buffer4.from(encodedArguments.join(" "), "utf16le").toString("base64");
|
|
20285
20287
|
} else {
|
|
20286
20288
|
if (app) {
|
|
20287
20289
|
command = app;
|
|
@@ -20289,11 +20291,11 @@ var baseOpen = async (options) => {
|
|
|
20289
20291
|
const isBundled = !__dirname || __dirname === "/";
|
|
20290
20292
|
let exeLocalXdgOpen = false;
|
|
20291
20293
|
try {
|
|
20292
|
-
await
|
|
20294
|
+
await fs6.access(localXdgOpenPath, fsConstants.X_OK);
|
|
20293
20295
|
exeLocalXdgOpen = true;
|
|
20294
20296
|
} catch {
|
|
20295
20297
|
}
|
|
20296
|
-
const useSystemXdgOpen =
|
|
20298
|
+
const useSystemXdgOpen = process14.versions.electron ?? (platform === "android" || isBundled || !exeLocalXdgOpen);
|
|
20297
20299
|
command = useSystemXdgOpen ? "xdg-open" : localXdgOpenPath;
|
|
20298
20300
|
}
|
|
20299
20301
|
if (appArguments.length > 0) {
|
|
@@ -20310,7 +20312,7 @@ var baseOpen = async (options) => {
|
|
|
20310
20312
|
if (options.target) {
|
|
20311
20313
|
cliArguments.push(options.target);
|
|
20312
20314
|
}
|
|
20313
|
-
const subprocess =
|
|
20315
|
+
const subprocess = childProcess.spawn(command, cliArguments, childProcessOptions);
|
|
20314
20316
|
if (options.wait) {
|
|
20315
20317
|
return new Promise((resolve2, reject) => {
|
|
20316
20318
|
subprocess.once("error", reject);
|
|
@@ -20396,7 +20398,7 @@ var MissingRequirementError = class extends Error {
|
|
|
20396
20398
|
// src/lib/clients/system.ts
|
|
20397
20399
|
async function checkCommand(command, toolName) {
|
|
20398
20400
|
try {
|
|
20399
|
-
await
|
|
20401
|
+
await util.promisify(exec)(command);
|
|
20400
20402
|
} catch (error) {
|
|
20401
20403
|
if (error.stderr) {
|
|
20402
20404
|
throw new MissingRequirementError(toolName);
|
|
@@ -20407,7 +20409,7 @@ async function executeCommand(cmdsByPlatform, toolName) {
|
|
|
20407
20409
|
const runningPlatform = getPlatform();
|
|
20408
20410
|
const command = cmdsByPlatform[runningPlatform];
|
|
20409
20411
|
try {
|
|
20410
|
-
return await
|
|
20412
|
+
return await util.promisify(exec)(command);
|
|
20411
20413
|
} catch (error) {
|
|
20412
20414
|
throw new Error(`Error executing ${toolName || command}: ${error.message}.`);
|
|
20413
20415
|
}
|
|
@@ -20424,7 +20426,7 @@ function openUrl(url) {
|
|
|
20424
20426
|
}
|
|
20425
20427
|
async function getVersion(toolName) {
|
|
20426
20428
|
try {
|
|
20427
|
-
const toolResponse = await
|
|
20429
|
+
const toolResponse = await util.promisify(exec)(`${toolName} --version`);
|
|
20428
20430
|
if (toolResponse.stderr) {
|
|
20429
20431
|
throw new Error(toolResponse.stderr);
|
|
20430
20432
|
}
|
|
@@ -20461,10 +20463,10 @@ var SimulatorService = class {
|
|
|
20461
20463
|
__publicField(this, "composeOptions");
|
|
20462
20464
|
__publicField(this, "docker");
|
|
20463
20465
|
__publicField(this, "location");
|
|
20464
|
-
const __filename = (
|
|
20466
|
+
const __filename = fileURLToPath2(import.meta.url);
|
|
20465
20467
|
this.location = path3.resolve(path3.dirname(__filename), "..");
|
|
20466
20468
|
this.composeOptions = "";
|
|
20467
|
-
this.docker = new
|
|
20469
|
+
this.docker = new Docker2();
|
|
20468
20470
|
}
|
|
20469
20471
|
readEnvConfigValue(key) {
|
|
20470
20472
|
const envFilePath = path3.join(this.location, ".env");
|
|
@@ -20510,7 +20512,7 @@ var SimulatorService = class {
|
|
|
20510
20512
|
return this.composeOptions;
|
|
20511
20513
|
}
|
|
20512
20514
|
async checkCliVersion() {
|
|
20513
|
-
const update = await (
|
|
20515
|
+
const update = await updateCheck(package_default);
|
|
20514
20516
|
if (update && update.latest !== package_default.version) {
|
|
20515
20517
|
console.warn(`
|
|
20516
20518
|
A new version (${update.latest}) is available! You're using version ${package_default.version}.
|
|
@@ -20721,7 +20723,7 @@ var InitAction = class extends BaseAction {
|
|
|
20721
20723
|
validate: (answer) => answer.length < 1 ? "You must choose at least one option." : true
|
|
20722
20724
|
}
|
|
20723
20725
|
];
|
|
20724
|
-
const llmProvidersAnswer = await
|
|
20726
|
+
const llmProvidersAnswer = await inquirer2.prompt(llmQuestions);
|
|
20725
20727
|
const selectedLlmProviders = llmProvidersAnswer.selectedLlmProviders;
|
|
20726
20728
|
let defaultOllamaModel = this.getConfig().defaultOllamaModel;
|
|
20727
20729
|
AI_PROVIDERS_CONFIG.ollama.hint = `(This will download and run a local instance of ${defaultOllamaModel})`;
|
|
@@ -20739,7 +20741,7 @@ var InitAction = class extends BaseAction {
|
|
|
20739
20741
|
validate: (value) => value.length ? true : `Please enter a valid API Key for ${providerConfig.name}.`
|
|
20740
20742
|
}
|
|
20741
20743
|
];
|
|
20742
|
-
const apiKeyAnswer = await
|
|
20744
|
+
const apiKeyAnswer = await inquirer2.prompt(keyQuestion);
|
|
20743
20745
|
aiProvidersEnvVars[providerConfig.envVar] = apiKeyAnswer[providerConfig.cliOptionValue];
|
|
20744
20746
|
}
|
|
20745
20747
|
this.startSpinner("Configuring GenLayer Localnet environment...");
|
|
@@ -20795,7 +20797,7 @@ var InitAction = class extends BaseAction {
|
|
|
20795
20797
|
};
|
|
20796
20798
|
|
|
20797
20799
|
// src/commands/general/start.ts
|
|
20798
|
-
|
|
20800
|
+
import inquirer3 from "inquirer";
|
|
20799
20801
|
var StartAction = class extends BaseAction {
|
|
20800
20802
|
constructor() {
|
|
20801
20803
|
super();
|
|
@@ -20849,7 +20851,7 @@ var StartAction = class extends BaseAction {
|
|
|
20849
20851
|
validate: (answer) => answer.length < 1 ? "You must choose at least one option." : true
|
|
20850
20852
|
}
|
|
20851
20853
|
];
|
|
20852
|
-
const llmProvidersAnswer = await
|
|
20854
|
+
const llmProvidersAnswer = await inquirer3.prompt(questions);
|
|
20853
20855
|
await this.simulatorService.createRandomValidators(numValidators, llmProvidersAnswer.selectedLlmProviders);
|
|
20854
20856
|
} catch (error) {
|
|
20855
20857
|
this.failSpinner("Unable to initialize the validators", error);
|
|
@@ -20910,8 +20912,8 @@ function initializeGeneralCommands(program2) {
|
|
|
20910
20912
|
}
|
|
20911
20913
|
|
|
20912
20914
|
// src/commands/keygen/create.ts
|
|
20913
|
-
|
|
20914
|
-
|
|
20915
|
+
import { writeFileSync as writeFileSync2, existsSync } from "fs";
|
|
20916
|
+
import { ethers } from "ethers";
|
|
20915
20917
|
var KeypairCreator = class extends BaseAction {
|
|
20916
20918
|
constructor() {
|
|
20917
20919
|
super();
|
|
@@ -20920,18 +20922,18 @@ var KeypairCreator = class extends BaseAction {
|
|
|
20920
20922
|
try {
|
|
20921
20923
|
this.startSpinner(`Creating keypair...`);
|
|
20922
20924
|
const outputPath = this.getFilePath(options.output);
|
|
20923
|
-
if (
|
|
20925
|
+
if (existsSync(outputPath) && !options.overwrite) {
|
|
20924
20926
|
this.failSpinner(
|
|
20925
20927
|
`The file at ${outputPath} already exists. Use the '--overwrite' option to replace it.`
|
|
20926
20928
|
);
|
|
20927
20929
|
return;
|
|
20928
20930
|
}
|
|
20929
|
-
const wallet =
|
|
20931
|
+
const wallet = ethers.Wallet.createRandom();
|
|
20930
20932
|
const keypairData = {
|
|
20931
20933
|
address: wallet.address,
|
|
20932
20934
|
privateKey: wallet.privateKey
|
|
20933
20935
|
};
|
|
20934
|
-
(
|
|
20936
|
+
writeFileSync2(outputPath, JSON.stringify(keypairData, null, 2));
|
|
20935
20937
|
this.writeConfig("keyPairPath", outputPath);
|
|
20936
20938
|
this.succeedSpinner(`Keypair successfully created and saved to: ${outputPath}`);
|
|
20937
20939
|
} catch (error) {
|
|
@@ -20951,7 +20953,7 @@ function initializeKeygenCommands(program2) {
|
|
|
20951
20953
|
}
|
|
20952
20954
|
|
|
20953
20955
|
// src/commands/contracts/deploy.ts
|
|
20954
|
-
|
|
20956
|
+
import fs9 from "fs";
|
|
20955
20957
|
|
|
20956
20958
|
// node_modules/genlayer-js/dist/chunk-MLKGABMK.js
|
|
20957
20959
|
var __defProp2 = Object.defineProperty;
|
|
@@ -28676,15 +28678,15 @@ var calldata = calldata_exports;
|
|
|
28676
28678
|
var transactions = transactions_exports;
|
|
28677
28679
|
|
|
28678
28680
|
// src/lib/accounts/getPrivateKey.ts
|
|
28679
|
-
|
|
28681
|
+
import fs8 from "fs";
|
|
28680
28682
|
function getPrivateKey() {
|
|
28681
28683
|
const configFileManager = new ConfigFileManager();
|
|
28682
28684
|
const keypairPath = configFileManager.getConfigByKey("keyPairPath");
|
|
28683
|
-
if (!keypairPath || !
|
|
28685
|
+
if (!keypairPath || !fs8.existsSync(keypairPath)) {
|
|
28684
28686
|
console.error("Keypair file not found. Please generate or specify a valid keypair path.");
|
|
28685
28687
|
process.exit(1);
|
|
28686
28688
|
}
|
|
28687
|
-
const keypairData = JSON.parse(
|
|
28689
|
+
const keypairData = JSON.parse(fs8.readFileSync(keypairPath, "utf-8"));
|
|
28688
28690
|
if (!keypairData.privateKey) {
|
|
28689
28691
|
console.error("Invalid keypair file. Private key is missing.");
|
|
28690
28692
|
process.exit(1);
|
|
@@ -28703,10 +28705,10 @@ var DeployAction = class {
|
|
|
28703
28705
|
});
|
|
28704
28706
|
}
|
|
28705
28707
|
readContractCode(contractPath) {
|
|
28706
|
-
if (!
|
|
28708
|
+
if (!fs9.existsSync(contractPath)) {
|
|
28707
28709
|
throw new Error(`Contract file not found: ${contractPath}`);
|
|
28708
28710
|
}
|
|
28709
|
-
return
|
|
28711
|
+
return fs9.readFileSync(contractPath, "utf-8");
|
|
28710
28712
|
}
|
|
28711
28713
|
async deploy(options) {
|
|
28712
28714
|
const argsUsed = options.args && options.args.length > 0;
|
|
@@ -28874,7 +28876,7 @@ function initializeConfigCommands(program2) {
|
|
|
28874
28876
|
}
|
|
28875
28877
|
|
|
28876
28878
|
// src/commands/validators/validators.ts
|
|
28877
|
-
|
|
28879
|
+
import inquirer4 from "inquirer";
|
|
28878
28880
|
var ValidatorsAction = class extends BaseAction {
|
|
28879
28881
|
async getValidator(options) {
|
|
28880
28882
|
try {
|
|
@@ -29011,7 +29013,7 @@ var ValidatorsAction = class extends BaseAction {
|
|
|
29011
29013
|
];
|
|
29012
29014
|
let provider = options.provider;
|
|
29013
29015
|
if (!provider) {
|
|
29014
|
-
const { selectedProvider } = await
|
|
29016
|
+
const { selectedProvider } = await inquirer4.prompt([
|
|
29015
29017
|
{
|
|
29016
29018
|
type: "list",
|
|
29017
29019
|
name: "selectedProvider",
|
|
@@ -29029,7 +29031,7 @@ var ValidatorsAction = class extends BaseAction {
|
|
|
29029
29031
|
}
|
|
29030
29032
|
let model = options.model;
|
|
29031
29033
|
if (!model) {
|
|
29032
|
-
const { selectedModel } = await
|
|
29034
|
+
const { selectedModel } = await inquirer4.prompt([
|
|
29033
29035
|
{
|
|
29034
29036
|
type: "list",
|
|
29035
29037
|
name: "selectedModel",
|
|
@@ -29134,20 +29136,19 @@ function initializeUpdateCommands(program2) {
|
|
|
29134
29136
|
|
|
29135
29137
|
// src/index.ts
|
|
29136
29138
|
function initializeCLI() {
|
|
29137
|
-
|
|
29138
|
-
initializeGeneralCommands(
|
|
29139
|
-
initializeKeygenCommands(
|
|
29140
|
-
initializeContractsCommands(
|
|
29141
|
-
initializeConfigCommands(
|
|
29142
|
-
initializeUpdateCommands(
|
|
29143
|
-
initializeValidatorCommands(
|
|
29144
|
-
|
|
29139
|
+
program.version(version).description(CLI_DESCRIPTION);
|
|
29140
|
+
initializeGeneralCommands(program);
|
|
29141
|
+
initializeKeygenCommands(program);
|
|
29142
|
+
initializeContractsCommands(program);
|
|
29143
|
+
initializeConfigCommands(program);
|
|
29144
|
+
initializeUpdateCommands(program);
|
|
29145
|
+
initializeValidatorCommands(program);
|
|
29146
|
+
program.parse(process.argv);
|
|
29145
29147
|
}
|
|
29146
29148
|
initializeCLI();
|
|
29147
|
-
|
|
29148
|
-
0 && (module.exports = {
|
|
29149
|
+
export {
|
|
29149
29150
|
initializeCLI
|
|
29150
|
-
}
|
|
29151
|
+
};
|
|
29151
29152
|
/*! Bundled license information:
|
|
29152
29153
|
|
|
29153
29154
|
web-streams-polyfill/dist/ponyfill.es2018.js:
|