omnius 1.0.595 → 1.0.596
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/README.md +12 -0
- package/assets/tray/omnius-checking.ico +0 -0
- package/assets/tray/omnius-checking.png +0 -0
- package/assets/tray/omnius-checking.svg +5 -0
- package/assets/tray/omnius-offline.ico +0 -0
- package/assets/tray/omnius-offline.png +0 -0
- package/assets/tray/omnius-offline.svg +5 -0
- package/assets/tray/omnius-online.ico +0 -0
- package/assets/tray/omnius-online.png +0 -0
- package/assets/tray/omnius-online.svg +5 -0
- package/dist/index.js +5163 -4318
- package/docs/.vitepress/config.mts +1 -0
- package/docs/DISCOVERY.json +26 -0
- package/docs/DISCOVERY.md +1 -0
- package/docs/guides/system-tray.md +85 -0
- package/docs/index.md +1 -0
- package/npm-shrinkwrap.json +123 -70
- package/package.json +4 -2
|
@@ -60,6 +60,7 @@ export default defineConfig({
|
|
|
60
60
|
{ text: "Realtime Conversation", link: "/guides/realtime" },
|
|
61
61
|
{ text: "Telegram", link: "/guides/telegram" },
|
|
62
62
|
{ text: "Media Generation", link: "/guides/media-generation" },
|
|
63
|
+
{ text: "System Tray Indicator", link: "/guides/system-tray" },
|
|
63
64
|
],
|
|
64
65
|
},
|
|
65
66
|
{
|
package/docs/DISCOVERY.json
CHANGED
|
@@ -11003,6 +11003,32 @@
|
|
|
11003
11003
|
}
|
|
11004
11004
|
]
|
|
11005
11005
|
},
|
|
11006
|
+
{
|
|
11007
|
+
"id": "guide.guides-system-tray",
|
|
11008
|
+
"kind": "guide",
|
|
11009
|
+
"title": "System Tray Indicator",
|
|
11010
|
+
"summary": "Bundled Omnius documentation artifact: docs/guides/system-tray.md.",
|
|
11011
|
+
"keywords": [
|
|
11012
|
+
"guides",
|
|
11013
|
+
"system",
|
|
11014
|
+
"tray",
|
|
11015
|
+
"md"
|
|
11016
|
+
],
|
|
11017
|
+
"maturity": "stable",
|
|
11018
|
+
"interfaces": [
|
|
11019
|
+
{
|
|
11020
|
+
"type": "file",
|
|
11021
|
+
"target": "docs/guides/system-tray.md"
|
|
11022
|
+
}
|
|
11023
|
+
],
|
|
11024
|
+
"references": [
|
|
11025
|
+
{
|
|
11026
|
+
"type": "documentation",
|
|
11027
|
+
"target": "docs/guides/system-tray.md",
|
|
11028
|
+
"relation": "canonical-artifact"
|
|
11029
|
+
}
|
|
11030
|
+
]
|
|
11031
|
+
},
|
|
11006
11032
|
{
|
|
11007
11033
|
"id": "guide.guides-telegram",
|
|
11008
11034
|
"kind": "guide",
|
package/docs/DISCOVERY.md
CHANGED
|
@@ -361,6 +361,7 @@ Daemon equivalents are `GET /v1/discovery?q=<intent>` and `GET /v1/discovery/{id
|
|
|
361
361
|
| `guide.guides-osint-research` | Categorized OSINT research | Bundled Omnius documentation artifact: docs/guides/osint-research.md. |
|
|
362
362
|
| `guide.guides-realtime` | Realtime Conversations | Bundled Omnius documentation artifact: docs/guides/realtime.md. |
|
|
363
363
|
| `guide.guides-sponsor-and-cohere` | Sponsor And COHERE Mesh | Bundled Omnius documentation artifact: docs/guides/sponsor-and-cohere.md. |
|
|
364
|
+
| `guide.guides-system-tray` | System Tray Indicator | Bundled Omnius documentation artifact: docs/guides/system-tray.md. |
|
|
364
365
|
| `guide.guides-telegram` | Telegram Bridge | Bundled Omnius documentation artifact: docs/guides/telegram.md. |
|
|
365
366
|
| `guide.guides-tools-and-web-search` | Tools And Web Search | Bundled Omnius documentation artifact: docs/guides/tools-and-web-search.md. |
|
|
366
367
|
| `guide.guides-tui-workflows` | TUI Workflows | Bundled Omnius documentation artifact: docs/guides/tui-workflows.md. |
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
# System Tray Indicator
|
|
2
|
+
|
|
3
|
+
Omnius ships a native per-login tray indicator for Linux, macOS, and Windows
|
|
4
|
+
on x64 hosts. It is separate from the REST daemon: closing the indicator never
|
|
5
|
+
stops the daemon, and the daemon remains usable in headless sessions.
|
|
6
|
+
|
|
7
|
+
## Install And Control
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
omnius tray install # register login startup and start now
|
|
11
|
+
omnius tray status # indicator, health, endpoint, registration
|
|
12
|
+
omnius tray restart
|
|
13
|
+
omnius tray stop # stop only the indicator
|
|
14
|
+
omnius tray uninstall # stop it and remove login startup
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
The indicator polls the daemon's loopback-only `GET /health` route. It does not
|
|
18
|
+
load a model or contact the configured inference backend. If the daemon uses a
|
|
19
|
+
non-default port, Omnius discovers `OMNIUS_HOST`/`OMNIUS_PORT` from the current
|
|
20
|
+
environment and, on Linux, from the installed user service. Override it
|
|
21
|
+
explicitly when needed:
|
|
22
|
+
|
|
23
|
+
```bash
|
|
24
|
+
omnius tray install --endpoint http://127.0.0.1:11535
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Non-loopback endpoints are rejected. The menu provides the current health and
|
|
28
|
+
version, dashboard and log shortcuts, service-manager-aware daemon controls,
|
|
29
|
+
login-startup control, and **Quit indicator**. Daemon stop is a separate,
|
|
30
|
+
explicit menu action.
|
|
31
|
+
|
|
32
|
+
## Linux / Ubuntu
|
|
33
|
+
|
|
34
|
+
GNOME needs a StatusNotifier/AppIndicator host. Ubuntu Desktop normally ships
|
|
35
|
+
the `gnome-shell-extension-appindicator` extension; the native helper uses
|
|
36
|
+
Ayatana AppIndicator when available. On a minimal installation:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
sudo apt install gnome-shell-extension-appindicator libayatana-appindicator3-1
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
Verify the desktop host without touching the daemon:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
gdbus call --session \
|
|
46
|
+
--dest org.kde.StatusNotifierWatcher \
|
|
47
|
+
--object-path /StatusNotifierWatcher \
|
|
48
|
+
--method org.freedesktop.DBus.Properties.Get \
|
|
49
|
+
org.kde.StatusNotifierWatcher IsStatusNotifierHostRegistered
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
Login registration is written to
|
|
53
|
+
`~/.config/autostart/omnius-tray.desktop`. Runtime PID/state stays under
|
|
54
|
+
`$XDG_RUNTIME_DIR/omnius`; logs are under
|
|
55
|
+
`$XDG_STATE_HOME/omnius` (usually `~/.local/state/omnius`). This avoids tying a
|
|
56
|
+
desktop process to the daemon's persistent `~/.omnius` data directory.
|
|
57
|
+
|
|
58
|
+
## Platform Registration
|
|
59
|
+
|
|
60
|
+
| Platform | Login registration |
|
|
61
|
+
| --- | --- |
|
|
62
|
+
| Linux | XDG autostart desktop entry |
|
|
63
|
+
| macOS | `~/Library/LaunchAgents/ai.omnius.tray.plist` |
|
|
64
|
+
| Windows | per-user Startup-folder command |
|
|
65
|
+
|
|
66
|
+
The optional native helper is exact-pinned and its platform executable is
|
|
67
|
+
checked against a release SHA-256 before execution. Omnius remains usable when
|
|
68
|
+
optional dependencies are disabled; only the tray command reports the missing
|
|
69
|
+
helper. The current helper release targets x64. Other architectures fail with
|
|
70
|
+
an explicit diagnostic instead of falling back to a headless or emulated tray.
|
|
71
|
+
|
|
72
|
+
## Troubleshooting
|
|
73
|
+
|
|
74
|
+
```bash
|
|
75
|
+
omnius tray status --json
|
|
76
|
+
tail -f ~/.local/state/omnius/tray.err.log # Linux default
|
|
77
|
+
```
|
|
78
|
+
|
|
79
|
+
- **No icon on GNOME:** confirm the AppIndicator extension is active and the
|
|
80
|
+
session watcher reports a registered host.
|
|
81
|
+
- **Offline despite a running daemon:** pass the daemon's loopback endpoint
|
|
82
|
+
with `--endpoint`; avoid `0.0.0.0` in client URLs.
|
|
83
|
+
- **No graphical session:** run `omnius tray start` from the logged-in desktop
|
|
84
|
+
session so `DISPLAY`/`WAYLAND_DISPLAY` and the session D-Bus address exist.
|
|
85
|
+
|
package/docs/index.md
CHANGED
|
@@ -27,6 +27,7 @@ current task.
|
|
|
27
27
|
- [Realtime Conversation](./guides/realtime.md)
|
|
28
28
|
- [Telegram](./guides/telegram.md)
|
|
29
29
|
- [Media Generation](./guides/media-generation.md)
|
|
30
|
+
- [System Tray Indicator](./guides/system-tray.md)
|
|
30
31
|
- [Tools And Web Search](./guides/tools-and-web-search.md)
|
|
31
32
|
- [Categorized OSINT Research](./guides/osint-research.md)
|
|
32
33
|
|
package/npm-shrinkwrap.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "omnius",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.596",
|
|
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.596",
|
|
10
10
|
"bundleDependencies": [
|
|
11
11
|
"image-to-ascii"
|
|
12
12
|
],
|
|
@@ -34,6 +34,7 @@
|
|
|
34
34
|
"moondream": "^0.2.0",
|
|
35
35
|
"neovim": "^5.4.0",
|
|
36
36
|
"node-pty": "^1.1.0",
|
|
37
|
+
"systray2": "2.1.4",
|
|
37
38
|
"transcribe-cli": "^2.0.1",
|
|
38
39
|
"viem": "2.47.4"
|
|
39
40
|
}
|
|
@@ -430,9 +431,9 @@
|
|
|
430
431
|
}
|
|
431
432
|
},
|
|
432
433
|
"node_modules/@helia/utils/node_modules/cborg": {
|
|
433
|
-
"version": "5.1.
|
|
434
|
-
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.
|
|
435
|
-
"integrity": "sha512-
|
|
434
|
+
"version": "5.1.11",
|
|
435
|
+
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.11.tgz",
|
|
436
|
+
"integrity": "sha512-oc6Pzg/gkTobxHZNgMmny+G99dOeBMbAmnGHcZWMKtolxZBIVwfi0Pj0khxEtNU8HMFdbT5sK0HmtgecDUPP0A==",
|
|
436
437
|
"license": "Apache-2.0",
|
|
437
438
|
"bin": {
|
|
438
439
|
"cborg": "lib/bin.js"
|
|
@@ -461,9 +462,9 @@
|
|
|
461
462
|
}
|
|
462
463
|
},
|
|
463
464
|
"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-
|
|
465
|
+
"version": "5.1.11",
|
|
466
|
+
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.11.tgz",
|
|
467
|
+
"integrity": "sha512-oc6Pzg/gkTobxHZNgMmny+G99dOeBMbAmnGHcZWMKtolxZBIVwfi0Pj0khxEtNU8HMFdbT5sK0HmtgecDUPP0A==",
|
|
467
468
|
"license": "Apache-2.0",
|
|
468
469
|
"bin": {
|
|
469
470
|
"cborg": "lib/bin.js"
|
|
@@ -480,9 +481,9 @@
|
|
|
480
481
|
}
|
|
481
482
|
},
|
|
482
483
|
"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-
|
|
484
|
+
"version": "5.1.11",
|
|
485
|
+
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.11.tgz",
|
|
486
|
+
"integrity": "sha512-oc6Pzg/gkTobxHZNgMmny+G99dOeBMbAmnGHcZWMKtolxZBIVwfi0Pj0khxEtNU8HMFdbT5sK0HmtgecDUPP0A==",
|
|
486
487
|
"license": "Apache-2.0",
|
|
487
488
|
"bin": {
|
|
488
489
|
"cborg": "lib/bin.js"
|
|
@@ -1077,14 +1078,14 @@
|
|
|
1077
1078
|
}
|
|
1078
1079
|
},
|
|
1079
1080
|
"node_modules/@libp2p/peer-record": {
|
|
1080
|
-
"version": "9.0.
|
|
1081
|
-
"resolved": "https://registry.npmjs.org/@libp2p/peer-record/-/peer-record-9.0.
|
|
1082
|
-
"integrity": "sha512-
|
|
1081
|
+
"version": "9.0.15",
|
|
1082
|
+
"resolved": "https://registry.npmjs.org/@libp2p/peer-record/-/peer-record-9.0.15.tgz",
|
|
1083
|
+
"integrity": "sha512-WZH9Xkdvpr6TlM6eDdE/KZJmk558jrAC/ufNHnbWXdEUxF/GTzx7RsrBgaC6cPGBTNTjzICfO6vZKR2US0Fl9Q==",
|
|
1083
1084
|
"license": "Apache-2.0 OR MIT",
|
|
1084
1085
|
"dependencies": {
|
|
1085
|
-
"@libp2p/crypto": "^5.1.
|
|
1086
|
+
"@libp2p/crypto": "^5.1.22",
|
|
1086
1087
|
"@libp2p/interface": "^3.2.5",
|
|
1087
|
-
"@libp2p/peer-id": "^6.0.
|
|
1088
|
+
"@libp2p/peer-id": "^6.0.14",
|
|
1088
1089
|
"@multiformats/multiaddr": "^13.0.3",
|
|
1089
1090
|
"multiformats": "^14.0.0",
|
|
1090
1091
|
"protons-runtime": "^7.0.0",
|
|
@@ -1358,19 +1359,19 @@
|
|
|
1358
1359
|
}
|
|
1359
1360
|
},
|
|
1360
1361
|
"node_modules/@libp2p/webrtc": {
|
|
1361
|
-
"version": "6.0.
|
|
1362
|
-
"resolved": "https://registry.npmjs.org/@libp2p/webrtc/-/webrtc-6.0.
|
|
1363
|
-
"integrity": "sha512-
|
|
1362
|
+
"version": "6.0.29",
|
|
1363
|
+
"resolved": "https://registry.npmjs.org/@libp2p/webrtc/-/webrtc-6.0.29.tgz",
|
|
1364
|
+
"integrity": "sha512-RzsDn4+d/PhHIplWu7rDWMMpZtkF6kFB+fZayUZQxsApxuL3TdNF/mBR93Y5nEY1GswmAERQzTPr0si91xTXOw==",
|
|
1364
1365
|
"license": "Apache-2.0 OR MIT",
|
|
1365
1366
|
"dependencies": {
|
|
1366
1367
|
"@chainsafe/is-ip": "^2.1.0",
|
|
1367
1368
|
"@chainsafe/libp2p-noise": "^17.0.0",
|
|
1368
|
-
"@libp2p/crypto": "^5.1.
|
|
1369
|
+
"@libp2p/crypto": "^5.1.22",
|
|
1369
1370
|
"@libp2p/interface": "^3.2.5",
|
|
1370
|
-
"@libp2p/interface-internal": "^3.1.
|
|
1371
|
-
"@libp2p/keychain": "^6.1.
|
|
1372
|
-
"@libp2p/peer-id": "^6.0.
|
|
1373
|
-
"@libp2p/utils": "^7.3.
|
|
1371
|
+
"@libp2p/interface-internal": "^3.1.11",
|
|
1372
|
+
"@libp2p/keychain": "^6.1.6",
|
|
1373
|
+
"@libp2p/peer-id": "^6.0.14",
|
|
1374
|
+
"@libp2p/utils": "^7.3.2",
|
|
1374
1375
|
"@multiformats/multiaddr": "^13.0.3",
|
|
1375
1376
|
"@multiformats/multiaddr-matcher": "^3.0.2",
|
|
1376
1377
|
"@peculiar/webcrypto": "^1.5.0",
|
|
@@ -1519,12 +1520,12 @@
|
|
|
1519
1520
|
}
|
|
1520
1521
|
},
|
|
1521
1522
|
"node_modules/@modelcontextprotocol/sdk": {
|
|
1522
|
-
"version": "1.
|
|
1523
|
-
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.
|
|
1524
|
-
"integrity": "sha512-
|
|
1523
|
+
"version": "1.30.0",
|
|
1524
|
+
"resolved": "https://registry.npmjs.org/@modelcontextprotocol/sdk/-/sdk-1.30.0.tgz",
|
|
1525
|
+
"integrity": "sha512-xKd8OIzlqNzcqcNumGAa6g+PW2kjD5vrpcKOnfldAUPP3j7lnqMPwlTXQm8gF+UwH72z0lqaRbjr9hqGz0eITA==",
|
|
1525
1526
|
"license": "MIT",
|
|
1526
1527
|
"dependencies": {
|
|
1527
|
-
"@hono/node-server": "^1.19.9",
|
|
1528
|
+
"@hono/node-server": "^1.19.9 || ^2.0.5",
|
|
1528
1529
|
"ajv": "^8.17.1",
|
|
1529
1530
|
"ajv-formats": "^3.0.1",
|
|
1530
1531
|
"content-type": "^1.0.5",
|
|
@@ -2169,9 +2170,9 @@
|
|
|
2169
2170
|
}
|
|
2170
2171
|
},
|
|
2171
2172
|
"node_modules/@types/node": {
|
|
2172
|
-
"version": "26.1.
|
|
2173
|
-
"resolved": "https://registry.npmjs.org/@types/node/-/node-26.1.
|
|
2174
|
-
"integrity": "sha512-
|
|
2173
|
+
"version": "26.1.2",
|
|
2174
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-26.1.2.tgz",
|
|
2175
|
+
"integrity": "sha512-Vu4a5UFA9rIIFJ7rB/Vaafh9lrCQszopTCx6KjFboXTGQbPNasehVR5TEiithSDGyd1DEiUByggTZsg8jukeIg==",
|
|
2175
2176
|
"license": "MIT",
|
|
2176
2177
|
"dependencies": {
|
|
2177
2178
|
"undici-types": "~8.3.0"
|
|
@@ -2490,13 +2491,13 @@
|
|
|
2490
2491
|
"license": "MIT"
|
|
2491
2492
|
},
|
|
2492
2493
|
"node_modules/axios": {
|
|
2493
|
-
"version": "1.
|
|
2494
|
-
"resolved": "https://registry.npmjs.org/axios/-/axios-1.
|
|
2495
|
-
"integrity": "sha512-
|
|
2494
|
+
"version": "1.19.0",
|
|
2495
|
+
"resolved": "https://registry.npmjs.org/axios/-/axios-1.19.0.tgz",
|
|
2496
|
+
"integrity": "sha512-ht/iuYZXEjFxLH/Hkezgd7m6JKlHHXEUSneaDz8uZe1Gj5QZtCnpyDsckvAiEnT89OEbCLmnte4R4sn7P0EKFw==",
|
|
2496
2497
|
"license": "MIT",
|
|
2497
2498
|
"dependencies": {
|
|
2498
2499
|
"follow-redirects": "^1.16.0",
|
|
2499
|
-
"form-data": "^4.0.
|
|
2500
|
+
"form-data": "^4.0.6",
|
|
2500
2501
|
"https-proxy-agent": "^5.0.1",
|
|
2501
2502
|
"proxy-from-env": "^2.1.0"
|
|
2502
2503
|
}
|
|
@@ -2541,9 +2542,9 @@
|
|
|
2541
2542
|
}
|
|
2542
2543
|
},
|
|
2543
2544
|
"node_modules/bare-fs": {
|
|
2544
|
-
"version": "4.
|
|
2545
|
-
"resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.
|
|
2546
|
-
"integrity": "sha512-
|
|
2545
|
+
"version": "4.8.0",
|
|
2546
|
+
"resolved": "https://registry.npmjs.org/bare-fs/-/bare-fs-4.8.0.tgz",
|
|
2547
|
+
"integrity": "sha512-fM+MhCvdQhZ7NV6S95a07gPSqjIYKn6mFaXfx266wN3ajZGl/+1AzH+ubkXQ0fFZvOe2nk9VHkzdYkQE5zMV3Q==",
|
|
2547
2548
|
"license": "Apache-2.0",
|
|
2548
2549
|
"optional": true,
|
|
2549
2550
|
"dependencies": {
|
|
@@ -2554,7 +2555,7 @@
|
|
|
2554
2555
|
"fast-fifo": "^1.3.2"
|
|
2555
2556
|
},
|
|
2556
2557
|
"engines": {
|
|
2557
|
-
"bare": ">=1.
|
|
2558
|
+
"bare": ">=1.28.0"
|
|
2558
2559
|
},
|
|
2559
2560
|
"peerDependencies": {
|
|
2560
2561
|
"bare-buffer": "*"
|
|
@@ -2601,9 +2602,9 @@
|
|
|
2601
2602
|
}
|
|
2602
2603
|
},
|
|
2603
2604
|
"node_modules/bare-url": {
|
|
2604
|
-
"version": "2.4.
|
|
2605
|
-
"resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.
|
|
2606
|
-
"integrity": "sha512-
|
|
2605
|
+
"version": "2.4.7",
|
|
2606
|
+
"resolved": "https://registry.npmjs.org/bare-url/-/bare-url-2.4.7.tgz",
|
|
2607
|
+
"integrity": "sha512-o8CRCiJtib+ycO3mE4A5UChtGX4dDP2XxsWVu9P+Zc3H8tcmKwNVEDoDTXmwN+uuMhfKeT7/i7Y26xS8W7ohoA==",
|
|
2607
2608
|
"license": "Apache-2.0",
|
|
2608
2609
|
"optional": true,
|
|
2609
2610
|
"dependencies": {
|
|
@@ -2770,9 +2771,9 @@
|
|
|
2770
2771
|
}
|
|
2771
2772
|
},
|
|
2772
2773
|
"node_modules/brace-expansion": {
|
|
2773
|
-
"version": "5.0.
|
|
2774
|
-
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.
|
|
2775
|
-
"integrity": "sha512-
|
|
2774
|
+
"version": "5.0.9",
|
|
2775
|
+
"resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-5.0.9.tgz",
|
|
2776
|
+
"integrity": "sha512-ScQ4IuvIEF1TMlP7Zt+vjJ//9zlPb2SDcxWxM3bk8s6t6GGdJ7KO1dCcTidOPJKePW30LE/2cT7wCyPho9/Wxg==",
|
|
2776
2777
|
"license": "MIT",
|
|
2777
2778
|
"dependencies": {
|
|
2778
2779
|
"balanced-match": "^4.0.2"
|
|
@@ -3599,9 +3600,9 @@
|
|
|
3599
3600
|
}
|
|
3600
3601
|
},
|
|
3601
3602
|
"node_modules/fast-uri": {
|
|
3602
|
-
"version": "3.1.
|
|
3603
|
-
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.
|
|
3604
|
-
"integrity": "sha512-
|
|
3603
|
+
"version": "3.1.5",
|
|
3604
|
+
"resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.1.5.tgz",
|
|
3605
|
+
"integrity": "sha512-gHwA1O9LDIcKunMKhObS/HimwtehO1nPUECKAu5TpKgaO19fcWEl4bliWe1jWxVFvIXztJjjQ4L8XQ1EU9f7Jw==",
|
|
3605
3606
|
"funding": [
|
|
3606
3607
|
{
|
|
3607
3608
|
"type": "github",
|
|
@@ -3768,6 +3769,21 @@
|
|
|
3768
3769
|
"integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==",
|
|
3769
3770
|
"license": "MIT"
|
|
3770
3771
|
},
|
|
3772
|
+
"node_modules/fs-extra": {
|
|
3773
|
+
"version": "10.1.0",
|
|
3774
|
+
"resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz",
|
|
3775
|
+
"integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==",
|
|
3776
|
+
"license": "MIT",
|
|
3777
|
+
"optional": true,
|
|
3778
|
+
"dependencies": {
|
|
3779
|
+
"graceful-fs": "^4.2.0",
|
|
3780
|
+
"jsonfile": "^6.0.1",
|
|
3781
|
+
"universalify": "^2.0.0"
|
|
3782
|
+
},
|
|
3783
|
+
"engines": {
|
|
3784
|
+
"node": ">=12"
|
|
3785
|
+
}
|
|
3786
|
+
},
|
|
3771
3787
|
"node_modules/fsevents": {
|
|
3772
3788
|
"version": "2.3.3",
|
|
3773
3789
|
"resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz",
|
|
@@ -4068,9 +4084,9 @@
|
|
|
4068
4084
|
}
|
|
4069
4085
|
},
|
|
4070
4086
|
"node_modules/hono": {
|
|
4071
|
-
"version": "4.12.
|
|
4072
|
-
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.
|
|
4073
|
-
"integrity": "sha512-
|
|
4087
|
+
"version": "4.12.34",
|
|
4088
|
+
"resolved": "https://registry.npmjs.org/hono/-/hono-4.12.34.tgz",
|
|
4089
|
+
"integrity": "sha512-GqXJqY/xJkJmuloTrnV1ZEXG3fqte+VjkUqoRNZXcrUidiUOP4fMSIHHY4tsqZBK++kVyWmt/AAfSUuy57/eSA==",
|
|
4074
4090
|
"license": "MIT",
|
|
4075
4091
|
"engines": {
|
|
4076
4092
|
"node": ">=16.9.0"
|
|
@@ -4197,9 +4213,9 @@
|
|
|
4197
4213
|
"license": "Apache-2.0 OR MIT"
|
|
4198
4214
|
},
|
|
4199
4215
|
"node_modules/ip-address": {
|
|
4200
|
-
"version": "10.
|
|
4201
|
-
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.
|
|
4202
|
-
"integrity": "sha512-
|
|
4216
|
+
"version": "10.4.0",
|
|
4217
|
+
"resolved": "https://registry.npmjs.org/ip-address/-/ip-address-10.4.0.tgz",
|
|
4218
|
+
"integrity": "sha512-oSK96Grm3aP6OrS263xVxbNDGVL7rzBtYdpGqlDG8iQdoenDoTs/nkki+DflYbAEE8Xl6o5YxhxlrKvI3nqKXQ==",
|
|
4203
4219
|
"license": "MIT",
|
|
4204
4220
|
"engines": {
|
|
4205
4221
|
"node": ">= 12"
|
|
@@ -4314,9 +4330,9 @@
|
|
|
4314
4330
|
}
|
|
4315
4331
|
},
|
|
4316
4332
|
"node_modules/ipns/node_modules/cborg": {
|
|
4317
|
-
"version": "5.1.
|
|
4318
|
-
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.
|
|
4319
|
-
"integrity": "sha512-
|
|
4333
|
+
"version": "5.1.11",
|
|
4334
|
+
"resolved": "https://registry.npmjs.org/cborg/-/cborg-5.1.11.tgz",
|
|
4335
|
+
"integrity": "sha512-oc6Pzg/gkTobxHZNgMmny+G99dOeBMbAmnGHcZWMKtolxZBIVwfi0Pj0khxEtNU8HMFdbT5sK0HmtgecDUPP0A==",
|
|
4320
4336
|
"license": "Apache-2.0",
|
|
4321
4337
|
"bin": {
|
|
4322
4338
|
"cborg": "lib/bin.js"
|
|
@@ -4874,18 +4890,18 @@
|
|
|
4874
4890
|
}
|
|
4875
4891
|
},
|
|
4876
4892
|
"node_modules/jose": {
|
|
4877
|
-
"version": "6.2.
|
|
4878
|
-
"resolved": "https://registry.npmjs.org/jose/-/jose-6.2.
|
|
4879
|
-
"integrity": "sha512-
|
|
4893
|
+
"version": "6.2.8",
|
|
4894
|
+
"resolved": "https://registry.npmjs.org/jose/-/jose-6.2.8.tgz",
|
|
4895
|
+
"integrity": "sha512-Bsdjwm3Qsd/P0jR+BHDe3LytDfY7WBq2HmCCLIwuVRHMuEC9ae7/R474GIUdF1NgCyZjzVo/A9DOiOBtXq8ZoQ==",
|
|
4880
4896
|
"license": "MIT",
|
|
4881
4897
|
"funding": {
|
|
4882
4898
|
"url": "https://github.com/sponsors/panva"
|
|
4883
4899
|
}
|
|
4884
4900
|
},
|
|
4885
4901
|
"node_modules/js-yaml": {
|
|
4886
|
-
"version": "4.3.
|
|
4887
|
-
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.
|
|
4888
|
-
"integrity": "sha512-
|
|
4902
|
+
"version": "4.3.1",
|
|
4903
|
+
"resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.3.1.tgz",
|
|
4904
|
+
"integrity": "sha512-CY6crGq313MX8GkwvB7tzgp99vjQxY1++5y10/BKN/GUfHqWaOGQMNZkBvqSzsZKWk/ijwHlWzzkLulsGHhjWQ==",
|
|
4889
4905
|
"funding": [
|
|
4890
4906
|
{
|
|
4891
4907
|
"type": "github",
|
|
@@ -4916,6 +4932,19 @@
|
|
|
4916
4932
|
"integrity": "sha512-fQhoXdcvc3V28x7C7BMs4P5+kNlgUURe2jmUT1T//oBRMDrqy1QPelJimwZGo7Hg9VPV3EQV5Bnq4hbFy2vetA==",
|
|
4917
4933
|
"license": "BSD-2-Clause"
|
|
4918
4934
|
},
|
|
4935
|
+
"node_modules/jsonfile": {
|
|
4936
|
+
"version": "6.2.1",
|
|
4937
|
+
"resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.2.1.tgz",
|
|
4938
|
+
"integrity": "sha512-zwOTdL3rFQ/lRdBnntKVOX6k5cKJwEc1HdilT71BWEu7J41gXIB2MRp+vxduPSwZJPWBxEzv4yH1wYLJGUHX4Q==",
|
|
4939
|
+
"license": "MIT",
|
|
4940
|
+
"optional": true,
|
|
4941
|
+
"dependencies": {
|
|
4942
|
+
"universalify": "^2.0.0"
|
|
4943
|
+
},
|
|
4944
|
+
"optionalDependencies": {
|
|
4945
|
+
"graceful-fs": "^4.1.6"
|
|
4946
|
+
}
|
|
4947
|
+
},
|
|
4919
4948
|
"node_modules/jsqr": {
|
|
4920
4949
|
"version": "1.4.0",
|
|
4921
4950
|
"resolved": "https://registry.npmjs.org/jsqr/-/jsqr-1.4.0.tgz",
|
|
@@ -5240,12 +5269,12 @@
|
|
|
5240
5269
|
}
|
|
5241
5270
|
},
|
|
5242
5271
|
"node_modules/minimatch": {
|
|
5243
|
-
"version": "10.2.
|
|
5244
|
-
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.
|
|
5245
|
-
"integrity": "sha512-
|
|
5272
|
+
"version": "10.2.6",
|
|
5273
|
+
"resolved": "https://registry.npmjs.org/minimatch/-/minimatch-10.2.6.tgz",
|
|
5274
|
+
"integrity": "sha512-vpLQEs+VLCr1nU0BXS07maYoFwlDAH0gngQuuttxIwutDFEMHq2blX+8vpgxDdK3J1PwjCJiep77OitTZ4Ll1A==",
|
|
5246
5275
|
"license": "BlueOak-1.0.0",
|
|
5247
5276
|
"dependencies": {
|
|
5248
|
-
"brace-expansion": "^5.0.
|
|
5277
|
+
"brace-expansion": "^5.0.8"
|
|
5249
5278
|
},
|
|
5250
5279
|
"engines": {
|
|
5251
5280
|
"node": "18 || 20 || >=22"
|
|
@@ -5483,9 +5512,9 @@
|
|
|
5483
5512
|
}
|
|
5484
5513
|
},
|
|
5485
5514
|
"node_modules/node-addon-api": {
|
|
5486
|
-
"version": "8.9.
|
|
5487
|
-
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.9.
|
|
5488
|
-
"integrity": "sha512-
|
|
5515
|
+
"version": "8.9.1",
|
|
5516
|
+
"resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-8.9.1.tgz",
|
|
5517
|
+
"integrity": "sha512-4eUQWVPCUUUiBjLnHS3cXWeC6ryoPUc0U3rP7IuzapoGbzMqd/r6KKO0clr0b+snQhsrueFEhCZDdK+LK7hxKg==",
|
|
5489
5518
|
"license": "MIT",
|
|
5490
5519
|
"optional": true,
|
|
5491
5520
|
"engines": {
|
|
@@ -7014,6 +7043,20 @@
|
|
|
7014
7043
|
"node": ">=8"
|
|
7015
7044
|
}
|
|
7016
7045
|
},
|
|
7046
|
+
"node_modules/systray2": {
|
|
7047
|
+
"version": "2.1.4",
|
|
7048
|
+
"resolved": "https://registry.npmjs.org/systray2/-/systray2-2.1.4.tgz",
|
|
7049
|
+
"integrity": "sha512-ncviZ7m2fecb2tAAx7pl4nlbnwvSyL4GIKnRUvfiJXTsHysh3chSlxVxNk7Yj8jlfF2TsBn2CjLwCfhJQkR7/w==",
|
|
7050
|
+
"license": "MIT",
|
|
7051
|
+
"optional": true,
|
|
7052
|
+
"dependencies": {
|
|
7053
|
+
"debug": "^4.3.2",
|
|
7054
|
+
"fs-extra": "^10.0.0"
|
|
7055
|
+
},
|
|
7056
|
+
"engines": {
|
|
7057
|
+
"node": ">=4.0.0"
|
|
7058
|
+
}
|
|
7059
|
+
},
|
|
7017
7060
|
"node_modules/tar-fs": {
|
|
7018
7061
|
"version": "2.1.5",
|
|
7019
7062
|
"resolved": "https://registry.npmjs.org/tar-fs/-/tar-fs-2.1.5.tgz",
|
|
@@ -7289,6 +7332,16 @@
|
|
|
7289
7332
|
"integrity": "sha512-j375ScV60dom+YkPFIfTLcOiPxkN/buHz5GobjLhixFuANaNs3C9l4GmrWqejgXWJ7BbJcFYpTEUkS1Ge8bpZQ==",
|
|
7290
7333
|
"license": "MIT"
|
|
7291
7334
|
},
|
|
7335
|
+
"node_modules/universalify": {
|
|
7336
|
+
"version": "2.0.1",
|
|
7337
|
+
"resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz",
|
|
7338
|
+
"integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==",
|
|
7339
|
+
"license": "MIT",
|
|
7340
|
+
"optional": true,
|
|
7341
|
+
"engines": {
|
|
7342
|
+
"node": ">= 10.0.0"
|
|
7343
|
+
}
|
|
7344
|
+
},
|
|
7292
7345
|
"node_modules/unlimited-timeout": {
|
|
7293
7346
|
"version": "0.1.0",
|
|
7294
7347
|
"resolved": "https://registry.npmjs.org/unlimited-timeout/-/unlimited-timeout-0.1.0.tgz",
|