omnius 1.0.591 → 1.0.592
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/.aiwg/addons/omnius-docs/README.md +15 -1
- package/.aiwg/addons/omnius-docs/manifest.json +28 -68
- package/.aiwg/addons/omnius-docs/skills/agent-failure-recovery/SKILL.md +2 -1
- package/.aiwg/addons/omnius-docs/skills/browser-interaction-validation/SKILL.md +2 -1
- package/.aiwg/addons/omnius-docs/skills/evidence-directed-delivery/SKILL.md +2 -1
- package/.aiwg/addons/omnius-docs/skills/hardware-evidence-audit/SKILL.md +2 -1
- package/.aiwg/addons/omnius-docs/skills/omnius-docs/SKILL.md +17 -7
- package/.aiwg/addons/omnius-docs/skills/omnius-inference-docs/SKILL.md +27 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-integration-docs/SKILL.md +21 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-ops-docs/SKILL.md +2 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-realtime-docs/SKILL.md +2 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-sponsor-docs/SKILL.md +2 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-telegram-docs/SKILL.md +2 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-tools-docs/SKILL.md +23 -0
- package/.aiwg/addons/omnius-docs/skills/omnius-version-compatibility-docs/SKILL.md +23 -0
- package/.aiwg/addons/omnius-docs/skills/runtime-provenance-audit/SKILL.md +2 -1
- package/.aiwg/addons/omnius-docs/skills/secrets-and-config-audit/SKILL.md +2 -1
- package/.aiwg/addons/omnius-docs/skills/test-surface-audit/SKILL.md +2 -1
- package/.aiwg/addons/omnius-docs/skills/workspace-reality-audit/SKILL.md +2 -1
- package/.aiwg/addons/omnius-rest-docs/README.md +3 -0
- package/.aiwg/addons/omnius-rest-docs/manifest.json +27 -20
- package/.aiwg/addons/omnius-rest-docs/skills/omnius-rest-docs/SKILL.md +9 -5
- package/README.md +36 -0
- package/dist/discovery.d.ts +50 -0
- package/dist/index.js +5975 -4021
- package/dist/library.d.ts +7 -0
- package/dist/library.js +950 -0
- package/dist/postinstall-daemon.cjs +18 -0
- package/dist/providerRegistry.d.ts +80 -0
- package/dist/service-version.d.ts +35 -0
- package/docs/.vitepress/config.mts +8 -0
- package/docs/DISCOVERY.json +20224 -0
- package/docs/DISCOVERY.md +648 -0
- package/docs/HANDOFF-crl-encoder-decoder-fix.md +129 -0
- package/docs/agent-memory/INDEX.md +9 -4
- package/docs/agent-memory/index.md +7 -0
- package/docs/concept-relational-language.md +869 -0
- package/docs/context-management-medium-models-proposal.md +449 -0
- package/docs/dedup-false-positive-meta-analysis.md +96 -0
- package/docs/discovery/catalog-overrides.json +724 -0
- package/docs/duplicate-calls-root-cause-analysis.md +91 -0
- package/docs/duplicate-calls-root-cause-deep.md +155 -0
- package/docs/ephemeral-skill-pack-small-context.md +57 -0
- package/docs/explorations/context-window-todo-association.md +156 -0
- package/docs/explorations/todo-association-verify.json +30 -0
- package/docs/explorations/verification-ledger.json +45 -0
- package/docs/explorations/verify-todo-association.sh +30 -0
- package/docs/flowstate.md +806 -0
- package/docs/getting-started/install.md +24 -0
- package/docs/getting-started/model-providers.md +13 -0
- package/docs/guides/agent-integration.md +87 -0
- package/docs/guides/bring-your-own-inference.md +126 -0
- package/docs/guides/tools-and-web-search.md +95 -0
- package/docs/index.md +14 -0
- package/docs/longhaul-35b-workorders.md +496 -0
- package/docs/memory-integration-analysis.md +303 -0
- package/docs/model-capability-awareness-and-multimodal-memory-root-fix.md +799 -0
- package/docs/multimodal-identity-memory-implementation.md +76 -0
- package/docs/omnius-self-edit-eval-2026-06-10.md +169 -0
- package/docs/opencode-agentic-loop-comparison.md +290 -0
- package/docs/operations/security-and-remote-access.md +2 -2
- package/docs/operations/version-compatibility.md +63 -0
- package/docs/proposals/git-progress-tracking-strategy.md +289 -0
- package/docs/proposals/opencode-modules/backendAdapter.ts +443 -0
- package/docs/proposals/opencode-modules/childSession.ts +288 -0
- package/docs/proposals/opencode-modules/compactionAgent.ts +101 -0
- package/docs/proposals/opencode-modules/orchestrator.ts +387 -0
- package/docs/proposals/opencode-modules/runner.ts +258 -0
- package/docs/reference/auth-map.md +87 -196
- package/docs/reference/configuration.md +27 -0
- package/docs/reference/rest-api.md +7 -0
- package/docs/reference/slash-commands.md +125 -2
- package/docs/research/_archived/README.md +18 -0
- package/docs/research/_archived/context_window_attention_model.py +418 -0
- package/docs/research/_archived/context_window_attention_spec.md +55 -0
- package/docs/research/_archived/context_window_attention_weights.json +68 -0
- package/docs/research/k-splanifolds.pdf +0 -0
- package/docs/research/personality-verbosity-control.md +293 -0
- package/docs/rest/INDEX.md +7 -0
- package/docs/rest/QUICKREF.md +18 -0
- package/docs/rest/REST-DOCS-MANIFEST.json +1 -0
- package/docs/rest/auth-and-scopes.md +7 -1
- package/docs/rest/endpoints/discovery.md +44 -0
- package/docs/rest/endpoints/events.md +5 -0
- package/docs/rest/endpoints/tools.md +9 -0
- package/docs/reviews/adversary-system-review.md +42 -0
- package/docs/sana-and-video-generation-integration-plan.md +712 -0
- package/docs/session-diary-llm-training-analysis.md +218 -0
- package/docs/telegram-dmn-curiosity-outreach-scaffold.md +91 -0
- package/docs/telegram-mid-horizon-download-loop-handoff.md +468 -0
- package/docs/telegram-reflection-corpus-integration-plan.md +306 -0
- package/docs/telegram-unified-tooling-architecture.md +332 -0
- package/docs/threat-model.md +868 -0
- package/docs/trajectory-grounding.md +160 -0
- package/docs/voice-flow-architecture.md +489 -0
- package/docs/work-orders/WO-AM-GAPS.md +638 -0
- package/docs/work-orders/daemon-hud-ui-overhaul.md +82 -0
- package/docs/work-orders/hermes-architecture-deltas/01-public-scrutiny-provenance-control/INDEX.md +21 -0
- package/docs/work-orders/hermes-architecture-deltas/01-public-scrutiny-provenance-control/WORKORDER.md +225 -0
- package/docs/work-orders/hermes-architecture-deltas/02-context-engine-plugin-boundary/INDEX.md +20 -0
- package/docs/work-orders/hermes-architecture-deltas/02-context-engine-plugin-boundary/WORKORDER.md +198 -0
- package/docs/work-orders/hermes-architecture-deltas/03-typed-gateway-event-stream/INDEX.md +19 -0
- package/docs/work-orders/hermes-architecture-deltas/03-typed-gateway-event-stream/WORKORDER.md +172 -0
- package/docs/work-orders/hermes-architecture-deltas/04-task-local-gateway-context/INDEX.md +19 -0
- package/docs/work-orders/hermes-architecture-deltas/04-task-local-gateway-context/WORKORDER.md +169 -0
- package/docs/work-orders/hermes-architecture-deltas/05-process-lifecycle-monitoring-notifications/INDEX.md +22 -0
- package/docs/work-orders/hermes-architecture-deltas/05-process-lifecycle-monitoring-notifications/WORKORDER.md +189 -0
- package/docs/work-orders/hermes-architecture-deltas/06-vision-evidence-routing-ladder/INDEX.md +22 -0
- package/docs/work-orders/hermes-architecture-deltas/06-vision-evidence-routing-ladder/WORKORDER.md +199 -0
- package/docs/work-orders/hermes-architecture-deltas/07-durable-multi-agent-kanban/INDEX.md +20 -0
- package/docs/work-orders/hermes-architecture-deltas/07-durable-multi-agent-kanban/WORKORDER.md +174 -0
- package/docs/work-orders/hermes-architecture-deltas/08-completion-critic-reconciliation-ledger/INDEX.md +22 -0
- package/docs/work-orders/hermes-architecture-deltas/08-completion-critic-reconciliation-ledger/WORKORDER.md +226 -0
- package/docs/work-orders/hermes-architecture-deltas/INDEX.md +38 -0
- package/docs/work-orders/omnius-context-engineering-behavior-fixes.md +281 -0
- package/docs/work-orders/telegram-dropbear-context-rca-workorder.md +202 -0
- package/docs/work-orders/world-class-memory-compiler/README.md +162 -0
- package/docs/work-orders/world-class-memory-compiler/TRACKER.md +179 -0
- package/docs/work-orders/world-class-memory-compiler/WO-01-exact-request-budget.md +79 -0
- package/docs/work-orders/world-class-memory-compiler/WO-02-typed-memory-fabric.md +65 -0
- package/docs/work-orders/world-class-memory-compiler/WO-03-dependency-working-set.md +55 -0
- package/docs/work-orders/world-class-memory-compiler/WO-04-inference-memory-compiler.md +67 -0
- package/docs/work-orders/world-class-memory-compiler/WO-05-artifact-fidelity-materialization.md +72 -0
- package/docs/work-orders/world-class-memory-compiler/WO-06-temporal-hybrid-retrieval.md +49 -0
- package/docs/work-orders/world-class-memory-compiler/WO-07-evaluation-harness.md +45 -0
- package/docs/work-orders/world-class-memory-compiler/WO-08-rollout-legacy-removal.md +45 -0
- package/docs/x402-remote-inference-plan.md +323 -0
- package/npm-shrinkwrap.json +108 -117
- package/package.json +7 -6
- package/templates/AGENTS.md +6 -0
- package/templates/OMNIUS.md +20 -0
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.592",
|
|
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.592",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
|
@@ -430,18 +430,18 @@
|
|
|
430
430
|
}
|
|
431
431
|
},
|
|
432
432
|
"node_modules/@helia/utils/node_modules/cborg": {
|
|
433
|
-
"version": "5.1.
|
|
434
|
-
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.
|
|
435
|
-
"integrity": "sha512-
|
|
433
|
+
"version": "5.1.8",
|
|
434
|
+
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.8.tgz",
|
|
435
|
+
"integrity": "sha512-enonPtLyeEF8M8GF/5NdjLHmRGslrwKR2LvkN+yFYQJw7mzt6iOoPvkVs3vcb3rUvltzL0QfvtM6FQ44o8nhSg==",
|
|
436
436
|
"license": "Apache-2.0",
|
|
437
437
|
"bin": {
|
|
438
438
|
"cborg": "lib/bin.js"
|
|
439
439
|
}
|
|
440
440
|
},
|
|
441
441
|
"node_modules/@hono/node-server": {
|
|
442
|
-
"version": "1.19.
|
|
443
|
-
"resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.
|
|
444
|
-
"integrity": "sha512-
|
|
442
|
+
"version": "1.19.15",
|
|
443
|
+
"resolved": "https://registry.npmjs.org/@hono/node-server/-/node-server-1.19.15.tgz",
|
|
444
|
+
"integrity": "sha512-Za2ai6TLdKjUvnur+eenO6nuYYipVAEhyCAdaV8IRvmU9kK8crOZUSYvIXn72E4f8fJqyAbpcJuTsYYmZp9Deg==",
|
|
445
445
|
"license": "MIT",
|
|
446
446
|
"engines": {
|
|
447
447
|
"node": ">=18.14.1"
|
|
@@ -461,9 +461,9 @@
|
|
|
461
461
|
}
|
|
462
462
|
},
|
|
463
463
|
"node_modules/@ipld/dag-cbor/node_modules/cborg": {
|
|
464
|
-
"version": "5.1.
|
|
465
|
-
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.
|
|
466
|
-
"integrity": "sha512-
|
|
464
|
+
"version": "5.1.8",
|
|
465
|
+
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.8.tgz",
|
|
466
|
+
"integrity": "sha512-enonPtLyeEF8M8GF/5NdjLHmRGslrwKR2LvkN+yFYQJw7mzt6iOoPvkVs3vcb3rUvltzL0QfvtM6FQ44o8nhSg==",
|
|
467
467
|
"license": "Apache-2.0",
|
|
468
468
|
"bin": {
|
|
469
469
|
"cborg": "lib/bin.js"
|
|
@@ -480,9 +480,9 @@
|
|
|
480
480
|
}
|
|
481
481
|
},
|
|
482
482
|
"node_modules/@ipld/dag-json/node_modules/cborg": {
|
|
483
|
-
"version": "5.1.
|
|
484
|
-
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.
|
|
485
|
-
"integrity": "sha512-
|
|
483
|
+
"version": "5.1.8",
|
|
484
|
+
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.8.tgz",
|
|
485
|
+
"integrity": "sha512-enonPtLyeEF8M8GF/5NdjLHmRGslrwKR2LvkN+yFYQJw7mzt6iOoPvkVs3vcb3rUvltzL0QfvtM6FQ44o8nhSg==",
|
|
486
486
|
"license": "Apache-2.0",
|
|
487
487
|
"bin": {
|
|
488
488
|
"cborg": "lib/bin.js"
|
|
@@ -502,9 +502,9 @@
|
|
|
502
502
|
}
|
|
503
503
|
},
|
|
504
504
|
"node_modules/@ipld/dag-pb/node_modules/multiformats": {
|
|
505
|
-
"version": "14.0.
|
|
506
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
507
|
-
"integrity": "sha512
|
|
505
|
+
"version": "14.0.5",
|
|
506
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
507
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
508
508
|
"license": "Apache-2.0 OR MIT"
|
|
509
509
|
},
|
|
510
510
|
"node_modules/@ipshipyard/libp2p-auto-tls": {
|
|
@@ -553,9 +553,9 @@
|
|
|
553
553
|
}
|
|
554
554
|
},
|
|
555
555
|
"node_modules/@ipshipyard/libp2p-auto-tls/node_modules/multiformats": {
|
|
556
|
-
"version": "14.0.
|
|
557
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
558
|
-
"integrity": "sha512
|
|
556
|
+
"version": "14.0.5",
|
|
557
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
558
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
559
559
|
"license": "Apache-2.0 OR MIT"
|
|
560
560
|
},
|
|
561
561
|
"node_modules/@ipshipyard/libp2p-auto-tls/node_modules/uint8arrays": {
|
|
@@ -731,9 +731,9 @@
|
|
|
731
731
|
}
|
|
732
732
|
},
|
|
733
733
|
"node_modules/@libp2p/http-fetch/node_modules/multiformats": {
|
|
734
|
-
"version": "14.0.
|
|
735
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
736
|
-
"integrity": "sha512
|
|
734
|
+
"version": "14.0.5",
|
|
735
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
736
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
737
737
|
"license": "Apache-2.0 OR MIT"
|
|
738
738
|
},
|
|
739
739
|
"node_modules/@libp2p/http-fetch/node_modules/uint8arrays": {
|
|
@@ -759,9 +759,9 @@
|
|
|
759
759
|
}
|
|
760
760
|
},
|
|
761
761
|
"node_modules/@libp2p/http-peer-id-auth/node_modules/multiformats": {
|
|
762
|
-
"version": "14.0.
|
|
763
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
764
|
-
"integrity": "sha512
|
|
762
|
+
"version": "14.0.5",
|
|
763
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
764
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
765
765
|
"license": "Apache-2.0 OR MIT"
|
|
766
766
|
},
|
|
767
767
|
"node_modules/@libp2p/http-peer-id-auth/node_modules/uint8-varint": {
|
|
@@ -814,9 +814,9 @@
|
|
|
814
814
|
}
|
|
815
815
|
},
|
|
816
816
|
"node_modules/@libp2p/http-utils/node_modules/multiformats": {
|
|
817
|
-
"version": "14.0.
|
|
818
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
819
|
-
"integrity": "sha512
|
|
817
|
+
"version": "14.0.5",
|
|
818
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
819
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
820
820
|
"license": "Apache-2.0 OR MIT"
|
|
821
821
|
},
|
|
822
822
|
"node_modules/@libp2p/http-utils/node_modules/uint8arraylist": {
|
|
@@ -856,9 +856,9 @@
|
|
|
856
856
|
}
|
|
857
857
|
},
|
|
858
858
|
"node_modules/@libp2p/http-websocket/node_modules/multiformats": {
|
|
859
|
-
"version": "14.0.
|
|
860
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
861
|
-
"integrity": "sha512
|
|
859
|
+
"version": "14.0.5",
|
|
860
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
861
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
862
862
|
"license": "Apache-2.0 OR MIT"
|
|
863
863
|
},
|
|
864
864
|
"node_modules/@libp2p/http-websocket/node_modules/uint8arraylist": {
|
|
@@ -1094,9 +1094,9 @@
|
|
|
1094
1094
|
}
|
|
1095
1095
|
},
|
|
1096
1096
|
"node_modules/@libp2p/peer-record/node_modules/multiformats": {
|
|
1097
|
-
"version": "14.0.
|
|
1098
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
1099
|
-
"integrity": "sha512
|
|
1097
|
+
"version": "14.0.5",
|
|
1098
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
1099
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
1100
1100
|
"license": "Apache-2.0 OR MIT"
|
|
1101
1101
|
},
|
|
1102
1102
|
"node_modules/@libp2p/peer-record/node_modules/protons-runtime": {
|
|
@@ -1204,9 +1204,9 @@
|
|
|
1204
1204
|
}
|
|
1205
1205
|
},
|
|
1206
1206
|
"node_modules/@libp2p/record/node_modules/multiformats": {
|
|
1207
|
-
"version": "14.0.
|
|
1208
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
1209
|
-
"integrity": "sha512
|
|
1207
|
+
"version": "14.0.5",
|
|
1208
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
1209
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
1210
1210
|
"license": "Apache-2.0 OR MIT"
|
|
1211
1211
|
},
|
|
1212
1212
|
"node_modules/@libp2p/record/node_modules/protons-runtime": {
|
|
@@ -1442,9 +1442,9 @@
|
|
|
1442
1442
|
}
|
|
1443
1443
|
},
|
|
1444
1444
|
"node_modules/@libp2p/webrtc/node_modules/multiformats": {
|
|
1445
|
-
"version": "14.0.
|
|
1446
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
1447
|
-
"integrity": "sha512
|
|
1445
|
+
"version": "14.0.5",
|
|
1446
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
1447
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
1448
1448
|
"license": "Apache-2.0 OR MIT"
|
|
1449
1449
|
},
|
|
1450
1450
|
"node_modules/@libp2p/webrtc/node_modules/node-datachannel": {
|
|
@@ -1583,9 +1583,9 @@
|
|
|
1583
1583
|
}
|
|
1584
1584
|
},
|
|
1585
1585
|
"node_modules/@multiformats/dns/node_modules/multiformats": {
|
|
1586
|
-
"version": "14.0.
|
|
1587
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
1588
|
-
"integrity": "sha512
|
|
1586
|
+
"version": "14.0.5",
|
|
1587
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
1588
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
1589
1589
|
"license": "Apache-2.0 OR MIT"
|
|
1590
1590
|
},
|
|
1591
1591
|
"node_modules/@multiformats/dns/node_modules/uint8arrays": {
|
|
@@ -1628,9 +1628,9 @@
|
|
|
1628
1628
|
}
|
|
1629
1629
|
},
|
|
1630
1630
|
"node_modules/@multiformats/multiaddr/node_modules/multiformats": {
|
|
1631
|
-
"version": "14.0.
|
|
1632
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
1633
|
-
"integrity": "sha512
|
|
1631
|
+
"version": "14.0.5",
|
|
1632
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
1633
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
1634
1634
|
"license": "Apache-2.0 OR MIT"
|
|
1635
1635
|
},
|
|
1636
1636
|
"node_modules/@multiformats/multiaddr/node_modules/uint8-varint": {
|
|
@@ -1671,9 +1671,9 @@
|
|
|
1671
1671
|
}
|
|
1672
1672
|
},
|
|
1673
1673
|
"node_modules/@multiformats/murmur3/node_modules/multiformats": {
|
|
1674
|
-
"version": "14.0.
|
|
1675
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
1676
|
-
"integrity": "sha512
|
|
1674
|
+
"version": "14.0.5",
|
|
1675
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
1676
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
1677
1677
|
"license": "Apache-2.0 OR MIT"
|
|
1678
1678
|
},
|
|
1679
1679
|
"node_modules/@multiformats/uri-to-multiaddr": {
|
|
@@ -2127,9 +2127,9 @@
|
|
|
2127
2127
|
}
|
|
2128
2128
|
},
|
|
2129
2129
|
"node_modules/@so-ric/colorspace/node_modules/color-name": {
|
|
2130
|
-
"version": "2.1.
|
|
2131
|
-
"resolved": "https://registry.npmjs.org/color-name/-/color-name-2.1.
|
|
2132
|
-
"integrity": "sha512-
|
|
2130
|
+
"version": "2.1.1",
|
|
2131
|
+
"resolved": "https://registry.npmjs.org/color-name/-/color-name-2.1.1.tgz",
|
|
2132
|
+
"integrity": "sha512-p2FdgwVx1a9yWBHP2wI0VgShkDpgN4kZISkxdNipGBJWpa5G6b04OINlVWCyJj0JmfvcPrgqt95E9k8yvaOJFg==",
|
|
2133
2133
|
"license": "MIT",
|
|
2134
2134
|
"optional": true,
|
|
2135
2135
|
"engines": {
|
|
@@ -2232,15 +2232,6 @@
|
|
|
2232
2232
|
"node": ">=6.5"
|
|
2233
2233
|
}
|
|
2234
2234
|
},
|
|
2235
|
-
"node_modules/abort-controller/node_modules/event-target-shim": {
|
|
2236
|
-
"version": "5.0.1",
|
|
2237
|
-
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
|
2238
|
-
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
|
|
2239
|
-
"license": "MIT",
|
|
2240
|
-
"engines": {
|
|
2241
|
-
"node": ">=6"
|
|
2242
|
-
}
|
|
2243
|
-
},
|
|
2244
2235
|
"node_modules/abort-error": {
|
|
2245
2236
|
"version": "1.0.2",
|
|
2246
2237
|
"resolved": "https://registry.npmjs.org/abort-error/-/abort-error-1.0.2.tgz",
|
|
@@ -2610,9 +2601,9 @@
|
|
|
2610
2601
|
}
|
|
2611
2602
|
},
|
|
2612
2603
|
"node_modules/bare-url": {
|
|
2613
|
-
"version": "2.4.
|
|
2614
|
-
"resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.
|
|
2615
|
-
"integrity": "sha512-
|
|
2604
|
+
"version": "2.4.6",
|
|
2605
|
+
"resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.6.tgz",
|
|
2606
|
+
"integrity": "sha512-iQxPClE07hETVpbRoX7JXX3v/ZQViCxe/SYCxylRLzdEx1xJAufPptfiOqR8tqiCtmbtMDANKWszzjLu1PMAZQ==",
|
|
2616
2607
|
"license": "Apache-2.0",
|
|
2617
2608
|
"optional": true,
|
|
2618
2609
|
"dependencies": {
|
|
@@ -2779,15 +2770,15 @@
|
|
|
2779
2770
|
}
|
|
2780
2771
|
},
|
|
2781
2772
|
"node_modules/brace-expansion": {
|
|
2782
|
-
"version": "5.0.
|
|
2783
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
2784
|
-
"integrity": "sha512-
|
|
2773
|
+
"version": "5.0.8",
|
|
2774
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.8.tgz",
|
|
2775
|
+
"integrity": "sha512-JZyDyq3D4AUifKTPOB7DELf6XsB3WdPuNxCtob1vFXPsSXhdAiHBWJ/tJ8HAc9aH84BK+5JFZLNkJKx3G9kzQg==",
|
|
2785
2776
|
"license": "MIT",
|
|
2786
2777
|
"dependencies": {
|
|
2787
2778
|
"balanced-match": "^4.0.2"
|
|
2788
2779
|
},
|
|
2789
2780
|
"engines": {
|
|
2790
|
-
"node": "
|
|
2781
|
+
"node": "20 || >=22"
|
|
2791
2782
|
}
|
|
2792
2783
|
},
|
|
2793
2784
|
"node_modules/braces": {
|
|
@@ -3453,15 +3444,12 @@
|
|
|
3453
3444
|
}
|
|
3454
3445
|
},
|
|
3455
3446
|
"node_modules/event-target-shim": {
|
|
3456
|
-
"version": "
|
|
3457
|
-
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-
|
|
3458
|
-
"integrity": "sha512-
|
|
3447
|
+
"version": "5.0.1",
|
|
3448
|
+
"resolved": "https://registry.npmjs.org/event-target-shim/-/event-target-shim-5.0.1.tgz",
|
|
3449
|
+
"integrity": "sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==",
|
|
3459
3450
|
"license": "MIT",
|
|
3460
3451
|
"engines": {
|
|
3461
|
-
"node": ">=
|
|
3462
|
-
},
|
|
3463
|
-
"funding": {
|
|
3464
|
-
"url": "https://github.com/sponsors/mysticatea"
|
|
3452
|
+
"node": ">=6"
|
|
3465
3453
|
}
|
|
3466
3454
|
},
|
|
3467
3455
|
"node_modules/eventemitter3": {
|
|
@@ -3952,9 +3940,9 @@
|
|
|
3952
3940
|
}
|
|
3953
3941
|
},
|
|
3954
3942
|
"node_modules/hamt-sharding/node_modules/multiformats": {
|
|
3955
|
-
"version": "14.0.
|
|
3956
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
3957
|
-
"integrity": "sha512
|
|
3943
|
+
"version": "14.0.5",
|
|
3944
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
3945
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
3958
3946
|
"license": "Apache-2.0 OR MIT"
|
|
3959
3947
|
},
|
|
3960
3948
|
"node_modules/hamt-sharding/node_modules/uint8arrays": {
|
|
@@ -4080,9 +4068,9 @@
|
|
|
4080
4068
|
}
|
|
4081
4069
|
},
|
|
4082
4070
|
"node_modules/hono": {
|
|
4083
|
-
"version": "4.12.
|
|
4084
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
4085
|
-
"integrity": "sha512-
|
|
4071
|
+
"version": "4.12.32",
|
|
4072
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.32.tgz",
|
|
4073
|
+
"integrity": "sha512-XcuyW9qE2kJn07PkecMOBd5Vq/hMy7mmGw+idz1yblbg9N17ijJODrvPkn7/dwL3Kulj8LcRJ69DLOWf91dRUg==",
|
|
4086
4074
|
"license": "MIT",
|
|
4087
4075
|
"engines": {
|
|
4088
4076
|
"node": ">=16.9.0"
|
|
@@ -4209,9 +4197,9 @@
|
|
|
4209
4197
|
"license": "Apache-2.0 OR MIT"
|
|
4210
4198
|
},
|
|
4211
4199
|
"node_modules/ip-address": {
|
|
4212
|
-
"version": "10.
|
|
4213
|
-
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.
|
|
4214
|
-
"integrity": "sha512
|
|
4200
|
+
"version": "10.3.1",
|
|
4201
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.3.1.tgz",
|
|
4202
|
+
"integrity": "sha512-1e9d3kb97NHJTIJDZW9rKqW2h6+dFa50Dy0fpPSMQp2ADje5gvKsXmdiK6dwY5t76TaTt5+P5N1Y/LoToIxP6g==",
|
|
4215
4203
|
"license": "MIT",
|
|
4216
4204
|
"engines": {
|
|
4217
4205
|
"node": ">= 12"
|
|
@@ -4326,9 +4314,9 @@
|
|
|
4326
4314
|
}
|
|
4327
4315
|
},
|
|
4328
4316
|
"node_modules/ipns/node_modules/cborg": {
|
|
4329
|
-
"version": "5.1.
|
|
4330
|
-
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.
|
|
4331
|
-
"integrity": "sha512-
|
|
4317
|
+
"version": "5.1.8",
|
|
4318
|
+
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.8.tgz",
|
|
4319
|
+
"integrity": "sha512-enonPtLyeEF8M8GF/5NdjLHmRGslrwKR2LvkN+yFYQJw7mzt6iOoPvkVs3vcb3rUvltzL0QfvtM6FQ44o8nhSg==",
|
|
4332
4320
|
"license": "Apache-2.0",
|
|
4333
4321
|
"bin": {
|
|
4334
4322
|
"cborg": "lib/bin.js"
|
|
@@ -4563,9 +4551,9 @@
|
|
|
4563
4551
|
}
|
|
4564
4552
|
},
|
|
4565
4553
|
"node_modules/it-byte-stream/node_modules/multiformats": {
|
|
4566
|
-
"version": "14.0.
|
|
4567
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
4568
|
-
"integrity": "sha512
|
|
4554
|
+
"version": "14.0.5",
|
|
4555
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
4556
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
4569
4557
|
"license": "Apache-2.0 OR MIT"
|
|
4570
4558
|
},
|
|
4571
4559
|
"node_modules/it-byte-stream/node_modules/uint8arraylist": {
|
|
@@ -4664,9 +4652,9 @@
|
|
|
4664
4652
|
}
|
|
4665
4653
|
},
|
|
4666
4654
|
"node_modules/it-length-prefixed-stream/node_modules/multiformats": {
|
|
4667
|
-
"version": "14.0.
|
|
4668
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
4669
|
-
"integrity": "sha512
|
|
4655
|
+
"version": "14.0.5",
|
|
4656
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
4657
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
4670
4658
|
"license": "Apache-2.0 OR MIT"
|
|
4671
4659
|
},
|
|
4672
4660
|
"node_modules/it-length-prefixed-stream/node_modules/uint8-varint": {
|
|
@@ -4776,9 +4764,9 @@
|
|
|
4776
4764
|
}
|
|
4777
4765
|
},
|
|
4778
4766
|
"node_modules/it-protobuf-stream/node_modules/multiformats": {
|
|
4779
|
-
"version": "14.0.
|
|
4780
|
-
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.
|
|
4781
|
-
"integrity": "sha512
|
|
4767
|
+
"version": "14.0.5",
|
|
4768
|
+
"resolved": "https://registry.npmjs.org/multiformats/-/multiformats-14.0.5.tgz",
|
|
4769
|
+
"integrity": "sha512-vbIm83F2yZ1pWJGS0yl0ysracIvv56LtbrIyiIQHoLdYDJOMoLfVFsXhh9DUH4SFdkdkFhucyWniihsNzVEjkQ==",
|
|
4782
4770
|
"license": "Apache-2.0 OR MIT"
|
|
4783
4771
|
},
|
|
4784
4772
|
"node_modules/it-protobuf-stream/node_modules/uint8arraylist": {
|
|
@@ -4886,9 +4874,9 @@
|
|
|
4886
4874
|
}
|
|
4887
4875
|
},
|
|
4888
4876
|
"node_modules/jose": {
|
|
4889
|
-
"version": "6.2.
|
|
4890
|
-
"resolved": "https://registry.npmjs.org/jose/-/jose-6.2.
|
|
4891
|
-
"integrity": "sha512-
|
|
4877
|
+
"version": "6.2.4",
|
|
4878
|
+
"resolved": "https://registry.npmjs.org/jose/-/jose-6.2.4.tgz",
|
|
4879
|
+
"integrity": "sha512-N8acGzVsQy6M/fjFcxtysNc4Q379TcM5dM/qKkNtsHFji88yANnXTr7BLeP75iPnFwBfQzM/jg2BZ9+HZrHCZA==",
|
|
4892
4880
|
"license": "MIT",
|
|
4893
4881
|
"funding": {
|
|
4894
4882
|
"url": "https://github.com/sponsors/panva"
|
|
@@ -5129,12 +5117,16 @@
|
|
|
5129
5117
|
}
|
|
5130
5118
|
},
|
|
5131
5119
|
"node_modules/media-typer": {
|
|
5132
|
-
"version": "1.1.
|
|
5133
|
-
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.
|
|
5134
|
-
"integrity": "sha512-
|
|
5120
|
+
"version": "1.1.1",
|
|
5121
|
+
"resolved": "https://registry.npmjs.org/media-typer/-/media-typer-1.1.1.tgz",
|
|
5122
|
+
"integrity": "sha512-yz3xRaG20c6/BOzvYoDaGtPmGscs7YivItZEEqe6GbwNfHuxu9YNmvnEkMzKldAGY4/80pRcQRZSEnhquk9XuQ==",
|
|
5135
5123
|
"license": "MIT",
|
|
5136
5124
|
"engines": {
|
|
5137
5125
|
"node": ">= 0.8"
|
|
5126
|
+
},
|
|
5127
|
+
"funding": {
|
|
5128
|
+
"type": "opencollective",
|
|
5129
|
+
"url": "https://opencollective.com/express"
|
|
5138
5130
|
}
|
|
5139
5131
|
},
|
|
5140
5132
|
"node_modules/memory-cache": {
|
|
@@ -5924,9 +5916,9 @@
|
|
|
5924
5916
|
}
|
|
5925
5917
|
},
|
|
5926
5918
|
"node_modules/p-queue": {
|
|
5927
|
-
"version": "9.3.
|
|
5928
|
-
"resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.3.
|
|
5929
|
-
"integrity": "sha512-
|
|
5919
|
+
"version": "9.3.3",
|
|
5920
|
+
"resolved": "https://registry.npmjs.org/p-queue/-/p-queue-9.3.3.tgz",
|
|
5921
|
+
"integrity": "sha512-NXAOdnEe5FsZJfT4oK84lE1Y5cFFdWlRuOo5tww8DyNMxyRXwn39fIkUtNLKppcPC+UYU/bXujNCUGDv01y7CA==",
|
|
5930
5922
|
"license": "MIT",
|
|
5931
5923
|
"dependencies": {
|
|
5932
5924
|
"eventemitter3": "^5.0.4",
|
|
@@ -6333,14 +6325,13 @@
|
|
|
6333
6325
|
}
|
|
6334
6326
|
},
|
|
6335
6327
|
"node_modules/react-native-webrtc": {
|
|
6336
|
-
"version": "124.0.
|
|
6337
|
-
"resolved": "https://registry.npmjs.org/react-native-webrtc/-/react-native-webrtc-124.0.
|
|
6338
|
-
"integrity": "sha512-
|
|
6328
|
+
"version": "124.0.8",
|
|
6329
|
+
"resolved": "https://registry.npmjs.org/react-native-webrtc/-/react-native-webrtc-124.0.8.tgz",
|
|
6330
|
+
"integrity": "sha512-uuQxvmk+mvnk5U0tr+1N42sKZqgm41fJrBA+fmCvML9J9P4roSh2So82t5RHAlu/vE9vxu5AKgivAiH61clCBg==",
|
|
6339
6331
|
"license": "MIT",
|
|
6340
6332
|
"dependencies": {
|
|
6341
6333
|
"base64-js": "1.5.1",
|
|
6342
|
-
"debug": "4.3.4"
|
|
6343
|
-
"event-target-shim": "6.0.2"
|
|
6334
|
+
"debug": "4.3.4"
|
|
6344
6335
|
},
|
|
6345
6336
|
"peerDependencies": {
|
|
6346
6337
|
"react-native": ">=0.60.0"
|
|
@@ -6565,9 +6556,9 @@
|
|
|
6565
6556
|
}
|
|
6566
6557
|
},
|
|
6567
6558
|
"node_modules/sax": {
|
|
6568
|
-
"version": "1.6.
|
|
6569
|
-
"resolved": "https://registry.npmjs.org/sax/-/sax-1.6.
|
|
6570
|
-
"integrity": "sha512-
|
|
6559
|
+
"version": "1.6.1",
|
|
6560
|
+
"resolved": "https://registry.npmjs.org/sax/-/sax-1.6.1.tgz",
|
|
6561
|
+
"integrity": "sha512-42tBVwLWnaQvW5zc4HbZrTuWccECCZfBi92FDuwtqxasH+JbPB3/FOKb1m222K42R4WxuxzzMsTswfzgtSu64Q==",
|
|
6571
6562
|
"license": "BlueOak-1.0.0",
|
|
6572
6563
|
"engines": {
|
|
6573
6564
|
"node": ">=11.0.0"
|
|
@@ -7284,9 +7275,9 @@
|
|
|
7284
7275
|
}
|
|
7285
7276
|
},
|
|
7286
7277
|
"node_modules/undici": {
|
|
7287
|
-
"version": "7.
|
|
7288
|
-
"resolved": "https://registry.npmjs.org/undici/-/undici-7.
|
|
7289
|
-
"integrity": "sha512-
|
|
7278
|
+
"version": "7.29.0",
|
|
7279
|
+
"resolved": "https://registry.npmjs.org/undici/-/undici-7.29.0.tgz",
|
|
7280
|
+
"integrity": "sha512-IDxfleLmmbSskfWSUATiN1nfn2rDuvnMOqb5CWR92iIfojA0Ud+ulOAAEQ57LPr9rWmsreUyf5lwyao+7GNNVw==",
|
|
7290
7281
|
"license": "MIT",
|
|
7291
7282
|
"engines": {
|
|
7292
7283
|
"node": ">=20.18.1"
|