ALPHA: wire is a tool to deploy nixos systems wire.althaea.zone/
2
fork

Configure Feed

Select the types of activity you want to include in your feed.

a few docs fixes and changes

+389 -1420
+1 -1
.gitignore
··· 5 5 .pre-commit-config.yaml 6 6 *.qcow2 7 7 mutants*/ 8 - *.db* 8 + *.db 9 9 run.json 10 10 stats.md 11 11 .nixos-test-history
+2 -9
doc/.vitepress/config.ts
··· 1 1 import { defineConfig } from "vitepress"; 2 2 import pkg from "../package.json"; 3 3 import markdownItFootnote from "markdown-it-footnote"; 4 - import { withMermaid } from "vitepress-plugin-mermaid"; 5 4 import { 6 5 groupIconMdPlugin, 7 6 groupIconVitePlugin, ··· 11 10 const MODE = (process.env.MODE ?? "unstable") as "unstable" | "stable"; 12 11 13 12 // https://vitepress.dev/reference/site-config 14 - export default withMermaid( 15 - defineConfig({ 13 + export default defineConfig({ 16 14 title: MODE === "stable" ? "wire" : "wire (unstable!)", 17 15 description: "a tool to deploy nixos systems", 18 16 themeConfig: { ··· 168 166 }, 169 167 }, 170 168 vite: { 171 - // https://github.com/mermaid-js/mermaid/issues/4320#issuecomment-1653050539 172 - optimizeDeps: { 173 - include: ["mermaid"], 174 - }, 175 169 plugins: [ 176 170 groupIconVitePlugin({ 177 171 customIcon: { ··· 189 183 }), 190 184 ], 191 185 }, 192 - }), 193 - ); 186 + })
+1 -34
doc/guides/apply.md
··· 4 4 description: How to apply a node with wire. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Apply your Config 8 8 9 9 {{ $frontmatter.description }} 10 10 ··· 28 28 29 29 Which will `switch` to each node's NixOS system in your hive and push 30 30 secrets (the equivalent to `nixos-rebuild`'s `nixos-rebuild switch`). 31 - 32 - ::: details Apply Goal Flowchart 33 - The following is an illustrative flowchart of how each step in the apply execution is ran. 34 - 35 - Depending on the specific goal certain steps will not run, for example the 36 - Switch to Configuration step will never run if the goal is `build`. 37 - 38 - ```mermaid 39 - flowchart TD 40 - A(Test Connection) --> |IP / Hostname| B(Push Keys) 41 - 42 - C(Evaluate NixOS System) 43 - 44 - B --> C 45 - C -->|.drv Path| local 46 - C -->|.drv Path| remote 47 - 48 - subgraph remote[Remote Node] 49 - D(Push To Node) 50 - D --> E(Build NixOS System) 51 - E -->|Built System| H(Push To Node) 52 - end 53 - 54 - subgraph local[Local Node] 55 - direction RL 56 - G(Build NixOS System Locally) 57 - end 58 - 59 - G --> F(Switch To Configuration) 60 - H --> F 61 - ``` 62 - 63 - ::: 64 31 65 32 ## Apply goals 66 33
+1 -1
doc/guides/flakes/nixos-rebuild.md
··· 4 4 description: How to combine outputs.nixosConfigurations with outputs.wire 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Keep Using nixos-rebuild 8 8 9 9 {{ $frontmatter.description }} 10 10
+1 -1
doc/guides/flakes/overview.md
··· 4 4 description: How to output a hive from a flake. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Use Flakes 8 8 9 9 {{ $frontmatter.description }} 10 10
+1 -1
doc/guides/hive-default.md
··· 4 4 description: Deduplicate options with default node configuration. 5 5 --- 6 6 7 - # `{{ $frontmatter.title }}` 7 + # `Use hive.default` 8 8 9 9 {{ $frontmatter.description }} 10 10
+8 -4
doc/guides/installation.md
··· 4 4 description: How to install wire tool. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Install wire 8 8 9 9 {{ $frontmatter.description }} 10 10 ··· 19 19 20 20 ## Binary Cache 21 21 22 - You should enable the [garnix binary cache](https://garnix.io/docs/caching). 22 + You should enable the [garnix binary cache](https://garnix.io/docs/caching) 23 + *before* continuing otherwise you will be compiling from source: 24 + 25 + ::: code-group 26 + <<< @/snippets/tutorial/cache.conf [nix.conf] 27 + <<< @/snippets/tutorial/cache.nix [configuration.nix] 28 + ::: 23 29 24 30 ## Installation through flakes 25 31 ··· 50 56 51 57 Then, use this pinned version of wire for both your `hive.nix` and `shell.nix`: 52 58 53 - ::: code-group 54 59 <<< @/snippets/guides/installation/shell.nix{8} [shell.nix] 55 60 <<< @/snippets/guides/installation/hive.nix [hive.nix] 56 - :::
+1 -1
doc/guides/keys.md
··· 4 4 description: Manage keys, secrets, files, and other out-of-store paths with wire Tool. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Manage Secrets 8 8 9 9 {{ $frontmatter.description }} 10 10
+1 -1
doc/guides/migrate.md
··· 4 4 description: How-to migrate from other tools to wire tool. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Migrate to wire 8 8 9 9 {{ $frontmatter.description }} 10 10
+14 -15
doc/guides/non-root-user.md
··· 4 4 description: Deploy without root permissions with wire. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Use a non-root user 8 8 9 9 {{ $frontmatter.description }} 10 10 11 11 ## Deploying User Requirements 12 12 13 - If your selected deployment user does not fit the following requirements, the 14 - deployment commands will likely fail with an error: 13 + For deployment commands to succeed, the user defined in `deployment.target.user` must meet the following criteria: 14 + 15 + 1. Essential Config 16 + 17 + - **Sudo Access**: The user must be `wheel` (A sudo user) 18 + - **SSH Key Authentication**: The user must be authenticated through SSH keys, 19 + and password-based SSH auth is not supported. 20 + 21 + **Why?** Wire can prompt you for your `sudo` password, but not your `ssh` password. 15 22 16 - | `deployment.target.user` has/is... | ❌ Will Not Work | 🟧 Deploys w/o Keys | ✅ Deploys w/ Keys | 17 - | :--------------------------------- | :--------------: | :-----------------: | :----------------: | 18 - | In `wheel` (Sudo User) | No | Yes | Yes | 19 - | Has Non-Interactive SSH Auth | - | Yes | Yes | 20 - | A Trusted User | - | No | Yes | 23 + 2. Deploying with Secrets 21 24 22 - When using a non-trusted user, `wire apply` will likely fail if the deploying user is 23 - not trusted, see [Manage Secrets - Prerequisites](/guides/keys.html#prerequisites). 25 + - **Trusted User**: The user must be listed in the `trusted-users` nix config. 24 26 25 - - "In `wheel`" here meaning a sudoer, whether it be `root` or not. 26 - - "Non-interactive SSH Auth" here most likely meaning an SSH key, anything that 27 - does not require keyboard input in the terminal. 27 + If the user is not trusted, wire will fail in the key deployment stage. 28 28 29 - To put it simply, wire can currently prompt for your password on `sudo`, 30 - but not `ssh`. 29 + For setting up a trusted user, see [Manage Secrets - Prerequisites](/guides/keys.html#prerequisites). 31 30 32 31 ## Changing the user 33 32
+1 -1
doc/guides/parallelism.md
··· 4 4 description: How to use parallelism with wire Tool. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Use Parallelism 8 8 9 9 {{ $frontmatter.description }} 10 10
+1 -1
doc/guides/targeting.md
··· 4 4 description: Tags, nodes, and how to target them with wire Tool. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Target Nodes 8 8 9 9 {{ $frontmatter.description }} 10 10
+21 -25
doc/guides/writing-a-hive.md
··· 3 3 title: Write a Hive 4 4 --- 5 5 6 - # {{ $frontmatter.title }} 6 + # Write a Hive 7 7 8 8 ## Anatomy of a Hive 9 9 ··· 11 11 following layout: 12 12 13 13 ```nix 14 - # `meta` 15 - # type: attrset 16 - meta = { 17 - # `meta.nixpkgs` tells wire how to get nixpkgs. 18 - # type: "A path or an instance of nixpkgs." 19 - nixpkgs = <nixpkgs>; 20 - 21 - # `meta.specialArgs` are specialArgs to pass to each node & default 14 + wire.makeHive { 15 + # `meta` 22 16 # type: attrset 23 - specialArgs = { }; 17 + meta = { 18 + # `meta.nixpkgs` tells wire how to get nixpkgs. 19 + # type: "A path or an instance of nixpkgs." 20 + nixpkgs = <nixpkgs>; 24 21 25 - # `meta.nodeNixpkgs` lets you override nixpkgs per-node. 26 - # type: attrset of "A path or an instance of nixpkgs." 27 - nodeNixpkgs: = { }; 28 - }; 22 + # `meta.specialArgs` are specialArgs to pass to each node & default 23 + # type: attrset 24 + specialArgs = { }; 29 25 30 - # `defaults` is a module applied to every node 31 - # type: NixOS Module 32 - defaults = { ... }: { }; 26 + # `meta.nodeNixpkgs` lets you override nixpkgs per-node. 27 + # type: attrset of "A path or an instance of nixpkgs." 28 + nodeNixpkgs: = { }; 29 + }; 33 30 34 - # Any other attributes are nodes. 31 + # `defaults` is a module applied to every node 32 + # type: NixOS Module 33 + defaults = { ... }: { }; 34 + 35 + # Any other attributes are nodes. 36 + <node-name> = { ... }: { }; 37 + } 35 38 ``` 36 39 37 40 ### `<node-name>` ··· 52 55 53 56 At the top level of a hive wire reserves the `defaults` attribute. It's applied 54 57 to every node. 55 - 56 - ::: warning 57 - 58 - `defaults` must not rely on modules that a node imports, but a 59 - node may rely on modules that default imports. 60 - 61 - ::: 62 58 63 59 ## Example 64 60
+1 -3
doc/package.json
··· 3 3 "version": "1.0.0-beta.0", 4 4 "type": "module", 5 5 "devDependencies": { 6 - "mermaid": "^11.12.1", 7 6 "vitepress": "^1.6.4", 8 - "vitepress-plugin-mermaid": "^2.0.17", 9 - "vue": "^3.5.22" 7 + "vue": "^3.5.25" 10 8 }, 11 9 "scripts": { 12 10 "dev": "vitepress dev .",
+1 -1
doc/package.nix
··· 52 52 pnpmDeps = pnpm.fetchDeps { 53 53 inherit (finalAttrs) pname version src; 54 54 fetcherVersion = 1; 55 - hash = "sha256-S2DCxkBeQ4qz4af53k8mqU223PCSGSVFh0l0qoo7uVw="; 55 + hash = "sha256-oh1r2YizJtHjEgWaHYEBeD4w0ts0oUGK98z4T/kj4d8="; 56 56 }; 57 57 patchPhase = '' 58 58 cat ${optionsDoc} >> ./reference/module.md
+302 -1298
doc/pnpm-lock.yaml
··· 16 16 version: 1.1.15(vue@3.5.25) 17 17 vitepress-plugin-group-icons: 18 18 specifier: ^1.6.5 19 - version: 1.6.5(vite@5.4.20) 19 + version: 1.6.5(vite@5.4.21) 20 20 devDependencies: 21 - mermaid: 22 - specifier: ^11.12.1 23 - version: 11.12.2 24 21 vitepress: 25 22 specifier: ^1.6.4 26 - version: 1.6.4(@algolia/client-search@5.40.0)(postcss@8.5.6)(search-insights@2.17.3) 27 - vitepress-plugin-mermaid: 28 - specifier: ^2.0.17 29 - version: 2.0.17(mermaid@11.12.2)(vitepress@1.6.4(@algolia/client-search@5.40.0)(postcss@8.5.6)(search-insights@2.17.3)) 23 + version: 1.6.4(@algolia/client-search@5.46.0)(postcss@8.5.6)(search-insights@2.17.3) 30 24 vue: 31 - specifier: ^3.5.22 25 + specifier: ^3.5.25 32 26 version: 3.5.25 33 27 34 28 packages: 35 29 36 - '@algolia/abtesting@1.6.0': 37 - resolution: {integrity: sha512-c4M/Z/KWkEG+RHpZsWKDTTlApXu3fe4vlABNcpankWBhdMe4oPZ/r4JxEr2zKUP6K+BT66tnp8UbHmgOd/vvqQ==} 30 + '@algolia/abtesting@1.12.0': 31 + resolution: {integrity: sha512-EfW0bfxjPs+C7ANkJDw2TATntfBKsFiy7APh+KO0pQ8A6HYa5I0NjFuCGCXWfzzzLXNZta3QUl3n5Kmm6aJo9Q==} 38 32 engines: {node: '>= 14.0.0'} 39 33 40 34 '@algolia/autocomplete-core@1.17.7': ··· 57 51 '@algolia/client-search': '>= 4.9.1 < 6' 58 52 algoliasearch: '>= 4.9.1 < 6' 59 53 60 - '@algolia/client-abtesting@5.40.0': 61 - resolution: {integrity: sha512-qegVlgHtmiS8m9nEsuKUVhlw1FHsIshtt5nhNnA6EYz3g+tm9+xkVZZMzkrMLPP7kpoheHJZAwz2MYnHtwFa9A==} 54 + '@algolia/client-abtesting@5.46.0': 55 + resolution: {integrity: sha512-eG5xV8rujK4ZIHXrRshvv9O13NmU/k42Rnd3w43iKH5RaQ2zWuZO6Q7XjaoJjAFVCsJWqRbXzbYyPGrbF3wGNg==} 62 56 engines: {node: '>= 14.0.0'} 63 57 64 - '@algolia/client-analytics@5.40.0': 65 - resolution: {integrity: sha512-Dw2c+6KGkw7mucnnxPyyMsIGEY8+hqv6oB+viYB612OMM3l8aNaWToBZMnNvXsyP+fArwq7XGR+k3boPZyV53A==} 58 + '@algolia/client-analytics@5.46.0': 59 + resolution: {integrity: sha512-AYh2uL8IUW9eZrbbT+wZElyb7QkkeV3US2NEKY7doqMlyPWE8lErNfkVN1NvZdVcY4/SVic5GDbeDz2ft8YIiQ==} 66 60 engines: {node: '>= 14.0.0'} 67 61 68 - '@algolia/client-common@5.40.0': 69 - resolution: {integrity: sha512-dbE4+MJIDsTghG3hUYWBq7THhaAmqNqvW9g2vzwPf5edU4IRmuYpKtY3MMotes8/wdTasWG07XoaVhplJBlvdg==} 62 + '@algolia/client-common@5.46.0': 63 + resolution: {integrity: sha512-0emZTaYOeI9WzJi0TcNd2k3SxiN6DZfdWc2x2gHt855Jl9jPUOzfVTL6gTvCCrOlT4McvpDGg5nGO+9doEjjig==} 70 64 engines: {node: '>= 14.0.0'} 71 65 72 - '@algolia/client-insights@5.40.0': 73 - resolution: {integrity: sha512-SH6zlROyGUCDDWg71DlCnbbZ/zEHYPZC8k901EAaBVhvY43Ju8Wa6LAcMPC4tahcDBgkG2poBy8nJZXvwEWAlQ==} 66 + '@algolia/client-insights@5.46.0': 67 + resolution: {integrity: sha512-wrBJ8fE+M0TDG1As4DDmwPn2TXajrvmvAN72Qwpuv8e2JOKNohF7+JxBoF70ZLlvP1A1EiH8DBu+JpfhBbNphQ==} 74 68 engines: {node: '>= 14.0.0'} 75 69 76 - '@algolia/client-personalization@5.40.0': 77 - resolution: {integrity: sha512-EgHjJEEf7CbUL9gJHI1ULmAtAFeym2cFNSAi1uwHelWgLPcnLjYW2opruPxigOV7NcetkGu+t2pcWOWmZFuvKQ==} 70 + '@algolia/client-personalization@5.46.0': 71 + resolution: {integrity: sha512-LnkeX4p0ENt0DoftDJJDzQQJig/sFQmD1eQifl/iSjhUOGUIKC/7VTeXRcKtQB78naS8njUAwpzFvxy1CDDXDQ==} 78 72 engines: {node: '>= 14.0.0'} 79 73 80 - '@algolia/client-query-suggestions@5.40.0': 81 - resolution: {integrity: sha512-HvE1jtCag95DR41tDh7cGwrMk4X0aQXPOBIhZRmsBPolMeqRJz0kvfVw8VCKvA1uuoAkjFfTG0X0IZED+rKXoA==} 74 + '@algolia/client-query-suggestions@5.46.0': 75 + resolution: {integrity: sha512-aF9tc4ex/smypXw+W3lBPB1jjKoaGHpZezTqofvDOI/oK1dR2sdTpFpK2Ru+7IRzYgwtRqHF3znmTlyoNs9dpA==} 82 76 engines: {node: '>= 14.0.0'} 83 77 84 - '@algolia/client-search@5.40.0': 85 - resolution: {integrity: sha512-nlr/MMgoLNUHcfWC5Ns2ENrzKx9x51orPc6wJ8Ignv1DsrUmKm0LUih+Tj3J+kxYofzqQIQRU495d4xn3ozMbg==} 78 + '@algolia/client-search@5.46.0': 79 + resolution: {integrity: sha512-22SHEEVNjZfFWkFks3P6HilkR3rS7a6GjnCIqR22Zz4HNxdfT0FG+RE7efTcFVfLUkTTMQQybvaUcwMrHXYa7Q==} 86 80 engines: {node: '>= 14.0.0'} 87 81 88 - '@algolia/ingestion@1.40.0': 89 - resolution: {integrity: sha512-OfHnhE+P0f+p3i90Kmshf9Epgesw5oPV1IEUOY4Mq1HV7cQk16gvklVN1EaY/T9sVavl+Vc3g4ojlfpIwZFA4g==} 82 + '@algolia/ingestion@1.46.0': 83 + resolution: {integrity: sha512-2LT0/Z+/sFwEpZLH6V17WSZ81JX2uPjgvv5eNlxgU7rPyup4NXXfuMbtCJ+6uc4RO/LQpEJd3Li59ke3wtyAsA==} 90 84 engines: {node: '>= 14.0.0'} 91 85 92 - '@algolia/monitoring@1.40.0': 93 - resolution: {integrity: sha512-SWANV32PTKhBYvwKozeWP9HOnVabOixAuPdFFGoqtysTkkwutrtGI/rrh80tvG+BnQAmZX0vUmD/RqFZVfr/Yg==} 86 + '@algolia/monitoring@1.46.0': 87 + resolution: {integrity: sha512-uivZ9wSWZ8mz2ZU0dgDvQwvVZV8XBv6lYBXf8UtkQF3u7WeTqBPeU8ZoeTyLpf0jAXCYOvc1mAVmK0xPLuEwOQ==} 94 88 engines: {node: '>= 14.0.0'} 95 89 96 - '@algolia/recommend@5.40.0': 97 - resolution: {integrity: sha512-1Qxy9I5bSb3mrhPk809DllMa561zl5hLsMR6YhIqNkqQ0OyXXQokvJ2zApSxvd39veRZZnhN+oGe+XNoNwLgkw==} 90 + '@algolia/recommend@5.46.0': 91 + resolution: {integrity: sha512-O2BB8DuySuddgOAbhyH4jsGbL+KyDGpzJRtkDZkv091OMomqIA78emhhMhX9d/nIRrzS1wNLWB/ix7Hb2eV5rg==} 98 92 engines: {node: '>= 14.0.0'} 99 93 100 - '@algolia/requester-browser-xhr@5.40.0': 101 - resolution: {integrity: sha512-MGt94rdHfkrVjfN/KwUfWcnaeohYbWGINrPs96f5J7ZyRYpVLF+VtPQ2FmcddFvK4gnKXSu8BAi81hiIhUpm3w==} 94 + '@algolia/requester-browser-xhr@5.46.0': 95 + resolution: {integrity: sha512-eW6xyHCyYrJD0Kjk9Mz33gQ40LfWiEA51JJTVfJy3yeoRSw/NXhAL81Pljpa0qslTs6+LO/5DYPZddct6HvISQ==} 102 96 engines: {node: '>= 14.0.0'} 103 97 104 - '@algolia/requester-fetch@5.40.0': 105 - resolution: {integrity: sha512-wXQ05JZZ10Dr642QVAkAZ4ZZlU+lh5r6dIBGmm9WElz+1EaQ6BNYtEOTV6pkXuFYsZpeJA89JpDOiwBOP9j24w==} 98 + '@algolia/requester-fetch@5.46.0': 99 + resolution: {integrity: sha512-Vn2+TukMGHy4PIxmdvP667tN/MhS7MPT8EEvEhS6JyFLPx3weLcxSa1F9gVvrfHWCUJhLWoMVJVB2PT8YfRGcw==} 106 100 engines: {node: '>= 14.0.0'} 107 101 108 - '@algolia/requester-node-http@5.40.0': 109 - resolution: {integrity: sha512-5qCRoySnzpbQVg2IPLGFCm4LF75pToxI5tdjOYgUMNL/um91aJ4dH3SVdBEuFlVsalxl8mh3bWPgkUmv6NpJiQ==} 102 + '@algolia/requester-node-http@5.46.0': 103 + resolution: {integrity: sha512-xaqXyna5yBZ+r1SJ9my/DM6vfTqJg9FJgVydRJ0lnO+D5NhqGW/qaRG/iBGKr/d4fho34el6WakV7BqJvrl/HQ==} 110 104 engines: {node: '>= 14.0.0'} 111 105 112 106 '@antfu/install-pkg@1.1.0': 113 107 resolution: {integrity: sha512-MGQsmw10ZyI+EJo45CdSER4zEb+p31LpDAFp2Z3gkSd1yqVZGi0Ebx++YTEMonJy4oChEMLsxZ64j8FH6sSqtQ==} 114 108 115 - '@antfu/utils@9.3.0': 116 - resolution: {integrity: sha512-9hFT4RauhcUzqOE4f1+frMKLZrgNog5b06I7VmZQV1BkvwvqrbC8EBZf3L1eEL2AKb6rNKjER0sEvJiSP1FXEA==} 117 - 118 109 '@babel/helper-string-parser@7.27.1': 119 110 resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 120 111 engines: {node: '>=6.9.0'} ··· 131 122 '@babel/types@7.28.5': 132 123 resolution: {integrity: sha512-qQ5m48eI/MFLQ5PxQj4PFaprjyCTLI37ElWMmNs0K8Lk3dVeOdNpB3ks8jc7yM5CDmVC73eMVk/trk3fgmrUpA==} 133 124 engines: {node: '>=6.9.0'} 134 - 135 - '@braintree/sanitize-url@6.0.4': 136 - resolution: {integrity: sha512-s3jaWicZd0pkP0jf5ysyHUI/RE7MHos6qlToFcGWXVp+ykHOy77OUMrfbgJ9it2C5bow7OIQwYYaHjk9XlBQ2A==} 137 - 138 - '@braintree/sanitize-url@7.1.1': 139 - resolution: {integrity: sha512-i1L7noDNxtFyL5DmZafWy1wRVhGehQmzZaz1HiN5e7iylJMSZR7ekOV7NsIqa5qBldlLrsKv4HbgFUVlQrz8Mw==} 140 - 141 - '@chevrotain/cst-dts-gen@11.0.3': 142 - resolution: {integrity: sha512-BvIKpRLeS/8UbfxXxgC33xOumsacaeCKAjAeLyOn7Pcp95HiRbrpl14S+9vaZLolnbssPIUuiUd8IvgkRyt6NQ==} 143 - 144 - '@chevrotain/gast@11.0.3': 145 - resolution: {integrity: sha512-+qNfcoNk70PyS/uxmj3li5NiECO+2YKZZQMbmjTqRI3Qchu8Hig/Q9vgkHpI3alNjr7M+a2St5pw5w5F6NL5/Q==} 146 - 147 - '@chevrotain/regexp-to-ast@11.0.3': 148 - resolution: {integrity: sha512-1fMHaBZxLFvWI067AVbGJav1eRY7N8DDvYCTwGBiE/ytKBgP8azTdgyrKyWZ9Mfh09eHWb5PgTSO8wi7U824RA==} 149 - 150 - '@chevrotain/types@11.0.3': 151 - resolution: {integrity: sha512-gsiM3G8b58kZC2HaWR50gu6Y1440cHiJ+i3JUvcp/35JchYejb2+5MVeJK0iKThYpAa/P2PYFV4hoi44HD+aHQ==} 152 - 153 - '@chevrotain/utils@11.0.3': 154 - resolution: {integrity: sha512-YslZMgtJUyuMbZ+aKvfF3x1f5liK4mWNxghFRv7jqRR9C3R3fAOGTTKvxXDa2Y1s9zSbcpuO0cAxDYsc9SrXoQ==} 155 125 156 126 '@docsearch/css@3.8.2': 157 127 resolution: {integrity: sha512-y05ayQFyUmCXze79+56v/4HpycYF3uFqB78pLPrSV5ZKAlDuIAAJNhaRi8tTdRNXh05yxX/TyNnzD6LwSM89vQ==} ··· 319 289 peerDependencies: 320 290 vue: '>=3.2.0' 321 291 322 - '@iconify-json/logos@1.2.9': 323 - resolution: {integrity: sha512-G6VCdFnwZcrT6Eveq3m43oJfLw/CX8plwFcE+2jgv3fiGB64pTmnU7Yd1MNZ/eA+/Re2iEDhuCfSNOWTHwwK8w==} 292 + '@iconify-json/logos@1.2.10': 293 + resolution: {integrity: sha512-qxaXKJ6fu8jzTMPQdHtNxlfx6tBQ0jXRbHZIYy5Ilh8Lx9US9FsAdzZWUR8MXV8PnWTKGDFO4ZZee9VwerCyMA==} 324 294 325 - '@iconify-json/simple-icons@1.2.54': 326 - resolution: {integrity: sha512-OQQYl8yC5j3QklZOYnK31QYe5h47IhyCoxSLd53f0e0nA4dgi8VOZS30SgSAbsecQ+S0xlGJMjXIHTIqZ+ML3w==} 295 + '@iconify-json/simple-icons@1.2.63': 296 + resolution: {integrity: sha512-xZl2UWCwE58VlqZ+pDPmaUhE2tq8MVSTJRr4/9nzzHlDdjJ0Ud1VxNXPrwTSgESKY29iCQw3S0r2nJTSNNngHw==} 327 297 328 - '@iconify-json/vscode-icons@1.2.33': 329 - resolution: {integrity: sha512-2lKDybGxXXeLeeqeNT2YVDYXs5va0YMHf06w3GemS22j/0CCTpKwKDK7REaibsCq3bRV8qX0RJDM4AbREE7L+w==} 298 + '@iconify-json/vscode-icons@1.2.37': 299 + resolution: {integrity: sha512-HLRdU6nZks4N8x3JYz6j+b3+hcUCvYvlTLwGzM3xyXfTJyDSA2cAdWcEXfoA4hQMJGA+zCDSPAWFelFptH5Kbw==} 330 300 331 301 '@iconify/types@2.0.0': 332 302 resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==} 333 - 334 - '@iconify/utils@3.0.2': 335 - resolution: {integrity: sha512-EfJS0rLfVuRuJRn4psJHtK2A9TqVnkxPpHY6lYHiB9+8eSuudsxbwMiavocG45ujOo6FJ+CIRlRnlOGinzkaGQ==} 336 303 337 304 '@iconify/utils@3.1.0': 338 305 resolution: {integrity: sha512-Zlzem1ZXhI1iHeeERabLNzBHdOa4VhQbqAcOQaMKuTuyZCpwKbC2R4Dd0Zo3g9EAc+Y4fiarO8HIHRAth7+skw==} ··· 346 313 '@lit/reactive-element@2.1.1': 347 314 resolution: {integrity: sha512-N+dm5PAYdQ8e6UlywyyrgI2t++wFGXfHx+dSJ1oBrg6FAxUj40jId++EaRm80MKX5JnlH1sBsyZ5h0bcZKemCg==} 348 315 349 - '@mermaid-js/mermaid-mindmap@9.3.0': 350 - resolution: {integrity: sha512-IhtYSVBBRYviH1Ehu8gk69pMDF8DSRqXBRDMWrEfHoaMruHeaP2DXA3PBnuwsMaCdPQhlUUcy/7DBLAEIXvCAw==} 351 - 352 - '@mermaid-js/parser@0.6.3': 353 - resolution: {integrity: sha512-lnjOhe7zyHjc+If7yT4zoedx2vo4sHaTmtkl1+or8BRTnCtDmcTpAjpzDSfCZrshM5bCoz0GyidzadJAH1xobA==} 354 - 355 - '@rollup/rollup-android-arm-eabi@4.52.4': 356 - resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==} 316 + '@rollup/rollup-android-arm-eabi@4.53.5': 317 + resolution: {integrity: sha512-iDGS/h7D8t7tvZ1t6+WPK04KD0MwzLZrG0se1hzBjSi5fyxlsiggoJHwh18PCFNn7tG43OWb6pdZ6Y+rMlmyNQ==} 357 318 cpu: [arm] 358 319 os: [android] 359 320 360 - '@rollup/rollup-android-arm64@4.52.4': 361 - resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==} 321 + '@rollup/rollup-android-arm64@4.53.5': 322 + resolution: {integrity: sha512-wrSAViWvZHBMMlWk6EJhvg8/rjxzyEhEdgfMMjREHEq11EtJ6IP6yfcCH57YAEca2Oe3FNCE9DSTgU70EIGmVw==} 362 323 cpu: [arm64] 363 324 os: [android] 364 325 365 - '@rollup/rollup-darwin-arm64@4.52.4': 366 - resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==} 326 + '@rollup/rollup-darwin-arm64@4.53.5': 327 + resolution: {integrity: sha512-S87zZPBmRO6u1YXQLwpveZm4JfPpAa6oHBX7/ghSiGH3rz/KDgAu1rKdGutV+WUI6tKDMbaBJomhnT30Y2t4VQ==} 367 328 cpu: [arm64] 368 329 os: [darwin] 369 330 370 - '@rollup/rollup-darwin-x64@4.52.4': 371 - resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==} 331 + '@rollup/rollup-darwin-x64@4.53.5': 332 + resolution: {integrity: sha512-YTbnsAaHo6VrAczISxgpTva8EkfQus0VPEVJCEaboHtZRIb6h6j0BNxRBOwnDciFTZLDPW5r+ZBmhL/+YpTZgA==} 372 333 cpu: [x64] 373 334 os: [darwin] 374 335 375 - '@rollup/rollup-freebsd-arm64@4.52.4': 376 - resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==} 336 + '@rollup/rollup-freebsd-arm64@4.53.5': 337 + resolution: {integrity: sha512-1T8eY2J8rKJWzaznV7zedfdhD1BqVs1iqILhmHDq/bqCUZsrMt+j8VCTHhP0vdfbHK3e1IQ7VYx3jlKqwlf+vw==} 377 338 cpu: [arm64] 378 339 os: [freebsd] 379 340 380 - '@rollup/rollup-freebsd-x64@4.52.4': 381 - resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==} 341 + '@rollup/rollup-freebsd-x64@4.53.5': 342 + resolution: {integrity: sha512-sHTiuXyBJApxRn+VFMaw1U+Qsz4kcNlxQ742snICYPrY+DDL8/ZbaC4DVIB7vgZmp3jiDaKA0WpBdP0aqPJoBQ==} 382 343 cpu: [x64] 383 344 os: [freebsd] 384 345 385 - '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 386 - resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==} 346 + '@rollup/rollup-linux-arm-gnueabihf@4.53.5': 347 + resolution: {integrity: sha512-dV3T9MyAf0w8zPVLVBptVlzaXxka6xg1f16VAQmjg+4KMSTWDvhimI/Y6mp8oHwNrmnmVl9XxJ/w/mO4uIQONA==} 387 348 cpu: [arm] 388 349 os: [linux] 389 350 390 - '@rollup/rollup-linux-arm-musleabihf@4.52.4': 391 - resolution: {integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==} 351 + '@rollup/rollup-linux-arm-musleabihf@4.53.5': 352 + resolution: {integrity: sha512-wIGYC1x/hyjP+KAu9+ewDI+fi5XSNiUi9Bvg6KGAh2TsNMA3tSEs+Sh6jJ/r4BV/bx/CyWu2ue9kDnIdRyafcQ==} 392 353 cpu: [arm] 393 354 os: [linux] 394 355 395 - '@rollup/rollup-linux-arm64-gnu@4.52.4': 396 - resolution: {integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==} 356 + '@rollup/rollup-linux-arm64-gnu@4.53.5': 357 + resolution: {integrity: sha512-Y+qVA0D9d0y2FRNiG9oM3Hut/DgODZbU9I8pLLPwAsU0tUKZ49cyV1tzmB/qRbSzGvY8lpgGkJuMyuhH7Ma+Vg==} 397 358 cpu: [arm64] 398 359 os: [linux] 399 360 400 - '@rollup/rollup-linux-arm64-musl@4.52.4': 401 - resolution: {integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==} 361 + '@rollup/rollup-linux-arm64-musl@4.53.5': 362 + resolution: {integrity: sha512-juaC4bEgJsyFVfqhtGLz8mbopaWD+WeSOYr5E16y+1of6KQjc0BpwZLuxkClqY1i8sco+MdyoXPNiCkQou09+g==} 402 363 cpu: [arm64] 403 364 os: [linux] 404 365 405 - '@rollup/rollup-linux-loong64-gnu@4.52.4': 406 - resolution: {integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==} 366 + '@rollup/rollup-linux-loong64-gnu@4.53.5': 367 + resolution: {integrity: sha512-rIEC0hZ17A42iXtHX+EPJVL/CakHo+tT7W0pbzdAGuWOt2jxDFh7A/lRhsNHBcqL4T36+UiAgwO8pbmn3dE8wA==} 407 368 cpu: [loong64] 408 369 os: [linux] 409 370 410 - '@rollup/rollup-linux-ppc64-gnu@4.52.4': 411 - resolution: {integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==} 371 + '@rollup/rollup-linux-ppc64-gnu@4.53.5': 372 + resolution: {integrity: sha512-T7l409NhUE552RcAOcmJHj3xyZ2h7vMWzcwQI0hvn5tqHh3oSoclf9WgTl+0QqffWFG8MEVZZP1/OBglKZx52Q==} 412 373 cpu: [ppc64] 413 374 os: [linux] 414 375 415 - '@rollup/rollup-linux-riscv64-gnu@4.52.4': 416 - resolution: {integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==} 376 + '@rollup/rollup-linux-riscv64-gnu@4.53.5': 377 + resolution: {integrity: sha512-7OK5/GhxbnrMcxIFoYfhV/TkknarkYC1hqUw1wU2xUN3TVRLNT5FmBv4KkheSG2xZ6IEbRAhTooTV2+R5Tk0lQ==} 417 378 cpu: [riscv64] 418 379 os: [linux] 419 380 420 - '@rollup/rollup-linux-riscv64-musl@4.52.4': 421 - resolution: {integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==} 381 + '@rollup/rollup-linux-riscv64-musl@4.53.5': 382 + resolution: {integrity: sha512-GwuDBE/PsXaTa76lO5eLJTyr2k8QkPipAyOrs4V/KJufHCZBJ495VCGJol35grx9xryk4V+2zd3Ri+3v7NPh+w==} 422 383 cpu: [riscv64] 423 384 os: [linux] 424 385 425 - '@rollup/rollup-linux-s390x-gnu@4.52.4': 426 - resolution: {integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==} 386 + '@rollup/rollup-linux-s390x-gnu@4.53.5': 387 + resolution: {integrity: sha512-IAE1Ziyr1qNfnmiQLHBURAD+eh/zH1pIeJjeShleII7Vj8kyEm2PF77o+lf3WTHDpNJcu4IXJxNO0Zluro8bOw==} 427 388 cpu: [s390x] 428 389 os: [linux] 429 390 430 - '@rollup/rollup-linux-x64-gnu@4.52.4': 431 - resolution: {integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==} 391 + '@rollup/rollup-linux-x64-gnu@4.53.5': 392 + resolution: {integrity: sha512-Pg6E+oP7GvZ4XwgRJBuSXZjcqpIW3yCBhK4BcsANvb47qMvAbCjR6E+1a/U2WXz1JJxp9/4Dno3/iSJLcm5auw==} 432 393 cpu: [x64] 433 394 os: [linux] 434 395 435 - '@rollup/rollup-linux-x64-musl@4.52.4': 436 - resolution: {integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==} 396 + '@rollup/rollup-linux-x64-musl@4.53.5': 397 + resolution: {integrity: sha512-txGtluxDKTxaMDzUduGP0wdfng24y1rygUMnmlUJ88fzCCULCLn7oE5kb2+tRB+MWq1QDZT6ObT5RrR8HFRKqg==} 437 398 cpu: [x64] 438 399 os: [linux] 439 400 440 - '@rollup/rollup-openharmony-arm64@4.52.4': 441 - resolution: {integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==} 401 + '@rollup/rollup-openharmony-arm64@4.53.5': 402 + resolution: {integrity: sha512-3DFiLPnTxiOQV993fMc+KO8zXHTcIjgaInrqlG8zDp1TlhYl6WgrOHuJkJQ6M8zHEcntSJsUp1XFZSY8C1DYbg==} 442 403 cpu: [arm64] 443 404 os: [openharmony] 444 405 445 - '@rollup/rollup-win32-arm64-msvc@4.52.4': 446 - resolution: {integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==} 406 + '@rollup/rollup-win32-arm64-msvc@4.53.5': 407 + resolution: {integrity: sha512-nggc/wPpNTgjGg75hu+Q/3i32R00Lq1B6N1DO7MCU340MRKL3WZJMjA9U4K4gzy3dkZPXm9E1Nc81FItBVGRlA==} 447 408 cpu: [arm64] 448 409 os: [win32] 449 410 450 - '@rollup/rollup-win32-ia32-msvc@4.52.4': 451 - resolution: {integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==} 411 + '@rollup/rollup-win32-ia32-msvc@4.53.5': 412 + resolution: {integrity: sha512-U/54pTbdQpPLBdEzCT6NBCFAfSZMvmjr0twhnD9f4EIvlm9wy3jjQ38yQj1AGznrNO65EWQMgm/QUjuIVrYF9w==} 452 413 cpu: [ia32] 453 414 os: [win32] 454 415 455 - '@rollup/rollup-win32-x64-gnu@4.52.4': 456 - resolution: {integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==} 416 + '@rollup/rollup-win32-x64-gnu@4.53.5': 417 + resolution: {integrity: sha512-2NqKgZSuLH9SXBBV2dWNRCZmocgSOx8OJSdpRaEcRlIfX8YrKxUT6z0F1NpvDVhOsl190UFTRh2F2WDWWCYp3A==} 457 418 cpu: [x64] 458 419 os: [win32] 459 420 460 - '@rollup/rollup-win32-x64-msvc@4.52.4': 461 - resolution: {integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==} 421 + '@rollup/rollup-win32-x64-msvc@4.53.5': 422 + resolution: {integrity: sha512-JRpZUhCfhZ4keB5v0fe02gQJy05GqboPOaxvjugW04RLSYYoB/9t2lx2u/tMs/Na/1NXfY8QYjgRljRpN+MjTQ==} 462 423 cpu: [x64] 463 424 os: [win32] 464 425 ··· 486 447 '@shikijs/vscode-textmate@10.0.2': 487 448 resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} 488 449 489 - '@types/d3-array@3.2.2': 490 - resolution: {integrity: sha512-hOLWVbm7uRza0BYXpIIW5pxfrKe0W+D5lrFiAEYR+pb6w3N2SwSMaJbXdUfSEv+dT4MfHBLtn5js0LAWaO6otw==} 491 - 492 - '@types/d3-axis@3.0.6': 493 - resolution: {integrity: sha512-pYeijfZuBd87T0hGn0FO1vQ/cgLk6E1ALJjfkC0oJ8cbwkZl3TpgS8bVBLZN+2jjGgg38epgxb2zmoGtSfvgMw==} 494 - 495 - '@types/d3-brush@3.0.6': 496 - resolution: {integrity: sha512-nH60IZNNxEcrh6L1ZSMNA28rj27ut/2ZmI3r96Zd+1jrZD++zD3LsMIjWlvg4AYrHn/Pqz4CF3veCxGjtbqt7A==} 497 - 498 - '@types/d3-chord@3.0.6': 499 - resolution: {integrity: sha512-LFYWWd8nwfwEmTZG9PfQxd17HbNPksHBiJHaKuY1XeqscXacsS2tyoo6OdRsjf+NQYeB6XrNL3a25E3gH69lcg==} 500 - 501 - '@types/d3-color@3.1.3': 502 - resolution: {integrity: sha512-iO90scth9WAbmgv7ogoq57O9YpKmFBbmoEoCHDB2xMBY0+/KVrqAaCDyCE16dUspeOvIxFFRI+0sEtqDqy2b4A==} 503 - 504 - '@types/d3-contour@3.0.6': 505 - resolution: {integrity: sha512-BjzLgXGnCWjUSYGfH1cpdo41/hgdWETu4YxpezoztawmqsvCeep+8QGfiY6YbDvfgHz/DkjeIkkZVJavB4a3rg==} 506 - 507 - '@types/d3-delaunay@6.0.4': 508 - resolution: {integrity: sha512-ZMaSKu4THYCU6sV64Lhg6qjf1orxBthaC161plr5KuPHo3CNm8DTHiLw/5Eq2b6TsNP0W0iJrUOFscY6Q450Hw==} 509 - 510 - '@types/d3-dispatch@3.0.7': 511 - resolution: {integrity: sha512-5o9OIAdKkhN1QItV2oqaE5KMIiXAvDWBDPrD85e58Qlz1c1kI/J0NcqbEG88CoTwJrYe7ntUCVfeUl2UJKbWgA==} 512 - 513 - '@types/d3-drag@3.0.7': 514 - resolution: {integrity: sha512-HE3jVKlzU9AaMazNufooRJ5ZpWmLIoc90A37WU2JMmeq28w1FQqCZswHZ3xR+SuxYftzHq6WU6KJHvqxKzTxxQ==} 515 - 516 - '@types/d3-dsv@3.0.7': 517 - resolution: {integrity: sha512-n6QBF9/+XASqcKK6waudgL0pf/S5XHPPI8APyMLLUHd8NqouBGLsU8MgtO7NINGtPBtk9Kko/W4ea0oAspwh9g==} 518 - 519 - '@types/d3-ease@3.0.2': 520 - resolution: {integrity: sha512-NcV1JjO5oDzoK26oMzbILE6HW7uVXOHLQvHshBUW4UMdZGfiY6v5BeQwh9a9tCzv+CeefZQHJt5SRgK154RtiA==} 521 - 522 - '@types/d3-fetch@3.0.7': 523 - resolution: {integrity: sha512-fTAfNmxSb9SOWNB9IoG5c8Hg6R+AzUHDRlsXsDZsNp6sxAEOP0tkP3gKkNSO/qmHPoBFTxNrjDprVHDQDvo5aA==} 524 - 525 - '@types/d3-force@3.0.10': 526 - resolution: {integrity: sha512-ZYeSaCF3p73RdOKcjj+swRlZfnYpK1EbaDiYICEEp5Q6sUiqFaFQ9qgoshp5CzIyyb/yD09kD9o2zEltCexlgw==} 527 - 528 - '@types/d3-format@3.0.4': 529 - resolution: {integrity: sha512-fALi2aI6shfg7vM5KiR1wNJnZ7r6UuggVqtDA+xiEdPZQwy/trcQaHnwShLuLdta2rTymCNpxYTiMZX/e09F4g==} 530 - 531 - '@types/d3-geo@3.1.0': 532 - resolution: {integrity: sha512-856sckF0oP/diXtS4jNsiQw/UuK5fQG8l/a9VVLeSouf1/PPbBE1i1W852zVwKwYCBkFJJB7nCFTbk6UMEXBOQ==} 533 - 534 - '@types/d3-hierarchy@3.1.7': 535 - resolution: {integrity: sha512-tJFtNoYBtRtkNysX1Xq4sxtjK8YgoWUNpIiUee0/jHGRwqvzYxkq0hGVbbOGSz+JgFxxRu4K8nb3YpG3CMARtg==} 536 - 537 - '@types/d3-interpolate@3.0.4': 538 - resolution: {integrity: sha512-mgLPETlrpVV1YRJIglr4Ez47g7Yxjl1lj7YKsiMCb27VJH9W8NVM6Bb9d8kkpG/uAQS5AmbA48q2IAolKKo1MA==} 539 - 540 - '@types/d3-path@3.1.1': 541 - resolution: {integrity: sha512-VMZBYyQvbGmWyWVea0EHs/BwLgxc+MKi1zLDCONksozI4YJMcTt8ZEuIR4Sb1MMTE8MMW49v0IwI5+b7RmfWlg==} 542 - 543 - '@types/d3-polygon@3.0.2': 544 - resolution: {integrity: sha512-ZuWOtMaHCkN9xoeEMr1ubW2nGWsp4nIql+OPQRstu4ypeZ+zk3YKqQT0CXVe/PYqrKpZAi+J9mTs05TKwjXSRA==} 545 - 546 - '@types/d3-quadtree@3.0.6': 547 - resolution: {integrity: sha512-oUzyO1/Zm6rsxKRHA1vH0NEDG58HrT5icx/azi9MF1TWdtttWl0UIUsjEQBBh+SIkrpd21ZjEv7ptxWys1ncsg==} 548 - 549 - '@types/d3-random@3.0.3': 550 - resolution: {integrity: sha512-Imagg1vJ3y76Y2ea0871wpabqp613+8/r0mCLEBfdtqC7xMSfj9idOnmBYyMoULfHePJyxMAw3nWhJxzc+LFwQ==} 551 - 552 - '@types/d3-scale-chromatic@3.1.0': 553 - resolution: {integrity: sha512-iWMJgwkK7yTRmWqRB5plb1kadXyQ5Sj8V/zYlFGMUBbIPKQScw+Dku9cAAMgJG+z5GYDoMjWGLVOvjghDEFnKQ==} 554 - 555 - '@types/d3-scale@4.0.9': 556 - resolution: {integrity: sha512-dLmtwB8zkAeO/juAMfnV+sItKjlsw2lKdZVVy6LRr0cBmegxSABiLEpGVmSJJ8O08i4+sGR6qQtb6WtuwJdvVw==} 557 - 558 - '@types/d3-selection@3.0.11': 559 - resolution: {integrity: sha512-bhAXu23DJWsrI45xafYpkQ4NtcKMwWnAC/vKrd2l+nxMFuvOT3XMYTIj2opv8vq8AO5Yh7Qac/nSeP/3zjTK0w==} 560 - 561 - '@types/d3-shape@3.1.7': 562 - resolution: {integrity: sha512-VLvUQ33C+3J+8p+Daf+nYSOsjB4GXp19/S/aGo60m9h1v6XaxjiT82lKVWJCfzhtuZ3yD7i/TPeC/fuKLLOSmg==} 563 - 564 - '@types/d3-time-format@4.0.3': 565 - resolution: {integrity: sha512-5xg9rC+wWL8kdDj153qZcsJ0FWiFt0J5RB6LYUNZjwSnesfblqrI/bJ1wBdJ8OQfncgbJG5+2F+qfqnqyzYxyg==} 566 - 567 - '@types/d3-time@3.0.4': 568 - resolution: {integrity: sha512-yuzZug1nkAAaBlBBikKZTgzCeA+k1uy4ZFwWANOfKw5z5LRhV0gNA7gNkKm7HoK+HRN0wX3EkxGk0fpbWhmB7g==} 569 - 570 - '@types/d3-timer@3.0.2': 571 - resolution: {integrity: sha512-Ps3T8E8dZDam6fUyNiMkekK3XUsaUEik+idO9/YjPtfj2qruF8tFBXS7XhtE4iIXBLxhmLjP3SXpLhVf21I9Lw==} 572 - 573 - '@types/d3-transition@3.0.9': 574 - resolution: {integrity: sha512-uZS5shfxzO3rGlu0cC3bjmMFKsXv+SmZZcgp0KD22ts4uGXp5EVYGzu/0YdwZeKmddhcAccYtREJKkPfXkZuCg==} 575 - 576 - '@types/d3-zoom@3.0.8': 577 - resolution: {integrity: sha512-iqMC4/YlFCSlO8+2Ii1GGGliCAY4XdeG748w5vQUbevlbDu0zSjH/+jojorQVBK/se0j6DUFNPBGSqD3YWYnDw==} 578 - 579 - '@types/d3@7.4.3': 580 - resolution: {integrity: sha512-lZXZ9ckh5R8uiFVt8ogUNf+pIrK4EsWrx2Np75WvF/eTpJ0FMHNhjXk8CKEx/+gpHbNQyJWehbFaTvqmHWB3ww==} 581 - 582 450 '@types/estree@1.0.8': 583 451 resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 584 - 585 - '@types/geojson@7946.0.16': 586 - resolution: {integrity: sha512-6C8nqWur3j98U6+lXDfTUWIfgvZU+EumvpHKcYjujKH7woYyLj2sUmff0tRhrqM7BohUw7Pz3ZB1jj2gW9Fvmg==} 587 452 588 453 '@types/hast@3.0.4': 589 454 resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} ··· 631 496 '@vue/compiler-ssr@3.5.25': 632 497 resolution: {integrity: sha512-ritPSKLBcParnsKYi+GNtbdbrIE1mtuFEJ4U1sWeuOMlIziK5GtOL85t5RhsNy4uWIXPgk+OUdpnXiTdzn8o3A==} 633 498 634 - '@vue/devtools-api@7.7.7': 635 - resolution: {integrity: sha512-lwOnNBH2e7x1fIIbVT7yF5D+YWhqELm55/4ZKf45R9T8r9dE2AIOy8HKjfqzGsoTHFbWbr337O4E0A0QADnjBg==} 499 + '@vue/devtools-api@7.7.9': 500 + resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==} 636 501 637 - '@vue/devtools-kit@7.7.7': 638 - resolution: {integrity: sha512-wgoZtxcTta65cnZ1Q6MbAfePVFxfM+gq0saaeytoph7nEa7yMXoi6sCPy4ufO111B9msnw0VOWjPEFCXuAKRHA==} 502 + '@vue/devtools-kit@7.7.9': 503 + resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==} 639 504 640 - '@vue/devtools-shared@7.7.7': 641 - resolution: {integrity: sha512-+udSj47aRl5aKb0memBvcUG9koarqnxNM5yjuREvqwK6T3ap4mn3Zqqc17QrBFTqSMjr3HK1cvStEZpMDpfdyw==} 505 + '@vue/devtools-shared@7.7.9': 506 + resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==} 642 507 643 508 '@vue/reactivity@3.5.25': 644 509 resolution: {integrity: sha512-5xfAypCQepv4Jog1U4zn8cZIcbKKFka3AgWHEFQeK65OW+Ys4XybP6z2kKgws4YB43KGpqp5D/K3go2UPPunLA==} ··· 653 518 resolution: {integrity: sha512-UJaXR54vMG61i8XNIzTSf2Q7MOqZHpp8+x3XLGtE3+fL+nQd+k7O5+X3D/uWrnQXOdMw5VPih+Uremcw+u1woQ==} 654 519 peerDependencies: 655 520 vue: 3.5.25 656 - 657 - '@vue/shared@3.5.22': 658 - resolution: {integrity: sha512-F4yc6palwq3TT0u+FYf0Ns4Tfl9GRFURDN2gWG7L1ecIaS/4fCIuFOjMTnCyjsu/OK6vaDKLCrGAa+KvvH+h4w==} 659 521 660 522 '@vue/shared@3.5.25': 661 523 resolution: {integrity: sha512-AbOPdQQnAnzs58H2FrrDxYj/TJfmeS2jdfEEhgiKINy+bnOANmVizIEgq1r+C5zsbs6l1CCQxtcj71rwNQ4jWg==} ··· 715 577 engines: {node: '>=0.4.0'} 716 578 hasBin: true 717 579 718 - algoliasearch@5.40.0: 719 - resolution: {integrity: sha512-a9aIL2E3Z7uYUPMCmjMFFd5MWhn+ccTubEvnMy7rOTZCB62dXBJtz0R5BZ/TPuX3R9ocBsgWuAbGWQ+Ph4Fmlg==} 580 + algoliasearch@5.46.0: 581 + resolution: {integrity: sha512-7ML6fa2K93FIfifG3GMWhDEwT5qQzPTmoHKCTvhzGEwdbQ4n0yYUWZlLYT75WllTGJCJtNUI0C1ybN4BCegqvg==} 720 582 engines: {node: '>= 14.0.0'} 721 583 722 - birpc@2.6.1: 723 - resolution: {integrity: sha512-LPnFhlDpdSH6FJhJyn4M0kFO7vtQ5iPw24FnG0y21q09xC7e8+1LeR31S1MAIrDAHp4m7aas4bEkTDTvMAtebQ==} 584 + birpc@2.9.0: 585 + resolution: {integrity: sha512-KrayHS5pBi69Xi9JmvoqrIgYGDkD6mcSe/i6YKi3w5kekCLzrX4+nawcXqrj2tIp50Kw/mT/s3p+GVK0A0sKxw==} 724 586 725 587 ccount@2.0.1: 726 588 resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} ··· 731 593 character-entities-legacy@3.0.0: 732 594 resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 733 595 734 - chevrotain-allstar@0.3.1: 735 - resolution: {integrity: sha512-b7g+y9A0v4mxCW1qUhf3BSVPg+/NvGErk/dOkrDaHA0nQIQGAtrOjlX//9OQtRlSCy+x9rfB5N8yC71lH1nvMw==} 736 - peerDependencies: 737 - chevrotain: ^11.0.0 738 - 739 - chevrotain@11.0.3: 740 - resolution: {integrity: sha512-ci2iJH6LeIkvP9eJW6gpueU8cnZhv85ELY8w8WiFtNjMHA5ad6pQLaJo9mEly/9qUyCpvqX8/POVUTf18/HFdw==} 741 - 742 596 comma-separated-tokens@2.0.3: 743 597 resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 744 598 745 - commander@7.2.0: 746 - resolution: {integrity: sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==} 747 - engines: {node: '>= 10'} 748 - 749 - commander@8.3.0: 750 - resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==} 751 - engines: {node: '>= 12'} 752 - 753 599 confbox@0.1.8: 754 600 resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 755 601 756 - confbox@0.2.2: 757 - resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} 758 - 759 - copy-anything@3.0.5: 760 - resolution: {integrity: sha512-yCEafptTtb4bk7GLEQoM8KVJpxAfdBJYaXyzQEgQQQgYrZiDp8SJmGKlYza6CYjEDNstAdNdKA3UuoULlEbS6w==} 761 - engines: {node: '>=12.13'} 762 - 763 - cose-base@1.0.3: 764 - resolution: {integrity: sha512-s9whTXInMSgAp/NVXVNuVxVKzGH2qck3aQlVHxDCdAEPgtMKwc4Wq6/QKhgdEdgbLSi9rBTAcPoRa6JpiG4ksg==} 765 - 766 - cose-base@2.2.0: 767 - resolution: {integrity: sha512-AzlgcsCbUMymkADOJtQm3wO9S3ltPfYOFD5033keQn9NJzIbtnZj+UdBJe7DYml/8TdbtHJW3j58SOnKhWY/5g==} 602 + copy-anything@4.0.5: 603 + resolution: {integrity: sha512-7Vv6asjS4gMOuILabD3l739tsaxFQmC+a7pLZm02zyvs8p977bL3zEgq3yDk5rn9B0PbYgIv++jmHcuUab4RhA==} 604 + engines: {node: '>=18'} 768 605 769 606 csstype@3.2.3: 770 607 resolution: {integrity: sha512-z1HGKcYy2xA8AGQfwrn0PAy+PB7X/GSj3UVJW9qKyn43xWa+gl5nXmU4qqLMRzWVLFC8KusUX8T/0kCiOYpAIQ==} 771 608 772 - cytoscape-cose-bilkent@4.1.0: 773 - resolution: {integrity: sha512-wgQlVIUJF13Quxiv5e1gstZ08rnZj2XaLHGoFMYXz7SkNfCDOOteKBE6SYRfA9WxxI/iBc3ajfDoc6hb/MRAHQ==} 774 - peerDependencies: 775 - cytoscape: ^3.2.0 776 - 777 - cytoscape-fcose@2.2.0: 778 - resolution: {integrity: sha512-ki1/VuRIHFCzxWNrsshHYPs6L7TvLu3DL+TyIGEsRcvVERmxokbf5Gdk7mFxZnTdiGtnA4cfSmjZJMviqSuZrQ==} 779 - peerDependencies: 780 - cytoscape: ^3.2.0 781 - 782 - cytoscape@3.33.1: 783 - resolution: {integrity: sha512-iJc4TwyANnOGR1OmWhsS9ayRS3s+XQ185FmuHObThD+5AeJCakAAbWv8KimMTt08xCCLNgneQwFp+JRJOr9qGQ==} 784 - engines: {node: '>=0.10'} 785 - 786 - d3-array@2.12.1: 787 - resolution: {integrity: sha512-B0ErZK/66mHtEsR1TkPEEkwdy+WDesimkM5gpZr5Dsg54BiTA5RXtYW5qTLIAcekaS9xfZrzBLF/OAkB3Qn1YQ==} 788 - 789 - d3-array@3.2.4: 790 - resolution: {integrity: sha512-tdQAmyA18i4J7wprpYq8ClcxZy3SC31QMeByyCFyRt7BVHdREQZ5lpzoe5mFEYZUWe+oq8HBvk9JjpibyEV4Jg==} 791 - engines: {node: '>=12'} 792 - 793 - d3-axis@3.0.0: 794 - resolution: {integrity: sha512-IH5tgjV4jE/GhHkRV0HiVYPDtvfjHQlQfJHs0usq7M30XcSBvOotpmH1IgkcXsO/5gEQZD43B//fc7SRT5S+xw==} 795 - engines: {node: '>=12'} 796 - 797 - d3-brush@3.0.0: 798 - resolution: {integrity: sha512-ALnjWlVYkXsVIGlOsuWH1+3udkYFI48Ljihfnh8FZPF2QS9o+PzGLBslO0PjzVoHLZ2KCVgAM8NVkXPJB2aNnQ==} 799 - engines: {node: '>=12'} 800 - 801 - d3-chord@3.0.1: 802 - resolution: {integrity: sha512-VE5S6TNa+j8msksl7HwjxMHDM2yNK3XCkusIlpX5kwauBfXuyLAtNg9jCp/iHH61tgI4sb6R/EIMWCqEIdjT/g==} 803 - engines: {node: '>=12'} 804 - 805 - d3-color@3.1.0: 806 - resolution: {integrity: sha512-zg/chbXyeBtMQ1LbD/WSoW2DpC3I0mpmPdW+ynRTj/x2DAWYrIY7qeZIHidozwV24m4iavr15lNwIwLxRmOxhA==} 807 - engines: {node: '>=12'} 808 - 809 - d3-contour@4.0.2: 810 - resolution: {integrity: sha512-4EzFTRIikzs47RGmdxbeUvLWtGedDUNkTcmzoeyg4sP/dvCexO47AaQL7VKy/gul85TOxw+IBgA8US2xwbToNA==} 811 - engines: {node: '>=12'} 812 - 813 - d3-delaunay@6.0.4: 814 - resolution: {integrity: sha512-mdjtIZ1XLAM8bm/hx3WwjfHt6Sggek7qH043O8KEjDXN40xi3vx/6pYSVTwLjEgiXQTbvaouWKynLBiUZ6SK6A==} 815 - engines: {node: '>=12'} 816 - 817 - d3-dispatch@3.0.1: 818 - resolution: {integrity: sha512-rzUyPU/S7rwUflMyLc1ETDeBj0NRuHKKAcvukozwhshr6g6c5d8zh4c2gQjY2bZ0dXeGLWc1PF174P2tVvKhfg==} 819 - engines: {node: '>=12'} 820 - 821 - d3-drag@3.0.0: 822 - resolution: {integrity: sha512-pWbUJLdETVA8lQNJecMxoXfH6x+mO2UQo8rSmZ+QqxcbyA3hfeprFgIT//HW2nlHChWeIIMwS2Fq+gEARkhTkg==} 823 - engines: {node: '>=12'} 824 - 825 - d3-dsv@3.0.1: 826 - resolution: {integrity: sha512-UG6OvdI5afDIFP9w4G0mNq50dSOsXHJaRE8arAS5o9ApWnIElp8GZw1Dun8vP8OyHOZ/QJUKUJwxiiCCnUwm+Q==} 827 - engines: {node: '>=12'} 828 - hasBin: true 829 - 830 - d3-ease@3.0.1: 831 - resolution: {integrity: sha512-wR/XK3D3XcLIZwpbvQwQ5fK+8Ykds1ip7A2Txe0yxncXSdq1L9skcG7blcedkOX+ZcgxGAmLX1FrRGbADwzi0w==} 832 - engines: {node: '>=12'} 833 - 834 - d3-fetch@3.0.1: 835 - resolution: {integrity: sha512-kpkQIM20n3oLVBKGg6oHrUchHM3xODkTzjMoj7aWQFq5QEM+R6E4WkzT5+tojDY7yjez8KgCBRoj4aEr99Fdqw==} 836 - engines: {node: '>=12'} 837 - 838 - d3-force@3.0.0: 839 - resolution: {integrity: sha512-zxV/SsA+U4yte8051P4ECydjD/S+qeYtnaIyAs9tgHCqfguma/aAQDjo85A9Z6EKhBirHRJHXIgJUlffT4wdLg==} 840 - engines: {node: '>=12'} 841 - 842 - d3-format@3.1.0: 843 - resolution: {integrity: sha512-YyUI6AEuY/Wpt8KWLgZHsIU86atmikuoOmCfommt0LYHiQSPjvX2AcFc38PX0CBpr2RCyZhjex+NS/LPOv6YqA==} 844 - engines: {node: '>=12'} 845 - 846 - d3-geo@3.1.1: 847 - resolution: {integrity: sha512-637ln3gXKXOwhalDzinUgY83KzNWZRKbYubaG+fGVuc/dxO64RRljtCTnf5ecMyE1RIdtqpkVcq0IbtU2S8j2Q==} 848 - engines: {node: '>=12'} 849 - 850 - d3-hierarchy@3.1.2: 851 - resolution: {integrity: sha512-FX/9frcub54beBdugHjDCdikxThEqjnR93Qt7PvQTOHxyiNCAlvMrHhclk3cD5VeAaq9fxmfRp+CnWw9rEMBuA==} 852 - engines: {node: '>=12'} 853 - 854 - d3-interpolate@3.0.1: 855 - resolution: {integrity: sha512-3bYs1rOD33uo8aqJfKP3JWPAibgw8Zm2+L9vBKEHJ2Rg+viTR7o5Mmv5mZcieN+FRYaAOWX5SJATX6k1PWz72g==} 856 - engines: {node: '>=12'} 857 - 858 - d3-path@1.0.9: 859 - resolution: {integrity: sha512-VLaYcn81dtHVTjEHd8B+pbe9yHWpXKZUC87PzoFmsFrJqgFwDe/qxfp5MlfsfM1V5E/iVt0MmEbWQ7FVIXh/bg==} 860 - 861 - d3-path@3.1.0: 862 - resolution: {integrity: sha512-p3KP5HCf/bvjBSSKuXid6Zqijx7wIfNW+J/maPs+iwR35at5JCbLUT0LzF1cnjbCHWhqzQTIN2Jpe8pRebIEFQ==} 863 - engines: {node: '>=12'} 864 - 865 - d3-polygon@3.0.1: 866 - resolution: {integrity: sha512-3vbA7vXYwfe1SYhED++fPUQlWSYTTGmFmQiany/gdbiWgU/iEyQzyymwL9SkJjFFuCS4902BSzewVGsHHmHtXg==} 867 - engines: {node: '>=12'} 868 - 869 - d3-quadtree@3.0.1: 870 - resolution: {integrity: sha512-04xDrxQTDTCFwP5H6hRhsRcb9xxv2RzkcsygFzmkSIOJy3PeRJP7sNk3VRIbKXcog561P9oU0/rVH6vDROAgUw==} 871 - engines: {node: '>=12'} 872 - 873 - d3-random@3.0.1: 874 - resolution: {integrity: sha512-FXMe9GfxTxqd5D6jFsQ+DJ8BJS4E/fT5mqqdjovykEB2oFbTMDVdg1MGFxfQW+FBOGoB++k8swBrgwSHT1cUXQ==} 875 - engines: {node: '>=12'} 876 - 877 - d3-sankey@0.12.3: 878 - resolution: {integrity: sha512-nQhsBRmM19Ax5xEIPLMY9ZmJ/cDvd1BG3UVvt5h3WRxKg5zGRbvnteTyWAbzeSvlh3tW7ZEmq4VwR5mB3tutmQ==} 879 - 880 - d3-scale-chromatic@3.1.0: 881 - resolution: {integrity: sha512-A3s5PWiZ9YCXFye1o246KoscMWqf8BsD9eRiJ3He7C9OBaxKhAd5TFCdEx/7VbKtxxTsu//1mMJFrEt572cEyQ==} 882 - engines: {node: '>=12'} 883 - 884 - d3-scale@4.0.2: 885 - resolution: {integrity: sha512-GZW464g1SH7ag3Y7hXjf8RoUuAFIqklOAq3MRl4OaWabTFJY9PN/E1YklhXLh+OQ3fM9yS2nOkCoS+WLZ6kvxQ==} 886 - engines: {node: '>=12'} 887 - 888 - d3-selection@3.0.0: 889 - resolution: {integrity: sha512-fmTRWbNMmsmWq6xJV8D19U/gw/bwrHfNXxrIN+HfZgnzqTHp9jOmKMhsTUjXOJnZOdZY9Q28y4yebKzqDKlxlQ==} 890 - engines: {node: '>=12'} 891 - 892 - d3-shape@1.3.7: 893 - resolution: {integrity: sha512-EUkvKjqPFUAZyOlhY5gzCxCeI0Aep04LwIRpsZ/mLFelJiUfnK56jo5JMDSE7yyP2kLSb6LtF+S5chMk7uqPqw==} 894 - 895 - d3-shape@3.2.0: 896 - resolution: {integrity: sha512-SaLBuwGm3MOViRq2ABk3eLoxwZELpH6zhl3FbAoJ7Vm1gofKx6El1Ib5z23NUEhF9AsGl7y+dzLe5Cw2AArGTA==} 897 - engines: {node: '>=12'} 898 - 899 - d3-time-format@4.1.0: 900 - resolution: {integrity: sha512-dJxPBlzC7NugB2PDLwo9Q8JiTR3M3e4/XANkreKSUxF8vvXKqm1Yfq4Q5dl8budlunRVlUUaDUgFt7eA8D6NLg==} 901 - engines: {node: '>=12'} 902 - 903 - d3-time@3.1.0: 904 - resolution: {integrity: sha512-VqKjzBLejbSMT4IgbmVgDjpkYrNWUYJnbCGo874u7MMKIWsILRX+OpX/gTk8MqjpT1A/c6HY2dCA77ZN0lkQ2Q==} 905 - engines: {node: '>=12'} 906 - 907 - d3-timer@3.0.1: 908 - resolution: {integrity: sha512-ndfJ/JxxMd3nw31uyKoY2naivF+r29V+Lc0svZxe1JvvIRmi8hUsrMvdOwgS1o6uBHmiz91geQ0ylPP0aj1VUA==} 909 - engines: {node: '>=12'} 910 - 911 - d3-transition@3.0.1: 912 - resolution: {integrity: sha512-ApKvfjsSR6tg06xrL434C0WydLr7JewBB3V+/39RMHsaXTOG0zmt/OAXeng5M5LBm0ojmxJrpomQVZ1aPvBL4w==} 913 - engines: {node: '>=12'} 914 - peerDependencies: 915 - d3-selection: 2 - 3 916 - 917 - d3-zoom@3.0.0: 918 - resolution: {integrity: sha512-b8AmV3kfQaqWAuacbPuNbL6vahnOJflOhexLzMMNLga62+/nh0JzvJ0aO/5a5MVgUFGS7Hu1P9P03o3fJkDCyw==} 919 - engines: {node: '>=12'} 920 - 921 - d3@7.9.0: 922 - resolution: {integrity: sha512-e1U46jVP+w7Iut8Jt8ri1YsPOvFpg46k+K8TpCb0P+zjCkjkPnV7WzfDJzMHy1LnA+wj5pLT1wjO901gLXeEhA==} 923 - engines: {node: '>=12'} 924 - 925 - dagre-d3-es@7.0.13: 926 - resolution: {integrity: sha512-efEhnxpSuwpYOKRm/L5KbqoZmNNukHa/Flty4Wp62JRvgH2ojwVgPgdYyr4twpieZnyRDdIH7PY2mopX26+j2Q==} 927 - 928 - dayjs@1.11.19: 929 - resolution: {integrity: sha512-t5EcLVS6QPBNqM2z8fakk/NKel+Xzshgt8FFKAn+qwlD1pzZWxh0nVCrvFK7ZDb6XucZeF9z8C7CBWTRIVApAw==} 930 - 931 - debug@4.4.3: 932 - resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 933 - engines: {node: '>=6.0'} 934 - peerDependencies: 935 - supports-color: '*' 936 - peerDependenciesMeta: 937 - supports-color: 938 - optional: true 939 - 940 - delaunator@5.0.1: 941 - resolution: {integrity: sha512-8nvh+XBe96aCESrGOqMp/84b13H9cdKbG5P2ejQCh4d4sK9RL4371qou9drQjMhvnPmhWl5hnmqbEE0fXr9Xnw==} 942 - 943 609 dequal@2.0.3: 944 610 resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 945 611 engines: {node: '>=6'} 946 612 947 613 devlop@1.1.0: 948 614 resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 949 - 950 - dompurify@3.3.0: 951 - resolution: {integrity: sha512-r+f6MYR1gGN1eJv0TVQbhA7if/U7P87cdPl3HN5rikqaBSBxLiCb/b9O+2eG0cxz0ghyU+mU1QkbsOwERMYlWQ==} 952 615 953 616 emoji-regex-xs@1.0.0: 954 617 resolution: {integrity: sha512-LRlerrMYoIDrT6jgpeZ2YYl/L8EulRTt5hQcYjy5AInh7HWXKimpqx68aknBFpGL2+/IcogTcaydJEgaTmOpDg==} ··· 965 628 estree-walker@2.0.2: 966 629 resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 967 630 968 - exsolve@1.0.7: 969 - resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} 970 - 971 - focus-trap@7.6.5: 972 - resolution: {integrity: sha512-7Ke1jyybbbPZyZXFxEftUtxFGLMpE2n6A+z//m4CRDlj0hW+o3iYSmh8nFlYMurOiJVDmJRilUQtJr08KfIxlg==} 631 + focus-trap@7.6.6: 632 + resolution: {integrity: sha512-v/Z8bvMCajtx4mEXmOo7QEsIzlIOqRXTIwgUfsFOF9gEsespdbD0AkPIka1bSXZ8Y8oZ+2IVDQZePkTfEHZl7Q==} 973 633 974 634 fsevents@2.3.3: 975 635 resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} ··· 979 639 giscus@1.6.0: 980 640 resolution: {integrity: sha512-Zrsi8r4t1LVW950keaWcsURuZUQwUaMKjvJgTCY125vkW6OiEBkatE7ScJDbpqKHdZwb///7FVC21SE3iFK3PQ==} 981 641 982 - globals@15.15.0: 983 - resolution: {integrity: sha512-7ACyT3wmyp3I61S4fG682L0VA2RGD9otkqGJIwNUMF1SWUombIIk+af1unuDYgMm082aHYwD+mzJvv9Iu8dsgg==} 984 - engines: {node: '>=18'} 985 - 986 - hachure-fill@0.5.2: 987 - resolution: {integrity: sha512-3GKBOn+m2LX9iq+JC1064cSFprJY4jL1jCXTcpnfER5HYE2l/4EfWSGzkPa/ZDBmYI0ZOEj5VHV/eKnPGkHuOg==} 988 - 989 642 hast-util-to-html@9.0.5: 990 643 resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 991 644 ··· 998 651 html-void-elements@3.0.0: 999 652 resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 1000 653 1001 - iconv-lite@0.6.3: 1002 - resolution: {integrity: sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==} 1003 - engines: {node: '>=0.10.0'} 1004 - 1005 - internmap@1.0.1: 1006 - resolution: {integrity: sha512-lDB5YccMydFBtasVtxnZ3MRBHuaoE8GKsppq+EchKL2U4nK/DmEpPHNH8MZe5HkMtpSiTSOZwfN0tzYjO/lJEw==} 1007 - 1008 - internmap@2.0.3: 1009 - resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==} 1010 - engines: {node: '>=12'} 1011 - 1012 - is-what@4.1.16: 1013 - resolution: {integrity: sha512-ZhMwEosbFJkA0YhFnNDgTM4ZxDRsS6HqTo7qsZM08fehyRYIYa0yHu5R6mgo1n/8MgaPBXiPimPD77baVFYg+A==} 1014 - engines: {node: '>=12.13'} 1015 - 1016 - katex@0.16.25: 1017 - resolution: {integrity: sha512-woHRUZ/iF23GBP1dkDQMh1QBad9dmr8/PAwNA54VrSOVYgI12MAcE14TqnDdQOdzyEonGzMepYnqBMYdsoAr8Q==} 1018 - hasBin: true 1019 - 1020 - khroma@2.1.0: 1021 - resolution: {integrity: sha512-Ls993zuzfayK269Svk9hzpeGUKob/sIgZzyHYdjQoAdQetRKpOLj+k/QQQ/6Qi0Yz65mlROrfd+Ev+1+7dz9Kw==} 1022 - 1023 - kolorist@1.8.0: 1024 - resolution: {integrity: sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==} 1025 - 1026 - langium@3.3.1: 1027 - resolution: {integrity: sha512-QJv/h939gDpvT+9SiLVlY7tZC3xB2qK57v0J04Sh9wpMb6MP1q8gB21L3WIo8T5P1MSMg3Ep14L7KkDCFG3y4w==} 1028 - engines: {node: '>=16.0.0'} 1029 - 1030 - layout-base@1.0.2: 1031 - resolution: {integrity: sha512-8h2oVEZNktL4BH2JCOI90iD1yXwL6iNW7KcCKT2QZgQJR2vbqDsldCTPRU9NifTCqHZci57XvQQ15YTu+sTYPg==} 1032 - 1033 - layout-base@2.0.1: 1034 - resolution: {integrity: sha512-dp3s92+uNI1hWIpPGH3jK2kxE2lMjdXdr+DH8ynZHpd6PUlH6x6cbuXnoMmiNumznqaNO31xu9e79F0uuZ0JFg==} 654 + is-what@5.5.0: 655 + resolution: {integrity: sha512-oG7cgbmg5kLYae2N5IVd3jm2s+vldjxJzK1pcu9LfpGuQ93MQSzo0okvRna+7y5ifrD+20FE8FvjusyGaz14fw==} 656 + engines: {node: '>=18'} 1035 657 1036 658 lit-element@4.2.1: 1037 659 resolution: {integrity: sha512-WGAWRGzirAgyphK2urmYOV72tlvnxw7YfyLDgQ+OZnM9vQQBQnumQ7jUJe6unEzwGU3ahFOjuz1iz1jjrpCPuw==} ··· 1042 664 lit@3.3.1: 1043 665 resolution: {integrity: sha512-Ksr/8L3PTapbdXJCk+EJVB78jDodUMaP54gD24W186zGRARvwrsPfS60wae/SSCTCNZVPd1chXqio1qHQmu4NA==} 1044 666 1045 - local-pkg@1.1.2: 1046 - resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} 1047 - engines: {node: '>=14'} 1048 - 1049 - lodash-es@4.17.21: 1050 - resolution: {integrity: sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==} 1051 - 1052 667 magic-string@0.30.21: 1053 668 resolution: {integrity: sha512-vd2F4YUyEXKGcLHoq+TEyCjxueSeHnFxyyjNp80yg0XV4vUhnDer/lvvlqM/arB5bXQN5K2/3oinyCRyx8T2CQ==} 1054 669 ··· 1058 673 markdown-it-footnote@4.0.0: 1059 674 resolution: {integrity: sha512-WYJ7urf+khJYl3DqofQpYfEYkZKbmXmwxQV8c8mO/hGIhgZ1wOe7R4HLFNwqx7TjILbnC98fuyeSsin19JdFcQ==} 1060 675 1061 - marked@16.4.2: 1062 - resolution: {integrity: sha512-TI3V8YYWvkVf3KJe1dRkpnjs68JUPyEa5vjKrp1XEEJUAOaQc+Qj+L1qWbPd0SJuAdQkFU0h73sXXqwDYxsiDA==} 1063 - engines: {node: '>= 20'} 1064 - hasBin: true 1065 - 1066 - mdast-util-to-hast@13.2.0: 1067 - resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 1068 - 1069 - mermaid@11.12.2: 1070 - resolution: {integrity: sha512-n34QPDPEKmaeCG4WDMGy0OT6PSyxKCfy2pJgShP+Qow2KLrvWjclwbc3yXfSIf4BanqWEhQEpngWwNp/XhZt6w==} 676 + mdast-util-to-hast@13.2.1: 677 + resolution: {integrity: sha512-cctsq2wp5vTsLIcaymblUriiTcZd0CwWtCbLvrOzYCDZoWyMNV8sZ7krj09FSnsiJi3WVsHLM4k6Dq/yaPyCXA==} 1071 678 1072 679 micromark-util-character@2.1.1: 1073 680 resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} ··· 1093 700 mlly@1.8.0: 1094 701 resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} 1095 702 1096 - ms@2.1.3: 1097 - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 1098 - 1099 703 nanoid@3.3.11: 1100 704 resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 1101 705 engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 1102 706 hasBin: true 1103 707 1104 - non-layered-tidy-tree-layout@2.0.2: 1105 - resolution: {integrity: sha512-gkXMxRzUH+PB0ax9dUN0yYF0S25BqeAYqhgMaLUFmpXLEk7Fcu8f4emJuOAY0V8kjDICxROIKsTAKsV/v355xw==} 1106 - 1107 708 oniguruma-to-es@3.1.1: 1108 709 resolution: {integrity: sha512-bUH8SDvPkH3ho3dvwJwfonjlQ4R80vjyvrU8YpxuROddv55vAEJrTuCuCVUhhsHbtlD9tGGbaNApGQckXhS8iQ==} 1109 710 1110 711 package-manager-detector@1.6.0: 1111 712 resolution: {integrity: sha512-61A5ThoTiDG/C8s8UMZwSorAGwMJ0ERVGj2OjoW5pAalsNOg15+iQiPzrLJ4jhZ1HJzmC2PIHT2oEiH3R5fzNA==} 1112 - 1113 - path-data-parser@0.1.0: 1114 - resolution: {integrity: sha512-NOnmBpt5Y2RWbuv0LMzsayp3lVylAHLPUTut412ZA3l+C4uw4ZVkQbjShYCQ8TCpUMdPapr4YjUqLYD6v68j+w==} 1115 713 1116 714 pathe@2.0.3: 1117 715 resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} ··· 1124 722 1125 723 pkg-types@1.3.1: 1126 724 resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} 1127 - 1128 - pkg-types@2.3.0: 1129 - resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} 1130 - 1131 - points-on-curve@0.2.0: 1132 - resolution: {integrity: sha512-0mYKnYYe9ZcqMCWhUjItv/oHjvgEsfKvnUTg8sAtnHr3GVy7rGkXCb6d5cSyqrWqL4k81b9CPg3urd+T7aop3A==} 1133 - 1134 - points-on-path@0.2.1: 1135 - resolution: {integrity: sha512-25ClnWWuw7JbWZcgqY/gJ4FQWadKxGWk+3kR/7kD0tCaDtPPMj7oHu2ToLaVhfpnHrZzYby2w6tUA0eOIuUg8g==} 1136 725 1137 726 postcss@8.5.6: 1138 727 resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 1139 728 engines: {node: ^10 || ^12 || >=14} 1140 729 1141 - preact@10.27.2: 1142 - resolution: {integrity: sha512-5SYSgFKSyhCbk6SrXyMpqjb5+MQBgfvEKE/OC+PujcY34sOpqtr+0AZQtPYx5IA6VxynQ7rUPCtKzyovpj9Bpg==} 730 + preact@10.28.0: 731 + resolution: {integrity: sha512-rytDAoiXr3+t6OIP3WGlDd0ouCUG1iCWzkcY3++Nreuoi17y6T5i/zRhe6uYfoVcxq6YU+sBtJouuRDsq8vvqA==} 1143 732 1144 733 property-information@7.1.0: 1145 734 resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} 1146 735 1147 - quansync@0.2.11: 1148 - resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} 1149 - 1150 736 regex-recursion@6.0.2: 1151 737 resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} 1152 738 1153 739 regex-utilities@2.3.0: 1154 740 resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 1155 741 1156 - regex@6.0.1: 1157 - resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==} 742 + regex@6.1.0: 743 + resolution: {integrity: sha512-6VwtthbV4o/7+OaAF9I5L5V3llLEsoPyq9P1JVXkedTP33c7MfCG0/5NOPcSJn0TzXcG9YUrR0gQSWioew3LDg==} 1158 744 1159 745 rfdc@1.4.1: 1160 746 resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==} 1161 747 1162 - robust-predicates@3.0.2: 1163 - resolution: {integrity: sha512-IXgzBWvWQwE6PrDI05OvmXUIruQTcoMDzRsOd5CDvHCVLcLHMTSYvOK5Cm46kWqlV3yAbuSpBZdJ5oP5OUoStg==} 1164 - 1165 - rollup@4.52.4: 1166 - resolution: {integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==} 748 + rollup@4.53.5: 749 + resolution: {integrity: sha512-iTNAbFSlRpcHeeWu73ywU/8KuU/LZmNCSxp6fjQkJBD3ivUb8tpDrXhIxEzA05HlYMEwmtaUnb3RP+YNv162OQ==} 1167 750 engines: {node: '>=18.0.0', npm: '>=8.0.0'} 1168 751 hasBin: true 1169 752 1170 - roughjs@4.6.6: 1171 - resolution: {integrity: sha512-ZUz/69+SYpFN/g/lUlo2FXcIjRkSu3nDarreVdGGndHEBJ6cXPdKguS8JGxwj5HA5xIbVKSmLgr5b3AWxtRfvQ==} 1172 - 1173 - rw@1.3.3: 1174 - resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==} 1175 - 1176 - safer-buffer@2.1.2: 1177 - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 1178 - 1179 753 search-insights@2.17.3: 1180 754 resolution: {integrity: sha512-RQPdCYTa8A68uM2jwxoY842xDhvx3E5LFL1LxvxCNMev4o5mLuokczhzjAgGwUZBAmOKZknArSxLKmXtIi2AxQ==} 1181 755 ··· 1196 770 stringify-entities@4.0.4: 1197 771 resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 1198 772 1199 - stylis@4.3.6: 1200 - resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==} 1201 - 1202 - superjson@2.2.2: 1203 - resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==} 773 + superjson@2.2.6: 774 + resolution: {integrity: sha512-H+ue8Zo4vJmV2nRjpx86P35lzwDT3nItnIsocgumgr0hHMQ+ZGq5vrERg9kJBo5AWGmxZDhzDo+WVIJqkB0cGA==} 1204 775 engines: {node: '>=16'} 1205 776 1206 - tabbable@6.2.0: 1207 - resolution: {integrity: sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==} 777 + tabbable@6.3.0: 778 + resolution: {integrity: sha512-EIHvdY5bPLuWForiR/AN2Bxngzpuwn1is4asboytXtpTgsArc+WmSJKVLlhdh71u7jFcryDqB2A8lQvj78MkyQ==} 1208 779 1209 780 tinyexec@1.0.2: 1210 781 resolution: {integrity: sha512-W/KYk+NFhkmsYpuHq5JykngiOCnxeVL8v8dFnqxSD8qEEdRfXk1SDM6JzNqcERbcGYj9tMrDQBYV9cjgnunFIg==} ··· 1213 784 trim-lines@3.0.1: 1214 785 resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 1215 786 1216 - ts-dedent@2.2.0: 1217 - resolution: {integrity: sha512-q5W7tVM71e2xjHZTlgfTDoPF/SmqKG5hddq9SzR49CH2hayqRKJtQ4mtRlSxKaJlR/+9rEM+mnBHf7I2/BQcpQ==} 1218 - engines: {node: '>=6.10'} 1219 - 1220 787 ufo@1.6.1: 1221 788 resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} 1222 789 1223 - unist-util-is@6.0.0: 1224 - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 790 + unist-util-is@6.0.1: 791 + resolution: {integrity: sha512-LsiILbtBETkDz8I9p1dQ0uyRUWuaQzd/cuEeS1hoRSyW5E5XGmTzlwY1OrNzzakGowI9Dr/I8HVaw4hTtnxy8g==} 1225 792 1226 793 unist-util-position@5.0.0: 1227 794 resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} ··· 1229 796 unist-util-stringify-position@4.0.0: 1230 797 resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 1231 798 1232 - unist-util-visit-parents@6.0.1: 1233 - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 799 + unist-util-visit-parents@6.0.2: 800 + resolution: {integrity: sha512-goh1s1TBrqSqukSc8wrjwWhL0hiJxgA8m4kFxGlQ+8FYQ3C/m11FcTs4YYem7V664AhHVvgoQLk890Ssdsr2IQ==} 1234 801 1235 802 unist-util-visit@5.0.0: 1236 803 resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 1237 804 1238 - uuid@11.1.0: 1239 - resolution: {integrity: sha512-0/A9rDy9P7cJ+8w1c9WD9V//9Wj15Ce2MPz8Ri6032usz+NfePxx5AcN3bN+r6ZL6jEo066/yNYB3tn4pQEx+A==} 1240 - hasBin: true 1241 - 1242 805 vfile-message@4.0.3: 1243 806 resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} 1244 807 1245 808 vfile@6.0.3: 1246 809 resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 1247 810 1248 - vite@5.4.20: 1249 - resolution: {integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==} 811 + vite@5.4.21: 812 + resolution: {integrity: sha512-o5a9xKjbtuhY6Bi5S3+HvbRERmouabWbyUcpXXUA1u+GNUKoROi9byOJ8M0nHbHYHkYICiMlqxkg1KkYmm25Sw==} 1250 813 engines: {node: ^18.0.0 || >=20.0.0} 1251 814 hasBin: true 1252 815 peerDependencies: ··· 1287 850 vite: 1288 851 optional: true 1289 852 1290 - vitepress-plugin-mermaid@2.0.17: 1291 - resolution: {integrity: sha512-IUzYpwf61GC6k0XzfmAmNrLvMi9TRrVRMsUyCA8KNXhg/mQ1VqWnO0/tBVPiX5UoKF1mDUwqn5QV4qAJl6JnUg==} 1292 - peerDependencies: 1293 - mermaid: 10 || 11 1294 - vitepress: ^1.0.0 || ^1.0.0-alpha 1295 - 1296 853 vitepress@1.6.4: 1297 854 resolution: {integrity: sha512-+2ym1/+0VVrbhNyRoFFesVvBvHAVMZMK0rw60E3X/5349M1GuVdKeazuksqopEdvkKwKGs21Q729jX81/bkBJg==} 1298 855 hasBin: true ··· 1305 862 postcss: 1306 863 optional: true 1307 864 1308 - vscode-jsonrpc@8.2.0: 1309 - resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} 1310 - engines: {node: '>=14.0.0'} 1311 - 1312 - vscode-languageserver-protocol@3.17.5: 1313 - resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} 1314 - 1315 - vscode-languageserver-textdocument@1.0.12: 1316 - resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} 1317 - 1318 - vscode-languageserver-types@3.17.5: 1319 - resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} 1320 - 1321 - vscode-languageserver@9.0.1: 1322 - resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} 1323 - hasBin: true 1324 - 1325 - vscode-uri@3.0.8: 1326 - resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==} 1327 - 1328 865 vue@3.5.25: 1329 866 resolution: {integrity: sha512-YLVdgv2K13WJ6n+kD5owehKtEXwdwXuj2TTyJMsO7pSeKw2bfRNZGjhB7YzrpbMYj5b5QsUebHpOqR3R3ziy/g==} 1330 867 peerDependencies: ··· 1338 875 1339 876 snapshots: 1340 877 1341 - '@algolia/abtesting@1.6.0': 878 + '@algolia/abtesting@1.12.0': 1342 879 dependencies: 1343 - '@algolia/client-common': 5.40.0 1344 - '@algolia/requester-browser-xhr': 5.40.0 1345 - '@algolia/requester-fetch': 5.40.0 1346 - '@algolia/requester-node-http': 5.40.0 880 + '@algolia/client-common': 5.46.0 881 + '@algolia/requester-browser-xhr': 5.46.0 882 + '@algolia/requester-fetch': 5.46.0 883 + '@algolia/requester-node-http': 5.46.0 1347 884 1348 - '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0)(search-insights@2.17.3)': 885 + '@algolia/autocomplete-core@1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)(search-insights@2.17.3)': 1349 886 dependencies: 1350 - '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0)(search-insights@2.17.3) 1351 - '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0) 887 + '@algolia/autocomplete-plugin-algolia-insights': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)(search-insights@2.17.3) 888 + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0) 1352 889 transitivePeerDependencies: 1353 890 - '@algolia/client-search' 1354 891 - algoliasearch 1355 892 - search-insights 1356 893 1357 - '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0)(search-insights@2.17.3)': 894 + '@algolia/autocomplete-plugin-algolia-insights@1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)(search-insights@2.17.3)': 1358 895 dependencies: 1359 - '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0) 896 + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0) 1360 897 search-insights: 2.17.3 1361 898 transitivePeerDependencies: 1362 899 - '@algolia/client-search' 1363 900 - algoliasearch 1364 901 1365 - '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0)': 902 + '@algolia/autocomplete-preset-algolia@1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)': 1366 903 dependencies: 1367 - '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0) 1368 - '@algolia/client-search': 5.40.0 1369 - algoliasearch: 5.40.0 904 + '@algolia/autocomplete-shared': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0) 905 + '@algolia/client-search': 5.46.0 906 + algoliasearch: 5.46.0 1370 907 1371 - '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0)': 908 + '@algolia/autocomplete-shared@1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)': 1372 909 dependencies: 1373 - '@algolia/client-search': 5.40.0 1374 - algoliasearch: 5.40.0 910 + '@algolia/client-search': 5.46.0 911 + algoliasearch: 5.46.0 1375 912 1376 - '@algolia/client-abtesting@5.40.0': 913 + '@algolia/client-abtesting@5.46.0': 1377 914 dependencies: 1378 - '@algolia/client-common': 5.40.0 1379 - '@algolia/requester-browser-xhr': 5.40.0 1380 - '@algolia/requester-fetch': 5.40.0 1381 - '@algolia/requester-node-http': 5.40.0 915 + '@algolia/client-common': 5.46.0 916 + '@algolia/requester-browser-xhr': 5.46.0 917 + '@algolia/requester-fetch': 5.46.0 918 + '@algolia/requester-node-http': 5.46.0 1382 919 1383 - '@algolia/client-analytics@5.40.0': 920 + '@algolia/client-analytics@5.46.0': 1384 921 dependencies: 1385 - '@algolia/client-common': 5.40.0 1386 - '@algolia/requester-browser-xhr': 5.40.0 1387 - '@algolia/requester-fetch': 5.40.0 1388 - '@algolia/requester-node-http': 5.40.0 922 + '@algolia/client-common': 5.46.0 923 + '@algolia/requester-browser-xhr': 5.46.0 924 + '@algolia/requester-fetch': 5.46.0 925 + '@algolia/requester-node-http': 5.46.0 1389 926 1390 - '@algolia/client-common@5.40.0': {} 927 + '@algolia/client-common@5.46.0': {} 1391 928 1392 - '@algolia/client-insights@5.40.0': 929 + '@algolia/client-insights@5.46.0': 1393 930 dependencies: 1394 - '@algolia/client-common': 5.40.0 1395 - '@algolia/requester-browser-xhr': 5.40.0 1396 - '@algolia/requester-fetch': 5.40.0 1397 - '@algolia/requester-node-http': 5.40.0 931 + '@algolia/client-common': 5.46.0 932 + '@algolia/requester-browser-xhr': 5.46.0 933 + '@algolia/requester-fetch': 5.46.0 934 + '@algolia/requester-node-http': 5.46.0 1398 935 1399 - '@algolia/client-personalization@5.40.0': 936 + '@algolia/client-personalization@5.46.0': 1400 937 dependencies: 1401 - '@algolia/client-common': 5.40.0 1402 - '@algolia/requester-browser-xhr': 5.40.0 1403 - '@algolia/requester-fetch': 5.40.0 1404 - '@algolia/requester-node-http': 5.40.0 938 + '@algolia/client-common': 5.46.0 939 + '@algolia/requester-browser-xhr': 5.46.0 940 + '@algolia/requester-fetch': 5.46.0 941 + '@algolia/requester-node-http': 5.46.0 1405 942 1406 - '@algolia/client-query-suggestions@5.40.0': 943 + '@algolia/client-query-suggestions@5.46.0': 1407 944 dependencies: 1408 - '@algolia/client-common': 5.40.0 1409 - '@algolia/requester-browser-xhr': 5.40.0 1410 - '@algolia/requester-fetch': 5.40.0 1411 - '@algolia/requester-node-http': 5.40.0 945 + '@algolia/client-common': 5.46.0 946 + '@algolia/requester-browser-xhr': 5.46.0 947 + '@algolia/requester-fetch': 5.46.0 948 + '@algolia/requester-node-http': 5.46.0 1412 949 1413 - '@algolia/client-search@5.40.0': 950 + '@algolia/client-search@5.46.0': 1414 951 dependencies: 1415 - '@algolia/client-common': 5.40.0 1416 - '@algolia/requester-browser-xhr': 5.40.0 1417 - '@algolia/requester-fetch': 5.40.0 1418 - '@algolia/requester-node-http': 5.40.0 952 + '@algolia/client-common': 5.46.0 953 + '@algolia/requester-browser-xhr': 5.46.0 954 + '@algolia/requester-fetch': 5.46.0 955 + '@algolia/requester-node-http': 5.46.0 1419 956 1420 - '@algolia/ingestion@1.40.0': 957 + '@algolia/ingestion@1.46.0': 1421 958 dependencies: 1422 - '@algolia/client-common': 5.40.0 1423 - '@algolia/requester-browser-xhr': 5.40.0 1424 - '@algolia/requester-fetch': 5.40.0 1425 - '@algolia/requester-node-http': 5.40.0 959 + '@algolia/client-common': 5.46.0 960 + '@algolia/requester-browser-xhr': 5.46.0 961 + '@algolia/requester-fetch': 5.46.0 962 + '@algolia/requester-node-http': 5.46.0 1426 963 1427 - '@algolia/monitoring@1.40.0': 964 + '@algolia/monitoring@1.46.0': 1428 965 dependencies: 1429 - '@algolia/client-common': 5.40.0 1430 - '@algolia/requester-browser-xhr': 5.40.0 1431 - '@algolia/requester-fetch': 5.40.0 1432 - '@algolia/requester-node-http': 5.40.0 966 + '@algolia/client-common': 5.46.0 967 + '@algolia/requester-browser-xhr': 5.46.0 968 + '@algolia/requester-fetch': 5.46.0 969 + '@algolia/requester-node-http': 5.46.0 1433 970 1434 - '@algolia/recommend@5.40.0': 971 + '@algolia/recommend@5.46.0': 1435 972 dependencies: 1436 - '@algolia/client-common': 5.40.0 1437 - '@algolia/requester-browser-xhr': 5.40.0 1438 - '@algolia/requester-fetch': 5.40.0 1439 - '@algolia/requester-node-http': 5.40.0 973 + '@algolia/client-common': 5.46.0 974 + '@algolia/requester-browser-xhr': 5.46.0 975 + '@algolia/requester-fetch': 5.46.0 976 + '@algolia/requester-node-http': 5.46.0 1440 977 1441 - '@algolia/requester-browser-xhr@5.40.0': 978 + '@algolia/requester-browser-xhr@5.46.0': 1442 979 dependencies: 1443 - '@algolia/client-common': 5.40.0 980 + '@algolia/client-common': 5.46.0 1444 981 1445 - '@algolia/requester-fetch@5.40.0': 982 + '@algolia/requester-fetch@5.46.0': 1446 983 dependencies: 1447 - '@algolia/client-common': 5.40.0 984 + '@algolia/client-common': 5.46.0 1448 985 1449 - '@algolia/requester-node-http@5.40.0': 986 + '@algolia/requester-node-http@5.46.0': 1450 987 dependencies: 1451 - '@algolia/client-common': 5.40.0 988 + '@algolia/client-common': 5.46.0 1452 989 1453 990 '@antfu/install-pkg@1.1.0': 1454 991 dependencies: 1455 992 package-manager-detector: 1.6.0 1456 993 tinyexec: 1.0.2 1457 - 1458 - '@antfu/utils@9.3.0': {} 1459 994 1460 995 '@babel/helper-string-parser@7.27.1': {} 1461 996 ··· 1470 1005 '@babel/helper-string-parser': 7.27.1 1471 1006 '@babel/helper-validator-identifier': 7.28.5 1472 1007 1473 - '@braintree/sanitize-url@6.0.4': 1474 - optional: true 1475 - 1476 - '@braintree/sanitize-url@7.1.1': {} 1477 - 1478 - '@chevrotain/cst-dts-gen@11.0.3': 1479 - dependencies: 1480 - '@chevrotain/gast': 11.0.3 1481 - '@chevrotain/types': 11.0.3 1482 - lodash-es: 4.17.21 1483 - 1484 - '@chevrotain/gast@11.0.3': 1485 - dependencies: 1486 - '@chevrotain/types': 11.0.3 1487 - lodash-es: 4.17.21 1488 - 1489 - '@chevrotain/regexp-to-ast@11.0.3': {} 1490 - 1491 - '@chevrotain/types@11.0.3': {} 1492 - 1493 - '@chevrotain/utils@11.0.3': {} 1494 - 1495 1008 '@docsearch/css@3.8.2': {} 1496 1009 1497 - '@docsearch/js@3.8.2(@algolia/client-search@5.40.0)(search-insights@2.17.3)': 1010 + '@docsearch/js@3.8.2(@algolia/client-search@5.46.0)(search-insights@2.17.3)': 1498 1011 dependencies: 1499 - '@docsearch/react': 3.8.2(@algolia/client-search@5.40.0)(search-insights@2.17.3) 1500 - preact: 10.27.2 1012 + '@docsearch/react': 3.8.2(@algolia/client-search@5.46.0)(search-insights@2.17.3) 1013 + preact: 10.28.0 1501 1014 transitivePeerDependencies: 1502 1015 - '@algolia/client-search' 1503 1016 - '@types/react' ··· 1505 1018 - react-dom 1506 1019 - search-insights 1507 1020 1508 - '@docsearch/react@3.8.2(@algolia/client-search@5.40.0)(search-insights@2.17.3)': 1021 + '@docsearch/react@3.8.2(@algolia/client-search@5.46.0)(search-insights@2.17.3)': 1509 1022 dependencies: 1510 - '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0)(search-insights@2.17.3) 1511 - '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.40.0)(algoliasearch@5.40.0) 1023 + '@algolia/autocomplete-core': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0)(search-insights@2.17.3) 1024 + '@algolia/autocomplete-preset-algolia': 1.17.7(@algolia/client-search@5.46.0)(algoliasearch@5.46.0) 1512 1025 '@docsearch/css': 3.8.2 1513 - algoliasearch: 5.40.0 1026 + algoliasearch: 5.46.0 1514 1027 optionalDependencies: 1515 1028 search-insights: 2.17.3 1516 1029 transitivePeerDependencies: ··· 1590 1103 giscus: 1.6.0 1591 1104 vue: 3.5.25 1592 1105 1593 - '@iconify-json/logos@1.2.9': 1106 + '@iconify-json/logos@1.2.10': 1594 1107 dependencies: 1595 1108 '@iconify/types': 2.0.0 1596 1109 1597 - '@iconify-json/simple-icons@1.2.54': 1110 + '@iconify-json/simple-icons@1.2.63': 1598 1111 dependencies: 1599 1112 '@iconify/types': 2.0.0 1600 1113 1601 - '@iconify-json/vscode-icons@1.2.33': 1114 + '@iconify-json/vscode-icons@1.2.37': 1602 1115 dependencies: 1603 1116 '@iconify/types': 2.0.0 1604 1117 1605 1118 '@iconify/types@2.0.0': {} 1606 1119 1607 - '@iconify/utils@3.0.2': 1608 - dependencies: 1609 - '@antfu/install-pkg': 1.1.0 1610 - '@antfu/utils': 9.3.0 1611 - '@iconify/types': 2.0.0 1612 - debug: 4.4.3 1613 - globals: 15.15.0 1614 - kolorist: 1.8.0 1615 - local-pkg: 1.1.2 1616 - mlly: 1.8.0 1617 - transitivePeerDependencies: 1618 - - supports-color 1619 - 1620 1120 '@iconify/utils@3.1.0': 1621 1121 dependencies: 1622 1122 '@antfu/install-pkg': 1.1.0 ··· 1631 1131 dependencies: 1632 1132 '@lit-labs/ssr-dom-shim': 1.4.0 1633 1133 1634 - '@mermaid-js/mermaid-mindmap@9.3.0': 1635 - dependencies: 1636 - '@braintree/sanitize-url': 6.0.4 1637 - cytoscape: 3.33.1 1638 - cytoscape-cose-bilkent: 4.1.0(cytoscape@3.33.1) 1639 - cytoscape-fcose: 2.2.0(cytoscape@3.33.1) 1640 - d3: 7.9.0 1641 - khroma: 2.1.0 1642 - non-layered-tidy-tree-layout: 2.0.2 1134 + '@rollup/rollup-android-arm-eabi@4.53.5': 1643 1135 optional: true 1644 1136 1645 - '@mermaid-js/parser@0.6.3': 1646 - dependencies: 1647 - langium: 3.3.1 1648 - 1649 - '@rollup/rollup-android-arm-eabi@4.52.4': 1137 + '@rollup/rollup-android-arm64@4.53.5': 1650 1138 optional: true 1651 1139 1652 - '@rollup/rollup-android-arm64@4.52.4': 1140 + '@rollup/rollup-darwin-arm64@4.53.5': 1653 1141 optional: true 1654 1142 1655 - '@rollup/rollup-darwin-arm64@4.52.4': 1143 + '@rollup/rollup-darwin-x64@4.53.5': 1656 1144 optional: true 1657 1145 1658 - '@rollup/rollup-darwin-x64@4.52.4': 1146 + '@rollup/rollup-freebsd-arm64@4.53.5': 1659 1147 optional: true 1660 1148 1661 - '@rollup/rollup-freebsd-arm64@4.52.4': 1662 - optional: true 1663 - 1664 - '@rollup/rollup-freebsd-x64@4.52.4': 1149 + '@rollup/rollup-freebsd-x64@4.53.5': 1665 1150 optional: true 1666 1151 1667 - '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 1152 + '@rollup/rollup-linux-arm-gnueabihf@4.53.5': 1668 1153 optional: true 1669 1154 1670 - '@rollup/rollup-linux-arm-musleabihf@4.52.4': 1155 + '@rollup/rollup-linux-arm-musleabihf@4.53.5': 1671 1156 optional: true 1672 1157 1673 - '@rollup/rollup-linux-arm64-gnu@4.52.4': 1158 + '@rollup/rollup-linux-arm64-gnu@4.53.5': 1674 1159 optional: true 1675 1160 1676 - '@rollup/rollup-linux-arm64-musl@4.52.4': 1161 + '@rollup/rollup-linux-arm64-musl@4.53.5': 1677 1162 optional: true 1678 1163 1679 - '@rollup/rollup-linux-loong64-gnu@4.52.4': 1164 + '@rollup/rollup-linux-loong64-gnu@4.53.5': 1680 1165 optional: true 1681 1166 1682 - '@rollup/rollup-linux-ppc64-gnu@4.52.4': 1167 + '@rollup/rollup-linux-ppc64-gnu@4.53.5': 1683 1168 optional: true 1684 1169 1685 - '@rollup/rollup-linux-riscv64-gnu@4.52.4': 1170 + '@rollup/rollup-linux-riscv64-gnu@4.53.5': 1686 1171 optional: true 1687 1172 1688 - '@rollup/rollup-linux-riscv64-musl@4.52.4': 1173 + '@rollup/rollup-linux-riscv64-musl@4.53.5': 1689 1174 optional: true 1690 1175 1691 - '@rollup/rollup-linux-s390x-gnu@4.52.4': 1176 + '@rollup/rollup-linux-s390x-gnu@4.53.5': 1692 1177 optional: true 1693 1178 1694 - '@rollup/rollup-linux-x64-gnu@4.52.4': 1179 + '@rollup/rollup-linux-x64-gnu@4.53.5': 1695 1180 optional: true 1696 1181 1697 - '@rollup/rollup-linux-x64-musl@4.52.4': 1182 + '@rollup/rollup-linux-x64-musl@4.53.5': 1698 1183 optional: true 1699 1184 1700 - '@rollup/rollup-openharmony-arm64@4.52.4': 1185 + '@rollup/rollup-openharmony-arm64@4.53.5': 1701 1186 optional: true 1702 1187 1703 - '@rollup/rollup-win32-arm64-msvc@4.52.4': 1188 + '@rollup/rollup-win32-arm64-msvc@4.53.5': 1704 1189 optional: true 1705 1190 1706 - '@rollup/rollup-win32-ia32-msvc@4.52.4': 1191 + '@rollup/rollup-win32-ia32-msvc@4.53.5': 1707 1192 optional: true 1708 1193 1709 - '@rollup/rollup-win32-x64-gnu@4.52.4': 1194 + '@rollup/rollup-win32-x64-gnu@4.53.5': 1710 1195 optional: true 1711 1196 1712 - '@rollup/rollup-win32-x64-msvc@4.52.4': 1197 + '@rollup/rollup-win32-x64-msvc@4.53.5': 1713 1198 optional: true 1714 1199 1715 1200 '@shikijs/core@2.5.0': ··· 1752 1237 1753 1238 '@shikijs/vscode-textmate@10.0.2': {} 1754 1239 1755 - '@types/d3-array@3.2.2': {} 1756 - 1757 - '@types/d3-axis@3.0.6': 1758 - dependencies: 1759 - '@types/d3-selection': 3.0.11 1760 - 1761 - '@types/d3-brush@3.0.6': 1762 - dependencies: 1763 - '@types/d3-selection': 3.0.11 1764 - 1765 - '@types/d3-chord@3.0.6': {} 1766 - 1767 - '@types/d3-color@3.1.3': {} 1768 - 1769 - '@types/d3-contour@3.0.6': 1770 - dependencies: 1771 - '@types/d3-array': 3.2.2 1772 - '@types/geojson': 7946.0.16 1773 - 1774 - '@types/d3-delaunay@6.0.4': {} 1775 - 1776 - '@types/d3-dispatch@3.0.7': {} 1777 - 1778 - '@types/d3-drag@3.0.7': 1779 - dependencies: 1780 - '@types/d3-selection': 3.0.11 1781 - 1782 - '@types/d3-dsv@3.0.7': {} 1783 - 1784 - '@types/d3-ease@3.0.2': {} 1785 - 1786 - '@types/d3-fetch@3.0.7': 1787 - dependencies: 1788 - '@types/d3-dsv': 3.0.7 1789 - 1790 - '@types/d3-force@3.0.10': {} 1791 - 1792 - '@types/d3-format@3.0.4': {} 1793 - 1794 - '@types/d3-geo@3.1.0': 1795 - dependencies: 1796 - '@types/geojson': 7946.0.16 1797 - 1798 - '@types/d3-hierarchy@3.1.7': {} 1799 - 1800 - '@types/d3-interpolate@3.0.4': 1801 - dependencies: 1802 - '@types/d3-color': 3.1.3 1803 - 1804 - '@types/d3-path@3.1.1': {} 1805 - 1806 - '@types/d3-polygon@3.0.2': {} 1807 - 1808 - '@types/d3-quadtree@3.0.6': {} 1809 - 1810 - '@types/d3-random@3.0.3': {} 1811 - 1812 - '@types/d3-scale-chromatic@3.1.0': {} 1813 - 1814 - '@types/d3-scale@4.0.9': 1815 - dependencies: 1816 - '@types/d3-time': 3.0.4 1817 - 1818 - '@types/d3-selection@3.0.11': {} 1819 - 1820 - '@types/d3-shape@3.1.7': 1821 - dependencies: 1822 - '@types/d3-path': 3.1.1 1823 - 1824 - '@types/d3-time-format@4.0.3': {} 1825 - 1826 - '@types/d3-time@3.0.4': {} 1827 - 1828 - '@types/d3-timer@3.0.2': {} 1829 - 1830 - '@types/d3-transition@3.0.9': 1831 - dependencies: 1832 - '@types/d3-selection': 3.0.11 1833 - 1834 - '@types/d3-zoom@3.0.8': 1835 - dependencies: 1836 - '@types/d3-interpolate': 3.0.4 1837 - '@types/d3-selection': 3.0.11 1838 - 1839 - '@types/d3@7.4.3': 1840 - dependencies: 1841 - '@types/d3-array': 3.2.2 1842 - '@types/d3-axis': 3.0.6 1843 - '@types/d3-brush': 3.0.6 1844 - '@types/d3-chord': 3.0.6 1845 - '@types/d3-color': 3.1.3 1846 - '@types/d3-contour': 3.0.6 1847 - '@types/d3-delaunay': 6.0.4 1848 - '@types/d3-dispatch': 3.0.7 1849 - '@types/d3-drag': 3.0.7 1850 - '@types/d3-dsv': 3.0.7 1851 - '@types/d3-ease': 3.0.2 1852 - '@types/d3-fetch': 3.0.7 1853 - '@types/d3-force': 3.0.10 1854 - '@types/d3-format': 3.0.4 1855 - '@types/d3-geo': 3.1.0 1856 - '@types/d3-hierarchy': 3.1.7 1857 - '@types/d3-interpolate': 3.0.4 1858 - '@types/d3-path': 3.1.1 1859 - '@types/d3-polygon': 3.0.2 1860 - '@types/d3-quadtree': 3.0.6 1861 - '@types/d3-random': 3.0.3 1862 - '@types/d3-scale': 4.0.9 1863 - '@types/d3-scale-chromatic': 3.1.0 1864 - '@types/d3-selection': 3.0.11 1865 - '@types/d3-shape': 3.1.7 1866 - '@types/d3-time': 3.0.4 1867 - '@types/d3-time-format': 4.0.3 1868 - '@types/d3-timer': 3.0.2 1869 - '@types/d3-transition': 3.0.9 1870 - '@types/d3-zoom': 3.0.8 1871 - 1872 1240 '@types/estree@1.0.8': {} 1873 1241 1874 - '@types/geojson@7946.0.16': {} 1875 - 1876 1242 '@types/hast@3.0.4': 1877 1243 dependencies: 1878 1244 '@types/unist': 3.0.3 ··· 1898 1264 1899 1265 '@ungap/structured-clone@1.3.0': {} 1900 1266 1901 - '@vitejs/plugin-vue@5.2.4(vite@5.4.20)(vue@3.5.25)': 1267 + '@vitejs/plugin-vue@5.2.4(vite@5.4.21)(vue@3.5.25)': 1902 1268 dependencies: 1903 - vite: 5.4.20 1269 + vite: 5.4.21 1904 1270 vue: 3.5.25 1905 1271 1906 1272 '@vue/compiler-core@3.5.25': ··· 1933 1299 '@vue/compiler-dom': 3.5.25 1934 1300 '@vue/shared': 3.5.25 1935 1301 1936 - '@vue/devtools-api@7.7.7': 1302 + '@vue/devtools-api@7.7.9': 1937 1303 dependencies: 1938 - '@vue/devtools-kit': 7.7.7 1304 + '@vue/devtools-kit': 7.7.9 1939 1305 1940 - '@vue/devtools-kit@7.7.7': 1306 + '@vue/devtools-kit@7.7.9': 1941 1307 dependencies: 1942 - '@vue/devtools-shared': 7.7.7 1943 - birpc: 2.6.1 1308 + '@vue/devtools-shared': 7.7.9 1309 + birpc: 2.9.0 1944 1310 hookable: 5.5.3 1945 1311 mitt: 3.0.1 1946 1312 perfect-debounce: 1.0.0 1947 1313 speakingurl: 14.0.1 1948 - superjson: 2.2.2 1314 + superjson: 2.2.6 1949 1315 1950 - '@vue/devtools-shared@7.7.7': 1316 + '@vue/devtools-shared@7.7.9': 1951 1317 dependencies: 1952 1318 rfdc: 1.4.1 1953 1319 ··· 1973 1339 '@vue/shared': 3.5.25 1974 1340 vue: 3.5.25 1975 1341 1976 - '@vue/shared@3.5.22': {} 1977 - 1978 1342 '@vue/shared@3.5.25': {} 1979 1343 1980 1344 '@vueuse/core@12.8.2': ··· 1986 1350 transitivePeerDependencies: 1987 1351 - typescript 1988 1352 1989 - '@vueuse/integrations@12.8.2(focus-trap@7.6.5)': 1353 + '@vueuse/integrations@12.8.2(focus-trap@7.6.6)': 1990 1354 dependencies: 1991 1355 '@vueuse/core': 12.8.2 1992 1356 '@vueuse/shared': 12.8.2 1993 1357 vue: 3.5.25 1994 1358 optionalDependencies: 1995 - focus-trap: 7.6.5 1359 + focus-trap: 7.6.6 1996 1360 transitivePeerDependencies: 1997 1361 - typescript 1998 1362 ··· 2006 1370 2007 1371 acorn@8.15.0: {} 2008 1372 2009 - algoliasearch@5.40.0: 1373 + algoliasearch@5.46.0: 2010 1374 dependencies: 2011 - '@algolia/abtesting': 1.6.0 2012 - '@algolia/client-abtesting': 5.40.0 2013 - '@algolia/client-analytics': 5.40.0 2014 - '@algolia/client-common': 5.40.0 2015 - '@algolia/client-insights': 5.40.0 2016 - '@algolia/client-personalization': 5.40.0 2017 - '@algolia/client-query-suggestions': 5.40.0 2018 - '@algolia/client-search': 5.40.0 2019 - '@algolia/ingestion': 1.40.0 2020 - '@algolia/monitoring': 1.40.0 2021 - '@algolia/recommend': 5.40.0 2022 - '@algolia/requester-browser-xhr': 5.40.0 2023 - '@algolia/requester-fetch': 5.40.0 2024 - '@algolia/requester-node-http': 5.40.0 1375 + '@algolia/abtesting': 1.12.0 1376 + '@algolia/client-abtesting': 5.46.0 1377 + '@algolia/client-analytics': 5.46.0 1378 + '@algolia/client-common': 5.46.0 1379 + '@algolia/client-insights': 5.46.0 1380 + '@algolia/client-personalization': 5.46.0 1381 + '@algolia/client-query-suggestions': 5.46.0 1382 + '@algolia/client-search': 5.46.0 1383 + '@algolia/ingestion': 1.46.0 1384 + '@algolia/monitoring': 1.46.0 1385 + '@algolia/recommend': 5.46.0 1386 + '@algolia/requester-browser-xhr': 5.46.0 1387 + '@algolia/requester-fetch': 5.46.0 1388 + '@algolia/requester-node-http': 5.46.0 2025 1389 2026 - birpc@2.6.1: {} 1390 + birpc@2.9.0: {} 2027 1391 2028 1392 ccount@2.0.1: {} 2029 1393 ··· 2031 1395 2032 1396 character-entities-legacy@3.0.0: {} 2033 1397 2034 - chevrotain-allstar@0.3.1(chevrotain@11.0.3): 2035 - dependencies: 2036 - chevrotain: 11.0.3 2037 - lodash-es: 4.17.21 2038 - 2039 - chevrotain@11.0.3: 2040 - dependencies: 2041 - '@chevrotain/cst-dts-gen': 11.0.3 2042 - '@chevrotain/gast': 11.0.3 2043 - '@chevrotain/regexp-to-ast': 11.0.3 2044 - '@chevrotain/types': 11.0.3 2045 - '@chevrotain/utils': 11.0.3 2046 - lodash-es: 4.17.21 2047 - 2048 1398 comma-separated-tokens@2.0.3: {} 2049 - 2050 - commander@7.2.0: {} 2051 - 2052 - commander@8.3.0: {} 2053 1399 2054 1400 confbox@0.1.8: {} 2055 1401 2056 - confbox@0.2.2: {} 2057 - 2058 - copy-anything@3.0.5: 2059 - dependencies: 2060 - is-what: 4.1.16 2061 - 2062 - cose-base@1.0.3: 1402 + copy-anything@4.0.5: 2063 1403 dependencies: 2064 - layout-base: 1.0.2 2065 - 2066 - cose-base@2.2.0: 2067 - dependencies: 2068 - layout-base: 2.0.1 1404 + is-what: 5.5.0 2069 1405 2070 1406 csstype@3.2.3: {} 2071 1407 2072 - cytoscape-cose-bilkent@4.1.0(cytoscape@3.33.1): 2073 - dependencies: 2074 - cose-base: 1.0.3 2075 - cytoscape: 3.33.1 2076 - 2077 - cytoscape-fcose@2.2.0(cytoscape@3.33.1): 2078 - dependencies: 2079 - cose-base: 2.2.0 2080 - cytoscape: 3.33.1 2081 - 2082 - cytoscape@3.33.1: {} 2083 - 2084 - d3-array@2.12.1: 2085 - dependencies: 2086 - internmap: 1.0.1 2087 - 2088 - d3-array@3.2.4: 2089 - dependencies: 2090 - internmap: 2.0.3 2091 - 2092 - d3-axis@3.0.0: {} 2093 - 2094 - d3-brush@3.0.0: 2095 - dependencies: 2096 - d3-dispatch: 3.0.1 2097 - d3-drag: 3.0.0 2098 - d3-interpolate: 3.0.1 2099 - d3-selection: 3.0.0 2100 - d3-transition: 3.0.1(d3-selection@3.0.0) 2101 - 2102 - d3-chord@3.0.1: 2103 - dependencies: 2104 - d3-path: 3.1.0 2105 - 2106 - d3-color@3.1.0: {} 2107 - 2108 - d3-contour@4.0.2: 2109 - dependencies: 2110 - d3-array: 3.2.4 2111 - 2112 - d3-delaunay@6.0.4: 2113 - dependencies: 2114 - delaunator: 5.0.1 2115 - 2116 - d3-dispatch@3.0.1: {} 2117 - 2118 - d3-drag@3.0.0: 2119 - dependencies: 2120 - d3-dispatch: 3.0.1 2121 - d3-selection: 3.0.0 2122 - 2123 - d3-dsv@3.0.1: 2124 - dependencies: 2125 - commander: 7.2.0 2126 - iconv-lite: 0.6.3 2127 - rw: 1.3.3 2128 - 2129 - d3-ease@3.0.1: {} 2130 - 2131 - d3-fetch@3.0.1: 2132 - dependencies: 2133 - d3-dsv: 3.0.1 2134 - 2135 - d3-force@3.0.0: 2136 - dependencies: 2137 - d3-dispatch: 3.0.1 2138 - d3-quadtree: 3.0.1 2139 - d3-timer: 3.0.1 2140 - 2141 - d3-format@3.1.0: {} 2142 - 2143 - d3-geo@3.1.1: 2144 - dependencies: 2145 - d3-array: 3.2.4 2146 - 2147 - d3-hierarchy@3.1.2: {} 2148 - 2149 - d3-interpolate@3.0.1: 2150 - dependencies: 2151 - d3-color: 3.1.0 2152 - 2153 - d3-path@1.0.9: {} 2154 - 2155 - d3-path@3.1.0: {} 2156 - 2157 - d3-polygon@3.0.1: {} 2158 - 2159 - d3-quadtree@3.0.1: {} 2160 - 2161 - d3-random@3.0.1: {} 2162 - 2163 - d3-sankey@0.12.3: 2164 - dependencies: 2165 - d3-array: 2.12.1 2166 - d3-shape: 1.3.7 2167 - 2168 - d3-scale-chromatic@3.1.0: 2169 - dependencies: 2170 - d3-color: 3.1.0 2171 - d3-interpolate: 3.0.1 2172 - 2173 - d3-scale@4.0.2: 2174 - dependencies: 2175 - d3-array: 3.2.4 2176 - d3-format: 3.1.0 2177 - d3-interpolate: 3.0.1 2178 - d3-time: 3.1.0 2179 - d3-time-format: 4.1.0 2180 - 2181 - d3-selection@3.0.0: {} 2182 - 2183 - d3-shape@1.3.7: 2184 - dependencies: 2185 - d3-path: 1.0.9 2186 - 2187 - d3-shape@3.2.0: 2188 - dependencies: 2189 - d3-path: 3.1.0 2190 - 2191 - d3-time-format@4.1.0: 2192 - dependencies: 2193 - d3-time: 3.1.0 2194 - 2195 - d3-time@3.1.0: 2196 - dependencies: 2197 - d3-array: 3.2.4 2198 - 2199 - d3-timer@3.0.1: {} 2200 - 2201 - d3-transition@3.0.1(d3-selection@3.0.0): 2202 - dependencies: 2203 - d3-color: 3.1.0 2204 - d3-dispatch: 3.0.1 2205 - d3-ease: 3.0.1 2206 - d3-interpolate: 3.0.1 2207 - d3-selection: 3.0.0 2208 - d3-timer: 3.0.1 2209 - 2210 - d3-zoom@3.0.0: 2211 - dependencies: 2212 - d3-dispatch: 3.0.1 2213 - d3-drag: 3.0.0 2214 - d3-interpolate: 3.0.1 2215 - d3-selection: 3.0.0 2216 - d3-transition: 3.0.1(d3-selection@3.0.0) 2217 - 2218 - d3@7.9.0: 2219 - dependencies: 2220 - d3-array: 3.2.4 2221 - d3-axis: 3.0.0 2222 - d3-brush: 3.0.0 2223 - d3-chord: 3.0.1 2224 - d3-color: 3.1.0 2225 - d3-contour: 4.0.2 2226 - d3-delaunay: 6.0.4 2227 - d3-dispatch: 3.0.1 2228 - d3-drag: 3.0.0 2229 - d3-dsv: 3.0.1 2230 - d3-ease: 3.0.1 2231 - d3-fetch: 3.0.1 2232 - d3-force: 3.0.0 2233 - d3-format: 3.1.0 2234 - d3-geo: 3.1.1 2235 - d3-hierarchy: 3.1.2 2236 - d3-interpolate: 3.0.1 2237 - d3-path: 3.1.0 2238 - d3-polygon: 3.0.1 2239 - d3-quadtree: 3.0.1 2240 - d3-random: 3.0.1 2241 - d3-scale: 4.0.2 2242 - d3-scale-chromatic: 3.1.0 2243 - d3-selection: 3.0.0 2244 - d3-shape: 3.2.0 2245 - d3-time: 3.1.0 2246 - d3-time-format: 4.1.0 2247 - d3-timer: 3.0.1 2248 - d3-transition: 3.0.1(d3-selection@3.0.0) 2249 - d3-zoom: 3.0.0 2250 - 2251 - dagre-d3-es@7.0.13: 2252 - dependencies: 2253 - d3: 7.9.0 2254 - lodash-es: 4.17.21 2255 - 2256 - dayjs@1.11.19: {} 2257 - 2258 - debug@4.4.3: 2259 - dependencies: 2260 - ms: 2.1.3 2261 - 2262 - delaunator@5.0.1: 2263 - dependencies: 2264 - robust-predicates: 3.0.2 2265 - 2266 1408 dequal@2.0.3: {} 2267 1409 2268 1410 devlop@1.1.0: 2269 1411 dependencies: 2270 1412 dequal: 2.0.3 2271 - 2272 - dompurify@3.3.0: 2273 - optionalDependencies: 2274 - '@types/trusted-types': 2.0.7 2275 1413 2276 1414 emoji-regex-xs@1.0.0: {} 2277 1415 ··· 2305 1443 2306 1444 estree-walker@2.0.2: {} 2307 1445 2308 - exsolve@1.0.7: {} 2309 - 2310 - focus-trap@7.6.5: 1446 + focus-trap@7.6.6: 2311 1447 dependencies: 2312 - tabbable: 6.2.0 1448 + tabbable: 6.3.0 2313 1449 2314 1450 fsevents@2.3.3: 2315 1451 optional: true ··· 2318 1454 dependencies: 2319 1455 lit: 3.3.1 2320 1456 2321 - globals@15.15.0: {} 2322 - 2323 - hachure-fill@0.5.2: {} 2324 - 2325 1457 hast-util-to-html@9.0.5: 2326 1458 dependencies: 2327 1459 '@types/hast': 3.0.4 ··· 2330 1462 comma-separated-tokens: 2.0.3 2331 1463 hast-util-whitespace: 3.0.0 2332 1464 html-void-elements: 3.0.0 2333 - mdast-util-to-hast: 13.2.0 1465 + mdast-util-to-hast: 13.2.1 2334 1466 property-information: 7.1.0 2335 1467 space-separated-tokens: 2.0.2 2336 1468 stringify-entities: 4.0.4 ··· 2344 1476 2345 1477 html-void-elements@3.0.0: {} 2346 1478 2347 - iconv-lite@0.6.3: 2348 - dependencies: 2349 - safer-buffer: 2.1.2 2350 - 2351 - internmap@1.0.1: {} 2352 - 2353 - internmap@2.0.3: {} 2354 - 2355 - is-what@4.1.16: {} 2356 - 2357 - katex@0.16.25: 2358 - dependencies: 2359 - commander: 8.3.0 2360 - 2361 - khroma@2.1.0: {} 2362 - 2363 - kolorist@1.8.0: {} 2364 - 2365 - langium@3.3.1: 2366 - dependencies: 2367 - chevrotain: 11.0.3 2368 - chevrotain-allstar: 0.3.1(chevrotain@11.0.3) 2369 - vscode-languageserver: 9.0.1 2370 - vscode-languageserver-textdocument: 1.0.12 2371 - vscode-uri: 3.0.8 2372 - 2373 - layout-base@1.0.2: {} 2374 - 2375 - layout-base@2.0.1: {} 1479 + is-what@5.5.0: {} 2376 1480 2377 1481 lit-element@4.2.1: 2378 1482 dependencies: ··· 2390 1494 lit-element: 4.2.1 2391 1495 lit-html: 3.3.1 2392 1496 2393 - local-pkg@1.1.2: 2394 - dependencies: 2395 - mlly: 1.8.0 2396 - pkg-types: 2.3.0 2397 - quansync: 0.2.11 2398 - 2399 - lodash-es@4.17.21: {} 2400 - 2401 1497 magic-string@0.30.21: 2402 1498 dependencies: 2403 1499 '@jridgewell/sourcemap-codec': 1.5.5 ··· 2406 1502 2407 1503 markdown-it-footnote@4.0.0: {} 2408 1504 2409 - marked@16.4.2: {} 2410 - 2411 - mdast-util-to-hast@13.2.0: 1505 + mdast-util-to-hast@13.2.1: 2412 1506 dependencies: 2413 1507 '@types/hast': 3.0.4 2414 1508 '@types/mdast': 4.0.4 ··· 2420 1514 unist-util-visit: 5.0.0 2421 1515 vfile: 6.0.3 2422 1516 2423 - mermaid@11.12.2: 2424 - dependencies: 2425 - '@braintree/sanitize-url': 7.1.1 2426 - '@iconify/utils': 3.1.0 2427 - '@mermaid-js/parser': 0.6.3 2428 - '@types/d3': 7.4.3 2429 - cytoscape: 3.33.1 2430 - cytoscape-cose-bilkent: 4.1.0(cytoscape@3.33.1) 2431 - cytoscape-fcose: 2.2.0(cytoscape@3.33.1) 2432 - d3: 7.9.0 2433 - d3-sankey: 0.12.3 2434 - dagre-d3-es: 7.0.13 2435 - dayjs: 1.11.19 2436 - dompurify: 3.3.0 2437 - katex: 0.16.25 2438 - khroma: 2.1.0 2439 - lodash-es: 4.17.21 2440 - marked: 16.4.2 2441 - roughjs: 4.6.6 2442 - stylis: 4.3.6 2443 - ts-dedent: 2.2.0 2444 - uuid: 11.1.0 2445 - 2446 1517 micromark-util-character@2.1.1: 2447 1518 dependencies: 2448 1519 micromark-util-symbol: 2.0.1 ··· 2471 1542 pkg-types: 1.3.1 2472 1543 ufo: 1.6.1 2473 1544 2474 - ms@2.1.3: {} 2475 - 2476 1545 nanoid@3.3.11: {} 2477 - 2478 - non-layered-tidy-tree-layout@2.0.2: 2479 - optional: true 2480 1546 2481 1547 oniguruma-to-es@3.1.1: 2482 1548 dependencies: 2483 1549 emoji-regex-xs: 1.0.0 2484 - regex: 6.0.1 1550 + regex: 6.1.0 2485 1551 regex-recursion: 6.0.2 2486 1552 2487 1553 package-manager-detector@1.6.0: {} 2488 - 2489 - path-data-parser@0.1.0: {} 2490 1554 2491 1555 pathe@2.0.3: {} 2492 1556 ··· 2500 1564 mlly: 1.8.0 2501 1565 pathe: 2.0.3 2502 1566 2503 - pkg-types@2.3.0: 2504 - dependencies: 2505 - confbox: 0.2.2 2506 - exsolve: 1.0.7 2507 - pathe: 2.0.3 2508 - 2509 - points-on-curve@0.2.0: {} 2510 - 2511 - points-on-path@0.2.1: 2512 - dependencies: 2513 - path-data-parser: 0.1.0 2514 - points-on-curve: 0.2.0 2515 - 2516 1567 postcss@8.5.6: 2517 1568 dependencies: 2518 1569 nanoid: 3.3.11 2519 1570 picocolors: 1.1.1 2520 1571 source-map-js: 1.2.1 2521 1572 2522 - preact@10.27.2: {} 1573 + preact@10.28.0: {} 2523 1574 2524 1575 property-information@7.1.0: {} 2525 1576 2526 - quansync@0.2.11: {} 2527 - 2528 1577 regex-recursion@6.0.2: 2529 1578 dependencies: 2530 1579 regex-utilities: 2.3.0 2531 1580 2532 1581 regex-utilities@2.3.0: {} 2533 1582 2534 - regex@6.0.1: 1583 + regex@6.1.0: 2535 1584 dependencies: 2536 1585 regex-utilities: 2.3.0 2537 1586 2538 1587 rfdc@1.4.1: {} 2539 1588 2540 - robust-predicates@3.0.2: {} 2541 - 2542 - rollup@4.52.4: 1589 + rollup@4.53.5: 2543 1590 dependencies: 2544 1591 '@types/estree': 1.0.8 2545 1592 optionalDependencies: 2546 - '@rollup/rollup-android-arm-eabi': 4.52.4 2547 - '@rollup/rollup-android-arm64': 4.52.4 2548 - '@rollup/rollup-darwin-arm64': 4.52.4 2549 - '@rollup/rollup-darwin-x64': 4.52.4 2550 - '@rollup/rollup-freebsd-arm64': 4.52.4 2551 - '@rollup/rollup-freebsd-x64': 4.52.4 2552 - '@rollup/rollup-linux-arm-gnueabihf': 4.52.4 2553 - '@rollup/rollup-linux-arm-musleabihf': 4.52.4 2554 - '@rollup/rollup-linux-arm64-gnu': 4.52.4 2555 - '@rollup/rollup-linux-arm64-musl': 4.52.4 2556 - '@rollup/rollup-linux-loong64-gnu': 4.52.4 2557 - '@rollup/rollup-linux-ppc64-gnu': 4.52.4 2558 - '@rollup/rollup-linux-riscv64-gnu': 4.52.4 2559 - '@rollup/rollup-linux-riscv64-musl': 4.52.4 2560 - '@rollup/rollup-linux-s390x-gnu': 4.52.4 2561 - '@rollup/rollup-linux-x64-gnu': 4.52.4 2562 - '@rollup/rollup-linux-x64-musl': 4.52.4 2563 - '@rollup/rollup-openharmony-arm64': 4.52.4 2564 - '@rollup/rollup-win32-arm64-msvc': 4.52.4 2565 - '@rollup/rollup-win32-ia32-msvc': 4.52.4 2566 - '@rollup/rollup-win32-x64-gnu': 4.52.4 2567 - '@rollup/rollup-win32-x64-msvc': 4.52.4 1593 + '@rollup/rollup-android-arm-eabi': 4.53.5 1594 + '@rollup/rollup-android-arm64': 4.53.5 1595 + '@rollup/rollup-darwin-arm64': 4.53.5 1596 + '@rollup/rollup-darwin-x64': 4.53.5 1597 + '@rollup/rollup-freebsd-arm64': 4.53.5 1598 + '@rollup/rollup-freebsd-x64': 4.53.5 1599 + '@rollup/rollup-linux-arm-gnueabihf': 4.53.5 1600 + '@rollup/rollup-linux-arm-musleabihf': 4.53.5 1601 + '@rollup/rollup-linux-arm64-gnu': 4.53.5 1602 + '@rollup/rollup-linux-arm64-musl': 4.53.5 1603 + '@rollup/rollup-linux-loong64-gnu': 4.53.5 1604 + '@rollup/rollup-linux-ppc64-gnu': 4.53.5 1605 + '@rollup/rollup-linux-riscv64-gnu': 4.53.5 1606 + '@rollup/rollup-linux-riscv64-musl': 4.53.5 1607 + '@rollup/rollup-linux-s390x-gnu': 4.53.5 1608 + '@rollup/rollup-linux-x64-gnu': 4.53.5 1609 + '@rollup/rollup-linux-x64-musl': 4.53.5 1610 + '@rollup/rollup-openharmony-arm64': 4.53.5 1611 + '@rollup/rollup-win32-arm64-msvc': 4.53.5 1612 + '@rollup/rollup-win32-ia32-msvc': 4.53.5 1613 + '@rollup/rollup-win32-x64-gnu': 4.53.5 1614 + '@rollup/rollup-win32-x64-msvc': 4.53.5 2568 1615 fsevents: 2.3.3 2569 - 2570 - roughjs@4.6.6: 2571 - dependencies: 2572 - hachure-fill: 0.5.2 2573 - path-data-parser: 0.1.0 2574 - points-on-curve: 0.2.0 2575 - points-on-path: 0.2.1 2576 - 2577 - rw@1.3.3: {} 2578 - 2579 - safer-buffer@2.1.2: {} 2580 1616 2581 1617 search-insights@2.17.3: {} 2582 1618 ··· 2602 1638 character-entities-html4: 2.1.0 2603 1639 character-entities-legacy: 3.0.0 2604 1640 2605 - stylis@4.3.6: {} 2606 - 2607 - superjson@2.2.2: 1641 + superjson@2.2.6: 2608 1642 dependencies: 2609 - copy-anything: 3.0.5 1643 + copy-anything: 4.0.5 2610 1644 2611 - tabbable@6.2.0: {} 1645 + tabbable@6.3.0: {} 2612 1646 2613 1647 tinyexec@1.0.2: {} 2614 1648 2615 1649 trim-lines@3.0.1: {} 2616 1650 2617 - ts-dedent@2.2.0: {} 2618 - 2619 1651 ufo@1.6.1: {} 2620 1652 2621 - unist-util-is@6.0.0: 1653 + unist-util-is@6.0.1: 2622 1654 dependencies: 2623 1655 '@types/unist': 3.0.3 2624 1656 ··· 2630 1662 dependencies: 2631 1663 '@types/unist': 3.0.3 2632 1664 2633 - unist-util-visit-parents@6.0.1: 1665 + unist-util-visit-parents@6.0.2: 2634 1666 dependencies: 2635 1667 '@types/unist': 3.0.3 2636 - unist-util-is: 6.0.0 1668 + unist-util-is: 6.0.1 2637 1669 2638 1670 unist-util-visit@5.0.0: 2639 1671 dependencies: 2640 1672 '@types/unist': 3.0.3 2641 - unist-util-is: 6.0.0 2642 - unist-util-visit-parents: 6.0.1 2643 - 2644 - uuid@11.1.0: {} 1673 + unist-util-is: 6.0.1 1674 + unist-util-visit-parents: 6.0.2 2645 1675 2646 1676 vfile-message@4.0.3: 2647 1677 dependencies: ··· 2653 1683 '@types/unist': 3.0.3 2654 1684 vfile-message: 4.0.3 2655 1685 2656 - vite@5.4.20: 1686 + vite@5.4.21: 2657 1687 dependencies: 2658 1688 esbuild: 0.21.5 2659 1689 postcss: 8.5.6 2660 - rollup: 4.52.4 1690 + rollup: 4.53.5 2661 1691 optionalDependencies: 2662 1692 fsevents: 2.3.3 2663 1693 ··· 2667 1697 transitivePeerDependencies: 2668 1698 - vue 2669 1699 2670 - vitepress-plugin-group-icons@1.6.5(vite@5.4.20): 2671 - dependencies: 2672 - '@iconify-json/logos': 1.2.9 2673 - '@iconify-json/vscode-icons': 1.2.33 2674 - '@iconify/utils': 3.0.2 2675 - optionalDependencies: 2676 - vite: 5.4.20 2677 - transitivePeerDependencies: 2678 - - supports-color 2679 - 2680 - vitepress-plugin-mermaid@2.0.17(mermaid@11.12.2)(vitepress@1.6.4(@algolia/client-search@5.40.0)(postcss@8.5.6)(search-insights@2.17.3)): 1700 + vitepress-plugin-group-icons@1.6.5(vite@5.4.21): 2681 1701 dependencies: 2682 - mermaid: 11.12.2 2683 - vitepress: 1.6.4(@algolia/client-search@5.40.0)(postcss@8.5.6)(search-insights@2.17.3) 1702 + '@iconify-json/logos': 1.2.10 1703 + '@iconify-json/vscode-icons': 1.2.37 1704 + '@iconify/utils': 3.1.0 2684 1705 optionalDependencies: 2685 - '@mermaid-js/mermaid-mindmap': 9.3.0 1706 + vite: 5.4.21 2686 1707 2687 - vitepress@1.6.4(@algolia/client-search@5.40.0)(postcss@8.5.6)(search-insights@2.17.3): 1708 + vitepress@1.6.4(@algolia/client-search@5.46.0)(postcss@8.5.6)(search-insights@2.17.3): 2688 1709 dependencies: 2689 1710 '@docsearch/css': 3.8.2 2690 - '@docsearch/js': 3.8.2(@algolia/client-search@5.40.0)(search-insights@2.17.3) 2691 - '@iconify-json/simple-icons': 1.2.54 1711 + '@docsearch/js': 3.8.2(@algolia/client-search@5.46.0)(search-insights@2.17.3) 1712 + '@iconify-json/simple-icons': 1.2.63 2692 1713 '@shikijs/core': 2.5.0 2693 1714 '@shikijs/transformers': 2.5.0 2694 1715 '@shikijs/types': 2.5.0 2695 1716 '@types/markdown-it': 14.1.2 2696 - '@vitejs/plugin-vue': 5.2.4(vite@5.4.20)(vue@3.5.25) 2697 - '@vue/devtools-api': 7.7.7 2698 - '@vue/shared': 3.5.22 1717 + '@vitejs/plugin-vue': 5.2.4(vite@5.4.21)(vue@3.5.25) 1718 + '@vue/devtools-api': 7.7.9 1719 + '@vue/shared': 3.5.25 2699 1720 '@vueuse/core': 12.8.2 2700 - '@vueuse/integrations': 12.8.2(focus-trap@7.6.5) 2701 - focus-trap: 7.6.5 1721 + '@vueuse/integrations': 12.8.2(focus-trap@7.6.6) 1722 + focus-trap: 7.6.6 2702 1723 mark.js: 8.11.1 2703 1724 minisearch: 7.2.0 2704 1725 shiki: 2.5.0 2705 - vite: 5.4.20 1726 + vite: 5.4.21 2706 1727 vue: 3.5.25 2707 1728 optionalDependencies: 2708 1729 postcss: 8.5.6 ··· 2732 1753 - terser 2733 1754 - typescript 2734 1755 - universal-cookie 2735 - 2736 - vscode-jsonrpc@8.2.0: {} 2737 - 2738 - vscode-languageserver-protocol@3.17.5: 2739 - dependencies: 2740 - vscode-jsonrpc: 8.2.0 2741 - vscode-languageserver-types: 3.17.5 2742 - 2743 - vscode-languageserver-textdocument@1.0.12: {} 2744 - 2745 - vscode-languageserver-types@3.17.5: {} 2746 - 2747 - vscode-languageserver@9.0.1: 2748 - dependencies: 2749 - vscode-languageserver-protocol: 3.17.5 2750 - 2751 - vscode-uri@3.0.8: {} 2752 1756 2753 1757 vue@3.5.25: 2754 1758 dependencies:
+1 -1
doc/reference/errors.md
··· 4 4 description: Most error codes and their associated documentation. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Error Codes 8 8 9 9 {{ $frontmatter.description }}
+1 -1
doc/reference/meta.md
··· 4 4 description: wire hive meta options. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Meta Options 8 8 9 9 {{ $frontmatter.description }} 10 10
+3
doc/snippets/tutorial/cache.conf
··· 1 + # /etc/nix/nix.conf 2 + substituters = https://cache.garnix.io 3 + trusted-public-keys = cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=
+12
doc/snippets/tutorial/cache.nix
··· 1 + { 2 + nix.settings = { 3 + substituters = [ 4 + # ... 5 + "https://cache.garnix.io?priority=3" 6 + ]; 7 + trusted-public-keys = [ 8 + # ... 9 + "cache.garnix.io:CTFPyKSLcx5RMJKfLo5EEPUObbA78b0YQ2DTCJXqr9g=" 10 + ]; 11 + }; 12 + }
+2 -14
doc/tutorial/overview.md
··· 4 4 description: In this tutorial we will create and deploy a wire Hive. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # wire Tutorial Overview 8 8 9 9 wire is a tool to deploy NixOS systems. Its usage is inspired by [colmena](https://colmena.cli.rs/). In many places it's configuration attempts to remain a superset[^1] of colmena, however it is **not** a fork. 10 10 ··· 28 28 29 29 </div> 30 30 31 - ## Why wire? 32 - 33 - ### Features 31 + ## What features does wire have? 34 32 35 33 | Features | wire | Colmena | 36 34 | ------------------------------------------------------------- | ------------------ | ------------------ | ··· 50 48 [^3]: See https://github.com/zhaofengli/colmena/issues/120 51 49 52 50 [^4]: wire lacks an equivalent to `colmena exec`. 53 - 54 - ### Speed 55 - 56 - wire is about >2x faster than colmena deploying [identical large 57 - hives](https://github.com/mrshmllow/wire/blob/trunk/bench/run.nix). 58 - 59 - | Command | Mean [s] | Min [s] | Max [s] | Relative | 60 - | :--------------- | -------: | ------: | ------: | -------: | 61 - | `wire@HEAD` | 185.075 | 185.075 | 185.075 | 1.00 | 62 - | `colmena@pinned` | 343.075 | 343.075 | 343.075 | 1.85 |
+1 -1
doc/tutorial/part-one/basic-hive.md
··· 4 4 description: Creating a basic hive and deploying changes to the virtual machine. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Basic Hive & Deployment 8 8 9 9 {{ $frontmatter.description }} 10 10
+7 -2
doc/tutorial/part-one/nix-setup.md
··· 4 4 description: Installing npins, nix, and enabling the binary cache. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Nix Setup 8 8 9 9 {{ $frontmatter.description }} 10 10 ··· 32 32 cache](https://wiki.nixos.org/wiki/Binary_Cache). 33 33 34 34 You must enable the [garnix binary cache](https://garnix.io/docs/caching) or you 35 - will be compiling everything from source. 35 + will be compiling everything from source: 36 + 37 + ::: code-group 38 + <<< @/snippets/tutorial/cache.conf [nix.conf] 39 + <<< @/snippets/tutorial/cache.nix [configuration.nix] 40 + :::
+1 -1
doc/tutorial/part-one/repo-setup.md
··· 4 4 description: Adding npins sources and a nix development shell. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Preparing Repo & Shell 8 8 9 9 {{ $frontmatter.description }} 10 10
+1 -1
doc/tutorial/part-one/vm-setup.md
··· 4 4 description: Creating a NixOS virtual machine to use as a deployment target. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Creating a Virtual Machine 8 8 9 9 {{ $frontmatter.description }} 10 10
+1 -1
doc/tutorial/part-two/basic-keys.md
··· 4 4 description: Deploy some basic secrets with wire tool. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Deployment Keys Basics 8 8 9 9 {{ $frontmatter.description }} 10 10
+1 -1
doc/tutorial/part-two/encryption.md
··· 4 4 description: Deploy a age-encrypted secret with wire tool. 5 5 --- 6 6 7 - # {{ $frontmatter.title }} 7 + # Deployment Keys Basics 8 8 9 9 {{ $frontmatter.description }} 10 10