omnius 1.0.311 → 1.0.312
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +106 -13
- package/npm-shrinkwrap.json +266 -120
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -580754,12 +580754,18 @@ ${result}`
|
|
|
580754
580754
|
return true;
|
|
580755
580755
|
if (/model is loading|server busy|overloaded/i.test(msg))
|
|
580756
580756
|
return true;
|
|
580757
|
+
if (this.isGpuSlotUnavailableError(err))
|
|
580758
|
+
return true;
|
|
580757
580759
|
if (/multiaddrs failed|all multiaddrs failed|dial to peer failed|stream was reset|Cannot reach peer/i.test(msg))
|
|
580758
580760
|
return true;
|
|
580759
580761
|
if (/NATS.*timeout|relay.*timeout|invoke.*timeout/i.test(msg))
|
|
580760
580762
|
return true;
|
|
580761
580763
|
return false;
|
|
580762
580764
|
}
|
|
580765
|
+
isGpuSlotUnavailableError(err) {
|
|
580766
|
+
const msg = err instanceof Error ? err.message : String(err);
|
|
580767
|
+
return /No GPU slot available after 30s\. All slots occupied\./i.test(msg);
|
|
580768
|
+
}
|
|
580763
580769
|
/** Detect 402 payment-required errors that should trigger key rotation */
|
|
580764
580770
|
isPaymentRequiredError(err) {
|
|
580765
580771
|
const msg = err instanceof Error ? err.message : String(err);
|
|
@@ -580967,16 +580973,18 @@ ${description}`
|
|
|
580967
580973
|
return true;
|
|
580968
580974
|
}
|
|
580969
580975
|
/**
|
|
580970
|
-
* Retry a failed model request
|
|
580971
|
-
*
|
|
580976
|
+
* Retry a failed model request. Network outages and GPU slot saturation wait
|
|
580977
|
+
* until recovery; other transient backend errors use bounded backoff.
|
|
580978
|
+
* Returns the response on success, or null if recovery did not apply.
|
|
580972
580979
|
*/
|
|
580973
580980
|
async retryOnTransient(initialErr, chatRequest, turn) {
|
|
580974
580981
|
if (!this.isTransientError(initialErr))
|
|
580975
580982
|
return null;
|
|
580976
580983
|
const errMsg = initialErr instanceof Error ? initialErr.message : String(initialErr);
|
|
580977
580984
|
const isNetworkError2 = /fetch failed|ECONNREFUSED|ECONNRESET|ETIMEDOUT|socket hang up/i.test(errMsg);
|
|
580978
|
-
const
|
|
580979
|
-
const
|
|
580985
|
+
const isGpuSlotUnavailable = this.isGpuSlotUnavailableError(initialErr);
|
|
580986
|
+
const maxRetries = isNetworkError2 || isGpuSlotUnavailable ? Infinity : 3;
|
|
580987
|
+
const baseDelayMs = isGpuSlotUnavailable ? 1e3 : isNetworkError2 ? 5e3 : 3e3;
|
|
580980
580988
|
const maxDelayMs = 6e4;
|
|
580981
580989
|
const backend = this.backend;
|
|
580982
580990
|
let attempt = 1;
|
|
@@ -581014,13 +581022,21 @@ ${description}`
|
|
|
581014
581022
|
return null;
|
|
581015
581023
|
}
|
|
581016
581024
|
}
|
|
581017
|
-
const delay3 = Math.min(baseDelayMs * Math.pow(2, attempt - 1), maxDelayMs);
|
|
581025
|
+
const delay3 = isGpuSlotUnavailable ? baseDelayMs : Math.min(baseDelayMs * Math.pow(2, attempt - 1), maxDelayMs);
|
|
581018
581026
|
const attemptLabel = maxRetries === Infinity ? `${attempt}` : `${attempt}/${maxRetries}`;
|
|
581019
|
-
|
|
581020
|
-
|
|
581021
|
-
|
|
581022
|
-
|
|
581023
|
-
|
|
581027
|
+
if (isGpuSlotUnavailable) {
|
|
581028
|
+
this.emit({
|
|
581029
|
+
type: "status",
|
|
581030
|
+
content: `Waiting for free GPU${".".repeat(attempt + 2)}`,
|
|
581031
|
+
timestamp: (/* @__PURE__ */ new Date()).toISOString()
|
|
581032
|
+
});
|
|
581033
|
+
} else {
|
|
581034
|
+
this.emit({
|
|
581035
|
+
type: "status",
|
|
581036
|
+
content: `Backend error — retrying in ${(delay3 / 1e3).toFixed(0)}s (attempt ${attemptLabel})`,
|
|
581037
|
+
timestamp: (/* @__PURE__ */ new Date()).toISOString()
|
|
581038
|
+
});
|
|
581039
|
+
}
|
|
581024
581040
|
await new Promise((r2) => setTimeout(r2, delay3));
|
|
581025
581041
|
if (this.aborted)
|
|
581026
581042
|
return null;
|
|
@@ -581028,7 +581044,7 @@ ${description}`
|
|
|
581028
581044
|
const response = this.options.streamEnabled && this.hasStreamingSupport() ? await this.streamingRequest(chatRequest, turn) : await this.backend.chatCompletion(chatRequest);
|
|
581029
581045
|
this.emit({
|
|
581030
581046
|
type: "status",
|
|
581031
|
-
content: `Backend recovered on attempt ${attempt}`,
|
|
581047
|
+
content: isGpuSlotUnavailable ? "GPU Free, Resuming" : `Backend recovered on attempt ${attempt}`,
|
|
581032
581048
|
timestamp: (/* @__PURE__ */ new Date()).toISOString()
|
|
581033
581049
|
});
|
|
581034
581050
|
return response;
|
|
@@ -705577,6 +705593,68 @@ ${entry.fullContent}`
|
|
|
705577
705593
|
}, 33);
|
|
705578
705594
|
liveShellBlock.repaintTimer.unref?.();
|
|
705579
705595
|
};
|
|
705596
|
+
let gpuRecoveryBlock = null;
|
|
705597
|
+
const buildGpuRecoveryBlockLines = (state, width) => {
|
|
705598
|
+
if (state.done) return [`${c3.dim("∙")} ${c3.dim("GPU Free, Resuming")}`];
|
|
705599
|
+
const label = "Waiting for free GPU";
|
|
705600
|
+
const maxDots = Math.max(3, width - label.length - 4);
|
|
705601
|
+
const text2 = `${label}${".".repeat(Math.min(state.dots, maxDots))}`;
|
|
705602
|
+
return [`${c3.dim("∙")} ${c3.dim(text2)}`];
|
|
705603
|
+
};
|
|
705604
|
+
const stopGpuRecoveryTimer = (state = gpuRecoveryBlock) => {
|
|
705605
|
+
if (!state?.timer) return;
|
|
705606
|
+
clearInterval(state.timer);
|
|
705607
|
+
state.timer = null;
|
|
705608
|
+
};
|
|
705609
|
+
const startGpuRecoveryBlock = (initialDots) => {
|
|
705610
|
+
if (!statusBar?.isActive || isNeovimActive() || isOverlayActive()) {
|
|
705611
|
+
return false;
|
|
705612
|
+
}
|
|
705613
|
+
let state = gpuRecoveryBlock;
|
|
705614
|
+
if (!state || state.done) {
|
|
705615
|
+
const id = `gpu-recovery-${Date.now()}-${Math.random().toString(36).slice(2, 8)}`;
|
|
705616
|
+
state = {
|
|
705617
|
+
id,
|
|
705618
|
+
dots: Math.max(3, initialDots),
|
|
705619
|
+
done: false,
|
|
705620
|
+
timer: null
|
|
705621
|
+
};
|
|
705622
|
+
gpuRecoveryBlock = state;
|
|
705623
|
+
statusBar.registerDynamicBlock(
|
|
705624
|
+
id,
|
|
705625
|
+
(width) => buildGpuRecoveryBlockLines(state, width)
|
|
705626
|
+
);
|
|
705627
|
+
statusBar.appendDynamicBlock(id);
|
|
705628
|
+
} else {
|
|
705629
|
+
state.dots = Math.max(state.dots, initialDots, 3);
|
|
705630
|
+
statusBar.refreshDisplay();
|
|
705631
|
+
}
|
|
705632
|
+
if (!state.timer) {
|
|
705633
|
+
state.timer = setInterval(() => {
|
|
705634
|
+
if (state.done) {
|
|
705635
|
+
stopGpuRecoveryTimer(state);
|
|
705636
|
+
return;
|
|
705637
|
+
}
|
|
705638
|
+
state.dots += 1;
|
|
705639
|
+
if (statusBar?.isActive && !isNeovimActive() && !isOverlayActive()) {
|
|
705640
|
+
statusBar.refreshDisplay();
|
|
705641
|
+
}
|
|
705642
|
+
}, 1e3);
|
|
705643
|
+
state.timer.unref?.();
|
|
705644
|
+
}
|
|
705645
|
+
return true;
|
|
705646
|
+
};
|
|
705647
|
+
const finishGpuRecoveryBlock = () => {
|
|
705648
|
+
const state = gpuRecoveryBlock;
|
|
705649
|
+
if (!state) return false;
|
|
705650
|
+
state.done = true;
|
|
705651
|
+
stopGpuRecoveryTimer(state);
|
|
705652
|
+
if (!statusBar?.isActive || isNeovimActive() || isOverlayActive()) {
|
|
705653
|
+
return false;
|
|
705654
|
+
}
|
|
705655
|
+
statusBar.refreshDisplay();
|
|
705656
|
+
return true;
|
|
705657
|
+
};
|
|
705580
705658
|
runner.onEvent((event) => {
|
|
705581
705659
|
emotionEngine?.appraise(event);
|
|
705582
705660
|
switch (event.type) {
|
|
@@ -705933,7 +706011,19 @@ ${entry.fullContent}`
|
|
|
705933
706011
|
scheduleLiveShellRepaint();
|
|
705934
706012
|
break;
|
|
705935
706013
|
}
|
|
705936
|
-
|
|
706014
|
+
const statusContent = event.content ?? "";
|
|
706015
|
+
const gpuWaitingStatus = /^Waiting for free GPU\.{3,}$/.test(
|
|
706016
|
+
statusContent
|
|
706017
|
+
);
|
|
706018
|
+
const gpuResumeStatus = statusContent === "GPU Free, Resuming";
|
|
706019
|
+
if (gpuWaitingStatus) {
|
|
706020
|
+
const dotCount = statusContent.match(/\.+$/)?.[0]?.length ?? 3;
|
|
706021
|
+
if (startGpuRecoveryBlock(dotCount)) break;
|
|
706022
|
+
} else if (gpuResumeStatus && finishGpuRecoveryBlock()) {
|
|
706023
|
+
break;
|
|
706024
|
+
}
|
|
706025
|
+
const gpuRecoveryStatus = gpuWaitingStatus || gpuResumeStatus;
|
|
706026
|
+
if (!config.debug && !gpuRecoveryStatus) break;
|
|
705937
706027
|
if (isNeovimActive()) {
|
|
705938
706028
|
writeToNeovimOutput(
|
|
705939
706029
|
`\x1B[38;5;250m${event.content ?? ""}\x1B[0m\r
|
|
@@ -706514,6 +706604,7 @@ When done, either call task_complete with your answer, or use FINAL_VAR(variable
|
|
|
706514
706604
|
} catch {
|
|
706515
706605
|
}
|
|
706516
706606
|
}
|
|
706607
|
+
stopGpuRecoveryTimer();
|
|
706517
706608
|
if (backend && typeof backend.stop === "function") {
|
|
706518
706609
|
backend.stop();
|
|
706519
706610
|
}
|
|
@@ -706526,7 +706617,9 @@ When done, either call task_complete with your answer, or use FINAL_VAR(variable
|
|
|
706526
706617
|
}
|
|
706527
706618
|
}
|
|
706528
706619
|
)
|
|
706529
|
-
)
|
|
706620
|
+
).finally(() => {
|
|
706621
|
+
stopGpuRecoveryTimer();
|
|
706622
|
+
});
|
|
706530
706623
|
return {
|
|
706531
706624
|
runner,
|
|
706532
706625
|
promise,
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.312",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "omnius",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.312",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
|
@@ -704,9 +704,9 @@
|
|
|
704
704
|
}
|
|
705
705
|
},
|
|
706
706
|
"node_modules/@libp2p/http-fetch": {
|
|
707
|
-
"version": "4.0.
|
|
708
|
-
"resolved": "https://registry.npmjs.org/@libp2p/http-fetch/-/http-fetch-4.0.
|
|
709
|
-
"integrity": "sha512-
|
|
707
|
+
"version": "4.0.3",
|
|
708
|
+
"resolved": "https://registry.npmjs.org/@libp2p/http-fetch/-/http-fetch-4.0.3.tgz",
|
|
709
|
+
"integrity": "sha512-JyjwtiQirLLlGRV6gb9kgJlsP3byiDbcp0IfzG3sbKEfbc1grTEqqlFFCXSfG/bqcBT0/Hk/MGCFT5KXzINzkA==",
|
|
710
710
|
"license": "Apache-2.0 OR MIT",
|
|
711
711
|
"dependencies": {
|
|
712
712
|
"@achingbrain/http-parser-js": "^0.5.9",
|
|
@@ -716,9 +716,9 @@
|
|
|
716
716
|
}
|
|
717
717
|
},
|
|
718
718
|
"node_modules/@libp2p/http-peer-id-auth": {
|
|
719
|
-
"version": "2.0.
|
|
720
|
-
"resolved": "https://registry.npmjs.org/@libp2p/http-peer-id-auth/-/http-peer-id-auth-2.0.
|
|
721
|
-
"integrity": "sha512-
|
|
719
|
+
"version": "2.0.2",
|
|
720
|
+
"resolved": "https://registry.npmjs.org/@libp2p/http-peer-id-auth/-/http-peer-id-auth-2.0.2.tgz",
|
|
721
|
+
"integrity": "sha512-db2f81mF5Dn/AcEkRmVlSSSSbu8BCXul2zuZtDQZwpBcH5RfF4eAe3SK+GG9r1SLxxPtrVdcYWgN6ywEVzOaUw==",
|
|
722
722
|
"license": "Apache-2.0 OR MIT",
|
|
723
723
|
"dependencies": {
|
|
724
724
|
"@libp2p/crypto": "^5.1.15",
|
|
@@ -729,30 +729,54 @@
|
|
|
729
729
|
}
|
|
730
730
|
},
|
|
731
731
|
"node_modules/@libp2p/http-utils": {
|
|
732
|
-
"version": "2.0.
|
|
733
|
-
"resolved": "https://registry.npmjs.org/@libp2p/http-utils/-/http-utils-2.0.
|
|
734
|
-
"integrity": "sha512-
|
|
732
|
+
"version": "2.0.5",
|
|
733
|
+
"resolved": "https://registry.npmjs.org/@libp2p/http-utils/-/http-utils-2.0.5.tgz",
|
|
734
|
+
"integrity": "sha512-7+CYWM0MxjbVbPdCIn3SOjgxhoJpPlimLtoquIdeQC2xq4Y+d1NYqS5Ii2fbrWIwEPiJauuGxBgUs0Rz29wYGQ==",
|
|
735
735
|
"license": "Apache-2.0 OR MIT",
|
|
736
736
|
"dependencies": {
|
|
737
737
|
"@achingbrain/http-parser-js": "^0.5.9",
|
|
738
738
|
"@libp2p/interface": "^3.2.0",
|
|
739
739
|
"@libp2p/peer-id": "^6.0.6",
|
|
740
740
|
"@libp2p/utils": "^7.0.15",
|
|
741
|
-
"@multiformats/multiaddr": "^13.0.
|
|
741
|
+
"@multiformats/multiaddr": "^13.0.3",
|
|
742
742
|
"@multiformats/multiaddr-to-uri": "^12.0.0",
|
|
743
743
|
"@multiformats/uri-to-multiaddr": "^10.0.0",
|
|
744
744
|
"it-to-browser-readablestream": "^2.0.14",
|
|
745
|
-
"multiformats": "^
|
|
745
|
+
"multiformats": "^14.0.0",
|
|
746
746
|
"race-event": "^1.6.1",
|
|
747
747
|
"readable-stream": "^4.7.0",
|
|
748
|
-
"uint8arraylist": "^
|
|
748
|
+
"uint8arraylist": "^3.0.2",
|
|
749
749
|
"uint8arrays": "^5.1.0"
|
|
750
750
|
}
|
|
751
751
|
},
|
|
752
|
+
"node_modules/@libp2p/http-utils/node_modules/multiformats": {
|
|
753
|
+
"version": "14.0.0",
|
|
754
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
|
|
755
|
+
"integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
|
|
756
|
+
"license": "Apache-2.0 OR MIT"
|
|
757
|
+
},
|
|
758
|
+
"node_modules/@libp2p/http-utils/node_modules/uint8arraylist": {
|
|
759
|
+
"version": "3.0.2",
|
|
760
|
+
"resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
|
|
761
|
+
"integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
|
|
762
|
+
"license": "Apache-2.0 OR MIT",
|
|
763
|
+
"dependencies": {
|
|
764
|
+
"uint8arrays": "^6.0.0"
|
|
765
|
+
}
|
|
766
|
+
},
|
|
767
|
+
"node_modules/@libp2p/http-utils/node_modules/uint8arraylist/node_modules/uint8arrays": {
|
|
768
|
+
"version": "6.1.1",
|
|
769
|
+
"resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
|
|
770
|
+
"integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
|
|
771
|
+
"license": "Apache-2.0 OR MIT",
|
|
772
|
+
"dependencies": {
|
|
773
|
+
"multiformats": "^14.0.0"
|
|
774
|
+
}
|
|
775
|
+
},
|
|
752
776
|
"node_modules/@libp2p/http-websocket": {
|
|
753
|
-
"version": "2.0.
|
|
754
|
-
"resolved": "https://registry.npmjs.org/@libp2p/http-websocket/-/http-websocket-2.0.
|
|
755
|
-
"integrity": "sha512-
|
|
777
|
+
"version": "2.0.3",
|
|
778
|
+
"resolved": "https://registry.npmjs.org/@libp2p/http-websocket/-/http-websocket-2.0.3.tgz",
|
|
779
|
+
"integrity": "sha512-irUeCm0k1GcO4EgaRLm18O45Fk4vTLckp1T/kReQ5tgDUBpENaNWBvYnSHqKtJZXGO1329RJZ186xo2BIX2DOg==",
|
|
756
780
|
"license": "Apache-2.0 OR MIT",
|
|
757
781
|
"dependencies": {
|
|
758
782
|
"@achingbrain/http-parser-js": "^0.5.9",
|
|
@@ -760,13 +784,37 @@
|
|
|
760
784
|
"@libp2p/interface": "^3.2.0",
|
|
761
785
|
"@libp2p/interface-internal": "^3.1.0",
|
|
762
786
|
"@libp2p/utils": "^7.0.15",
|
|
763
|
-
"@multiformats/multiaddr": "^13.0.
|
|
764
|
-
"multiformats": "^
|
|
787
|
+
"@multiformats/multiaddr": "^13.0.3",
|
|
788
|
+
"multiformats": "^14.0.0",
|
|
765
789
|
"race-event": "^1.6.1",
|
|
766
|
-
"uint8arraylist": "^
|
|
790
|
+
"uint8arraylist": "^3.0.2",
|
|
767
791
|
"uint8arrays": "^5.1.0"
|
|
768
792
|
}
|
|
769
793
|
},
|
|
794
|
+
"node_modules/@libp2p/http-websocket/node_modules/multiformats": {
|
|
795
|
+
"version": "14.0.0",
|
|
796
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
|
|
797
|
+
"integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
|
|
798
|
+
"license": "Apache-2.0 OR MIT"
|
|
799
|
+
},
|
|
800
|
+
"node_modules/@libp2p/http-websocket/node_modules/uint8arraylist": {
|
|
801
|
+
"version": "3.0.2",
|
|
802
|
+
"resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
|
|
803
|
+
"integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
|
|
804
|
+
"license": "Apache-2.0 OR MIT",
|
|
805
|
+
"dependencies": {
|
|
806
|
+
"uint8arrays": "^6.0.0"
|
|
807
|
+
}
|
|
808
|
+
},
|
|
809
|
+
"node_modules/@libp2p/http-websocket/node_modules/uint8arraylist/node_modules/uint8arrays": {
|
|
810
|
+
"version": "6.1.1",
|
|
811
|
+
"resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
|
|
812
|
+
"integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
|
|
813
|
+
"license": "Apache-2.0 OR MIT",
|
|
814
|
+
"dependencies": {
|
|
815
|
+
"multiformats": "^14.0.0"
|
|
816
|
+
}
|
|
817
|
+
},
|
|
770
818
|
"node_modules/@libp2p/http/node_modules/cookie": {
|
|
771
819
|
"version": "1.1.1",
|
|
772
820
|
"resolved": "https://registry.npmjs.org/cookie/-/cookie-1.1.1.tgz",
|
|
@@ -965,19 +1013,19 @@
|
|
|
965
1013
|
}
|
|
966
1014
|
},
|
|
967
1015
|
"node_modules/@libp2p/peer-record": {
|
|
968
|
-
"version": "9.0.
|
|
969
|
-
"resolved": "https://registry.npmjs.org/@libp2p/peer-record/-/peer-record-9.0.
|
|
970
|
-
"integrity": "sha512-
|
|
1016
|
+
"version": "9.0.12",
|
|
1017
|
+
"resolved": "https://registry.npmjs.org/@libp2p/peer-record/-/peer-record-9.0.12.tgz",
|
|
1018
|
+
"integrity": "sha512-tYGHo9gSO1ZqQripsEtpzxMrWDnmCMgFe8c1TKcml8dZUBCAsM9k5js25RKb0HA1aqZ2VX54XPFazpbjVs3tow==",
|
|
971
1019
|
"license": "Apache-2.0 OR MIT",
|
|
972
1020
|
"dependencies": {
|
|
973
|
-
"@libp2p/crypto": "^5.1.
|
|
974
|
-
"@libp2p/interface": "^3.2.
|
|
975
|
-
"@libp2p/peer-id": "^6.0.
|
|
1021
|
+
"@libp2p/crypto": "^5.1.20",
|
|
1022
|
+
"@libp2p/interface": "^3.2.4",
|
|
1023
|
+
"@libp2p/peer-id": "^6.0.11",
|
|
976
1024
|
"@multiformats/multiaddr": "^13.0.3",
|
|
977
1025
|
"multiformats": "^14.0.0",
|
|
978
|
-
"protons-runtime": "^
|
|
979
|
-
"uint8-varint": "^
|
|
980
|
-
"uint8arraylist": "^
|
|
1026
|
+
"protons-runtime": "^7.0.0",
|
|
1027
|
+
"uint8-varint": "^3.0.0",
|
|
1028
|
+
"uint8arraylist": "^3.0.2",
|
|
981
1029
|
"uint8arrays": "^6.1.1"
|
|
982
1030
|
}
|
|
983
1031
|
},
|
|
@@ -988,29 +1036,33 @@
|
|
|
988
1036
|
"license": "Apache-2.0 OR MIT"
|
|
989
1037
|
},
|
|
990
1038
|
"node_modules/@libp2p/peer-record/node_modules/protons-runtime": {
|
|
991
|
-
"version": "
|
|
992
|
-
"resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-
|
|
993
|
-
"integrity": "sha512-
|
|
1039
|
+
"version": "7.0.0",
|
|
1040
|
+
"resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-7.0.0.tgz",
|
|
1041
|
+
"integrity": "sha512-r/e72006xoVND4Uvf1aIs4OQOkJaASBU3ip4DzOWAktoKAkTiOYqKoS3TYMBm8HnnYU8+h0uEzr5gIRwk/pmTg==",
|
|
994
1042
|
"license": "Apache-2.0 OR MIT",
|
|
995
1043
|
"dependencies": {
|
|
996
|
-
"uint8-varint": "^
|
|
997
|
-
"uint8arraylist": "^
|
|
998
|
-
"uint8arrays": "^
|
|
1044
|
+
"uint8-varint": "^3.0.0",
|
|
1045
|
+
"uint8arraylist": "^3.0.0",
|
|
1046
|
+
"uint8arrays": "^6.0.0"
|
|
999
1047
|
}
|
|
1000
1048
|
},
|
|
1001
|
-
"node_modules/@libp2p/peer-record/node_modules/
|
|
1002
|
-
"version": "
|
|
1003
|
-
"resolved": "https://registry.npmjs.org/
|
|
1004
|
-
"integrity": "sha512-
|
|
1005
|
-
"license": "Apache-2.0 OR MIT"
|
|
1049
|
+
"node_modules/@libp2p/peer-record/node_modules/uint8-varint": {
|
|
1050
|
+
"version": "3.0.0",
|
|
1051
|
+
"resolved": "https://registry.npmjs.org/uint8-varint/-/uint8-varint-3.0.0.tgz",
|
|
1052
|
+
"integrity": "sha512-S4DdpXBaLwKcFo7f0bWzWfHjbZ/i3QhM842qn+ZvHjxqFCfUcEB9SQNcmI69S+zMlcmIcKxsk9Iyw77S2Kxv6Q==",
|
|
1053
|
+
"license": "Apache-2.0 OR MIT",
|
|
1054
|
+
"dependencies": {
|
|
1055
|
+
"uint8arraylist": "^3.0.1",
|
|
1056
|
+
"uint8arrays": "^6.1.0"
|
|
1057
|
+
}
|
|
1006
1058
|
},
|
|
1007
|
-
"node_modules/@libp2p/peer-record/node_modules/
|
|
1008
|
-
"version": "
|
|
1009
|
-
"resolved": "https://registry.npmjs.org/
|
|
1010
|
-
"integrity": "sha512-
|
|
1059
|
+
"node_modules/@libp2p/peer-record/node_modules/uint8arraylist": {
|
|
1060
|
+
"version": "3.0.2",
|
|
1061
|
+
"resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
|
|
1062
|
+
"integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
|
|
1011
1063
|
"license": "Apache-2.0 OR MIT",
|
|
1012
1064
|
"dependencies": {
|
|
1013
|
-
"
|
|
1065
|
+
"uint8arrays": "^6.0.0"
|
|
1014
1066
|
}
|
|
1015
1067
|
},
|
|
1016
1068
|
"node_modules/@libp2p/peer-record/node_modules/uint8arrays": {
|
|
@@ -1077,34 +1129,50 @@
|
|
|
1077
1129
|
}
|
|
1078
1130
|
},
|
|
1079
1131
|
"node_modules/@libp2p/record": {
|
|
1080
|
-
"version": "4.0.
|
|
1081
|
-
"resolved": "https://registry.npmjs.org/@libp2p/record/-/record-4.0.
|
|
1082
|
-
"integrity": "sha512-
|
|
1132
|
+
"version": "4.0.14",
|
|
1133
|
+
"resolved": "https://registry.npmjs.org/@libp2p/record/-/record-4.0.14.tgz",
|
|
1134
|
+
"integrity": "sha512-YObHdE1dkAiVDPR+YHIFcCD5YMppP0lj2shnMj0L5PgLka8lnZgaY5AjiQo+DMvLFhRvNIMHyxlE9WQUbrM1wA==",
|
|
1083
1135
|
"license": "Apache-2.0 OR MIT",
|
|
1084
1136
|
"dependencies": {
|
|
1085
|
-
"protons-runtime": "^
|
|
1086
|
-
"uint8arraylist": "^
|
|
1137
|
+
"protons-runtime": "^7.0.0",
|
|
1138
|
+
"uint8arraylist": "^3.0.2",
|
|
1087
1139
|
"uint8arrays": "^6.1.1"
|
|
1088
1140
|
}
|
|
1089
1141
|
},
|
|
1142
|
+
"node_modules/@libp2p/record/node_modules/multiformats": {
|
|
1143
|
+
"version": "14.0.0",
|
|
1144
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
|
|
1145
|
+
"integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
|
|
1146
|
+
"license": "Apache-2.0 OR MIT"
|
|
1147
|
+
},
|
|
1090
1148
|
"node_modules/@libp2p/record/node_modules/protons-runtime": {
|
|
1091
|
-
"version": "
|
|
1092
|
-
"resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-
|
|
1093
|
-
"integrity": "sha512-
|
|
1149
|
+
"version": "7.0.0",
|
|
1150
|
+
"resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-7.0.0.tgz",
|
|
1151
|
+
"integrity": "sha512-r/e72006xoVND4Uvf1aIs4OQOkJaASBU3ip4DzOWAktoKAkTiOYqKoS3TYMBm8HnnYU8+h0uEzr5gIRwk/pmTg==",
|
|
1094
1152
|
"license": "Apache-2.0 OR MIT",
|
|
1095
1153
|
"dependencies": {
|
|
1096
|
-
"uint8-varint": "^
|
|
1097
|
-
"uint8arraylist": "^
|
|
1098
|
-
"uint8arrays": "^
|
|
1154
|
+
"uint8-varint": "^3.0.0",
|
|
1155
|
+
"uint8arraylist": "^3.0.0",
|
|
1156
|
+
"uint8arrays": "^6.0.0"
|
|
1099
1157
|
}
|
|
1100
1158
|
},
|
|
1101
|
-
"node_modules/@libp2p/record/node_modules/
|
|
1102
|
-
"version": "
|
|
1103
|
-
"resolved": "https://registry.npmjs.org/
|
|
1104
|
-
"integrity": "sha512-
|
|
1159
|
+
"node_modules/@libp2p/record/node_modules/uint8-varint": {
|
|
1160
|
+
"version": "3.0.0",
|
|
1161
|
+
"resolved": "https://registry.npmjs.org/uint8-varint/-/uint8-varint-3.0.0.tgz",
|
|
1162
|
+
"integrity": "sha512-S4DdpXBaLwKcFo7f0bWzWfHjbZ/i3QhM842qn+ZvHjxqFCfUcEB9SQNcmI69S+zMlcmIcKxsk9Iyw77S2Kxv6Q==",
|
|
1105
1163
|
"license": "Apache-2.0 OR MIT",
|
|
1106
1164
|
"dependencies": {
|
|
1107
|
-
"
|
|
1165
|
+
"uint8arraylist": "^3.0.1",
|
|
1166
|
+
"uint8arrays": "^6.1.0"
|
|
1167
|
+
}
|
|
1168
|
+
},
|
|
1169
|
+
"node_modules/@libp2p/record/node_modules/uint8arraylist": {
|
|
1170
|
+
"version": "3.0.2",
|
|
1171
|
+
"resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
|
|
1172
|
+
"integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
|
|
1173
|
+
"license": "Apache-2.0 OR MIT",
|
|
1174
|
+
"dependencies": {
|
|
1175
|
+
"uint8arrays": "^6.0.0"
|
|
1108
1176
|
}
|
|
1109
1177
|
},
|
|
1110
1178
|
"node_modules/@libp2p/record/node_modules/uint8arrays": {
|
|
@@ -1116,12 +1184,6 @@
|
|
|
1116
1184
|
"multiformats": "^14.0.0"
|
|
1117
1185
|
}
|
|
1118
1186
|
},
|
|
1119
|
-
"node_modules/@libp2p/record/node_modules/uint8arrays/node_modules/multiformats": {
|
|
1120
|
-
"version": "14.0.0",
|
|
1121
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
|
|
1122
|
-
"integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
|
|
1123
|
-
"license": "Apache-2.0 OR MIT"
|
|
1124
|
-
},
|
|
1125
1187
|
"node_modules/@libp2p/tcp": {
|
|
1126
1188
|
"version": "11.0.13",
|
|
1127
1189
|
"resolved": "https://registry.npmjs.org/@libp2p/tcp/-/tcp-11.0.13.tgz",
|
|
@@ -1210,27 +1272,27 @@
|
|
|
1210
1272
|
}
|
|
1211
1273
|
},
|
|
1212
1274
|
"node_modules/@libp2p/webrtc": {
|
|
1213
|
-
"version": "6.0.
|
|
1214
|
-
"resolved": "https://registry.npmjs.org/@libp2p/webrtc/-/webrtc-6.0.
|
|
1215
|
-
"integrity": "sha512
|
|
1275
|
+
"version": "6.0.25",
|
|
1276
|
+
"resolved": "https://registry.npmjs.org/@libp2p/webrtc/-/webrtc-6.0.25.tgz",
|
|
1277
|
+
"integrity": "sha512-c7QwXOjqBR+xgCIE8bv/A1NGQQMX3Sfrek+CD5n+XJur2TOoEmNjYyRX98Yt2h5YzbD083/bZK7ITZiu9xSdmQ==",
|
|
1216
1278
|
"license": "Apache-2.0 OR MIT",
|
|
1217
1279
|
"dependencies": {
|
|
1218
1280
|
"@chainsafe/is-ip": "^2.1.0",
|
|
1219
1281
|
"@chainsafe/libp2p-noise": "^17.0.0",
|
|
1220
|
-
"@libp2p/crypto": "^5.1.
|
|
1221
|
-
"@libp2p/interface": "^3.2.
|
|
1222
|
-
"@libp2p/interface-internal": "^3.1.
|
|
1223
|
-
"@libp2p/keychain": "^6.1.
|
|
1224
|
-
"@libp2p/peer-id": "^6.0.
|
|
1225
|
-
"@libp2p/utils": "^7.2.
|
|
1282
|
+
"@libp2p/crypto": "^5.1.20",
|
|
1283
|
+
"@libp2p/interface": "^3.2.4",
|
|
1284
|
+
"@libp2p/interface-internal": "^3.1.7",
|
|
1285
|
+
"@libp2p/keychain": "^6.1.3",
|
|
1286
|
+
"@libp2p/peer-id": "^6.0.11",
|
|
1287
|
+
"@libp2p/utils": "^7.2.3",
|
|
1226
1288
|
"@multiformats/multiaddr": "^13.0.3",
|
|
1227
1289
|
"@multiformats/multiaddr-matcher": "^3.0.2",
|
|
1228
1290
|
"@peculiar/webcrypto": "^1.5.0",
|
|
1229
1291
|
"@peculiar/x509": "^2.0.0",
|
|
1230
1292
|
"get-port": "^7.1.0",
|
|
1231
|
-
"interface-datastore": "^
|
|
1232
|
-
"it-length-prefixed": "^
|
|
1233
|
-
"it-protobuf-stream": "^
|
|
1293
|
+
"interface-datastore": "^10.0.1",
|
|
1294
|
+
"it-length-prefixed": "^11.0.1",
|
|
1295
|
+
"it-protobuf-stream": "^3.0.0",
|
|
1234
1296
|
"it-pushable": "^3.2.3",
|
|
1235
1297
|
"it-stream-types": "^2.0.2",
|
|
1236
1298
|
"main-event": "^1.0.1",
|
|
@@ -1241,12 +1303,12 @@
|
|
|
1241
1303
|
"p-timeout": "^7.0.0",
|
|
1242
1304
|
"p-wait-for": "^6.0.0",
|
|
1243
1305
|
"progress-events": "^1.0.1",
|
|
1244
|
-
"protons-runtime": "^
|
|
1306
|
+
"protons-runtime": "^7.0.0",
|
|
1245
1307
|
"race-signal": "^2.0.0",
|
|
1246
1308
|
"react-native-webrtc": "^124.0.6",
|
|
1247
1309
|
"reflect-metadata": "^0.2.2",
|
|
1248
|
-
"uint8-varint": "^
|
|
1249
|
-
"uint8arraylist": "^
|
|
1310
|
+
"uint8-varint": "^3.0.0",
|
|
1311
|
+
"uint8arraylist": "^3.0.2",
|
|
1250
1312
|
"uint8arrays": "^6.1.1"
|
|
1251
1313
|
}
|
|
1252
1314
|
},
|
|
@@ -1271,6 +1333,49 @@
|
|
|
1271
1333
|
"node": ">=20.0.0"
|
|
1272
1334
|
}
|
|
1273
1335
|
},
|
|
1336
|
+
"node_modules/@libp2p/webrtc/node_modules/interface-datastore": {
|
|
1337
|
+
"version": "10.0.1",
|
|
1338
|
+
"resolved": "https://registry.npmjs.org/interface-datastore/-/interface-datastore-10.0.1.tgz",
|
|
1339
|
+
"integrity": "sha512-DYMj/Og5Cz1Qwkx6/x5KRvR8SYEX7rVAv3KKCm2NzTwWSfpNAC4PahjcYbHyoZBP6zPWrhQv5n5wE+vaDdgSAg==",
|
|
1340
|
+
"license": "Apache-2.0 OR MIT",
|
|
1341
|
+
"dependencies": {
|
|
1342
|
+
"abort-error": "^1.0.2",
|
|
1343
|
+
"interface-store": "^8.0.0",
|
|
1344
|
+
"uint8arrays": "^6.1.1"
|
|
1345
|
+
}
|
|
1346
|
+
},
|
|
1347
|
+
"node_modules/@libp2p/webrtc/node_modules/interface-store": {
|
|
1348
|
+
"version": "8.0.0",
|
|
1349
|
+
"resolved": "https://registry.npmjs.org/interface-store/-/interface-store-8.0.0.tgz",
|
|
1350
|
+
"integrity": "sha512-e2+s3EEROzM+Wlas4hU3zveTUscvVMf1BOvdsJfpzFm19SoEXLVadpACjWOnM491HqGpvtfFnevyiaN8W+I6Eg==",
|
|
1351
|
+
"license": "Apache-2.0 OR MIT",
|
|
1352
|
+
"dependencies": {
|
|
1353
|
+
"abort-error": "^1.0.2"
|
|
1354
|
+
}
|
|
1355
|
+
},
|
|
1356
|
+
"node_modules/@libp2p/webrtc/node_modules/it-length-prefixed": {
|
|
1357
|
+
"version": "11.0.1",
|
|
1358
|
+
"resolved": "https://registry.npmjs.org/it-length-prefixed/-/it-length-prefixed-11.0.1.tgz",
|
|
1359
|
+
"integrity": "sha512-0Cy4RHFiL2CH060Lkigq0N37VaPg7oSylG6YjXErq+ccJFYcNEWNzxNjbqceio/sY1C+q84vZXOCE6/C0flYfQ==",
|
|
1360
|
+
"license": "Apache-2.0 OR MIT",
|
|
1361
|
+
"dependencies": {
|
|
1362
|
+
"it-reader": "^7.0.0",
|
|
1363
|
+
"it-stream-types": "^2.0.1",
|
|
1364
|
+
"uint8-varint": "^3.0.0",
|
|
1365
|
+
"uint8arraylist": "^3.0.1",
|
|
1366
|
+
"uint8arrays": "^6.1.0"
|
|
1367
|
+
}
|
|
1368
|
+
},
|
|
1369
|
+
"node_modules/@libp2p/webrtc/node_modules/it-reader": {
|
|
1370
|
+
"version": "7.0.0",
|
|
1371
|
+
"resolved": "https://registry.npmjs.org/it-reader/-/it-reader-7.0.0.tgz",
|
|
1372
|
+
"integrity": "sha512-bTWQPHH1if8N1K9XeidDjhTDm51ALbOksMa9uCZVVsQkoIPXP0XVKM88/Ynqr7HS18La/P1Kvu7C73j4rRoKWQ==",
|
|
1373
|
+
"license": "Apache-2.0 OR MIT",
|
|
1374
|
+
"dependencies": {
|
|
1375
|
+
"it-stream-types": "^2.0.1",
|
|
1376
|
+
"uint8arraylist": "^3.0.1"
|
|
1377
|
+
}
|
|
1378
|
+
},
|
|
1274
1379
|
"node_modules/@libp2p/webrtc/node_modules/multiformats": {
|
|
1275
1380
|
"version": "14.0.0",
|
|
1276
1381
|
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
|
|
@@ -1291,29 +1396,33 @@
|
|
|
1291
1396
|
}
|
|
1292
1397
|
},
|
|
1293
1398
|
"node_modules/@libp2p/webrtc/node_modules/protons-runtime": {
|
|
1294
|
-
"version": "
|
|
1295
|
-
"resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-
|
|
1296
|
-
"integrity": "sha512-
|
|
1399
|
+
"version": "7.0.0",
|
|
1400
|
+
"resolved": "https://registry.npmjs.org/protons-runtime/-/protons-runtime-7.0.0.tgz",
|
|
1401
|
+
"integrity": "sha512-r/e72006xoVND4Uvf1aIs4OQOkJaASBU3ip4DzOWAktoKAkTiOYqKoS3TYMBm8HnnYU8+h0uEzr5gIRwk/pmTg==",
|
|
1297
1402
|
"license": "Apache-2.0 OR MIT",
|
|
1298
1403
|
"dependencies": {
|
|
1299
|
-
"uint8-varint": "^
|
|
1300
|
-
"uint8arraylist": "^
|
|
1301
|
-
"uint8arrays": "^
|
|
1404
|
+
"uint8-varint": "^3.0.0",
|
|
1405
|
+
"uint8arraylist": "^3.0.0",
|
|
1406
|
+
"uint8arrays": "^6.0.0"
|
|
1302
1407
|
}
|
|
1303
1408
|
},
|
|
1304
|
-
"node_modules/@libp2p/webrtc/node_modules/
|
|
1305
|
-
"version": "
|
|
1306
|
-
"resolved": "https://registry.npmjs.org/
|
|
1307
|
-
"integrity": "sha512-
|
|
1308
|
-
"license": "Apache-2.0 OR MIT"
|
|
1409
|
+
"node_modules/@libp2p/webrtc/node_modules/uint8-varint": {
|
|
1410
|
+
"version": "3.0.0",
|
|
1411
|
+
"resolved": "https://registry.npmjs.org/uint8-varint/-/uint8-varint-3.0.0.tgz",
|
|
1412
|
+
"integrity": "sha512-S4DdpXBaLwKcFo7f0bWzWfHjbZ/i3QhM842qn+ZvHjxqFCfUcEB9SQNcmI69S+zMlcmIcKxsk9Iyw77S2Kxv6Q==",
|
|
1413
|
+
"license": "Apache-2.0 OR MIT",
|
|
1414
|
+
"dependencies": {
|
|
1415
|
+
"uint8arraylist": "^3.0.1",
|
|
1416
|
+
"uint8arrays": "^6.1.0"
|
|
1417
|
+
}
|
|
1309
1418
|
},
|
|
1310
|
-
"node_modules/@libp2p/webrtc/node_modules/
|
|
1311
|
-
"version": "
|
|
1312
|
-
"resolved": "https://registry.npmjs.org/
|
|
1313
|
-
"integrity": "sha512-
|
|
1419
|
+
"node_modules/@libp2p/webrtc/node_modules/uint8arraylist": {
|
|
1420
|
+
"version": "3.0.2",
|
|
1421
|
+
"resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
|
|
1422
|
+
"integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
|
|
1314
1423
|
"license": "Apache-2.0 OR MIT",
|
|
1315
1424
|
"dependencies": {
|
|
1316
|
-
"
|
|
1425
|
+
"uint8arrays": "^6.0.0"
|
|
1317
1426
|
}
|
|
1318
1427
|
},
|
|
1319
1428
|
"node_modules/@libp2p/webrtc/node_modules/uint8arrays": {
|
|
@@ -2301,9 +2410,9 @@
|
|
|
2301
2410
|
"license": "MIT"
|
|
2302
2411
|
},
|
|
2303
2412
|
"node_modules/axios": {
|
|
2304
|
-
"version": "1.
|
|
2305
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
2306
|
-
"integrity": "sha512-
|
|
2413
|
+
"version": "1.18.0",
|
|
2414
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.18.0.tgz",
|
|
2415
|
+
"integrity": "sha512-E32NzpYKp++W7XRe52rHiXV2ehxmh3wbdgO7MHeFM+vqxLBYHzt0ElkiImtOBxtOmyp0yoC8C6uESVV84Y2/hw==",
|
|
2307
2416
|
"license": "MIT",
|
|
2308
2417
|
"dependencies": {
|
|
2309
2418
|
"follow-redirects": "^1.16.0",
|
|
@@ -2464,9 +2573,9 @@
|
|
|
2464
2573
|
"license": "MIT"
|
|
2465
2574
|
},
|
|
2466
2575
|
"node_modules/better-sqlite3": {
|
|
2467
|
-
"version": "12.10.
|
|
2468
|
-
"resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.10.
|
|
2469
|
-
"integrity": "sha512-
|
|
2576
|
+
"version": "12.10.1",
|
|
2577
|
+
"resolved": "https://registry.npmjs.org/better-sqlite3/-/better-sqlite3-12.10.1.tgz",
|
|
2578
|
+
"integrity": "sha512-HfFtzCqnSfwB3+HroF6PSKzyh+7RfNMGPCzHFUZXRlvrPCb4P3cvxKZNN43Sr7IrkofqQZM+gIvffGpA8VvqgA==",
|
|
2470
2579
|
"hasInstallScript": true,
|
|
2471
2580
|
"license": "MIT",
|
|
2472
2581
|
"optional": true,
|
|
@@ -2557,20 +2666,20 @@
|
|
|
2557
2666
|
}
|
|
2558
2667
|
},
|
|
2559
2668
|
"node_modules/body-parser": {
|
|
2560
|
-
"version": "2.
|
|
2561
|
-
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.
|
|
2562
|
-
"integrity": "sha512-
|
|
2669
|
+
"version": "2.3.0",
|
|
2670
|
+
"resolved": "https://registry.npmjs.org/body-parser/-/body-parser-2.3.0.tgz",
|
|
2671
|
+
"integrity": "sha512-2cGmJupaNgg+QUwVLAucDuWuoMZ6EX9iHDRswZ5lsNYEmwPaRknMPCLZz07yTzVq/83p4o/wzbDZbBrTvGGTIw==",
|
|
2563
2672
|
"license": "MIT",
|
|
2564
2673
|
"dependencies": {
|
|
2565
2674
|
"bytes": "^3.1.2",
|
|
2566
|
-
"content-type": "^
|
|
2675
|
+
"content-type": "^2.0.0",
|
|
2567
2676
|
"debug": "^4.4.3",
|
|
2568
|
-
"http-errors": "^2.0.
|
|
2569
|
-
"iconv-lite": "^0.7.
|
|
2677
|
+
"http-errors": "^2.0.1",
|
|
2678
|
+
"iconv-lite": "^0.7.2",
|
|
2570
2679
|
"on-finished": "^2.4.1",
|
|
2571
|
-
"qs": "^6.
|
|
2572
|
-
"raw-body": "^3.0.
|
|
2573
|
-
"type-is": "^2.0
|
|
2680
|
+
"qs": "^6.15.2",
|
|
2681
|
+
"raw-body": "^3.0.2",
|
|
2682
|
+
"type-is": "^2.1.0"
|
|
2574
2683
|
},
|
|
2575
2684
|
"engines": {
|
|
2576
2685
|
"node": ">=18"
|
|
@@ -2580,6 +2689,19 @@
|
|
|
2580
2689
|
"url": "https://opencollective.com/express"
|
|
2581
2690
|
}
|
|
2582
2691
|
},
|
|
2692
|
+
"node_modules/body-parser/node_modules/content-type": {
|
|
2693
|
+
"version": "2.0.0",
|
|
2694
|
+
"resolved": "https://registry.npmjs.org/content-type/-/content-type-2.0.0.tgz",
|
|
2695
|
+
"integrity": "sha512-j/O/d7GcZCyNl7/hwZAb606rzqkyvaDctLmckbxLzHvFBzTJHuGEdodATcP3yIRoDrLHkIATJuvzbFlp/ki2cQ==",
|
|
2696
|
+
"license": "MIT",
|
|
2697
|
+
"engines": {
|
|
2698
|
+
"node": ">=18"
|
|
2699
|
+
},
|
|
2700
|
+
"funding": {
|
|
2701
|
+
"type": "opencollective",
|
|
2702
|
+
"url": "https://opencollective.com/express"
|
|
2703
|
+
}
|
|
2704
|
+
},
|
|
2583
2705
|
"node_modules/brace-expansion": {
|
|
2584
2706
|
"version": "5.0.6",
|
|
2585
2707
|
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.6.tgz",
|
|
@@ -4530,15 +4652,39 @@
|
|
|
4530
4652
|
}
|
|
4531
4653
|
},
|
|
4532
4654
|
"node_modules/it-protobuf-stream": {
|
|
4533
|
-
"version": "
|
|
4534
|
-
"resolved": "https://registry.npmjs.org/it-protobuf-stream/-/it-protobuf-stream-
|
|
4535
|
-
"integrity": "sha512-
|
|
4655
|
+
"version": "3.0.0",
|
|
4656
|
+
"resolved": "https://registry.npmjs.org/it-protobuf-stream/-/it-protobuf-stream-3.0.0.tgz",
|
|
4657
|
+
"integrity": "sha512-slFaik6WDN2SqVCFW1XS35HLbFwOkVolTEgBiB2hx1l1482b9yMhZp5d6PAe5OsjgXXaSE3qTTiVRk+ZFzPo4g==",
|
|
4536
4658
|
"license": "Apache-2.0 OR MIT",
|
|
4537
4659
|
"dependencies": {
|
|
4538
4660
|
"abort-error": "^1.0.2",
|
|
4539
4661
|
"it-length-prefixed-stream": "^2.0.0",
|
|
4540
4662
|
"it-stream-types": "^2.0.2",
|
|
4541
|
-
"uint8arraylist": "^
|
|
4663
|
+
"uint8arraylist": "^3.0.1"
|
|
4664
|
+
}
|
|
4665
|
+
},
|
|
4666
|
+
"node_modules/it-protobuf-stream/node_modules/multiformats": {
|
|
4667
|
+
"version": "14.0.0",
|
|
4668
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.0.tgz",
|
|
4669
|
+
"integrity": "sha512-iWK1RrAS58p2NDfeZFuSUSv3ZPewTIhsGbh/5NgeGGJwJmRljLxGtjRR3nkn+loG3zl+IrfR/W1590QnrSK+Gg==",
|
|
4670
|
+
"license": "Apache-2.0 OR MIT"
|
|
4671
|
+
},
|
|
4672
|
+
"node_modules/it-protobuf-stream/node_modules/uint8arraylist": {
|
|
4673
|
+
"version": "3.0.2",
|
|
4674
|
+
"resolved": "https://registry.npmjs.org/uint8arraylist/-/uint8arraylist-3.0.2.tgz",
|
|
4675
|
+
"integrity": "sha512-LDVoq9BQaGJzGDUovEnoX6rpKCvnY/Jbtws4ikwnBzjRbq5qBAFpBZevUEbSmMM87aO0Sp+wOZy2ZXf5yODmXQ==",
|
|
4676
|
+
"license": "Apache-2.0 OR MIT",
|
|
4677
|
+
"dependencies": {
|
|
4678
|
+
"uint8arrays": "^6.0.0"
|
|
4679
|
+
}
|
|
4680
|
+
},
|
|
4681
|
+
"node_modules/it-protobuf-stream/node_modules/uint8arrays": {
|
|
4682
|
+
"version": "6.1.1",
|
|
4683
|
+
"resolved": "https://registry.npmjs.org/uint8arrays/-/uint8arrays-6.1.1.tgz",
|
|
4684
|
+
"integrity": "sha512-iz7JN0XCSZYA111lhFG2Ui9EhFvTNekqSRHw3lvMHq+dzwWy1OQftxFQREEh4rffU0oSoXdQHsk2TiHKVm4fsA==",
|
|
4685
|
+
"license": "Apache-2.0 OR MIT",
|
|
4686
|
+
"dependencies": {
|
|
4687
|
+
"multiformats": "^14.0.0"
|
|
4542
4688
|
}
|
|
4543
4689
|
},
|
|
4544
4690
|
"node_modules/it-pushable": {
|
|
@@ -7042,9 +7188,9 @@
|
|
|
7042
7188
|
}
|
|
7043
7189
|
},
|
|
7044
7190
|
"node_modules/undici": {
|
|
7045
|
-
"version": "7.
|
|
7046
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-7.
|
|
7047
|
-
"integrity": "sha512-
|
|
7191
|
+
"version": "7.28.0",
|
|
7192
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-7.28.0.tgz",
|
|
7193
|
+
"integrity": "sha512-cRZYrTDwWznlnRiPjggAGxZXanty6M8RV1ff8Wm4LWXBp7/IG8v5DnOm74DtUBp9OONpK75YlPnIjQqX0dBDtA==",
|
|
7048
7194
|
"license": "MIT",
|
|
7049
7195
|
"engines": {
|
|
7050
7196
|
"node": ">=20.18.1"
|
package/package.json
CHANGED