An experimental TypeSpec syntax for Lexicon
56
fork

Configure Feed

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

read

+4444 -7149
+44
CLAUDE.md
··· 1 + you're working on a TypeSpec emitter for atproto lexicons. you have these commands: `pnpm run build` builds the example (you can inspect the generated lexicons in the `packages/example/lexicon`) and `pnpm test` runs tests (they are in `packages/emitter/test/`). 2 + 3 + what i want you to do is to gradually keep adding features to typelex so that in the end it's possible to express all Lexicon code with that language. you have the following resources: 4 + 5 + - read `DOCS.md`!!! it's the main guideline 6 + 7 + - `../typespec/packages` has a bunch of other emitters (so you can check how they're implemented and common patterns) 8 + 9 + - `../typespec/website/src/content` has typescpec docs (which you might find very useful) 10 + 11 + - `../atproto-website/src/app/[locale]/specs/lexicon` contains lexicon spec (where we want to reach feature parity), and most importantly 12 + 13 + - `test/scenarios/atproto/output` contains a TON of lexicon definitions which i want you to translate to typespec one by one. for each atproto lexicon you're porting, your job is to create the corresponding "`input`s" for them (and fix bugs or add missing features along the way). 14 + 15 + the goal is to end up with a language that feels nice and concise, not some weird interop thing. so try to do things "typespec" way as you go through each lexicon. and try to respect atproto too. this should feel like a *language for atproto*. consider whether your design is elegant. and make sure to look at other typespec emitters for design ideas! 16 + 17 + remember NOT to change the output to fit the input -- your job is to make the input MATCH the output. if some lexicon is too hard, you can give up on it and try another one. good luck! 18 + 19 + the workflow is: pick some new lexicons, create the input files, figure out missing features / bugs, and try to get tests to pass. repeat. when you make nontrivial progress, you'll want to prepare a commit. 20 + 21 + before you want to make a commit, make sure `pnpm test` and `pnpm run build` passes and, ideally, inspect the `example` app output (and maybe add the features you've just implemented there for parity). then stop and notify me. 22 + 23 + ps. be mindful of the code style. we only put decorators on same line if it's `@required` alone; otherwise, put each on newline and add a newline after. see existing files for a hint. 24 + 25 + good luck! i believe in you 26 + 27 + 28 + --- 29 + 30 + whenever you get stuck (try `npm test`) because you don't have a convention for how to define some pattern yetm i want you to read these sources 31 + 32 + - `../typespec/packages` has a bunch of other emitters (so you can check how they're implemented and common patterns) 33 + 34 + - `../typespec/website/src/content` has typescpec docs (which you might find very useful) 35 + 36 + - `../atproto-website/src/app/[locale]/specs/lexicon` contains lexicon spec 37 + 38 + and ultrathink about what's the most appropriate way to define defs like you want would be in this typespec translation of atproto. you can research these sources for what feels most idiomatic to define that syntax, and how to make 39 + the formatter understand that convention and emit the JSON we want. 40 + 41 + also note that you can always look at generated atproto lexicons in ../atproto/lexicons -- use these!! look at the TS types there for corresponding 42 + models to inspire how you represent things in tsp syntax. 43 + 44 + - read `DOCS.md`!!! it's the main guideline
+1
packages/website/package.json
··· 15 15 "@typespec/playground": "^0.11.0", 16 16 "astro": "^5.14.1", 17 17 "json-stringify-pretty-compact": "^4.0.0", 18 + "lzutf8": "^0.6.3", 18 19 "react": "^19.2.0", 19 20 "react-dom": "^19.2.0", 20 21 "shiki": "^3.13.0"
+41 -2
packages/website/src/pages/index.astro
··· 2 2 import Playground from '../components/Playground'; 3 3 import { highlightCode } from '../utils/shiki'; 4 4 import { compileToJson } from '../utils/compile'; 5 + import { createPlaygroundUrl } from '../utils/playground-url'; 5 6 import stringify from 'json-stringify-pretty-compact'; 6 7 import { mkdtempSync, writeFileSync, rmSync } from 'fs'; 7 8 import { join } from 'path'; ··· 115 116 ...ex, 116 117 typelexHtml: await highlightCode(ex.typelex, 'typespec'), 117 118 lexiconHtml: await highlightCode(lexicon, 'json'), 119 + playgroundUrl: createPlaygroundUrl(ex.typelex), 118 120 }; 119 121 } finally { 120 122 rmSync(tmpDir, { recursive: true, force: true }); ··· 207 209 208 210 <div class="separator"></div> 209 211 210 - {highlighted.map(({ title, typelexHtml, lexiconHtml }) => ( 212 + {highlighted.map(({ title, typelexHtml, lexiconHtml, playgroundUrl }) => ( 211 213 <section> 212 - <h2>{title}</h2> 214 + <h2> 215 + {title} 216 + <a href={playgroundUrl} target="_blank" rel="noopener noreferrer" class="playground-link" aria-label="Open in playground"> 217 + <svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg" aria-hidden="true"> 218 + <path d="M6.5 3.5C6.5 3.22386 6.72386 3 7 3H13C13.2761 3 13.5 3.22386 13.5 3.5V9.5C13.5 9.77614 13.2761 10 13 10C12.7239 10 12.5 9.77614 12.5 9.5V4.70711L6.85355 10.3536C6.65829 10.5488 6.34171 10.5488 6.14645 10.3536C5.95118 10.1583 5.95118 9.84171 6.14645 9.64645L11.7929 4H7C6.72386 4 6.5 3.77614 6.5 3.5Z" fill="currentColor"/> 219 + <path d="M3 5.5C3 4.67157 3.67157 4 4.5 4H5C5.27614 4 5.5 4.22386 5.5 4.5C5.5 4.77614 5.27614 5 5 5H4.5C4.22386 5 4 5.22386 4 5.5V11.5C4 11.7761 4.22386 12 4.5 12H10.5C10.7761 12 11 11.7761 11 11.5V11C11 10.7239 11.2239 10.5 11.5 10.5C11.7761 10.5 12 10.7239 12 11V11.5C12 12.3284 11.3284 13 10.5 13H4.5C3.67157 13 3 12.3284 3 11.5V5.5Z" fill="currentColor"/> 220 + </svg> 221 + </a> 222 + </h2> 213 223 <div class="comparison"> 214 224 <div class="comparison-content"> 215 225 <div class="code-panel"> ··· 1048 1058 max-width: 700px; 1049 1059 margin-left: auto; 1050 1060 margin-right: auto; 1061 + display: flex; 1062 + align-items: center; 1063 + gap: 0.5rem; 1064 + } 1065 + 1066 + .playground-link { 1067 + display: inline-flex; 1068 + align-items: center; 1069 + justify-content: center; 1070 + color: #94a3b8; 1071 + transition: color 0.2s ease, transform 0.2s ease; 1072 + text-decoration: none; 1073 + opacity: 0.6; 1074 + } 1075 + 1076 + .playground-link:hover { 1077 + color: #7a8ef7; 1078 + opacity: 1; 1079 + transform: translateY(-1px); 1080 + } 1081 + 1082 + .playground-link svg { 1083 + width: 1rem; 1084 + height: 1rem; 1051 1085 } 1052 1086 1053 1087 @media (min-width: 768px) { ··· 1058 1092 section h2 { 1059 1093 font-size: 2rem; 1060 1094 margin-bottom: 2.5rem; 1095 + } 1096 + 1097 + .playground-link svg { 1098 + width: 1.125rem; 1099 + height: 1.125rem; 1061 1100 } 1062 1101 } 1063 1102
+14
packages/website/src/utils/playground-url.ts
··· 1 + import lzutf8 from 'lzutf8'; 2 + 3 + const PLAYGROUND_BASE_URL = 'https://typelex-playground.pages.dev/'; 4 + 5 + /** 6 + * Encodes TypeSpec code to a playground URL using the same compression 7 + * scheme as the @typespec/playground package. 8 + */ 9 + export function createPlaygroundUrl(code: string): string { 10 + const compressed = lzutf8.compress(code, { outputEncoding: 'Base64' }); 11 + const params = new URLSearchParams(); 12 + params.set('c', compressed); 13 + return `${PLAYGROUND_BASE_URL}?${params.toString()}`; 14 + }
+4344 -7147
pnpm-lock.yaml
··· 1 - lockfileVersion: "9.0" 1 + lockfileVersion: '9.0' 2 2 3 3 settings: 4 4 autoInstallPeers: true 5 5 excludeLinksFromLockfile: false 6 6 7 7 importers: 8 + 8 9 .: 9 10 devDependencies: 10 11 typescript: ··· 13 14 14 15 packages/emitter: 15 16 dependencies: 16 - "@typespec/compiler": 17 + '@typespec/compiler': 17 18 specifier: ^1.4.0 18 19 version: 1.4.0(@types/node@20.19.19) 19 20 devDependencies: 20 - "@types/node": 21 + '@types/node': 21 22 specifier: ^20.0.0 22 23 version: 20.19.19 23 - "@typespec/http": 24 + '@typespec/http': 24 25 specifier: ^1.4.0 25 26 version: 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 26 - "@typespec/openapi": 27 + '@typespec/openapi': 27 28 specifier: ^1.4.0 28 29 version: 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 29 30 concurrently: ··· 41 42 42 43 packages/example: 43 44 dependencies: 44 - "@atproto/lex-cli": 45 + '@atproto/lex-cli': 45 46 specifier: ^0.9.5 46 47 version: 0.9.5 47 - "@atproto/xrpc-server": 48 + '@atproto/xrpc-server': 48 49 specifier: ^0.9.5 49 50 version: 0.9.5 50 - "@typelex/emitter": 51 + '@typelex/emitter': 51 52 specifier: workspace:* 52 53 version: link:../emitter 53 - "@typespec/compiler": 54 + '@typespec/compiler': 54 55 specifier: ^1.4.0 55 56 version: 1.4.0(@types/node@20.19.19) 56 57 devDependencies: ··· 60 61 61 62 packages/playground: 62 63 dependencies: 63 - "@typelex/emitter": 64 + '@typelex/emitter': 64 65 specifier: workspace:* 65 66 version: link:../emitter 66 - "@typespec/compiler": 67 + '@typespec/compiler': 67 68 specifier: ^1.4.0 68 69 version: 1.4.0(@types/node@20.19.19) 69 - "@typespec/playground": 70 + '@typespec/playground': 70 71 specifier: ^0.11.0 71 72 version: 0.11.0(@types/node@20.19.19)(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(scheduler@0.27.0) 72 73 react: ··· 76 77 specifier: ^18.3.1 77 78 version: 18.3.1(react@18.3.1) 78 79 devDependencies: 79 - "@types/react": 80 + '@types/react': 80 81 specifier: ^18.3.12 81 82 version: 18.3.25 82 - "@types/react-dom": 83 + '@types/react-dom': 83 84 specifier: ^18.3.1 84 85 version: 18.3.7(@types/react@18.3.25) 85 86 vite: ··· 88 89 89 90 packages/website: 90 91 dependencies: 91 - "@astrojs/react": 92 + '@astrojs/react': 92 93 specifier: ^4.4.0 93 94 version: 4.4.0(@types/node@20.19.19)(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(yaml@2.8.1) 94 - "@typelex/emitter": 95 + '@typelex/emitter': 95 96 specifier: workspace:* 96 97 version: link:../emitter 97 - "@typespec/bundler": 98 + '@typespec/bundler': 98 99 specifier: ^0.4.4 99 100 version: 0.4.4(@types/node@20.19.19) 100 - "@typespec/playground": 101 + '@typespec/playground': 101 102 specifier: ^0.11.0 102 103 version: 0.11.0(@types/node@20.19.19)(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(scheduler@0.27.0) 103 104 astro: ··· 106 107 json-stringify-pretty-compact: 107 108 specifier: ^4.0.0 108 109 version: 4.0.0 110 + lzutf8: 111 + specifier: ^0.6.3 112 + version: 0.6.3 109 113 react: 110 114 specifier: ^19.2.0 111 115 version: 19.2.0 ··· 116 120 specifier: ^3.13.0 117 121 version: 3.13.0 118 122 devDependencies: 119 - "@types/react": 123 + '@types/react': 120 124 specifier: ^19.2.0 121 125 version: 19.2.0 122 - "@types/react-dom": 126 + '@types/react-dom': 123 127 specifier: ^19.2.0 124 128 version: 19.2.0(@types/react@19.2.0) 125 - "@typespec/compiler": 129 + '@typespec/compiler': 126 130 specifier: ^1.4.0 127 131 version: 1.4.0(@types/node@20.19.19) 128 132 129 133 packages: 130 - "@apidevtools/json-schema-ref-parser@14.0.1": 131 - resolution: 132 - { 133 - integrity: sha512-Oc96zvmxx1fqoSEdUmfmvvb59/KDOnUoJ7s2t7bISyAn0XEz57LCCw8k2Y4Pf3mwKaZLMciESALORLgfe2frCw==, 134 - } 135 - engines: { node: ">= 16" } 136 134 137 - "@apidevtools/openapi-schemas@2.1.0": 138 - resolution: 139 - { 140 - integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==, 141 - } 142 - engines: { node: ">=10" } 135 + '@apidevtools/json-schema-ref-parser@14.0.1': 136 + resolution: {integrity: sha512-Oc96zvmxx1fqoSEdUmfmvvb59/KDOnUoJ7s2t7bISyAn0XEz57LCCw8k2Y4Pf3mwKaZLMciESALORLgfe2frCw==} 137 + engines: {node: '>= 16'} 138 + 139 + '@apidevtools/openapi-schemas@2.1.0': 140 + resolution: {integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==} 141 + engines: {node: '>=10'} 143 142 144 - "@apidevtools/swagger-methods@3.0.2": 145 - resolution: 146 - { 147 - integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==, 148 - } 143 + '@apidevtools/swagger-methods@3.0.2': 144 + resolution: {integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==} 149 145 150 - "@apidevtools/swagger-parser@12.0.0": 151 - resolution: 152 - { 153 - integrity: sha512-WLJIWcfOXrSKlZEM+yhA2Xzatgl488qr1FoOxixYmtWapBzwSC0gVGq4WObr4hHClMIiFFdOBdixNkvWqkWIWA==, 154 - } 146 + '@apidevtools/swagger-parser@12.0.0': 147 + resolution: {integrity: sha512-WLJIWcfOXrSKlZEM+yhA2Xzatgl488qr1FoOxixYmtWapBzwSC0gVGq4WObr4hHClMIiFFdOBdixNkvWqkWIWA==} 155 148 peerDependencies: 156 - openapi-types: ">=7" 149 + openapi-types: '>=7' 157 150 158 - "@astrojs/compiler@2.13.0": 159 - resolution: 160 - { 161 - integrity: sha512-mqVORhUJViA28fwHYaWmsXSzLO9osbdZ5ImUfxBarqsYdMlPbqAqGJCxsNzvppp1BEzc1mJNjOVvQqeDN8Vspw==, 162 - } 151 + '@astrojs/compiler@2.13.0': 152 + resolution: {integrity: sha512-mqVORhUJViA28fwHYaWmsXSzLO9osbdZ5ImUfxBarqsYdMlPbqAqGJCxsNzvppp1BEzc1mJNjOVvQqeDN8Vspw==} 163 153 164 - "@astrojs/internal-helpers@0.7.3": 165 - resolution: 166 - { 167 - integrity: sha512-6Pl0bQEIChuW5wqN7jdKrzWfCscW2rG/Cz+fzt4PhSQX2ivBpnhXgFUCs0M3DCYvjYHnPVG2W36X5rmFjZ62sw==, 168 - } 154 + '@astrojs/internal-helpers@0.7.3': 155 + resolution: {integrity: sha512-6Pl0bQEIChuW5wqN7jdKrzWfCscW2rG/Cz+fzt4PhSQX2ivBpnhXgFUCs0M3DCYvjYHnPVG2W36X5rmFjZ62sw==} 169 156 170 - "@astrojs/markdown-remark@6.3.7": 171 - resolution: 172 - { 173 - integrity: sha512-KXGdq6/BC18doBCYXp08alHlWChH0hdD2B1qv9wIyOHbvwI5K6I7FhSta8dq1hBQNdun8YkKPR013D/Hm8xd0g==, 174 - } 157 + '@astrojs/markdown-remark@6.3.7': 158 + resolution: {integrity: sha512-KXGdq6/BC18doBCYXp08alHlWChH0hdD2B1qv9wIyOHbvwI5K6I7FhSta8dq1hBQNdun8YkKPR013D/Hm8xd0g==} 175 159 176 - "@astrojs/prism@3.3.0": 177 - resolution: 178 - { 179 - integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==, 180 - } 181 - engines: { node: 18.20.8 || ^20.3.0 || >=22.0.0 } 160 + '@astrojs/prism@3.3.0': 161 + resolution: {integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==} 162 + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 182 163 183 - "@astrojs/react@4.4.0": 184 - resolution: 185 - { 186 - integrity: sha512-RzblkVImAFdV1C0AWsSWzS70Z0FMtW2p0XXkNYu3QePfyVJta3JIy8m8jY8271etaCZtpFjsE2UaiHGZIBm6nw==, 187 - } 188 - engines: { node: 18.20.8 || ^20.3.0 || >=22.0.0 } 164 + '@astrojs/react@4.4.0': 165 + resolution: {integrity: sha512-RzblkVImAFdV1C0AWsSWzS70Z0FMtW2p0XXkNYu3QePfyVJta3JIy8m8jY8271etaCZtpFjsE2UaiHGZIBm6nw==} 166 + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 189 167 peerDependencies: 190 - "@types/react": ^17.0.50 || ^18.0.21 || ^19.0.0 191 - "@types/react-dom": ^17.0.17 || ^18.0.6 || ^19.0.0 168 + '@types/react': ^17.0.50 || ^18.0.21 || ^19.0.0 169 + '@types/react-dom': ^17.0.17 || ^18.0.6 || ^19.0.0 192 170 react: ^17.0.2 || ^18.0.0 || ^19.0.0 193 171 react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0 194 172 195 - "@astrojs/telemetry@3.3.0": 196 - resolution: 197 - { 198 - integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==, 199 - } 200 - engines: { node: 18.20.8 || ^20.3.0 || >=22.0.0 } 173 + '@astrojs/telemetry@3.3.0': 174 + resolution: {integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==} 175 + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 201 176 202 - "@atproto/common-web@0.4.3": 203 - resolution: 204 - { 205 - integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==, 206 - } 177 + '@atproto/common-web@0.4.3': 178 + resolution: {integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==} 207 179 208 - "@atproto/common@0.4.12": 209 - resolution: 210 - { 211 - integrity: sha512-NC+TULLQiqs6MvNymhQS5WDms3SlbIKGLf4n33tpftRJcalh507rI+snbcUb7TLIkKw7VO17qMqxEXtIdd5auQ==, 212 - } 213 - engines: { node: ">=18.7.0" } 180 + '@atproto/common@0.4.12': 181 + resolution: {integrity: sha512-NC+TULLQiqs6MvNymhQS5WDms3SlbIKGLf4n33tpftRJcalh507rI+snbcUb7TLIkKw7VO17qMqxEXtIdd5auQ==} 182 + engines: {node: '>=18.7.0'} 214 183 215 - "@atproto/crypto@0.4.4": 216 - resolution: 217 - { 218 - integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==, 219 - } 220 - engines: { node: ">=18.7.0" } 184 + '@atproto/crypto@0.4.4': 185 + resolution: {integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==} 186 + engines: {node: '>=18.7.0'} 221 187 222 - "@atproto/lex-cli@0.9.5": 223 - resolution: 224 - { 225 - integrity: sha512-zun4jhD1dbjD7IHtLIjh/1UsMx+6E8+OyOT2GXYAKIj9N6wmLKM/v2OeQBKxcyqUmtRi57lxWnGikWjjU7pplQ==, 226 - } 227 - engines: { node: ">=18.7.0" } 188 + '@atproto/lex-cli@0.9.5': 189 + resolution: {integrity: sha512-zun4jhD1dbjD7IHtLIjh/1UsMx+6E8+OyOT2GXYAKIj9N6wmLKM/v2OeQBKxcyqUmtRi57lxWnGikWjjU7pplQ==} 190 + engines: {node: '>=18.7.0'} 228 191 hasBin: true 229 192 230 - "@atproto/lexicon@0.5.1": 231 - resolution: 232 - { 233 - integrity: sha512-y8AEtYmfgVl4fqFxqXAeGvhesiGkxiy3CWoJIfsFDDdTlZUC8DFnZrYhcqkIop3OlCkkljvpSJi1hbeC1tbi8A==, 234 - } 193 + '@atproto/lexicon@0.5.1': 194 + resolution: {integrity: sha512-y8AEtYmfgVl4fqFxqXAeGvhesiGkxiy3CWoJIfsFDDdTlZUC8DFnZrYhcqkIop3OlCkkljvpSJi1hbeC1tbi8A==} 235 195 236 - "@atproto/syntax@0.4.1": 237 - resolution: 238 - { 239 - integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==, 240 - } 196 + '@atproto/syntax@0.4.1': 197 + resolution: {integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==} 241 198 242 - "@atproto/xrpc-server@0.9.5": 243 - resolution: 244 - { 245 - integrity: sha512-V0srjUgy6mQ5yf9+MSNBLs457m4qclEaWZsnqIE7RfYywvntexTAbMoo7J7ONfTNwdmA9Gw4oLak2z2cDAET4w==, 246 - } 247 - engines: { node: ">=18.7.0" } 199 + '@atproto/xrpc-server@0.9.5': 200 + resolution: {integrity: sha512-V0srjUgy6mQ5yf9+MSNBLs457m4qclEaWZsnqIE7RfYywvntexTAbMoo7J7ONfTNwdmA9Gw4oLak2z2cDAET4w==} 201 + engines: {node: '>=18.7.0'} 248 202 249 - "@atproto/xrpc@0.7.5": 250 - resolution: 251 - { 252 - integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==, 253 - } 203 + '@atproto/xrpc@0.7.5': 204 + resolution: {integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==} 254 205 255 - "@babel/code-frame@7.27.1": 256 - resolution: 257 - { 258 - integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==, 259 - } 260 - engines: { node: ">=6.9.0" } 206 + '@babel/code-frame@7.27.1': 207 + resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 208 + engines: {node: '>=6.9.0'} 261 209 262 - "@babel/compat-data@7.28.4": 263 - resolution: 264 - { 265 - integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==, 266 - } 267 - engines: { node: ">=6.9.0" } 210 + '@babel/compat-data@7.28.4': 211 + resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} 212 + engines: {node: '>=6.9.0'} 268 213 269 - "@babel/core@7.28.4": 270 - resolution: 271 - { 272 - integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==, 273 - } 274 - engines: { node: ">=6.9.0" } 214 + '@babel/core@7.28.4': 215 + resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} 216 + engines: {node: '>=6.9.0'} 275 217 276 - "@babel/generator@7.28.3": 277 - resolution: 278 - { 279 - integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==, 280 - } 281 - engines: { node: ">=6.9.0" } 218 + '@babel/generator@7.28.3': 219 + resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} 220 + engines: {node: '>=6.9.0'} 282 221 283 - "@babel/helper-compilation-targets@7.27.2": 284 - resolution: 285 - { 286 - integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==, 287 - } 288 - engines: { node: ">=6.9.0" } 222 + '@babel/helper-compilation-targets@7.27.2': 223 + resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} 224 + engines: {node: '>=6.9.0'} 289 225 290 - "@babel/helper-globals@7.28.0": 291 - resolution: 292 - { 293 - integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==, 294 - } 295 - engines: { node: ">=6.9.0" } 226 + '@babel/helper-globals@7.28.0': 227 + resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} 228 + engines: {node: '>=6.9.0'} 296 229 297 - "@babel/helper-module-imports@7.27.1": 298 - resolution: 299 - { 300 - integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==, 301 - } 302 - engines: { node: ">=6.9.0" } 230 + '@babel/helper-module-imports@7.27.1': 231 + resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} 232 + engines: {node: '>=6.9.0'} 303 233 304 - "@babel/helper-module-transforms@7.28.3": 305 - resolution: 306 - { 307 - integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==, 308 - } 309 - engines: { node: ">=6.9.0" } 234 + '@babel/helper-module-transforms@7.28.3': 235 + resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} 236 + engines: {node: '>=6.9.0'} 310 237 peerDependencies: 311 - "@babel/core": ^7.0.0 238 + '@babel/core': ^7.0.0 312 239 313 - "@babel/helper-plugin-utils@7.27.1": 314 - resolution: 315 - { 316 - integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==, 317 - } 318 - engines: { node: ">=6.9.0" } 240 + '@babel/helper-plugin-utils@7.27.1': 241 + resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} 242 + engines: {node: '>=6.9.0'} 319 243 320 - "@babel/helper-string-parser@7.27.1": 321 - resolution: 322 - { 323 - integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==, 324 - } 325 - engines: { node: ">=6.9.0" } 244 + '@babel/helper-string-parser@7.27.1': 245 + resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 246 + engines: {node: '>=6.9.0'} 326 247 327 - "@babel/helper-validator-identifier@7.27.1": 328 - resolution: 329 - { 330 - integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==, 331 - } 332 - engines: { node: ">=6.9.0" } 248 + '@babel/helper-validator-identifier@7.27.1': 249 + resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 250 + engines: {node: '>=6.9.0'} 333 251 334 - "@babel/helper-validator-option@7.27.1": 335 - resolution: 336 - { 337 - integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==, 338 - } 339 - engines: { node: ">=6.9.0" } 252 + '@babel/helper-validator-option@7.27.1': 253 + resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 254 + engines: {node: '>=6.9.0'} 340 255 341 - "@babel/helpers@7.28.4": 342 - resolution: 343 - { 344 - integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==, 345 - } 346 - engines: { node: ">=6.9.0" } 256 + '@babel/helpers@7.28.4': 257 + resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} 258 + engines: {node: '>=6.9.0'} 347 259 348 - "@babel/parser@7.28.4": 349 - resolution: 350 - { 351 - integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==, 352 - } 353 - engines: { node: ">=6.0.0" } 260 + '@babel/parser@7.28.4': 261 + resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} 262 + engines: {node: '>=6.0.0'} 354 263 hasBin: true 355 264 356 - "@babel/plugin-transform-react-jsx-self@7.27.1": 357 - resolution: 358 - { 359 - integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==, 360 - } 361 - engines: { node: ">=6.9.0" } 265 + '@babel/plugin-transform-react-jsx-self@7.27.1': 266 + resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} 267 + engines: {node: '>=6.9.0'} 362 268 peerDependencies: 363 - "@babel/core": ^7.0.0-0 269 + '@babel/core': ^7.0.0-0 364 270 365 - "@babel/plugin-transform-react-jsx-source@7.27.1": 366 - resolution: 367 - { 368 - integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==, 369 - } 370 - engines: { node: ">=6.9.0" } 271 + '@babel/plugin-transform-react-jsx-source@7.27.1': 272 + resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} 273 + engines: {node: '>=6.9.0'} 371 274 peerDependencies: 372 - "@babel/core": ^7.0.0-0 275 + '@babel/core': ^7.0.0-0 373 276 374 - "@babel/runtime@7.28.4": 375 - resolution: 376 - { 377 - integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==, 378 - } 379 - engines: { node: ">=6.9.0" } 277 + '@babel/runtime@7.28.4': 278 + resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} 279 + engines: {node: '>=6.9.0'} 380 280 381 - "@babel/template@7.27.2": 382 - resolution: 383 - { 384 - integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==, 385 - } 386 - engines: { node: ">=6.9.0" } 281 + '@babel/template@7.27.2': 282 + resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} 283 + engines: {node: '>=6.9.0'} 387 284 388 - "@babel/traverse@7.28.4": 389 - resolution: 390 - { 391 - integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==, 392 - } 393 - engines: { node: ">=6.9.0" } 285 + '@babel/traverse@7.28.4': 286 + resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} 287 + engines: {node: '>=6.9.0'} 394 288 395 - "@babel/types@7.28.4": 396 - resolution: 397 - { 398 - integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==, 399 - } 400 - engines: { node: ">=6.9.0" } 289 + '@babel/types@7.28.4': 290 + resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} 291 + engines: {node: '>=6.9.0'} 401 292 402 - "@capsizecss/unpack@2.4.0": 403 - resolution: 404 - { 405 - integrity: sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==, 406 - } 293 + '@capsizecss/unpack@2.4.0': 294 + resolution: {integrity: sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==} 407 295 408 - "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": 409 - resolution: 410 - { 411 - integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==, 412 - } 296 + '@cbor-extract/cbor-extract-darwin-arm64@2.2.0': 297 + resolution: {integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==} 413 298 cpu: [arm64] 414 299 os: [darwin] 415 300 416 - "@cbor-extract/cbor-extract-darwin-x64@2.2.0": 417 - resolution: 418 - { 419 - integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==, 420 - } 301 + '@cbor-extract/cbor-extract-darwin-x64@2.2.0': 302 + resolution: {integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==} 421 303 cpu: [x64] 422 304 os: [darwin] 423 305 424 - "@cbor-extract/cbor-extract-linux-arm64@2.2.0": 425 - resolution: 426 - { 427 - integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==, 428 - } 306 + '@cbor-extract/cbor-extract-linux-arm64@2.2.0': 307 + resolution: {integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==} 429 308 cpu: [arm64] 430 309 os: [linux] 431 310 432 - "@cbor-extract/cbor-extract-linux-arm@2.2.0": 433 - resolution: 434 - { 435 - integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==, 436 - } 311 + '@cbor-extract/cbor-extract-linux-arm@2.2.0': 312 + resolution: {integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==} 437 313 cpu: [arm] 438 314 os: [linux] 439 315 440 - "@cbor-extract/cbor-extract-linux-x64@2.2.0": 441 - resolution: 442 - { 443 - integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==, 444 - } 316 + '@cbor-extract/cbor-extract-linux-x64@2.2.0': 317 + resolution: {integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==} 445 318 cpu: [x64] 446 319 os: [linux] 447 320 448 - "@cbor-extract/cbor-extract-win32-x64@2.2.0": 449 - resolution: 450 - { 451 - integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==, 452 - } 321 + '@cbor-extract/cbor-extract-win32-x64@2.2.0': 322 + resolution: {integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==} 453 323 cpu: [x64] 454 324 os: [win32] 455 325 456 - "@ctrl/tinycolor@3.6.1": 457 - resolution: 458 - { 459 - integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==, 460 - } 461 - engines: { node: ">=10" } 326 + '@ctrl/tinycolor@3.6.1': 327 + resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} 328 + engines: {node: '>=10'} 462 329 463 - "@emnapi/runtime@1.5.0": 464 - resolution: 465 - { 466 - integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==, 467 - } 330 + '@emnapi/runtime@1.5.0': 331 + resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==} 468 332 469 - "@emotion/hash@0.9.2": 470 - resolution: 471 - { 472 - integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==, 473 - } 333 + '@emotion/hash@0.9.2': 334 + resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} 474 335 475 - "@esbuild/aix-ppc64@0.21.5": 476 - resolution: 477 - { 478 - integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==, 479 - } 480 - engines: { node: ">=12" } 336 + '@esbuild/aix-ppc64@0.21.5': 337 + resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 338 + engines: {node: '>=12'} 481 339 cpu: [ppc64] 482 340 os: [aix] 483 341 484 - "@esbuild/aix-ppc64@0.25.10": 485 - resolution: 486 - { 487 - integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==, 488 - } 489 - engines: { node: ">=18" } 342 + '@esbuild/aix-ppc64@0.25.10': 343 + resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} 344 + engines: {node: '>=18'} 490 345 cpu: [ppc64] 491 346 os: [aix] 492 347 493 - "@esbuild/android-arm64@0.21.5": 494 - resolution: 495 - { 496 - integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==, 497 - } 498 - engines: { node: ">=12" } 348 + '@esbuild/android-arm64@0.21.5': 349 + resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 350 + engines: {node: '>=12'} 499 351 cpu: [arm64] 500 352 os: [android] 501 353 502 - "@esbuild/android-arm64@0.25.10": 503 - resolution: 504 - { 505 - integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==, 506 - } 507 - engines: { node: ">=18" } 354 + '@esbuild/android-arm64@0.25.10': 355 + resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} 356 + engines: {node: '>=18'} 508 357 cpu: [arm64] 509 358 os: [android] 510 359 511 - "@esbuild/android-arm@0.21.5": 512 - resolution: 513 - { 514 - integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==, 515 - } 516 - engines: { node: ">=12" } 360 + '@esbuild/android-arm@0.21.5': 361 + resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 362 + engines: {node: '>=12'} 517 363 cpu: [arm] 518 364 os: [android] 519 365 520 - "@esbuild/android-arm@0.25.10": 521 - resolution: 522 - { 523 - integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==, 524 - } 525 - engines: { node: ">=18" } 366 + '@esbuild/android-arm@0.25.10': 367 + resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} 368 + engines: {node: '>=18'} 526 369 cpu: [arm] 527 370 os: [android] 528 371 529 - "@esbuild/android-x64@0.21.5": 530 - resolution: 531 - { 532 - integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==, 533 - } 534 - engines: { node: ">=12" } 372 + '@esbuild/android-x64@0.21.5': 373 + resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 374 + engines: {node: '>=12'} 535 375 cpu: [x64] 536 376 os: [android] 537 377 538 - "@esbuild/android-x64@0.25.10": 539 - resolution: 540 - { 541 - integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==, 542 - } 543 - engines: { node: ">=18" } 378 + '@esbuild/android-x64@0.25.10': 379 + resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} 380 + engines: {node: '>=18'} 544 381 cpu: [x64] 545 382 os: [android] 546 383 547 - "@esbuild/darwin-arm64@0.21.5": 548 - resolution: 549 - { 550 - integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==, 551 - } 552 - engines: { node: ">=12" } 384 + '@esbuild/darwin-arm64@0.21.5': 385 + resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 386 + engines: {node: '>=12'} 553 387 cpu: [arm64] 554 388 os: [darwin] 555 389 556 - "@esbuild/darwin-arm64@0.25.10": 557 - resolution: 558 - { 559 - integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==, 560 - } 561 - engines: { node: ">=18" } 390 + '@esbuild/darwin-arm64@0.25.10': 391 + resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} 392 + engines: {node: '>=18'} 562 393 cpu: [arm64] 563 394 os: [darwin] 564 395 565 - "@esbuild/darwin-x64@0.21.5": 566 - resolution: 567 - { 568 - integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==, 569 - } 570 - engines: { node: ">=12" } 396 + '@esbuild/darwin-x64@0.21.5': 397 + resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 398 + engines: {node: '>=12'} 571 399 cpu: [x64] 572 400 os: [darwin] 573 401 574 - "@esbuild/darwin-x64@0.25.10": 575 - resolution: 576 - { 577 - integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==, 578 - } 579 - engines: { node: ">=18" } 402 + '@esbuild/darwin-x64@0.25.10': 403 + resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} 404 + engines: {node: '>=18'} 580 405 cpu: [x64] 581 406 os: [darwin] 582 407 583 - "@esbuild/freebsd-arm64@0.21.5": 584 - resolution: 585 - { 586 - integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==, 587 - } 588 - engines: { node: ">=12" } 408 + '@esbuild/freebsd-arm64@0.21.5': 409 + resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 410 + engines: {node: '>=12'} 589 411 cpu: [arm64] 590 412 os: [freebsd] 591 413 592 - "@esbuild/freebsd-arm64@0.25.10": 593 - resolution: 594 - { 595 - integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==, 596 - } 597 - engines: { node: ">=18" } 414 + '@esbuild/freebsd-arm64@0.25.10': 415 + resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} 416 + engines: {node: '>=18'} 598 417 cpu: [arm64] 599 418 os: [freebsd] 600 419 601 - "@esbuild/freebsd-x64@0.21.5": 602 - resolution: 603 - { 604 - integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==, 605 - } 606 - engines: { node: ">=12" } 420 + '@esbuild/freebsd-x64@0.21.5': 421 + resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 422 + engines: {node: '>=12'} 607 423 cpu: [x64] 608 424 os: [freebsd] 609 425 610 - "@esbuild/freebsd-x64@0.25.10": 611 - resolution: 612 - { 613 - integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==, 614 - } 615 - engines: { node: ">=18" } 426 + '@esbuild/freebsd-x64@0.25.10': 427 + resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} 428 + engines: {node: '>=18'} 616 429 cpu: [x64] 617 430 os: [freebsd] 618 431 619 - "@esbuild/linux-arm64@0.21.5": 620 - resolution: 621 - { 622 - integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==, 623 - } 624 - engines: { node: ">=12" } 432 + '@esbuild/linux-arm64@0.21.5': 433 + resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 434 + engines: {node: '>=12'} 625 435 cpu: [arm64] 626 436 os: [linux] 627 437 628 - "@esbuild/linux-arm64@0.25.10": 629 - resolution: 630 - { 631 - integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==, 632 - } 633 - engines: { node: ">=18" } 438 + '@esbuild/linux-arm64@0.25.10': 439 + resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} 440 + engines: {node: '>=18'} 634 441 cpu: [arm64] 635 442 os: [linux] 636 443 637 - "@esbuild/linux-arm@0.21.5": 638 - resolution: 639 - { 640 - integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==, 641 - } 642 - engines: { node: ">=12" } 444 + '@esbuild/linux-arm@0.21.5': 445 + resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 446 + engines: {node: '>=12'} 643 447 cpu: [arm] 644 448 os: [linux] 645 449 646 - "@esbuild/linux-arm@0.25.10": 647 - resolution: 648 - { 649 - integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==, 650 - } 651 - engines: { node: ">=18" } 450 + '@esbuild/linux-arm@0.25.10': 451 + resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} 452 + engines: {node: '>=18'} 652 453 cpu: [arm] 653 454 os: [linux] 654 455 655 - "@esbuild/linux-ia32@0.21.5": 656 - resolution: 657 - { 658 - integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==, 659 - } 660 - engines: { node: ">=12" } 456 + '@esbuild/linux-ia32@0.21.5': 457 + resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 458 + engines: {node: '>=12'} 661 459 cpu: [ia32] 662 460 os: [linux] 663 461 664 - "@esbuild/linux-ia32@0.25.10": 665 - resolution: 666 - { 667 - integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==, 668 - } 669 - engines: { node: ">=18" } 462 + '@esbuild/linux-ia32@0.25.10': 463 + resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} 464 + engines: {node: '>=18'} 670 465 cpu: [ia32] 671 466 os: [linux] 672 467 673 - "@esbuild/linux-loong64@0.21.5": 674 - resolution: 675 - { 676 - integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==, 677 - } 678 - engines: { node: ">=12" } 468 + '@esbuild/linux-loong64@0.21.5': 469 + resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 470 + engines: {node: '>=12'} 679 471 cpu: [loong64] 680 472 os: [linux] 681 473 682 - "@esbuild/linux-loong64@0.25.10": 683 - resolution: 684 - { 685 - integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==, 686 - } 687 - engines: { node: ">=18" } 474 + '@esbuild/linux-loong64@0.25.10': 475 + resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} 476 + engines: {node: '>=18'} 688 477 cpu: [loong64] 689 478 os: [linux] 690 479 691 - "@esbuild/linux-mips64el@0.21.5": 692 - resolution: 693 - { 694 - integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==, 695 - } 696 - engines: { node: ">=12" } 480 + '@esbuild/linux-mips64el@0.21.5': 481 + resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 482 + engines: {node: '>=12'} 697 483 cpu: [mips64el] 698 484 os: [linux] 699 485 700 - "@esbuild/linux-mips64el@0.25.10": 701 - resolution: 702 - { 703 - integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==, 704 - } 705 - engines: { node: ">=18" } 486 + '@esbuild/linux-mips64el@0.25.10': 487 + resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} 488 + engines: {node: '>=18'} 706 489 cpu: [mips64el] 707 490 os: [linux] 708 491 709 - "@esbuild/linux-ppc64@0.21.5": 710 - resolution: 711 - { 712 - integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==, 713 - } 714 - engines: { node: ">=12" } 492 + '@esbuild/linux-ppc64@0.21.5': 493 + resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 494 + engines: {node: '>=12'} 715 495 cpu: [ppc64] 716 496 os: [linux] 717 497 718 - "@esbuild/linux-ppc64@0.25.10": 719 - resolution: 720 - { 721 - integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==, 722 - } 723 - engines: { node: ">=18" } 498 + '@esbuild/linux-ppc64@0.25.10': 499 + resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} 500 + engines: {node: '>=18'} 724 501 cpu: [ppc64] 725 502 os: [linux] 726 503 727 - "@esbuild/linux-riscv64@0.21.5": 728 - resolution: 729 - { 730 - integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==, 731 - } 732 - engines: { node: ">=12" } 504 + '@esbuild/linux-riscv64@0.21.5': 505 + resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 506 + engines: {node: '>=12'} 733 507 cpu: [riscv64] 734 508 os: [linux] 735 509 736 - "@esbuild/linux-riscv64@0.25.10": 737 - resolution: 738 - { 739 - integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==, 740 - } 741 - engines: { node: ">=18" } 510 + '@esbuild/linux-riscv64@0.25.10': 511 + resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} 512 + engines: {node: '>=18'} 742 513 cpu: [riscv64] 743 514 os: [linux] 744 515 745 - "@esbuild/linux-s390x@0.21.5": 746 - resolution: 747 - { 748 - integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==, 749 - } 750 - engines: { node: ">=12" } 516 + '@esbuild/linux-s390x@0.21.5': 517 + resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 518 + engines: {node: '>=12'} 751 519 cpu: [s390x] 752 520 os: [linux] 753 521 754 - "@esbuild/linux-s390x@0.25.10": 755 - resolution: 756 - { 757 - integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==, 758 - } 759 - engines: { node: ">=18" } 522 + '@esbuild/linux-s390x@0.25.10': 523 + resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} 524 + engines: {node: '>=18'} 760 525 cpu: [s390x] 761 526 os: [linux] 762 527 763 - "@esbuild/linux-x64@0.21.5": 764 - resolution: 765 - { 766 - integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==, 767 - } 768 - engines: { node: ">=12" } 528 + '@esbuild/linux-x64@0.21.5': 529 + resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 530 + engines: {node: '>=12'} 769 531 cpu: [x64] 770 532 os: [linux] 771 533 772 - "@esbuild/linux-x64@0.25.10": 773 - resolution: 774 - { 775 - integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==, 776 - } 777 - engines: { node: ">=18" } 534 + '@esbuild/linux-x64@0.25.10': 535 + resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} 536 + engines: {node: '>=18'} 778 537 cpu: [x64] 779 538 os: [linux] 780 539 781 - "@esbuild/netbsd-arm64@0.25.10": 782 - resolution: 783 - { 784 - integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==, 785 - } 786 - engines: { node: ">=18" } 540 + '@esbuild/netbsd-arm64@0.25.10': 541 + resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} 542 + engines: {node: '>=18'} 787 543 cpu: [arm64] 788 544 os: [netbsd] 789 545 790 - "@esbuild/netbsd-x64@0.21.5": 791 - resolution: 792 - { 793 - integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==, 794 - } 795 - engines: { node: ">=12" } 546 + '@esbuild/netbsd-x64@0.21.5': 547 + resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 548 + engines: {node: '>=12'} 796 549 cpu: [x64] 797 550 os: [netbsd] 798 551 799 - "@esbuild/netbsd-x64@0.25.10": 800 - resolution: 801 - { 802 - integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==, 803 - } 804 - engines: { node: ">=18" } 552 + '@esbuild/netbsd-x64@0.25.10': 553 + resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} 554 + engines: {node: '>=18'} 805 555 cpu: [x64] 806 556 os: [netbsd] 807 557 808 - "@esbuild/openbsd-arm64@0.25.10": 809 - resolution: 810 - { 811 - integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==, 812 - } 813 - engines: { node: ">=18" } 558 + '@esbuild/openbsd-arm64@0.25.10': 559 + resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} 560 + engines: {node: '>=18'} 814 561 cpu: [arm64] 815 562 os: [openbsd] 816 563 817 - "@esbuild/openbsd-x64@0.21.5": 818 - resolution: 819 - { 820 - integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==, 821 - } 822 - engines: { node: ">=12" } 564 + '@esbuild/openbsd-x64@0.21.5': 565 + resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 566 + engines: {node: '>=12'} 823 567 cpu: [x64] 824 568 os: [openbsd] 825 569 826 - "@esbuild/openbsd-x64@0.25.10": 827 - resolution: 828 - { 829 - integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==, 830 - } 831 - engines: { node: ">=18" } 570 + '@esbuild/openbsd-x64@0.25.10': 571 + resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} 572 + engines: {node: '>=18'} 832 573 cpu: [x64] 833 574 os: [openbsd] 834 575 835 - "@esbuild/openharmony-arm64@0.25.10": 836 - resolution: 837 - { 838 - integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==, 839 - } 840 - engines: { node: ">=18" } 576 + '@esbuild/openharmony-arm64@0.25.10': 577 + resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} 578 + engines: {node: '>=18'} 841 579 cpu: [arm64] 842 580 os: [openharmony] 843 581 844 - "@esbuild/sunos-x64@0.21.5": 845 - resolution: 846 - { 847 - integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==, 848 - } 849 - engines: { node: ">=12" } 582 + '@esbuild/sunos-x64@0.21.5': 583 + resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 584 + engines: {node: '>=12'} 850 585 cpu: [x64] 851 586 os: [sunos] 852 587 853 - "@esbuild/sunos-x64@0.25.10": 854 - resolution: 855 - { 856 - integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==, 857 - } 858 - engines: { node: ">=18" } 588 + '@esbuild/sunos-x64@0.25.10': 589 + resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} 590 + engines: {node: '>=18'} 859 591 cpu: [x64] 860 592 os: [sunos] 861 593 862 - "@esbuild/win32-arm64@0.21.5": 863 - resolution: 864 - { 865 - integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==, 866 - } 867 - engines: { node: ">=12" } 594 + '@esbuild/win32-arm64@0.21.5': 595 + resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 596 + engines: {node: '>=12'} 868 597 cpu: [arm64] 869 598 os: [win32] 870 599 871 - "@esbuild/win32-arm64@0.25.10": 872 - resolution: 873 - { 874 - integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==, 875 - } 876 - engines: { node: ">=18" } 600 + '@esbuild/win32-arm64@0.25.10': 601 + resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} 602 + engines: {node: '>=18'} 877 603 cpu: [arm64] 878 604 os: [win32] 879 605 880 - "@esbuild/win32-ia32@0.21.5": 881 - resolution: 882 - { 883 - integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==, 884 - } 885 - engines: { node: ">=12" } 606 + '@esbuild/win32-ia32@0.21.5': 607 + resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 608 + engines: {node: '>=12'} 886 609 cpu: [ia32] 887 610 os: [win32] 888 611 889 - "@esbuild/win32-ia32@0.25.10": 890 - resolution: 891 - { 892 - integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==, 893 - } 894 - engines: { node: ">=18" } 612 + '@esbuild/win32-ia32@0.25.10': 613 + resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} 614 + engines: {node: '>=18'} 895 615 cpu: [ia32] 896 616 os: [win32] 897 617 898 - "@esbuild/win32-x64@0.21.5": 899 - resolution: 900 - { 901 - integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==, 902 - } 903 - engines: { node: ">=12" } 618 + '@esbuild/win32-x64@0.21.5': 619 + resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 620 + engines: {node: '>=12'} 904 621 cpu: [x64] 905 622 os: [win32] 906 623 907 - "@esbuild/win32-x64@0.25.10": 908 - resolution: 909 - { 910 - integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==, 911 - } 912 - engines: { node: ">=18" } 624 + '@esbuild/win32-x64@0.25.10': 625 + resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} 626 + engines: {node: '>=18'} 913 627 cpu: [x64] 914 628 os: [win32] 915 629 916 - "@floating-ui/core@1.7.3": 917 - resolution: 918 - { 919 - integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==, 920 - } 630 + '@floating-ui/core@1.7.3': 631 + resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==} 921 632 922 - "@floating-ui/devtools@0.2.3": 923 - resolution: 924 - { 925 - integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==, 926 - } 633 + '@floating-ui/devtools@0.2.3': 634 + resolution: {integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==} 927 635 peerDependencies: 928 - "@floating-ui/dom": ^1.0.0 636 + '@floating-ui/dom': ^1.0.0 929 637 930 - "@floating-ui/dom@1.7.4": 931 - resolution: 932 - { 933 - integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==, 934 - } 638 + '@floating-ui/dom@1.7.4': 639 + resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==} 935 640 936 - "@floating-ui/utils@0.2.10": 937 - resolution: 938 - { 939 - integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==, 940 - } 641 + '@floating-ui/utils@0.2.10': 642 + resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} 941 643 942 - "@fluentui/keyboard-keys@9.0.8": 943 - resolution: 944 - { 945 - integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==, 946 - } 644 + '@fluentui/keyboard-keys@9.0.8': 645 + resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==} 947 646 948 - "@fluentui/priority-overflow@9.2.0": 949 - resolution: 950 - { 951 - integrity: sha512-uwB5drtNGeEdLO3CEzM/VolyzkywIgpNhuOzFrLbKFxq20kCqteRDkUJIySgYu/+rK+Cyl8xiKmLzey49nlocg==, 952 - } 647 + '@fluentui/priority-overflow@9.2.0': 648 + resolution: {integrity: sha512-uwB5drtNGeEdLO3CEzM/VolyzkywIgpNhuOzFrLbKFxq20kCqteRDkUJIySgYu/+rK+Cyl8xiKmLzey49nlocg==} 953 649 954 - "@fluentui/react-accordion@9.8.8": 955 - resolution: 956 - { 957 - integrity: sha512-jicuHHlFK7Tsh0gx1FWKpgZixaZMBU1Nw751cGerL7XGF1OODBXCPqbmvZBSe/xLzfKj250EfDQ3V/5EGt6tcg==, 958 - } 650 + '@fluentui/react-accordion@9.8.8': 651 + resolution: {integrity: sha512-jicuHHlFK7Tsh0gx1FWKpgZixaZMBU1Nw751cGerL7XGF1OODBXCPqbmvZBSe/xLzfKj250EfDQ3V/5EGt6tcg==} 959 652 peerDependencies: 960 - "@types/react": ">=16.14.0 <20.0.0" 961 - "@types/react-dom": ">=16.9.0 <20.0.0" 962 - react: ">=16.14.0 <20.0.0" 963 - react-dom: ">=16.14.0 <20.0.0" 653 + '@types/react': '>=16.14.0 <20.0.0' 654 + '@types/react-dom': '>=16.9.0 <20.0.0' 655 + react: '>=16.14.0 <20.0.0' 656 + react-dom: '>=16.14.0 <20.0.0' 964 657 965 - "@fluentui/react-alert@9.0.0-beta.124": 966 - resolution: 967 - { 968 - integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==, 969 - } 658 + '@fluentui/react-alert@9.0.0-beta.124': 659 + resolution: {integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==} 970 660 peerDependencies: 971 - "@types/react": ">=16.14.0 <19.0.0" 972 - "@types/react-dom": ">=16.9.0 <19.0.0" 973 - react: ">=16.14.0 <19.0.0" 974 - react-dom: ">=16.14.0 <19.0.0" 661 + '@types/react': '>=16.14.0 <19.0.0' 662 + '@types/react-dom': '>=16.9.0 <19.0.0' 663 + react: '>=16.14.0 <19.0.0' 664 + react-dom: '>=16.14.0 <19.0.0' 975 665 976 - "@fluentui/react-aria@9.17.1": 977 - resolution: 978 - { 979 - integrity: sha512-OmHqfHpVQZV6M8pZpl7QYmEoQuKbrDMboLWUzvAH9FxCjYQljNfgYyUKy5aP+gPJIKsO90mUUIbGY1LRH4e3fQ==, 980 - } 666 + '@fluentui/react-aria@9.17.1': 667 + resolution: {integrity: sha512-OmHqfHpVQZV6M8pZpl7QYmEoQuKbrDMboLWUzvAH9FxCjYQljNfgYyUKy5aP+gPJIKsO90mUUIbGY1LRH4e3fQ==} 981 668 peerDependencies: 982 - "@types/react": ">=16.14.0 <20.0.0" 983 - "@types/react-dom": ">=16.9.0 <20.0.0" 984 - react: ">=16.14.0 <20.0.0" 985 - react-dom: ">=16.14.0 <20.0.0" 669 + '@types/react': '>=16.14.0 <20.0.0' 670 + '@types/react-dom': '>=16.9.0 <20.0.0' 671 + react: '>=16.14.0 <20.0.0' 672 + react-dom: '>=16.14.0 <20.0.0' 986 673 987 - "@fluentui/react-avatar@9.9.7": 988 - resolution: 989 - { 990 - integrity: sha512-T5zZGXta1sWbnxG5Dr+DzV9oxbab5Diws9V4ztcBWsBCowViPh8sZ6y/dSd/dnML3uWhMwNeW6dwPubA94pdAQ==, 991 - } 674 + '@fluentui/react-avatar@9.9.7': 675 + resolution: {integrity: sha512-T5zZGXta1sWbnxG5Dr+DzV9oxbab5Diws9V4ztcBWsBCowViPh8sZ6y/dSd/dnML3uWhMwNeW6dwPubA94pdAQ==} 992 676 peerDependencies: 993 - "@types/react": ">=16.14.0 <20.0.0" 994 - "@types/react-dom": ">=16.9.0 <20.0.0" 995 - react: ">=16.14.0 <20.0.0" 996 - react-dom: ">=16.14.0 <20.0.0" 677 + '@types/react': '>=16.14.0 <20.0.0' 678 + '@types/react-dom': '>=16.9.0 <20.0.0' 679 + react: '>=16.14.0 <20.0.0' 680 + react-dom: '>=16.14.0 <20.0.0' 997 681 998 - "@fluentui/react-badge@9.4.6": 999 - resolution: 1000 - { 1001 - integrity: sha512-WxmUMcw5VthyeZrNAaSPLaMp+0F5g+Z9KZXH2ENAh0xM+BoWQjfruWUlTuMVT4rlmQcUEd7rz4rXjyflMoFzIQ==, 1002 - } 682 + '@fluentui/react-badge@9.4.6': 683 + resolution: {integrity: sha512-WxmUMcw5VthyeZrNAaSPLaMp+0F5g+Z9KZXH2ENAh0xM+BoWQjfruWUlTuMVT4rlmQcUEd7rz4rXjyflMoFzIQ==} 1003 684 peerDependencies: 1004 - "@types/react": ">=16.14.0 <20.0.0" 1005 - "@types/react-dom": ">=16.9.0 <20.0.0" 1006 - react: ">=16.14.0 <20.0.0" 1007 - react-dom: ">=16.14.0 <20.0.0" 685 + '@types/react': '>=16.14.0 <20.0.0' 686 + '@types/react-dom': '>=16.9.0 <20.0.0' 687 + react: '>=16.14.0 <20.0.0' 688 + react-dom: '>=16.14.0 <20.0.0' 1008 689 1009 - "@fluentui/react-breadcrumb@9.3.7": 1010 - resolution: 1011 - { 1012 - integrity: sha512-NbSHxHpEKvTC0IeLIZg+NM8Kf6sL0VeMd8DgId1Py+XnUI4PpI7glJ1JovhSenMWL3kPNX7qPeFcxbtHn3BowA==, 1013 - } 690 + '@fluentui/react-breadcrumb@9.3.7': 691 + resolution: {integrity: sha512-NbSHxHpEKvTC0IeLIZg+NM8Kf6sL0VeMd8DgId1Py+XnUI4PpI7glJ1JovhSenMWL3kPNX7qPeFcxbtHn3BowA==} 1014 692 peerDependencies: 1015 - "@types/react": ">=16.14.0 <20.0.0" 1016 - "@types/react-dom": ">=16.9.0 <20.0.0" 1017 - react: ">=16.14.0 <20.0.0" 1018 - react-dom: ">=16.14.0 <20.0.0" 693 + '@types/react': '>=16.14.0 <20.0.0' 694 + '@types/react-dom': '>=16.9.0 <20.0.0' 695 + react: '>=16.14.0 <20.0.0' 696 + react-dom: '>=16.14.0 <20.0.0' 1019 697 1020 - "@fluentui/react-button@9.6.7": 1021 - resolution: 1022 - { 1023 - integrity: sha512-les2Fwej/nCOpf+jZigqX/+cspdwZLZgKuGbbOQ/70f8bOOBB+pXft795wpFKcjncRIGLa+ABjZbc4eTbUYuJQ==, 1024 - } 698 + '@fluentui/react-button@9.6.7': 699 + resolution: {integrity: sha512-les2Fwej/nCOpf+jZigqX/+cspdwZLZgKuGbbOQ/70f8bOOBB+pXft795wpFKcjncRIGLa+ABjZbc4eTbUYuJQ==} 1025 700 peerDependencies: 1026 - "@types/react": ">=16.14.0 <20.0.0" 1027 - "@types/react-dom": ">=16.9.0 <20.0.0" 1028 - react: ">=16.14.0 <20.0.0" 1029 - react-dom: ">=16.14.0 <20.0.0" 701 + '@types/react': '>=16.14.0 <20.0.0' 702 + '@types/react-dom': '>=16.9.0 <20.0.0' 703 + react: '>=16.14.0 <20.0.0' 704 + react-dom: '>=16.14.0 <20.0.0' 1030 705 1031 - "@fluentui/react-card@9.5.1": 1032 - resolution: 1033 - { 1034 - integrity: sha512-ZaNkQFjsmaDFKD+EsOwpCcLWOt+ZHZ2AWRkW4OK3cUzPSpqa/7Wa6eMUpsvOeSfritLnwTv9XFfrpmFSgXV8PQ==, 1035 - } 706 + '@fluentui/react-card@9.5.1': 707 + resolution: {integrity: sha512-ZaNkQFjsmaDFKD+EsOwpCcLWOt+ZHZ2AWRkW4OK3cUzPSpqa/7Wa6eMUpsvOeSfritLnwTv9XFfrpmFSgXV8PQ==} 1036 708 peerDependencies: 1037 - "@types/react": ">=16.14.0 <20.0.0" 1038 - "@types/react-dom": ">=16.9.0 <20.0.0" 1039 - react: ">=16.14.0 <20.0.0" 1040 - react-dom: ">=16.14.0 <20.0.0" 709 + '@types/react': '>=16.14.0 <20.0.0' 710 + '@types/react-dom': '>=16.9.0 <20.0.0' 711 + react: '>=16.14.0 <20.0.0' 712 + react-dom: '>=16.14.0 <20.0.0' 1041 713 1042 - "@fluentui/react-carousel@9.8.7": 1043 - resolution: 1044 - { 1045 - integrity: sha512-Bdw0yAA4U7X+nzhjgtTeL/Xmupu4uYurO38VmZiC7jmKLq1jqE8YjA+u5eFuyEG/Nc9auThFkES6vhDcPnezDw==, 1046 - } 714 + '@fluentui/react-carousel@9.8.7': 715 + resolution: {integrity: sha512-Bdw0yAA4U7X+nzhjgtTeL/Xmupu4uYurO38VmZiC7jmKLq1jqE8YjA+u5eFuyEG/Nc9auThFkES6vhDcPnezDw==} 1047 716 peerDependencies: 1048 - "@types/react": ">=16.14.0 <20.0.0" 1049 - "@types/react-dom": ">=16.9.0 <20.0.0" 1050 - react: ">=16.14.0 <20.0.0" 1051 - react-dom: ">=16.14.0 <20.0.0" 717 + '@types/react': '>=16.14.0 <20.0.0' 718 + '@types/react-dom': '>=16.9.0 <20.0.0' 719 + react: '>=16.14.0 <20.0.0' 720 + react-dom: '>=16.14.0 <20.0.0' 1052 721 1053 - "@fluentui/react-checkbox@9.5.6": 1054 - resolution: 1055 - { 1056 - integrity: sha512-nUOnn0MMrIZAEFkB664qYdXzUG7G6pA4IWCd1KtS5/jn01s29+nDLDuwgNXVD6jGZ+VLGo0ZEJ8+SJowsddFCA==, 1057 - } 722 + '@fluentui/react-checkbox@9.5.6': 723 + resolution: {integrity: sha512-nUOnn0MMrIZAEFkB664qYdXzUG7G6pA4IWCd1KtS5/jn01s29+nDLDuwgNXVD6jGZ+VLGo0ZEJ8+SJowsddFCA==} 1058 724 peerDependencies: 1059 - "@types/react": ">=16.14.0 <20.0.0" 1060 - "@types/react-dom": ">=16.9.0 <20.0.0" 1061 - react: ">=16.14.0 <20.0.0" 1062 - react-dom: ">=16.14.0 <20.0.0" 725 + '@types/react': '>=16.14.0 <20.0.0' 726 + '@types/react-dom': '>=16.9.0 <20.0.0' 727 + react: '>=16.14.0 <20.0.0' 728 + react-dom: '>=16.14.0 <20.0.0' 1063 729 1064 - "@fluentui/react-color-picker@9.2.6": 1065 - resolution: 1066 - { 1067 - integrity: sha512-CYgSbG8yTTEW1Jf2LVJS6dvFN8NQFB24HazmU42+ZmnSJX/qAYMAmxOA0F3apV2ziOitnjrdUYeRqHPMsaAdqA==, 1068 - } 730 + '@fluentui/react-color-picker@9.2.6': 731 + resolution: {integrity: sha512-CYgSbG8yTTEW1Jf2LVJS6dvFN8NQFB24HazmU42+ZmnSJX/qAYMAmxOA0F3apV2ziOitnjrdUYeRqHPMsaAdqA==} 1069 732 peerDependencies: 1070 - "@types/react": ">=16.14.0 <20.0.0" 1071 - "@types/react-dom": ">=16.9.0 <20.0.0" 1072 - react: ">=16.14.0 <20.0.0" 1073 - react-dom: ">=16.14.0 <20.0.0" 733 + '@types/react': '>=16.14.0 <20.0.0' 734 + '@types/react-dom': '>=16.9.0 <20.0.0' 735 + react: '>=16.14.0 <20.0.0' 736 + react-dom: '>=16.14.0 <20.0.0' 1074 737 1075 - "@fluentui/react-combobox@9.16.7": 1076 - resolution: 1077 - { 1078 - integrity: sha512-n3Y+bqD1c9fCUY8kbdsteMJT8VMuwr3pn0JvdCXsDiRxL7z9W1j/vFn+9gIAVC6okRhhwLwoi4wXoXDnPD907g==, 1079 - } 738 + '@fluentui/react-combobox@9.16.7': 739 + resolution: {integrity: sha512-n3Y+bqD1c9fCUY8kbdsteMJT8VMuwr3pn0JvdCXsDiRxL7z9W1j/vFn+9gIAVC6okRhhwLwoi4wXoXDnPD907g==} 1080 740 peerDependencies: 1081 - "@types/react": ">=16.14.0 <20.0.0" 1082 - "@types/react-dom": ">=16.9.0 <20.0.0" 1083 - react: ">=16.14.0 <20.0.0" 1084 - react-dom: ">=16.14.0 <20.0.0" 741 + '@types/react': '>=16.14.0 <20.0.0' 742 + '@types/react-dom': '>=16.9.0 <20.0.0' 743 + react: '>=16.14.0 <20.0.0' 744 + react-dom: '>=16.14.0 <20.0.0' 1085 745 1086 - "@fluentui/react-components@9.69.0": 1087 - resolution: 1088 - { 1089 - integrity: sha512-iw6gZVdAMPgPLbAwwAcA+2wRfeHdV27tRMPfrNYnFlXMAYfcXQvWjxeD8XTL5j2PYfOhRJjnWvjL0srJjjMcfA==, 1090 - } 746 + '@fluentui/react-components@9.69.0': 747 + resolution: {integrity: sha512-iw6gZVdAMPgPLbAwwAcA+2wRfeHdV27tRMPfrNYnFlXMAYfcXQvWjxeD8XTL5j2PYfOhRJjnWvjL0srJjjMcfA==} 1091 748 peerDependencies: 1092 - "@types/react": ">=16.14.0 <19.0.0" 1093 - "@types/react-dom": ">=16.9.0 <19.0.0" 1094 - react: ">=16.14.0 <19.0.0" 1095 - react-dom: ">=16.14.0 <19.0.0" 749 + '@types/react': '>=16.14.0 <19.0.0' 750 + '@types/react-dom': '>=16.9.0 <19.0.0' 751 + react: '>=16.14.0 <19.0.0' 752 + react-dom: '>=16.14.0 <19.0.0' 1096 753 1097 - "@fluentui/react-context-selector@9.2.8": 1098 - resolution: 1099 - { 1100 - integrity: sha512-mh7Phvz6S4LQGuoRLCtqoAOP66JrbHyzrUynSK5yR4V+WRhBH0QNC/eOeivocV8wSQWV9YlCmRYm9hNEvOqi1Q==, 1101 - } 754 + '@fluentui/react-context-selector@9.2.8': 755 + resolution: {integrity: sha512-mh7Phvz6S4LQGuoRLCtqoAOP66JrbHyzrUynSK5yR4V+WRhBH0QNC/eOeivocV8wSQWV9YlCmRYm9hNEvOqi1Q==} 1102 756 peerDependencies: 1103 - "@types/react": ">=16.14.0 <20.0.0" 1104 - "@types/react-dom": ">=16.9.0 <20.0.0" 1105 - react: ">=16.14.0 <20.0.0" 1106 - react-dom: ">=16.14.0 <20.0.0" 1107 - scheduler: ">=0.19.0 <=0.23.0" 757 + '@types/react': '>=16.14.0 <20.0.0' 758 + '@types/react-dom': '>=16.9.0 <20.0.0' 759 + react: '>=16.14.0 <20.0.0' 760 + react-dom: '>=16.14.0 <20.0.0' 761 + scheduler: '>=0.19.0 <=0.23.0' 1108 762 1109 - "@fluentui/react-dialog@9.15.3": 1110 - resolution: 1111 - { 1112 - integrity: sha512-GtGUXVoNttsI7NuHMkhtLbJpjUw5ovIWKH3CMpdlgmnispdd4jYYYyTVDapG+9VJvYesHXI00yOoBM1ymtVrJA==, 1113 - } 763 + '@fluentui/react-dialog@9.15.3': 764 + resolution: {integrity: sha512-GtGUXVoNttsI7NuHMkhtLbJpjUw5ovIWKH3CMpdlgmnispdd4jYYYyTVDapG+9VJvYesHXI00yOoBM1ymtVrJA==} 1114 765 peerDependencies: 1115 - "@types/react": ">=16.14.0 <20.0.0" 1116 - "@types/react-dom": ">=16.9.0 <20.0.0" 1117 - react: ">=16.14.0 <20.0.0" 1118 - react-dom: ">=16.14.0 <20.0.0" 766 + '@types/react': '>=16.14.0 <20.0.0' 767 + '@types/react-dom': '>=16.9.0 <20.0.0' 768 + react: '>=16.14.0 <20.0.0' 769 + react-dom: '>=16.14.0 <20.0.0' 1119 770 1120 - "@fluentui/react-divider@9.4.6": 1121 - resolution: 1122 - { 1123 - integrity: sha512-pIk5mvkXQRR+rZkOg62vn2rWS//eikvm+jLn3E4e+qy59BQhXufI1aGw2gcZG3WTpeHHtRMbDD/xauEkMdrg7A==, 1124 - } 771 + '@fluentui/react-divider@9.4.6': 772 + resolution: {integrity: sha512-pIk5mvkXQRR+rZkOg62vn2rWS//eikvm+jLn3E4e+qy59BQhXufI1aGw2gcZG3WTpeHHtRMbDD/xauEkMdrg7A==} 1125 773 peerDependencies: 1126 - "@types/react": ">=16.14.0 <20.0.0" 1127 - "@types/react-dom": ">=16.9.0 <20.0.0" 1128 - react: ">=16.14.0 <20.0.0" 1129 - react-dom: ">=16.14.0 <20.0.0" 774 + '@types/react': '>=16.14.0 <20.0.0' 775 + '@types/react-dom': '>=16.9.0 <20.0.0' 776 + react: '>=16.14.0 <20.0.0' 777 + react-dom: '>=16.14.0 <20.0.0' 1130 778 1131 - "@fluentui/react-drawer@9.10.3": 1132 - resolution: 1133 - { 1134 - integrity: sha512-HLr41jlQ1QFgk1iD0u/Cu+2uoQl2lMaMj7/CERina0SIneof+skt61WQdUtntEKidM0fyHfU41PUDySWXYKLtg==, 1135 - } 779 + '@fluentui/react-drawer@9.10.3': 780 + resolution: {integrity: sha512-HLr41jlQ1QFgk1iD0u/Cu+2uoQl2lMaMj7/CERina0SIneof+skt61WQdUtntEKidM0fyHfU41PUDySWXYKLtg==} 1136 781 peerDependencies: 1137 - "@types/react": ">=16.14.0 <20.0.0" 1138 - "@types/react-dom": ">=16.9.0 <20.0.0" 1139 - react: ">=16.14.0 <20.0.0" 1140 - react-dom: ">=16.14.0 <20.0.0" 782 + '@types/react': '>=16.14.0 <20.0.0' 783 + '@types/react-dom': '>=16.9.0 <20.0.0' 784 + react: '>=16.14.0 <20.0.0' 785 + react-dom: '>=16.14.0 <20.0.0' 1141 786 1142 - "@fluentui/react-field@9.4.6": 1143 - resolution: 1144 - { 1145 - integrity: sha512-Xk/bNYhL2bLMO/mdoZrGX05Ga51QQVVC0wyqvcv5yv4l3s3oLcxb9pZCVgexzQOOUNUAaxz5QDOBHRjv7KT2xg==, 1146 - } 787 + '@fluentui/react-field@9.4.6': 788 + resolution: {integrity: sha512-Xk/bNYhL2bLMO/mdoZrGX05Ga51QQVVC0wyqvcv5yv4l3s3oLcxb9pZCVgexzQOOUNUAaxz5QDOBHRjv7KT2xg==} 1147 789 peerDependencies: 1148 - "@types/react": ">=16.14.0 <20.0.0" 1149 - "@types/react-dom": ">=16.9.0 <20.0.0" 1150 - react: ">=16.14.0 <20.0.0" 1151 - react-dom: ">=16.14.0 <20.0.0" 790 + '@types/react': '>=16.14.0 <20.0.0' 791 + '@types/react-dom': '>=16.9.0 <20.0.0' 792 + react: '>=16.14.0 <20.0.0' 793 + react-dom: '>=16.14.0 <20.0.0' 1152 794 1153 - "@fluentui/react-icons@2.0.311": 1154 - resolution: 1155 - { 1156 - integrity: sha512-njTCiHki4gxtB0ebFFIy8jC+9xFqIbnqzFGO+3mixSjUIn/wl0NKUVzXiXcaYUx6d0okEAiYgciuT7eQjJhW8Q==, 1157 - } 795 + '@fluentui/react-icons@2.0.311': 796 + resolution: {integrity: sha512-njTCiHki4gxtB0ebFFIy8jC+9xFqIbnqzFGO+3mixSjUIn/wl0NKUVzXiXcaYUx6d0okEAiYgciuT7eQjJhW8Q==} 1158 797 peerDependencies: 1159 - react: ">=16.8.0 <20.0.0" 798 + react: '>=16.8.0 <20.0.0' 1160 799 1161 - "@fluentui/react-image@9.3.6": 1162 - resolution: 1163 - { 1164 - integrity: sha512-khdxM+h+A+d5fcFZG+mZinTGy6x38QBkjxvhly4TFJHIVziuF+mbB3vpf4J0TwynZOMiza3D174kvrK3x5yyvw==, 1165 - } 800 + '@fluentui/react-image@9.3.6': 801 + resolution: {integrity: sha512-khdxM+h+A+d5fcFZG+mZinTGy6x38QBkjxvhly4TFJHIVziuF+mbB3vpf4J0TwynZOMiza3D174kvrK3x5yyvw==} 1166 802 peerDependencies: 1167 - "@types/react": ">=16.14.0 <20.0.0" 1168 - "@types/react-dom": ">=16.9.0 <20.0.0" 1169 - react: ">=16.14.0 <20.0.0" 1170 - react-dom: ">=16.14.0 <20.0.0" 803 + '@types/react': '>=16.14.0 <20.0.0' 804 + '@types/react-dom': '>=16.9.0 <20.0.0' 805 + react: '>=16.14.0 <20.0.0' 806 + react-dom: '>=16.14.0 <20.0.0' 1171 807 1172 - "@fluentui/react-infobutton@9.0.0-beta.102": 1173 - resolution: 1174 - { 1175 - integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==, 1176 - } 808 + '@fluentui/react-infobutton@9.0.0-beta.102': 809 + resolution: {integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==} 1177 810 peerDependencies: 1178 - "@types/react": ">=16.14.0 <19.0.0" 1179 - "@types/react-dom": ">=16.9.0 <19.0.0" 1180 - react: ">=16.14.0 <19.0.0" 1181 - react-dom: ">=16.14.0 <19.0.0" 811 + '@types/react': '>=16.14.0 <19.0.0' 812 + '@types/react-dom': '>=16.9.0 <19.0.0' 813 + react: '>=16.14.0 <19.0.0' 814 + react-dom: '>=16.14.0 <19.0.0' 1182 815 1183 - "@fluentui/react-infolabel@9.4.7": 1184 - resolution: 1185 - { 1186 - integrity: sha512-JHhIML6Wv+X0w+qyRYDx9GH8tUU0dCN3lAodI/02w+3do2a6ychRjoEa/7Aa9gA2wYxAuz7TC6hzfdcI4ec//Q==, 1187 - } 816 + '@fluentui/react-infolabel@9.4.7': 817 + resolution: {integrity: sha512-JHhIML6Wv+X0w+qyRYDx9GH8tUU0dCN3lAodI/02w+3do2a6ychRjoEa/7Aa9gA2wYxAuz7TC6hzfdcI4ec//Q==} 1188 818 peerDependencies: 1189 - "@types/react": ">=16.8.0 <20.0.0" 1190 - "@types/react-dom": ">=16.8.0 <20.0.0" 1191 - react: ">=16.14.0 <20.0.0" 1192 - react-dom: ">=16.8.0 <20.0.0" 819 + '@types/react': '>=16.8.0 <20.0.0' 820 + '@types/react-dom': '>=16.8.0 <20.0.0' 821 + react: '>=16.14.0 <20.0.0' 822 + react-dom: '>=16.8.0 <20.0.0' 1193 823 1194 - "@fluentui/react-input@9.7.6": 1195 - resolution: 1196 - { 1197 - integrity: sha512-s+f5kznbm2McheAAz868Lre1+xzCinVJm4eNiuKXJzTSCiLsdlE27xWjv2+Lzh1du4HLC+arUkdZ+HCLg5Kvug==, 1198 - } 824 + '@fluentui/react-input@9.7.6': 825 + resolution: {integrity: sha512-s+f5kznbm2McheAAz868Lre1+xzCinVJm4eNiuKXJzTSCiLsdlE27xWjv2+Lzh1du4HLC+arUkdZ+HCLg5Kvug==} 1199 826 peerDependencies: 1200 - "@types/react": ">=16.14.0 <20.0.0" 1201 - "@types/react-dom": ">=16.9.0 <20.0.0" 1202 - react: ">=16.14.0 <20.0.0" 1203 - react-dom: ">=16.14.0 <20.0.0" 827 + '@types/react': '>=16.14.0 <20.0.0' 828 + '@types/react-dom': '>=16.9.0 <20.0.0' 829 + react: '>=16.14.0 <20.0.0' 830 + react-dom: '>=16.14.0 <20.0.0' 1204 831 1205 - "@fluentui/react-jsx-runtime@9.2.1": 1206 - resolution: 1207 - { 1208 - integrity: sha512-qfkqqYqKbqMEXk+yxnQ+L88yEi9CWzCmYHyZQ5Xhk6wfKyNAWYv/otConKLzbWJWnbpEq0zgysqqeJT/LYAoDg==, 1209 - } 832 + '@fluentui/react-jsx-runtime@9.2.1': 833 + resolution: {integrity: sha512-qfkqqYqKbqMEXk+yxnQ+L88yEi9CWzCmYHyZQ5Xhk6wfKyNAWYv/otConKLzbWJWnbpEq0zgysqqeJT/LYAoDg==} 1210 834 peerDependencies: 1211 - "@types/react": ">=16.14.0 <20.0.0" 1212 - react: ">=16.14.0 <20.0.0" 835 + '@types/react': '>=16.14.0 <20.0.0' 836 + react: '>=16.14.0 <20.0.0' 1213 837 1214 - "@fluentui/react-label@9.3.6": 1215 - resolution: 1216 - { 1217 - integrity: sha512-3mnDaoZrPuMTeJdXUQkNBMvhrq/qYw3UFKO6lfqu4701FCggLk2kdqcUqx5ViKEgEtRELrDjbilOYapagZvpag==, 1218 - } 838 + '@fluentui/react-label@9.3.6': 839 + resolution: {integrity: sha512-3mnDaoZrPuMTeJdXUQkNBMvhrq/qYw3UFKO6lfqu4701FCggLk2kdqcUqx5ViKEgEtRELrDjbilOYapagZvpag==} 1219 840 peerDependencies: 1220 - "@types/react": ">=16.14.0 <20.0.0" 1221 - "@types/react-dom": ">=16.9.0 <20.0.0" 1222 - react: ">=16.14.0 <20.0.0" 1223 - react-dom: ">=16.14.0 <20.0.0" 841 + '@types/react': '>=16.14.0 <20.0.0' 842 + '@types/react-dom': '>=16.9.0 <20.0.0' 843 + react: '>=16.14.0 <20.0.0' 844 + react-dom: '>=16.14.0 <20.0.0' 1224 845 1225 - "@fluentui/react-link@9.6.6": 1226 - resolution: 1227 - { 1228 - integrity: sha512-b6hQLNK7L/HJ85XneVszKmnEhxf20DQImcRlMUcdHediJTFuCjoat3DHE6mFNjZEZSfQJTbDsH7rqwA0TOiuvg==, 1229 - } 846 + '@fluentui/react-link@9.6.6': 847 + resolution: {integrity: sha512-b6hQLNK7L/HJ85XneVszKmnEhxf20DQImcRlMUcdHediJTFuCjoat3DHE6mFNjZEZSfQJTbDsH7rqwA0TOiuvg==} 1230 848 peerDependencies: 1231 - "@types/react": ">=16.14.0 <20.0.0" 1232 - "@types/react-dom": ">=16.9.0 <20.0.0" 1233 - react: ">=16.14.0 <20.0.0" 1234 - react-dom: ">=16.14.0 <20.0.0" 849 + '@types/react': '>=16.14.0 <20.0.0' 850 + '@types/react-dom': '>=16.9.0 <20.0.0' 851 + react: '>=16.14.0 <20.0.0' 852 + react-dom: '>=16.14.0 <20.0.0' 1235 853 1236 - "@fluentui/react-list@9.6.1": 1237 - resolution: 1238 - { 1239 - integrity: sha512-eoYupnsGDGKfpfcOfXhyCHuXz9jiIRmEYZXcrk1fCK+9KYEaSZ3gAqPFY/FWq5xDLs0+exyECfDPAstb7R1fxg==, 1240 - } 854 + '@fluentui/react-list@9.6.1': 855 + resolution: {integrity: sha512-eoYupnsGDGKfpfcOfXhyCHuXz9jiIRmEYZXcrk1fCK+9KYEaSZ3gAqPFY/FWq5xDLs0+exyECfDPAstb7R1fxg==} 1241 856 peerDependencies: 1242 - "@types/react": ">=16.8.0 <20.0.0" 1243 - "@types/react-dom": ">=16.8.0 <20.0.0" 1244 - react: ">=16.14.0 <20.0.0" 1245 - react-dom: ">=16.8.0 <20.0.0" 857 + '@types/react': '>=16.8.0 <20.0.0' 858 + '@types/react-dom': '>=16.8.0 <20.0.0' 859 + react: '>=16.14.0 <20.0.0' 860 + react-dom: '>=16.8.0 <20.0.0' 1246 861 1247 - "@fluentui/react-menu@9.20.0": 1248 - resolution: 1249 - { 1250 - integrity: sha512-zKgavux8mhd+H6544hACS+OYG8fi53ndZtocJqTF85ebBA/ndHY2GFZcHLemifRKctjKQsYKNAekg2Bxu4QmgA==, 1251 - } 862 + '@fluentui/react-menu@9.20.0': 863 + resolution: {integrity: sha512-zKgavux8mhd+H6544hACS+OYG8fi53ndZtocJqTF85ebBA/ndHY2GFZcHLemifRKctjKQsYKNAekg2Bxu4QmgA==} 1252 864 peerDependencies: 1253 - "@types/react": ">=16.14.0 <20.0.0" 1254 - "@types/react-dom": ">=16.9.0 <20.0.0" 1255 - react: ">=16.14.0 <20.0.0" 1256 - react-dom: ">=16.14.0 <20.0.0" 865 + '@types/react': '>=16.14.0 <20.0.0' 866 + '@types/react-dom': '>=16.9.0 <20.0.0' 867 + react: '>=16.14.0 <20.0.0' 868 + react-dom: '>=16.14.0 <20.0.0' 1257 869 1258 - "@fluentui/react-message-bar@9.6.8": 1259 - resolution: 1260 - { 1261 - integrity: sha512-XSPOSLtXzW7xXqA5I1gJa88xyV+kwOPhgadmYfPEfTAOeqYYzCqnJnI5ZSnMgjDQuCotzgvLT/hGxTGIhb9MFw==, 1262 - } 870 + '@fluentui/react-message-bar@9.6.8': 871 + resolution: {integrity: sha512-XSPOSLtXzW7xXqA5I1gJa88xyV+kwOPhgadmYfPEfTAOeqYYzCqnJnI5ZSnMgjDQuCotzgvLT/hGxTGIhb9MFw==} 1263 872 peerDependencies: 1264 - "@types/react": ">=16.8.0 <20.0.0" 1265 - "@types/react-dom": ">=16.8.0 <20.0.0" 1266 - react: ">=16.14.0 <20.0.0" 1267 - react-dom: ">=16.8.0 <20.0.0" 873 + '@types/react': '>=16.8.0 <20.0.0' 874 + '@types/react-dom': '>=16.8.0 <20.0.0' 875 + react: '>=16.14.0 <20.0.0' 876 + react-dom: '>=16.8.0 <20.0.0' 1268 877 1269 - "@fluentui/react-motion-components-preview@0.11.0": 1270 - resolution: 1271 - { 1272 - integrity: sha512-IIG3FI31AUaiyp56+4g9gx1J4W2UqUj0s6vpMB9zkIZ+KCFEq1x47H7b0kARHdGUc0voMY2OGPQQeewFcukUaw==, 1273 - } 878 + '@fluentui/react-motion-components-preview@0.11.0': 879 + resolution: {integrity: sha512-IIG3FI31AUaiyp56+4g9gx1J4W2UqUj0s6vpMB9zkIZ+KCFEq1x47H7b0kARHdGUc0voMY2OGPQQeewFcukUaw==} 1274 880 peerDependencies: 1275 - "@types/react": ">=16.14.0 <20.0.0" 1276 - "@types/react-dom": ">=16.9.0 <20.0.0" 1277 - react: ">=16.14.0 <20.0.0" 1278 - react-dom: ">=16.14.0 <20.0.0" 881 + '@types/react': '>=16.14.0 <20.0.0' 882 + '@types/react-dom': '>=16.9.0 <20.0.0' 883 + react: '>=16.14.0 <20.0.0' 884 + react-dom: '>=16.14.0 <20.0.0' 1279 885 1280 - "@fluentui/react-motion@9.11.0": 1281 - resolution: 1282 - { 1283 - integrity: sha512-X6MAw4zXsV9RwpE9WCVjz3Uwkjgl7A+q2lT+hy0wKSprASQ1g3HZJwTtS6cCuBNijUKge2wIhIquUuk0WCcWqA==, 1284 - } 886 + '@fluentui/react-motion@9.11.0': 887 + resolution: {integrity: sha512-X6MAw4zXsV9RwpE9WCVjz3Uwkjgl7A+q2lT+hy0wKSprASQ1g3HZJwTtS6cCuBNijUKge2wIhIquUuk0WCcWqA==} 1285 888 peerDependencies: 1286 - "@types/react": ">=16.8.0 <20.0.0" 1287 - "@types/react-dom": ">=16.8.0 <20.0.0" 1288 - react: ">=16.14.0 <20.0.0" 1289 - react-dom: ">=16.8.0 <20.0.0" 889 + '@types/react': '>=16.8.0 <20.0.0' 890 + '@types/react-dom': '>=16.8.0 <20.0.0' 891 + react: '>=16.14.0 <20.0.0' 892 + react-dom: '>=16.8.0 <20.0.0' 1290 893 1291 - "@fluentui/react-nav@9.3.8": 1292 - resolution: 1293 - { 1294 - integrity: sha512-UwFxa5qlBJLS7nNXLBVo9bhbxjIbIOSe2shAEJcOFK1ziPfOTUIBFalYvmSZGK1bNAq2lvuSY2lVMkiMHS7Y2Q==, 1295 - } 894 + '@fluentui/react-nav@9.3.8': 895 + resolution: {integrity: sha512-UwFxa5qlBJLS7nNXLBVo9bhbxjIbIOSe2shAEJcOFK1ziPfOTUIBFalYvmSZGK1bNAq2lvuSY2lVMkiMHS7Y2Q==} 1296 896 peerDependencies: 1297 - "@types/react": ">=16.14.0 <20.0.0" 1298 - "@types/react-dom": ">=16.9.0 <20.0.0" 1299 - react: ">=16.14.0 <20.0.0" 1300 - react-dom: ">=16.14.0 <20.0.0" 897 + '@types/react': '>=16.14.0 <20.0.0' 898 + '@types/react-dom': '>=16.9.0 <20.0.0' 899 + react: '>=16.14.0 <20.0.0' 900 + react-dom: '>=16.14.0 <20.0.0' 1301 901 1302 - "@fluentui/react-overflow@9.6.0": 1303 - resolution: 1304 - { 1305 - integrity: sha512-ZzjBuNQXHEp84lGPzJOeZjPcsStugUEzzDiDp/0v9LdF3EZoBmq8/4Z7nZfqoTU+oHXOy2mGkhpCKTrXgawXOw==, 1306 - } 902 + '@fluentui/react-overflow@9.6.0': 903 + resolution: {integrity: sha512-ZzjBuNQXHEp84lGPzJOeZjPcsStugUEzzDiDp/0v9LdF3EZoBmq8/4Z7nZfqoTU+oHXOy2mGkhpCKTrXgawXOw==} 1307 904 peerDependencies: 1308 - "@types/react": ">=16.14.0 <20.0.0" 1309 - "@types/react-dom": ">=16.9.0 <20.0.0" 1310 - react: ">=16.14.0 <20.0.0" 1311 - react-dom: ">=16.14.0 <20.0.0" 905 + '@types/react': '>=16.14.0 <20.0.0' 906 + '@types/react-dom': '>=16.9.0 <20.0.0' 907 + react: '>=16.14.0 <20.0.0' 908 + react-dom: '>=16.14.0 <20.0.0' 1312 909 1313 - "@fluentui/react-persona@9.5.7": 1314 - resolution: 1315 - { 1316 - integrity: sha512-4dPcmnE4jX8IUgOxZu+aWQ+XhqTcJ5ISK1VwDxujH3JQbjOK/4aQjUBTwQWfRej0/lfT74ktD/CorcdB7Wz6CA==, 1317 - } 910 + '@fluentui/react-persona@9.5.7': 911 + resolution: {integrity: sha512-4dPcmnE4jX8IUgOxZu+aWQ+XhqTcJ5ISK1VwDxujH3JQbjOK/4aQjUBTwQWfRej0/lfT74ktD/CorcdB7Wz6CA==} 1318 912 peerDependencies: 1319 - "@types/react": ">=16.14.0 <20.0.0" 1320 - "@types/react-dom": ">=16.9.0 <20.0.0" 1321 - react: ">=16.14.0 <20.0.0" 1322 - react-dom: ">=16.14.0 <20.0.0" 913 + '@types/react': '>=16.14.0 <20.0.0' 914 + '@types/react-dom': '>=16.9.0 <20.0.0' 915 + react: '>=16.14.0 <20.0.0' 916 + react-dom: '>=16.14.0 <20.0.0' 1323 917 1324 - "@fluentui/react-popover@9.12.7": 1325 - resolution: 1326 - { 1327 - integrity: sha512-AkbtGCEG6OwpeXQ4RjorOw56Qnlh7ndf5Lb7P8x/2jmXyi2BusJy0qAJ9cqpt3n5Y31dt1dJ2e+DNk7A1tu23w==, 1328 - } 918 + '@fluentui/react-popover@9.12.7': 919 + resolution: {integrity: sha512-AkbtGCEG6OwpeXQ4RjorOw56Qnlh7ndf5Lb7P8x/2jmXyi2BusJy0qAJ9cqpt3n5Y31dt1dJ2e+DNk7A1tu23w==} 1329 920 peerDependencies: 1330 - "@types/react": ">=16.14.0 <20.0.0" 1331 - "@types/react-dom": ">=16.9.0 <20.0.0" 1332 - react: ">=16.14.0 <20.0.0" 1333 - react-dom: ">=16.14.0 <20.0.0" 921 + '@types/react': '>=16.14.0 <20.0.0' 922 + '@types/react-dom': '>=16.9.0 <20.0.0' 923 + react: '>=16.14.0 <20.0.0' 924 + react-dom: '>=16.14.0 <20.0.0' 1334 925 1335 - "@fluentui/react-portal@9.8.3": 1336 - resolution: 1337 - { 1338 - integrity: sha512-+i2TW9pQ/Oz7PAKxssbonStD4kcgkzsaKZrhTfK9rynSpy3YR4DpyHPzd/5ioJgSKFlqTnoBBCu5zVFohXI6gw==, 1339 - } 926 + '@fluentui/react-portal@9.8.3': 927 + resolution: {integrity: sha512-+i2TW9pQ/Oz7PAKxssbonStD4kcgkzsaKZrhTfK9rynSpy3YR4DpyHPzd/5ioJgSKFlqTnoBBCu5zVFohXI6gw==} 1340 928 peerDependencies: 1341 - "@types/react": ">=16.14.0 <20.0.0" 1342 - "@types/react-dom": ">=16.9.0 <20.0.0" 1343 - react: ">=16.14.0 <20.0.0" 1344 - react-dom: ">=16.14.0 <20.0.0" 929 + '@types/react': '>=16.14.0 <20.0.0' 930 + '@types/react-dom': '>=16.9.0 <20.0.0' 931 + react: '>=16.14.0 <20.0.0' 932 + react-dom: '>=16.14.0 <20.0.0' 1345 933 1346 - "@fluentui/react-positioning@9.20.6": 1347 - resolution: 1348 - { 1349 - integrity: sha512-g4/XRftuW/MztCC2pYVvlfHExmWRqOqgwQu9MoWglTuZFz9rSTTonCNSKJLIsZQYV9BpqFXDHUe8v+pqyDNZ2g==, 1350 - } 934 + '@fluentui/react-positioning@9.20.6': 935 + resolution: {integrity: sha512-g4/XRftuW/MztCC2pYVvlfHExmWRqOqgwQu9MoWglTuZFz9rSTTonCNSKJLIsZQYV9BpqFXDHUe8v+pqyDNZ2g==} 1351 936 peerDependencies: 1352 - "@types/react": ">=16.14.0 <20.0.0" 1353 - "@types/react-dom": ">=16.9.0 <20.0.0" 1354 - react: ">=16.14.0 <20.0.0" 1355 - react-dom: ">=16.14.0 <20.0.0" 937 + '@types/react': '>=16.14.0 <20.0.0' 938 + '@types/react-dom': '>=16.9.0 <20.0.0' 939 + react: '>=16.14.0 <20.0.0' 940 + react-dom: '>=16.14.0 <20.0.0' 1356 941 1357 - "@fluentui/react-progress@9.4.6": 1358 - resolution: 1359 - { 1360 - integrity: sha512-zDmSmsTGaM9rPk9lQ6wKcG8kkM9UHtzJdsXPfvPKj8K7gP1Oyha7yb5hIlX45q0YeWG+3nweQYz9WNnoAAAsQQ==, 1361 - } 942 + '@fluentui/react-progress@9.4.6': 943 + resolution: {integrity: sha512-zDmSmsTGaM9rPk9lQ6wKcG8kkM9UHtzJdsXPfvPKj8K7gP1Oyha7yb5hIlX45q0YeWG+3nweQYz9WNnoAAAsQQ==} 1362 944 peerDependencies: 1363 - "@types/react": ">=16.14.0 <20.0.0" 1364 - "@types/react-dom": ">=16.9.0 <20.0.0" 1365 - react: ">=16.14.0 <20.0.0" 1366 - react-dom: ">=16.14.0 <20.0.0" 945 + '@types/react': '>=16.14.0 <20.0.0' 946 + '@types/react-dom': '>=16.9.0 <20.0.0' 947 + react: '>=16.14.0 <20.0.0' 948 + react-dom: '>=16.14.0 <20.0.0' 1367 949 1368 - "@fluentui/react-provider@9.22.6": 1369 - resolution: 1370 - { 1371 - integrity: sha512-vHShKHYeZptf+Jc6O+ZVGTjU0fo0OzqrzSpcEeQ9iuRF2XPvhTldE0Q67KYeCe5eQJsiDH7wYM6Hjt7UihNmOA==, 1372 - } 950 + '@fluentui/react-provider@9.22.6': 951 + resolution: {integrity: sha512-vHShKHYeZptf+Jc6O+ZVGTjU0fo0OzqrzSpcEeQ9iuRF2XPvhTldE0Q67KYeCe5eQJsiDH7wYM6Hjt7UihNmOA==} 1373 952 peerDependencies: 1374 - "@types/react": ">=16.14.0 <20.0.0" 1375 - "@types/react-dom": ">=16.9.0 <20.0.0" 1376 - react: ">=16.14.0 <20.0.0" 1377 - react-dom: ">=16.14.0 <20.0.0" 953 + '@types/react': '>=16.14.0 <20.0.0' 954 + '@types/react-dom': '>=16.9.0 <20.0.0' 955 + react: '>=16.14.0 <20.0.0' 956 + react-dom: '>=16.14.0 <20.0.0' 1378 957 1379 - "@fluentui/react-radio@9.5.6": 1380 - resolution: 1381 - { 1382 - integrity: sha512-MT6AFJ3GuL5JgZ22xSbHlxO0RUVaJJUW5eq96zy2kqSSzyJxDLLhuNxkoMI/nnlEGlzkSipM5WOxutYfOhJTwQ==, 1383 - } 958 + '@fluentui/react-radio@9.5.6': 959 + resolution: {integrity: sha512-MT6AFJ3GuL5JgZ22xSbHlxO0RUVaJJUW5eq96zy2kqSSzyJxDLLhuNxkoMI/nnlEGlzkSipM5WOxutYfOhJTwQ==} 1384 960 peerDependencies: 1385 - "@types/react": ">=16.14.0 <20.0.0" 1386 - "@types/react-dom": ">=16.9.0 <20.0.0" 1387 - react: ">=16.14.0 <20.0.0" 1388 - react-dom: ">=16.14.0 <20.0.0" 961 + '@types/react': '>=16.14.0 <20.0.0' 962 + '@types/react-dom': '>=16.9.0 <20.0.0' 963 + react: '>=16.14.0 <20.0.0' 964 + react-dom: '>=16.14.0 <20.0.0' 1389 965 1390 - "@fluentui/react-rating@9.3.6": 1391 - resolution: 1392 - { 1393 - integrity: sha512-0mvmcyDDnUUrFOIrM15K1Ie+UTBF3iFL/FDaiTTelL3xlAHSOUksVKStkj4pFsvXb8xNgFjoACvM+COV7DRSLg==, 1394 - } 966 + '@fluentui/react-rating@9.3.6': 967 + resolution: {integrity: sha512-0mvmcyDDnUUrFOIrM15K1Ie+UTBF3iFL/FDaiTTelL3xlAHSOUksVKStkj4pFsvXb8xNgFjoACvM+COV7DRSLg==} 1395 968 peerDependencies: 1396 - "@types/react": ">=16.8.0 <20.0.0" 1397 - "@types/react-dom": ">=16.8.0 <20.0.0" 1398 - react: ">=16.14.0 <20.0.0" 1399 - react-dom: ">=16.8.0 <20.0.0" 969 + '@types/react': '>=16.8.0 <20.0.0' 970 + '@types/react-dom': '>=16.8.0 <20.0.0' 971 + react: '>=16.14.0 <20.0.0' 972 + react-dom: '>=16.8.0 <20.0.0' 1400 973 1401 - "@fluentui/react-search@9.3.6": 1402 - resolution: 1403 - { 1404 - integrity: sha512-pvmzcBOqvrQaLiw0gk+Yg0YxFX/qGod3NhoZrXXAI7YrHItMbkqEcECZbtiyoPG+WV+IiSzTGzFw2BlTJq7FCg==, 1405 - } 974 + '@fluentui/react-search@9.3.6': 975 + resolution: {integrity: sha512-pvmzcBOqvrQaLiw0gk+Yg0YxFX/qGod3NhoZrXXAI7YrHItMbkqEcECZbtiyoPG+WV+IiSzTGzFw2BlTJq7FCg==} 1406 976 peerDependencies: 1407 - "@types/react": ">=16.14.0 <20.0.0" 1408 - "@types/react-dom": ">=16.9.0 <20.0.0" 1409 - react: ">=16.14.0 <20.0.0" 1410 - react-dom: ">=16.14.0 <20.0.0" 977 + '@types/react': '>=16.14.0 <20.0.0' 978 + '@types/react-dom': '>=16.9.0 <20.0.0' 979 + react: '>=16.14.0 <20.0.0' 980 + react-dom: '>=16.14.0 <20.0.0' 1411 981 1412 - "@fluentui/react-select@9.4.6": 1413 - resolution: 1414 - { 1415 - integrity: sha512-LJ0cl7w6TDsDK6TKQDij3O1TI8mwt3nzuoTcsMlgSQRJZMC/n4nSGRUmX0GHbLCtcWxfFJ3Vy+1e/9NydxLJqA==, 1416 - } 982 + '@fluentui/react-select@9.4.6': 983 + resolution: {integrity: sha512-LJ0cl7w6TDsDK6TKQDij3O1TI8mwt3nzuoTcsMlgSQRJZMC/n4nSGRUmX0GHbLCtcWxfFJ3Vy+1e/9NydxLJqA==} 1417 984 peerDependencies: 1418 - "@types/react": ">=16.14.0 <20.0.0" 1419 - "@types/react-dom": ">=16.9.0 <20.0.0" 1420 - react: ">=16.14.0 <20.0.0" 1421 - react-dom: ">=16.14.0 <20.0.0" 985 + '@types/react': '>=16.14.0 <20.0.0' 986 + '@types/react-dom': '>=16.9.0 <20.0.0' 987 + react: '>=16.14.0 <20.0.0' 988 + react-dom: '>=16.14.0 <20.0.0' 1422 989 1423 - "@fluentui/react-shared-contexts@9.25.2": 1424 - resolution: 1425 - { 1426 - integrity: sha512-PxDVy6RPps3gqee/RESIMXzOlrlVOQ/uQffFMeVniqjW0IPwCs/d2TwJT1Sfh9DCFgnI9onD0GGlBelszzRjmA==, 1427 - } 990 + '@fluentui/react-shared-contexts@9.25.2': 991 + resolution: {integrity: sha512-PxDVy6RPps3gqee/RESIMXzOlrlVOQ/uQffFMeVniqjW0IPwCs/d2TwJT1Sfh9DCFgnI9onD0GGlBelszzRjmA==} 1428 992 peerDependencies: 1429 - "@types/react": ">=16.14.0 <20.0.0" 1430 - react: ">=16.14.0 <20.0.0" 993 + '@types/react': '>=16.14.0 <20.0.0' 994 + react: '>=16.14.0 <20.0.0' 1431 995 1432 - "@fluentui/react-skeleton@9.4.6": 1433 - resolution: 1434 - { 1435 - integrity: sha512-AnGvW28A4equQ0j2uxZHDpwrOrqeE8ZqELhI7pIyRgSwQaIjaxjb0C3tlqQS9jl6456g8NE1hpoanb41ojtqNw==, 1436 - } 996 + '@fluentui/react-skeleton@9.4.6': 997 + resolution: {integrity: sha512-AnGvW28A4equQ0j2uxZHDpwrOrqeE8ZqELhI7pIyRgSwQaIjaxjb0C3tlqQS9jl6456g8NE1hpoanb41ojtqNw==} 1437 998 peerDependencies: 1438 - "@types/react": ">=16.14.0 <20.0.0" 1439 - "@types/react-dom": ">=16.9.0 <20.0.0" 1440 - react: ">=16.14.0 <20.0.0" 1441 - react-dom: ">=16.14.0 <20.0.0" 999 + '@types/react': '>=16.14.0 <20.0.0' 1000 + '@types/react-dom': '>=16.9.0 <20.0.0' 1001 + react: '>=16.14.0 <20.0.0' 1002 + react-dom: '>=16.14.0 <20.0.0' 1442 1003 1443 - "@fluentui/react-slider@9.5.6": 1444 - resolution: 1445 - { 1446 - integrity: sha512-JoIDXA1GHB9n99EvxOxcxwy6nUVk/p2GYoQ9sWoAvf5QOEQjOsD2QHymtDoVoNWWUKfBE51A8XGnJ80uk0qAcA==, 1447 - } 1004 + '@fluentui/react-slider@9.5.6': 1005 + resolution: {integrity: sha512-JoIDXA1GHB9n99EvxOxcxwy6nUVk/p2GYoQ9sWoAvf5QOEQjOsD2QHymtDoVoNWWUKfBE51A8XGnJ80uk0qAcA==} 1448 1006 peerDependencies: 1449 - "@types/react": ">=16.14.0 <20.0.0" 1450 - "@types/react-dom": ">=16.9.0 <20.0.0" 1451 - react: ">=16.14.0 <20.0.0" 1452 - react-dom: ">=16.14.0 <20.0.0" 1007 + '@types/react': '>=16.14.0 <20.0.0' 1008 + '@types/react-dom': '>=16.9.0 <20.0.0' 1009 + react: '>=16.14.0 <20.0.0' 1010 + react-dom: '>=16.14.0 <20.0.0' 1453 1011 1454 - "@fluentui/react-spinbutton@9.5.6": 1455 - resolution: 1456 - { 1457 - integrity: sha512-D+cDKaZjVh+3P/u+G9mcZSKO3riyYYr/D6n7zVhWaFxC2dZxHQpvtCG+8cj1Jgt8FjhZWby4wXKoQfEeja2Yzw==, 1458 - } 1012 + '@fluentui/react-spinbutton@9.5.6': 1013 + resolution: {integrity: sha512-D+cDKaZjVh+3P/u+G9mcZSKO3riyYYr/D6n7zVhWaFxC2dZxHQpvtCG+8cj1Jgt8FjhZWby4wXKoQfEeja2Yzw==} 1459 1014 peerDependencies: 1460 - "@types/react": ">=16.14.0 <20.0.0" 1461 - "@types/react-dom": ">=16.9.0 <20.0.0" 1462 - react: ">=16.14.0 <20.0.0" 1463 - react-dom: ">=16.14.0 <20.0.0" 1015 + '@types/react': '>=16.14.0 <20.0.0' 1016 + '@types/react-dom': '>=16.9.0 <20.0.0' 1017 + react: '>=16.14.0 <20.0.0' 1018 + react-dom: '>=16.14.0 <20.0.0' 1464 1019 1465 - "@fluentui/react-spinner@9.7.6": 1466 - resolution: 1467 - { 1468 - integrity: sha512-vOJIXA3GI75n2hoVCWm10ZzqmCqKR5ZQV4naSd3koJ4cb/6AMYHGVzfy41KTuybTUtkPbN1RRfjFcwv9HGncew==, 1469 - } 1020 + '@fluentui/react-spinner@9.7.6': 1021 + resolution: {integrity: sha512-vOJIXA3GI75n2hoVCWm10ZzqmCqKR5ZQV4naSd3koJ4cb/6AMYHGVzfy41KTuybTUtkPbN1RRfjFcwv9HGncew==} 1470 1022 peerDependencies: 1471 - "@types/react": ">=16.14.0 <20.0.0" 1472 - "@types/react-dom": ">=16.9.0 <20.0.0" 1473 - react: ">=16.14.0 <20.0.0" 1474 - react-dom: ">=16.14.0 <20.0.0" 1023 + '@types/react': '>=16.14.0 <20.0.0' 1024 + '@types/react-dom': '>=16.9.0 <20.0.0' 1025 + react: '>=16.14.0 <20.0.0' 1026 + react-dom: '>=16.14.0 <20.0.0' 1475 1027 1476 - "@fluentui/react-swatch-picker@9.4.6": 1477 - resolution: 1478 - { 1479 - integrity: sha512-c1ZJqjcpb+PjzqkHh9G3N3iXUq9t31b7HXdNwQJ2gKzi8kiGL8LFgmGCzhbUeGsZNmV0rkQAxfp6nzKGXSSr7g==, 1480 - } 1028 + '@fluentui/react-swatch-picker@9.4.6': 1029 + resolution: {integrity: sha512-c1ZJqjcpb+PjzqkHh9G3N3iXUq9t31b7HXdNwQJ2gKzi8kiGL8LFgmGCzhbUeGsZNmV0rkQAxfp6nzKGXSSr7g==} 1481 1030 peerDependencies: 1482 - "@types/react": ">=16.8.0 <20.0.0" 1483 - "@types/react-dom": ">=16.8.0 <20.0.0" 1484 - react: ">=16.14.0 <20.0.0" 1485 - react-dom: ">=16.8.0 <20.0.0" 1031 + '@types/react': '>=16.8.0 <20.0.0' 1032 + '@types/react-dom': '>=16.8.0 <20.0.0' 1033 + react: '>=16.14.0 <20.0.0' 1034 + react-dom: '>=16.8.0 <20.0.0' 1486 1035 1487 - "@fluentui/react-switch@9.4.6": 1488 - resolution: 1489 - { 1490 - integrity: sha512-FNMWwHbD7GxwtOZJArSc2wRo2Dg4l2VUjHTYBL5yeS4cmDnVjCaChMCDPHxocv86upw3Uom1VSWLssUzXRNN1w==, 1491 - } 1036 + '@fluentui/react-switch@9.4.6': 1037 + resolution: {integrity: sha512-FNMWwHbD7GxwtOZJArSc2wRo2Dg4l2VUjHTYBL5yeS4cmDnVjCaChMCDPHxocv86upw3Uom1VSWLssUzXRNN1w==} 1492 1038 peerDependencies: 1493 - "@types/react": ">=16.14.0 <20.0.0" 1494 - "@types/react-dom": ">=16.9.0 <20.0.0" 1495 - react: ">=16.14.0 <20.0.0" 1496 - react-dom: ">=16.14.0 <20.0.0" 1039 + '@types/react': '>=16.14.0 <20.0.0' 1040 + '@types/react-dom': '>=16.9.0 <20.0.0' 1041 + react: '>=16.14.0 <20.0.0' 1042 + react-dom: '>=16.14.0 <20.0.0' 1497 1043 1498 - "@fluentui/react-table@9.19.0": 1499 - resolution: 1500 - { 1501 - integrity: sha512-4XR2XNp5iq4sY3MtkEnuUBLu7BZ4xhGnyrnZ3eFb23TP3ERZTXx0oewpyURscERSv05czV3fwFjvT2gsQPy4Pw==, 1502 - } 1044 + '@fluentui/react-table@9.19.0': 1045 + resolution: {integrity: sha512-4XR2XNp5iq4sY3MtkEnuUBLu7BZ4xhGnyrnZ3eFb23TP3ERZTXx0oewpyURscERSv05czV3fwFjvT2gsQPy4Pw==} 1503 1046 peerDependencies: 1504 - "@types/react": ">=16.14.0 <20.0.0" 1505 - "@types/react-dom": ">=16.9.0 <20.0.0" 1506 - react: ">=16.14.0 <20.0.0" 1507 - react-dom: ">=16.14.0 <20.0.0" 1047 + '@types/react': '>=16.14.0 <20.0.0' 1048 + '@types/react-dom': '>=16.9.0 <20.0.0' 1049 + react: '>=16.14.0 <20.0.0' 1050 + react-dom: '>=16.14.0 <20.0.0' 1508 1051 1509 - "@fluentui/react-tabs@9.10.2": 1510 - resolution: 1511 - { 1512 - integrity: sha512-aK4QVtCN3LQ40MR2/5LGb/reyBsCPsPnEjkifSQn8YrhJbkt0XRFMyIgJJ+EOOUadvQxEXEDDbz/PNpZFWoQCQ==, 1513 - } 1052 + '@fluentui/react-tabs@9.10.2': 1053 + resolution: {integrity: sha512-aK4QVtCN3LQ40MR2/5LGb/reyBsCPsPnEjkifSQn8YrhJbkt0XRFMyIgJJ+EOOUadvQxEXEDDbz/PNpZFWoQCQ==} 1514 1054 peerDependencies: 1515 - "@types/react": ">=16.14.0 <20.0.0" 1516 - "@types/react-dom": ">=16.9.0 <20.0.0" 1517 - react: ">=16.14.0 <20.0.0" 1518 - react-dom: ">=16.14.0 <20.0.0" 1055 + '@types/react': '>=16.14.0 <20.0.0' 1056 + '@types/react-dom': '>=16.9.0 <20.0.0' 1057 + react: '>=16.14.0 <20.0.0' 1058 + react-dom: '>=16.14.0 <20.0.0' 1519 1059 1520 - "@fluentui/react-tabster@9.26.6": 1521 - resolution: 1522 - { 1523 - integrity: sha512-4uk8O7S3qEkixjP2PnB4FvXxNqFKMVRetS3bCsc0T7MLufWtFYMqIfxSrdqyxvtLKMPdMohWmdeOu7E4X+ef6Q==, 1524 - } 1060 + '@fluentui/react-tabster@9.26.6': 1061 + resolution: {integrity: sha512-4uk8O7S3qEkixjP2PnB4FvXxNqFKMVRetS3bCsc0T7MLufWtFYMqIfxSrdqyxvtLKMPdMohWmdeOu7E4X+ef6Q==} 1525 1062 peerDependencies: 1526 - "@types/react": ">=16.14.0 <20.0.0" 1527 - "@types/react-dom": ">=16.9.0 <20.0.0" 1528 - react: ">=16.14.0 <20.0.0" 1529 - react-dom: ">=16.14.0 <20.0.0" 1063 + '@types/react': '>=16.14.0 <20.0.0' 1064 + '@types/react-dom': '>=16.9.0 <20.0.0' 1065 + react: '>=16.14.0 <20.0.0' 1066 + react-dom: '>=16.14.0 <20.0.0' 1530 1067 1531 - "@fluentui/react-tag-picker@9.7.7": 1532 - resolution: 1533 - { 1534 - integrity: sha512-yN8x01vvEt4C9SZHtF4OyUmIP2wFjjAcEqWY1ofwyICKsI9Xc23OANsIWBR9QdvM6jISJ7slwcwcgfP8JmyOSA==, 1535 - } 1068 + '@fluentui/react-tag-picker@9.7.7': 1069 + resolution: {integrity: sha512-yN8x01vvEt4C9SZHtF4OyUmIP2wFjjAcEqWY1ofwyICKsI9Xc23OANsIWBR9QdvM6jISJ7slwcwcgfP8JmyOSA==} 1536 1070 peerDependencies: 1537 - "@types/react": ">=16.14.0 <20.0.0" 1538 - "@types/react-dom": ">=16.9.0 <20.0.0" 1539 - react: ">=16.14.0 <20.0.0" 1540 - react-dom: ">=16.14.0 <20.0.0" 1071 + '@types/react': '>=16.14.0 <20.0.0' 1072 + '@types/react-dom': '>=16.9.0 <20.0.0' 1073 + react: '>=16.14.0 <20.0.0' 1074 + react-dom: '>=16.14.0 <20.0.0' 1541 1075 1542 - "@fluentui/react-tags@9.7.7": 1543 - resolution: 1544 - { 1545 - integrity: sha512-TZ9Cc73hdCFzOBDvL3pQthndlVnGByn+l3vKyAu5kT6pWzrC7gfiWXHsUVUDzLQ8XyFDq1G4vCYfq+949OYyAg==, 1546 - } 1076 + '@fluentui/react-tags@9.7.7': 1077 + resolution: {integrity: sha512-TZ9Cc73hdCFzOBDvL3pQthndlVnGByn+l3vKyAu5kT6pWzrC7gfiWXHsUVUDzLQ8XyFDq1G4vCYfq+949OYyAg==} 1547 1078 peerDependencies: 1548 - "@types/react": ">=16.14.0 <20.0.0" 1549 - "@types/react-dom": ">=16.9.0 <20.0.0" 1550 - react: ">=16.14.0 <20.0.0" 1551 - react-dom: ">=16.14.0 <20.0.0" 1079 + '@types/react': '>=16.14.0 <20.0.0' 1080 + '@types/react-dom': '>=16.9.0 <20.0.0' 1081 + react: '>=16.14.0 <20.0.0' 1082 + react-dom: '>=16.14.0 <20.0.0' 1552 1083 1553 - "@fluentui/react-teaching-popover@9.6.7": 1554 - resolution: 1555 - { 1556 - integrity: sha512-SIXQLP4NKhv5E6hUCR2eMgg+MBehfuHWSygvf8yEZKaoGjgN/4bg/4Rn64Ld6cELcXcHpg7/0tFmDxgxycSU4w==, 1557 - } 1084 + '@fluentui/react-teaching-popover@9.6.7': 1085 + resolution: {integrity: sha512-SIXQLP4NKhv5E6hUCR2eMgg+MBehfuHWSygvf8yEZKaoGjgN/4bg/4Rn64Ld6cELcXcHpg7/0tFmDxgxycSU4w==} 1558 1086 peerDependencies: 1559 - "@types/react": ">=16.8.0 <20.0.0" 1560 - "@types/react-dom": ">=16.8.0 <20.0.0" 1561 - react: ">=16.14.0 <20.0.0" 1562 - react-dom: ">=16.8.0 <20.0.0" 1087 + '@types/react': '>=16.8.0 <20.0.0' 1088 + '@types/react-dom': '>=16.8.0 <20.0.0' 1089 + react: '>=16.14.0 <20.0.0' 1090 + react-dom: '>=16.8.0 <20.0.0' 1563 1091 1564 - "@fluentui/react-text@9.6.6": 1565 - resolution: 1566 - { 1567 - integrity: sha512-WfxzfE3LnGLAy+7w1elVkUwcnCgoVtGVysfYNbQYqs7eEDp7c7asRkVn++nWYGFALu2S0OCthYj98JT5VZlccA==, 1568 - } 1092 + '@fluentui/react-text@9.6.6': 1093 + resolution: {integrity: sha512-WfxzfE3LnGLAy+7w1elVkUwcnCgoVtGVysfYNbQYqs7eEDp7c7asRkVn++nWYGFALu2S0OCthYj98JT5VZlccA==} 1569 1094 peerDependencies: 1570 - "@types/react": ">=16.14.0 <20.0.0" 1571 - "@types/react-dom": ">=16.9.0 <20.0.0" 1572 - react: ">=16.14.0 <20.0.0" 1573 - react-dom: ">=16.14.0 <20.0.0" 1095 + '@types/react': '>=16.14.0 <20.0.0' 1096 + '@types/react-dom': '>=16.9.0 <20.0.0' 1097 + react: '>=16.14.0 <20.0.0' 1098 + react-dom: '>=16.14.0 <20.0.0' 1574 1099 1575 - "@fluentui/react-textarea@9.6.6": 1576 - resolution: 1577 - { 1578 - integrity: sha512-opxqQg+6IexnjW4XJrrueaU66dznDq7h5zjg6KoVR6RscYaqWpythrW2ragZujXQifouUHcrkw+BnwmnAuollw==, 1579 - } 1100 + '@fluentui/react-textarea@9.6.6': 1101 + resolution: {integrity: sha512-opxqQg+6IexnjW4XJrrueaU66dznDq7h5zjg6KoVR6RscYaqWpythrW2ragZujXQifouUHcrkw+BnwmnAuollw==} 1580 1102 peerDependencies: 1581 - "@types/react": ">=16.14.0 <20.0.0" 1582 - "@types/react-dom": ">=16.9.0 <20.0.0" 1583 - react: ">=16.14.0 <20.0.0" 1584 - react-dom: ">=16.14.0 <20.0.0" 1103 + '@types/react': '>=16.14.0 <20.0.0' 1104 + '@types/react-dom': '>=16.9.0 <20.0.0' 1105 + react: '>=16.14.0 <20.0.0' 1106 + react-dom: '>=16.14.0 <20.0.0' 1585 1107 1586 - "@fluentui/react-theme@9.2.0": 1587 - resolution: 1588 - { 1589 - integrity: sha512-Q0zp/MY1m5RjlkcwMcjn/PQRT2T+q3bgxuxWbhgaD07V+tLzBhGROvuqbsdg4YWF/IK21zPfLhmGyifhEu0DnQ==, 1590 - } 1108 + '@fluentui/react-theme@9.2.0': 1109 + resolution: {integrity: sha512-Q0zp/MY1m5RjlkcwMcjn/PQRT2T+q3bgxuxWbhgaD07V+tLzBhGROvuqbsdg4YWF/IK21zPfLhmGyifhEu0DnQ==} 1591 1110 1592 - "@fluentui/react-toast@9.7.3": 1593 - resolution: 1594 - { 1595 - integrity: sha512-JuuOwvzCT+RK3X6IuZGLS3267cg3/DWQ9hlmP3ZThkHKabO/MYyFYTvry+Id5IDBBzFfyoV5M3L7T8MVwAbhYg==, 1596 - } 1111 + '@fluentui/react-toast@9.7.3': 1112 + resolution: {integrity: sha512-JuuOwvzCT+RK3X6IuZGLS3267cg3/DWQ9hlmP3ZThkHKabO/MYyFYTvry+Id5IDBBzFfyoV5M3L7T8MVwAbhYg==} 1597 1113 peerDependencies: 1598 - "@types/react": ">=16.14.0 <20.0.0" 1599 - "@types/react-dom": ">=16.9.0 <20.0.0" 1600 - react: ">=16.14.0 <20.0.0" 1601 - react-dom: ">=16.14.0 <20.0.0" 1114 + '@types/react': '>=16.14.0 <20.0.0' 1115 + '@types/react-dom': '>=16.9.0 <20.0.0' 1116 + react: '>=16.14.0 <20.0.0' 1117 + react-dom: '>=16.14.0 <20.0.0' 1602 1118 1603 - "@fluentui/react-toolbar@9.6.7": 1604 - resolution: 1605 - { 1606 - integrity: sha512-EaBT312aP3WXCwc9vUP/6diNdGUEtFSBbPupolkvM7l3Hqt2NaEgN86RMPubykCbwV4SoJvOQCTxgtsYKCK0gg==, 1607 - } 1119 + '@fluentui/react-toolbar@9.6.7': 1120 + resolution: {integrity: sha512-EaBT312aP3WXCwc9vUP/6diNdGUEtFSBbPupolkvM7l3Hqt2NaEgN86RMPubykCbwV4SoJvOQCTxgtsYKCK0gg==} 1608 1121 peerDependencies: 1609 - "@types/react": ">=16.14.0 <20.0.0" 1610 - "@types/react-dom": ">=16.9.0 <20.0.0" 1611 - react: ">=16.14.0 <20.0.0" 1612 - react-dom: ">=16.14.0 <20.0.0" 1122 + '@types/react': '>=16.14.0 <20.0.0' 1123 + '@types/react-dom': '>=16.9.0 <20.0.0' 1124 + react: '>=16.14.0 <20.0.0' 1125 + react-dom: '>=16.14.0 <20.0.0' 1613 1126 1614 - "@fluentui/react-tooltip@9.8.6": 1615 - resolution: 1616 - { 1617 - integrity: sha512-ue72LCnpTyLUvTNA+KWao0zt8T2BQsQdigY1rXwXUu6PQi4X8TKdZsOMaXCe/pzBDKWk9Du0ClZq7JWw3/mKig==, 1618 - } 1127 + '@fluentui/react-tooltip@9.8.6': 1128 + resolution: {integrity: sha512-ue72LCnpTyLUvTNA+KWao0zt8T2BQsQdigY1rXwXUu6PQi4X8TKdZsOMaXCe/pzBDKWk9Du0ClZq7JWw3/mKig==} 1619 1129 peerDependencies: 1620 - "@types/react": ">=16.14.0 <20.0.0" 1621 - "@types/react-dom": ">=16.9.0 <20.0.0" 1622 - react: ">=16.14.0 <20.0.0" 1623 - react-dom: ">=16.14.0 <20.0.0" 1130 + '@types/react': '>=16.14.0 <20.0.0' 1131 + '@types/react-dom': '>=16.9.0 <20.0.0' 1132 + react: '>=16.14.0 <20.0.0' 1133 + react-dom: '>=16.14.0 <20.0.0' 1624 1134 1625 - "@fluentui/react-tree@9.14.1": 1626 - resolution: 1627 - { 1628 - integrity: sha512-SEo96G127Zkd8lsy84vgZNwI92B2B54C7dSOttYihIv9EjVTjcEY8NzwYLacblc6HZX+l+5e1n6rY6iaZq67rg==, 1629 - } 1135 + '@fluentui/react-tree@9.14.1': 1136 + resolution: {integrity: sha512-SEo96G127Zkd8lsy84vgZNwI92B2B54C7dSOttYihIv9EjVTjcEY8NzwYLacblc6HZX+l+5e1n6rY6iaZq67rg==} 1630 1137 peerDependencies: 1631 - "@types/react": ">=16.14.0 <20.0.0" 1632 - "@types/react-dom": ">=16.9.0 <20.0.0" 1633 - react: ">=16.14.0 <20.0.0" 1634 - react-dom: ">=16.14.0 <20.0.0" 1138 + '@types/react': '>=16.14.0 <20.0.0' 1139 + '@types/react-dom': '>=16.9.0 <20.0.0' 1140 + react: '>=16.14.0 <20.0.0' 1141 + react-dom: '>=16.14.0 <20.0.0' 1635 1142 1636 - "@fluentui/react-utilities@9.25.0": 1637 - resolution: 1638 - { 1639 - integrity: sha512-ZuQ1jjNZ9DKxnnwPnQFTnjgt7qEWHttgaNdAoJlbqk1MG9zZYcuglEMLzj0wajPdkVuOOuS9LhSbbdCoW1aSsA==, 1640 - } 1143 + '@fluentui/react-utilities@9.25.0': 1144 + resolution: {integrity: sha512-ZuQ1jjNZ9DKxnnwPnQFTnjgt7qEWHttgaNdAoJlbqk1MG9zZYcuglEMLzj0wajPdkVuOOuS9LhSbbdCoW1aSsA==} 1641 1145 peerDependencies: 1642 - "@types/react": ">=16.14.0 <20.0.0" 1643 - react: ">=16.14.0 <20.0.0" 1146 + '@types/react': '>=16.14.0 <20.0.0' 1147 + react: '>=16.14.0 <20.0.0' 1644 1148 1645 - "@fluentui/react-virtualizer@9.0.0-alpha.102": 1646 - resolution: 1647 - { 1648 - integrity: sha512-kt/kuAMTKTTY/00ToUlgUwUCty2HGj4Tnr+fxKRmr7Ziy5VWhi1YoNJ8vcgmxog5J90t4tS29LB0LP0KztQUVg==, 1649 - } 1149 + '@fluentui/react-virtualizer@9.0.0-alpha.102': 1150 + resolution: {integrity: sha512-kt/kuAMTKTTY/00ToUlgUwUCty2HGj4Tnr+fxKRmr7Ziy5VWhi1YoNJ8vcgmxog5J90t4tS29LB0LP0KztQUVg==} 1650 1151 peerDependencies: 1651 - "@types/react": ">=16.14.0 <19.0.0" 1652 - "@types/react-dom": ">=16.9.0 <19.0.0" 1653 - react: ">=16.14.0 <19.0.0" 1654 - react-dom: ">=16.14.0 <19.0.0" 1152 + '@types/react': '>=16.14.0 <19.0.0' 1153 + '@types/react-dom': '>=16.9.0 <19.0.0' 1154 + react: '>=16.14.0 <19.0.0' 1155 + react-dom: '>=16.14.0 <19.0.0' 1655 1156 1656 - "@fluentui/tokens@1.0.0-alpha.22": 1657 - resolution: 1658 - { 1659 - integrity: sha512-i9fgYyyCWFRdUi+vQwnV6hp7wpLGK4p09B+O/f2u71GBXzPuniubPYvrIJYtl444DD6shLjYToJhQ1S6XTFwLg==, 1660 - } 1157 + '@fluentui/tokens@1.0.0-alpha.22': 1158 + resolution: {integrity: sha512-i9fgYyyCWFRdUi+vQwnV6hp7wpLGK4p09B+O/f2u71GBXzPuniubPYvrIJYtl444DD6shLjYToJhQ1S6XTFwLg==} 1661 1159 1662 - "@griffel/core@1.19.2": 1663 - resolution: 1664 - { 1665 - integrity: sha512-WkB/QQkjy9dE4vrNYGhQvRRUHFkYVOuaznVOMNTDT4pS9aTJ9XPrMTXXlkpcwaf0D3vNKoerj4zAwnU2lBzbOg==, 1666 - } 1160 + '@griffel/core@1.19.2': 1161 + resolution: {integrity: sha512-WkB/QQkjy9dE4vrNYGhQvRRUHFkYVOuaznVOMNTDT4pS9aTJ9XPrMTXXlkpcwaf0D3vNKoerj4zAwnU2lBzbOg==} 1667 1162 1668 - "@griffel/react@1.5.30": 1669 - resolution: 1670 - { 1671 - integrity: sha512-1q4ojbEVFY5YA0j1NamP0WWF4BKh+GHsVugltDYeEgEaVbH3odJ7tJabuhQgY+7Nhka0pyEFWSiHJev0K3FSew==, 1672 - } 1163 + '@griffel/react@1.5.30': 1164 + resolution: {integrity: sha512-1q4ojbEVFY5YA0j1NamP0WWF4BKh+GHsVugltDYeEgEaVbH3odJ7tJabuhQgY+7Nhka0pyEFWSiHJev0K3FSew==} 1673 1165 peerDependencies: 1674 - react: ">=16.8.0 <20.0.0" 1166 + react: '>=16.8.0 <20.0.0' 1675 1167 1676 - "@griffel/style-types@1.3.0": 1677 - resolution: 1678 - { 1679 - integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==, 1680 - } 1168 + '@griffel/style-types@1.3.0': 1169 + resolution: {integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==} 1681 1170 1682 - "@img/colour@1.0.0": 1683 - resolution: 1684 - { 1685 - integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==, 1686 - } 1687 - engines: { node: ">=18" } 1171 + '@img/colour@1.0.0': 1172 + resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} 1173 + engines: {node: '>=18'} 1688 1174 1689 - "@img/sharp-darwin-arm64@0.34.4": 1690 - resolution: 1691 - { 1692 - integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==, 1693 - } 1694 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1175 + '@img/sharp-darwin-arm64@0.34.4': 1176 + resolution: {integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==} 1177 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1695 1178 cpu: [arm64] 1696 1179 os: [darwin] 1697 1180 1698 - "@img/sharp-darwin-x64@0.34.4": 1699 - resolution: 1700 - { 1701 - integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==, 1702 - } 1703 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1181 + '@img/sharp-darwin-x64@0.34.4': 1182 + resolution: {integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==} 1183 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1704 1184 cpu: [x64] 1705 1185 os: [darwin] 1706 1186 1707 - "@img/sharp-libvips-darwin-arm64@1.2.3": 1708 - resolution: 1709 - { 1710 - integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==, 1711 - } 1187 + '@img/sharp-libvips-darwin-arm64@1.2.3': 1188 + resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==} 1712 1189 cpu: [arm64] 1713 1190 os: [darwin] 1714 1191 1715 - "@img/sharp-libvips-darwin-x64@1.2.3": 1716 - resolution: 1717 - { 1718 - integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==, 1719 - } 1192 + '@img/sharp-libvips-darwin-x64@1.2.3': 1193 + resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==} 1720 1194 cpu: [x64] 1721 1195 os: [darwin] 1722 1196 1723 - "@img/sharp-libvips-linux-arm64@1.2.3": 1724 - resolution: 1725 - { 1726 - integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==, 1727 - } 1197 + '@img/sharp-libvips-linux-arm64@1.2.3': 1198 + resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==} 1728 1199 cpu: [arm64] 1729 1200 os: [linux] 1730 1201 1731 - "@img/sharp-libvips-linux-arm@1.2.3": 1732 - resolution: 1733 - { 1734 - integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==, 1735 - } 1202 + '@img/sharp-libvips-linux-arm@1.2.3': 1203 + resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==} 1736 1204 cpu: [arm] 1737 1205 os: [linux] 1738 1206 1739 - "@img/sharp-libvips-linux-ppc64@1.2.3": 1740 - resolution: 1741 - { 1742 - integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==, 1743 - } 1207 + '@img/sharp-libvips-linux-ppc64@1.2.3': 1208 + resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==} 1744 1209 cpu: [ppc64] 1745 1210 os: [linux] 1746 1211 1747 - "@img/sharp-libvips-linux-s390x@1.2.3": 1748 - resolution: 1749 - { 1750 - integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==, 1751 - } 1212 + '@img/sharp-libvips-linux-s390x@1.2.3': 1213 + resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==} 1752 1214 cpu: [s390x] 1753 1215 os: [linux] 1754 1216 1755 - "@img/sharp-libvips-linux-x64@1.2.3": 1756 - resolution: 1757 - { 1758 - integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==, 1759 - } 1217 + '@img/sharp-libvips-linux-x64@1.2.3': 1218 + resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==} 1760 1219 cpu: [x64] 1761 1220 os: [linux] 1762 1221 1763 - "@img/sharp-libvips-linuxmusl-arm64@1.2.3": 1764 - resolution: 1765 - { 1766 - integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==, 1767 - } 1222 + '@img/sharp-libvips-linuxmusl-arm64@1.2.3': 1223 + resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==} 1768 1224 cpu: [arm64] 1769 1225 os: [linux] 1770 1226 1771 - "@img/sharp-libvips-linuxmusl-x64@1.2.3": 1772 - resolution: 1773 - { 1774 - integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==, 1775 - } 1227 + '@img/sharp-libvips-linuxmusl-x64@1.2.3': 1228 + resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==} 1776 1229 cpu: [x64] 1777 1230 os: [linux] 1778 1231 1779 - "@img/sharp-linux-arm64@0.34.4": 1780 - resolution: 1781 - { 1782 - integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==, 1783 - } 1784 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1232 + '@img/sharp-linux-arm64@0.34.4': 1233 + resolution: {integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==} 1234 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1785 1235 cpu: [arm64] 1786 1236 os: [linux] 1787 1237 1788 - "@img/sharp-linux-arm@0.34.4": 1789 - resolution: 1790 - { 1791 - integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==, 1792 - } 1793 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1238 + '@img/sharp-linux-arm@0.34.4': 1239 + resolution: {integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==} 1240 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1794 1241 cpu: [arm] 1795 1242 os: [linux] 1796 1243 1797 - "@img/sharp-linux-ppc64@0.34.4": 1798 - resolution: 1799 - { 1800 - integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==, 1801 - } 1802 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1244 + '@img/sharp-linux-ppc64@0.34.4': 1245 + resolution: {integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==} 1246 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1803 1247 cpu: [ppc64] 1804 1248 os: [linux] 1805 1249 1806 - "@img/sharp-linux-s390x@0.34.4": 1807 - resolution: 1808 - { 1809 - integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==, 1810 - } 1811 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1250 + '@img/sharp-linux-s390x@0.34.4': 1251 + resolution: {integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==} 1252 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1812 1253 cpu: [s390x] 1813 1254 os: [linux] 1814 1255 1815 - "@img/sharp-linux-x64@0.34.4": 1816 - resolution: 1817 - { 1818 - integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==, 1819 - } 1820 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1256 + '@img/sharp-linux-x64@0.34.4': 1257 + resolution: {integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==} 1258 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1821 1259 cpu: [x64] 1822 1260 os: [linux] 1823 1261 1824 - "@img/sharp-linuxmusl-arm64@0.34.4": 1825 - resolution: 1826 - { 1827 - integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==, 1828 - } 1829 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1262 + '@img/sharp-linuxmusl-arm64@0.34.4': 1263 + resolution: {integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==} 1264 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1830 1265 cpu: [arm64] 1831 1266 os: [linux] 1832 1267 1833 - "@img/sharp-linuxmusl-x64@0.34.4": 1834 - resolution: 1835 - { 1836 - integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==, 1837 - } 1838 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1268 + '@img/sharp-linuxmusl-x64@0.34.4': 1269 + resolution: {integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==} 1270 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1839 1271 cpu: [x64] 1840 1272 os: [linux] 1841 1273 1842 - "@img/sharp-wasm32@0.34.4": 1843 - resolution: 1844 - { 1845 - integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==, 1846 - } 1847 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1274 + '@img/sharp-wasm32@0.34.4': 1275 + resolution: {integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==} 1276 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1848 1277 cpu: [wasm32] 1849 1278 1850 - "@img/sharp-win32-arm64@0.34.4": 1851 - resolution: 1852 - { 1853 - integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==, 1854 - } 1855 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1279 + '@img/sharp-win32-arm64@0.34.4': 1280 + resolution: {integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==} 1281 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1856 1282 cpu: [arm64] 1857 1283 os: [win32] 1858 1284 1859 - "@img/sharp-win32-ia32@0.34.4": 1860 - resolution: 1861 - { 1862 - integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==, 1863 - } 1864 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1285 + '@img/sharp-win32-ia32@0.34.4': 1286 + resolution: {integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==} 1287 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1865 1288 cpu: [ia32] 1866 1289 os: [win32] 1867 1290 1868 - "@img/sharp-win32-x64@0.34.4": 1869 - resolution: 1870 - { 1871 - integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==, 1872 - } 1873 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 1291 + '@img/sharp-win32-x64@0.34.4': 1292 + resolution: {integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==} 1293 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 1874 1294 cpu: [x64] 1875 1295 os: [win32] 1876 1296 1877 - "@inquirer/ansi@1.0.0": 1878 - resolution: 1879 - { 1880 - integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==, 1881 - } 1882 - engines: { node: ">=18" } 1297 + '@inquirer/ansi@1.0.0': 1298 + resolution: {integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==} 1299 + engines: {node: '>=18'} 1883 1300 1884 - "@inquirer/checkbox@4.2.4": 1885 - resolution: 1886 - { 1887 - integrity: sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==, 1888 - } 1889 - engines: { node: ">=18" } 1301 + '@inquirer/checkbox@4.2.4': 1302 + resolution: {integrity: sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==} 1303 + engines: {node: '>=18'} 1890 1304 peerDependencies: 1891 - "@types/node": ">=18" 1305 + '@types/node': '>=18' 1892 1306 peerDependenciesMeta: 1893 - "@types/node": 1307 + '@types/node': 1894 1308 optional: true 1895 1309 1896 - "@inquirer/confirm@5.1.18": 1897 - resolution: 1898 - { 1899 - integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==, 1900 - } 1901 - engines: { node: ">=18" } 1310 + '@inquirer/confirm@5.1.18': 1311 + resolution: {integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==} 1312 + engines: {node: '>=18'} 1902 1313 peerDependencies: 1903 - "@types/node": ">=18" 1314 + '@types/node': '>=18' 1904 1315 peerDependenciesMeta: 1905 - "@types/node": 1316 + '@types/node': 1906 1317 optional: true 1907 1318 1908 - "@inquirer/core@10.2.2": 1909 - resolution: 1910 - { 1911 - integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==, 1912 - } 1913 - engines: { node: ">=18" } 1319 + '@inquirer/core@10.2.2': 1320 + resolution: {integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==} 1321 + engines: {node: '>=18'} 1914 1322 peerDependencies: 1915 - "@types/node": ">=18" 1323 + '@types/node': '>=18' 1916 1324 peerDependenciesMeta: 1917 - "@types/node": 1325 + '@types/node': 1918 1326 optional: true 1919 1327 1920 - "@inquirer/editor@4.2.20": 1921 - resolution: 1922 - { 1923 - integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==, 1924 - } 1925 - engines: { node: ">=18" } 1328 + '@inquirer/editor@4.2.20': 1329 + resolution: {integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==} 1330 + engines: {node: '>=18'} 1926 1331 peerDependencies: 1927 - "@types/node": ">=18" 1332 + '@types/node': '>=18' 1928 1333 peerDependenciesMeta: 1929 - "@types/node": 1334 + '@types/node': 1930 1335 optional: true 1931 1336 1932 - "@inquirer/expand@4.0.20": 1933 - resolution: 1934 - { 1935 - integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==, 1936 - } 1937 - engines: { node: ">=18" } 1337 + '@inquirer/expand@4.0.20': 1338 + resolution: {integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==} 1339 + engines: {node: '>=18'} 1938 1340 peerDependencies: 1939 - "@types/node": ">=18" 1341 + '@types/node': '>=18' 1940 1342 peerDependenciesMeta: 1941 - "@types/node": 1343 + '@types/node': 1942 1344 optional: true 1943 1345 1944 - "@inquirer/external-editor@1.0.2": 1945 - resolution: 1946 - { 1947 - integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==, 1948 - } 1949 - engines: { node: ">=18" } 1346 + '@inquirer/external-editor@1.0.2': 1347 + resolution: {integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==} 1348 + engines: {node: '>=18'} 1950 1349 peerDependencies: 1951 - "@types/node": ">=18" 1350 + '@types/node': '>=18' 1952 1351 peerDependenciesMeta: 1953 - "@types/node": 1352 + '@types/node': 1954 1353 optional: true 1955 1354 1956 - "@inquirer/figures@1.0.13": 1957 - resolution: 1958 - { 1959 - integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==, 1960 - } 1961 - engines: { node: ">=18" } 1355 + '@inquirer/figures@1.0.13': 1356 + resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==} 1357 + engines: {node: '>=18'} 1962 1358 1963 - "@inquirer/input@4.2.4": 1964 - resolution: 1965 - { 1966 - integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==, 1967 - } 1968 - engines: { node: ">=18" } 1359 + '@inquirer/input@4.2.4': 1360 + resolution: {integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==} 1361 + engines: {node: '>=18'} 1969 1362 peerDependencies: 1970 - "@types/node": ">=18" 1363 + '@types/node': '>=18' 1971 1364 peerDependenciesMeta: 1972 - "@types/node": 1365 + '@types/node': 1973 1366 optional: true 1974 1367 1975 - "@inquirer/number@3.0.20": 1976 - resolution: 1977 - { 1978 - integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==, 1979 - } 1980 - engines: { node: ">=18" } 1368 + '@inquirer/number@3.0.20': 1369 + resolution: {integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==} 1370 + engines: {node: '>=18'} 1981 1371 peerDependencies: 1982 - "@types/node": ">=18" 1372 + '@types/node': '>=18' 1983 1373 peerDependenciesMeta: 1984 - "@types/node": 1374 + '@types/node': 1985 1375 optional: true 1986 1376 1987 - "@inquirer/password@4.0.20": 1988 - resolution: 1989 - { 1990 - integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==, 1991 - } 1992 - engines: { node: ">=18" } 1377 + '@inquirer/password@4.0.20': 1378 + resolution: {integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==} 1379 + engines: {node: '>=18'} 1993 1380 peerDependencies: 1994 - "@types/node": ">=18" 1381 + '@types/node': '>=18' 1995 1382 peerDependenciesMeta: 1996 - "@types/node": 1383 + '@types/node': 1997 1384 optional: true 1998 1385 1999 - "@inquirer/prompts@7.8.6": 2000 - resolution: 2001 - { 2002 - integrity: sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==, 2003 - } 2004 - engines: { node: ">=18" } 1386 + '@inquirer/prompts@7.8.6': 1387 + resolution: {integrity: sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==} 1388 + engines: {node: '>=18'} 2005 1389 peerDependencies: 2006 - "@types/node": ">=18" 1390 + '@types/node': '>=18' 2007 1391 peerDependenciesMeta: 2008 - "@types/node": 1392 + '@types/node': 2009 1393 optional: true 2010 1394 2011 - "@inquirer/rawlist@4.1.8": 2012 - resolution: 2013 - { 2014 - integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==, 2015 - } 2016 - engines: { node: ">=18" } 1395 + '@inquirer/rawlist@4.1.8': 1396 + resolution: {integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==} 1397 + engines: {node: '>=18'} 2017 1398 peerDependencies: 2018 - "@types/node": ">=18" 1399 + '@types/node': '>=18' 2019 1400 peerDependenciesMeta: 2020 - "@types/node": 1401 + '@types/node': 2021 1402 optional: true 2022 1403 2023 - "@inquirer/search@3.1.3": 2024 - resolution: 2025 - { 2026 - integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==, 2027 - } 2028 - engines: { node: ">=18" } 1404 + '@inquirer/search@3.1.3': 1405 + resolution: {integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==} 1406 + engines: {node: '>=18'} 2029 1407 peerDependencies: 2030 - "@types/node": ">=18" 1408 + '@types/node': '>=18' 2031 1409 peerDependenciesMeta: 2032 - "@types/node": 1410 + '@types/node': 2033 1411 optional: true 2034 1412 2035 - "@inquirer/select@4.3.4": 2036 - resolution: 2037 - { 2038 - integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==, 2039 - } 2040 - engines: { node: ">=18" } 1413 + '@inquirer/select@4.3.4': 1414 + resolution: {integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==} 1415 + engines: {node: '>=18'} 2041 1416 peerDependencies: 2042 - "@types/node": ">=18" 1417 + '@types/node': '>=18' 2043 1418 peerDependenciesMeta: 2044 - "@types/node": 1419 + '@types/node': 2045 1420 optional: true 2046 1421 2047 - "@inquirer/type@3.0.8": 2048 - resolution: 2049 - { 2050 - integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==, 2051 - } 2052 - engines: { node: ">=18" } 1422 + '@inquirer/type@3.0.8': 1423 + resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==} 1424 + engines: {node: '>=18'} 2053 1425 peerDependencies: 2054 - "@types/node": ">=18" 1426 + '@types/node': '>=18' 2055 1427 peerDependenciesMeta: 2056 - "@types/node": 1428 + '@types/node': 2057 1429 optional: true 2058 1430 2059 - "@ipld/dag-cbor@7.0.3": 2060 - resolution: 2061 - { 2062 - integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==, 2063 - } 1431 + '@ipld/dag-cbor@7.0.3': 1432 + resolution: {integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==} 2064 1433 2065 - "@isaacs/fs-minipass@4.0.1": 2066 - resolution: 2067 - { 2068 - integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==, 2069 - } 2070 - engines: { node: ">=18.0.0" } 1434 + '@isaacs/fs-minipass@4.0.1': 1435 + resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} 1436 + engines: {node: '>=18.0.0'} 2071 1437 2072 - "@jest/schemas@29.6.3": 2073 - resolution: 2074 - { 2075 - integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==, 2076 - } 2077 - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } 1438 + '@jest/schemas@29.6.3': 1439 + resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} 1440 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 2078 1441 2079 - "@jridgewell/gen-mapping@0.3.13": 2080 - resolution: 2081 - { 2082 - integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==, 2083 - } 1442 + '@jridgewell/gen-mapping@0.3.13': 1443 + resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 2084 1444 2085 - "@jridgewell/remapping@2.3.5": 2086 - resolution: 2087 - { 2088 - integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==, 2089 - } 1445 + '@jridgewell/remapping@2.3.5': 1446 + resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 2090 1447 2091 - "@jridgewell/resolve-uri@3.1.2": 2092 - resolution: 2093 - { 2094 - integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, 2095 - } 2096 - engines: { node: ">=6.0.0" } 1448 + '@jridgewell/resolve-uri@3.1.2': 1449 + resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 1450 + engines: {node: '>=6.0.0'} 2097 1451 2098 - "@jridgewell/sourcemap-codec@1.5.5": 2099 - resolution: 2100 - { 2101 - integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==, 2102 - } 1452 + '@jridgewell/sourcemap-codec@1.5.5': 1453 + resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 2103 1454 2104 - "@jridgewell/trace-mapping@0.3.31": 2105 - resolution: 2106 - { 2107 - integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==, 2108 - } 1455 + '@jridgewell/trace-mapping@0.3.31': 1456 + resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 2109 1457 2110 - "@jspm/core@2.1.0": 2111 - resolution: 2112 - { 2113 - integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==, 2114 - } 1458 + '@jspm/core@2.1.0': 1459 + resolution: {integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==} 2115 1460 2116 - "@noble/curves@1.9.7": 2117 - resolution: 2118 - { 2119 - integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==, 2120 - } 2121 - engines: { node: ^14.21.3 || >=16 } 1461 + '@noble/curves@1.9.7': 1462 + resolution: {integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==} 1463 + engines: {node: ^14.21.3 || >=16} 2122 1464 2123 - "@noble/hashes@1.8.0": 2124 - resolution: 2125 - { 2126 - integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==, 2127 - } 2128 - engines: { node: ^14.21.3 || >=16 } 1465 + '@noble/hashes@1.8.0': 1466 + resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} 1467 + engines: {node: ^14.21.3 || >=16} 2129 1468 2130 - "@nodelib/fs.scandir@2.1.5": 2131 - resolution: 2132 - { 2133 - integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, 2134 - } 2135 - engines: { node: ">= 8" } 1469 + '@nodelib/fs.scandir@2.1.5': 1470 + resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 1471 + engines: {node: '>= 8'} 2136 1472 2137 - "@nodelib/fs.stat@2.0.5": 2138 - resolution: 2139 - { 2140 - integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, 2141 - } 2142 - engines: { node: ">= 8" } 1473 + '@nodelib/fs.stat@2.0.5': 1474 + resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 1475 + engines: {node: '>= 8'} 2143 1476 2144 - "@nodelib/fs.walk@1.2.8": 2145 - resolution: 2146 - { 2147 - integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, 2148 - } 2149 - engines: { node: ">= 8" } 1477 + '@nodelib/fs.walk@1.2.8': 1478 + resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1479 + engines: {node: '>= 8'} 2150 1480 2151 - "@oslojs/encoding@1.1.0": 2152 - resolution: 2153 - { 2154 - integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==, 2155 - } 1481 + '@oslojs/encoding@1.1.0': 1482 + resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} 2156 1483 2157 - "@rolldown/pluginutils@1.0.0-beta.27": 2158 - resolution: 2159 - { 2160 - integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==, 2161 - } 1484 + '@rolldown/pluginutils@1.0.0-beta.27': 1485 + resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} 2162 1486 2163 - "@rollup/pluginutils@5.3.0": 2164 - resolution: 2165 - { 2166 - integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==, 2167 - } 2168 - engines: { node: ">=14.0.0" } 1487 + '@rollup/pluginutils@5.3.0': 1488 + resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} 1489 + engines: {node: '>=14.0.0'} 2169 1490 peerDependencies: 2170 1491 rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 2171 1492 peerDependenciesMeta: 2172 1493 rollup: 2173 1494 optional: true 2174 1495 2175 - "@rollup/rollup-android-arm-eabi@4.52.4": 2176 - resolution: 2177 - { 2178 - integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==, 2179 - } 1496 + '@rollup/rollup-android-arm-eabi@4.52.4': 1497 + resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==} 2180 1498 cpu: [arm] 2181 1499 os: [android] 2182 1500 2183 - "@rollup/rollup-android-arm64@4.52.4": 2184 - resolution: 2185 - { 2186 - integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==, 2187 - } 1501 + '@rollup/rollup-android-arm64@4.52.4': 1502 + resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==} 2188 1503 cpu: [arm64] 2189 1504 os: [android] 2190 1505 2191 - "@rollup/rollup-darwin-arm64@4.52.4": 2192 - resolution: 2193 - { 2194 - integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==, 2195 - } 1506 + '@rollup/rollup-darwin-arm64@4.52.4': 1507 + resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==} 2196 1508 cpu: [arm64] 2197 1509 os: [darwin] 2198 1510 2199 - "@rollup/rollup-darwin-x64@4.52.4": 2200 - resolution: 2201 - { 2202 - integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==, 2203 - } 1511 + '@rollup/rollup-darwin-x64@4.52.4': 1512 + resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==} 2204 1513 cpu: [x64] 2205 1514 os: [darwin] 2206 1515 2207 - "@rollup/rollup-freebsd-arm64@4.52.4": 2208 - resolution: 2209 - { 2210 - integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==, 2211 - } 1516 + '@rollup/rollup-freebsd-arm64@4.52.4': 1517 + resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==} 2212 1518 cpu: [arm64] 2213 1519 os: [freebsd] 2214 1520 2215 - "@rollup/rollup-freebsd-x64@4.52.4": 2216 - resolution: 2217 - { 2218 - integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==, 2219 - } 1521 + '@rollup/rollup-freebsd-x64@4.52.4': 1522 + resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==} 2220 1523 cpu: [x64] 2221 1524 os: [freebsd] 2222 1525 2223 - "@rollup/rollup-linux-arm-gnueabihf@4.52.4": 2224 - resolution: 2225 - { 2226 - integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==, 2227 - } 1526 + '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 1527 + resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==} 2228 1528 cpu: [arm] 2229 1529 os: [linux] 2230 1530 2231 - "@rollup/rollup-linux-arm-musleabihf@4.52.4": 2232 - resolution: 2233 - { 2234 - integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==, 2235 - } 1531 + '@rollup/rollup-linux-arm-musleabihf@4.52.4': 1532 + resolution: {integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==} 2236 1533 cpu: [arm] 2237 1534 os: [linux] 2238 1535 2239 - "@rollup/rollup-linux-arm64-gnu@4.52.4": 2240 - resolution: 2241 - { 2242 - integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==, 2243 - } 1536 + '@rollup/rollup-linux-arm64-gnu@4.52.4': 1537 + resolution: {integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==} 2244 1538 cpu: [arm64] 2245 1539 os: [linux] 2246 1540 2247 - "@rollup/rollup-linux-arm64-musl@4.52.4": 2248 - resolution: 2249 - { 2250 - integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==, 2251 - } 1541 + '@rollup/rollup-linux-arm64-musl@4.52.4': 1542 + resolution: {integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==} 2252 1543 cpu: [arm64] 2253 1544 os: [linux] 2254 1545 2255 - "@rollup/rollup-linux-loong64-gnu@4.52.4": 2256 - resolution: 2257 - { 2258 - integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==, 2259 - } 1546 + '@rollup/rollup-linux-loong64-gnu@4.52.4': 1547 + resolution: {integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==} 2260 1548 cpu: [loong64] 2261 1549 os: [linux] 2262 1550 2263 - "@rollup/rollup-linux-ppc64-gnu@4.52.4": 2264 - resolution: 2265 - { 2266 - integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==, 2267 - } 1551 + '@rollup/rollup-linux-ppc64-gnu@4.52.4': 1552 + resolution: {integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==} 2268 1553 cpu: [ppc64] 2269 1554 os: [linux] 2270 1555 2271 - "@rollup/rollup-linux-riscv64-gnu@4.52.4": 2272 - resolution: 2273 - { 2274 - integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==, 2275 - } 1556 + '@rollup/rollup-linux-riscv64-gnu@4.52.4': 1557 + resolution: {integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==} 2276 1558 cpu: [riscv64] 2277 1559 os: [linux] 2278 1560 2279 - "@rollup/rollup-linux-riscv64-musl@4.52.4": 2280 - resolution: 2281 - { 2282 - integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==, 2283 - } 1561 + '@rollup/rollup-linux-riscv64-musl@4.52.4': 1562 + resolution: {integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==} 2284 1563 cpu: [riscv64] 2285 1564 os: [linux] 2286 1565 2287 - "@rollup/rollup-linux-s390x-gnu@4.52.4": 2288 - resolution: 2289 - { 2290 - integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==, 2291 - } 1566 + '@rollup/rollup-linux-s390x-gnu@4.52.4': 1567 + resolution: {integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==} 2292 1568 cpu: [s390x] 2293 1569 os: [linux] 2294 1570 2295 - "@rollup/rollup-linux-x64-gnu@4.40.0": 2296 - resolution: 2297 - { 2298 - integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==, 2299 - } 1571 + '@rollup/rollup-linux-x64-gnu@4.40.0': 1572 + resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==} 2300 1573 cpu: [x64] 2301 1574 os: [linux] 2302 1575 2303 - "@rollup/rollup-linux-x64-gnu@4.52.4": 2304 - resolution: 2305 - { 2306 - integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==, 2307 - } 1576 + '@rollup/rollup-linux-x64-gnu@4.52.4': 1577 + resolution: {integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==} 2308 1578 cpu: [x64] 2309 1579 os: [linux] 2310 1580 2311 - "@rollup/rollup-linux-x64-musl@4.52.4": 2312 - resolution: 2313 - { 2314 - integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==, 2315 - } 1581 + '@rollup/rollup-linux-x64-musl@4.52.4': 1582 + resolution: {integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==} 2316 1583 cpu: [x64] 2317 1584 os: [linux] 2318 1585 2319 - "@rollup/rollup-openharmony-arm64@4.52.4": 2320 - resolution: 2321 - { 2322 - integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==, 2323 - } 1586 + '@rollup/rollup-openharmony-arm64@4.52.4': 1587 + resolution: {integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==} 2324 1588 cpu: [arm64] 2325 1589 os: [openharmony] 2326 1590 2327 - "@rollup/rollup-win32-arm64-msvc@4.52.4": 2328 - resolution: 2329 - { 2330 - integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==, 2331 - } 1591 + '@rollup/rollup-win32-arm64-msvc@4.52.4': 1592 + resolution: {integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==} 2332 1593 cpu: [arm64] 2333 1594 os: [win32] 2334 1595 2335 - "@rollup/rollup-win32-ia32-msvc@4.52.4": 2336 - resolution: 2337 - { 2338 - integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==, 2339 - } 1596 + '@rollup/rollup-win32-ia32-msvc@4.52.4': 1597 + resolution: {integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==} 2340 1598 cpu: [ia32] 2341 1599 os: [win32] 2342 1600 2343 - "@rollup/rollup-win32-x64-gnu@4.52.4": 2344 - resolution: 2345 - { 2346 - integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==, 2347 - } 1601 + '@rollup/rollup-win32-x64-gnu@4.52.4': 1602 + resolution: {integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==} 2348 1603 cpu: [x64] 2349 1604 os: [win32] 2350 1605 2351 - "@rollup/rollup-win32-x64-msvc@4.52.4": 2352 - resolution: 2353 - { 2354 - integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==, 2355 - } 1606 + '@rollup/rollup-win32-x64-msvc@4.52.4': 1607 + resolution: {integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==} 2356 1608 cpu: [x64] 2357 1609 os: [win32] 2358 1610 2359 - "@scarf/scarf@1.4.0": 2360 - resolution: 2361 - { 2362 - integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==, 2363 - } 1611 + '@scarf/scarf@1.4.0': 1612 + resolution: {integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==} 2364 1613 2365 - "@shikijs/core@3.13.0": 2366 - resolution: 2367 - { 2368 - integrity: sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==, 2369 - } 1614 + '@shikijs/core@3.13.0': 1615 + resolution: {integrity: sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==} 2370 1616 2371 - "@shikijs/engine-javascript@3.13.0": 2372 - resolution: 2373 - { 2374 - integrity: sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==, 2375 - } 1617 + '@shikijs/engine-javascript@3.13.0': 1618 + resolution: {integrity: sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==} 2376 1619 2377 - "@shikijs/engine-oniguruma@3.13.0": 2378 - resolution: 2379 - { 2380 - integrity: sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==, 2381 - } 1620 + '@shikijs/engine-oniguruma@3.13.0': 1621 + resolution: {integrity: sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==} 2382 1622 2383 - "@shikijs/langs@3.13.0": 2384 - resolution: 2385 - { 2386 - integrity: sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==, 2387 - } 1623 + '@shikijs/langs@3.13.0': 1624 + resolution: {integrity: sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==} 2388 1625 2389 - "@shikijs/themes@3.13.0": 2390 - resolution: 2391 - { 2392 - integrity: sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==, 2393 - } 1626 + '@shikijs/themes@3.13.0': 1627 + resolution: {integrity: sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==} 2394 1628 2395 - "@shikijs/types@3.13.0": 2396 - resolution: 2397 - { 2398 - integrity: sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==, 2399 - } 1629 + '@shikijs/types@3.13.0': 1630 + resolution: {integrity: sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==} 2400 1631 2401 - "@shikijs/vscode-textmate@10.0.2": 2402 - resolution: 2403 - { 2404 - integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==, 2405 - } 1632 + '@shikijs/vscode-textmate@10.0.2': 1633 + resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} 2406 1634 2407 - "@sinclair/typebox@0.27.8": 2408 - resolution: 2409 - { 2410 - integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, 2411 - } 1635 + '@sinclair/typebox@0.27.8': 1636 + resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} 2412 1637 2413 - "@sindresorhus/merge-streams@2.3.0": 2414 - resolution: 2415 - { 2416 - integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==, 2417 - } 2418 - engines: { node: ">=18" } 1638 + '@sindresorhus/merge-streams@2.3.0': 1639 + resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} 1640 + engines: {node: '>=18'} 2419 1641 2420 - "@swc/helpers@0.5.17": 2421 - resolution: 2422 - { 2423 - integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==, 2424 - } 1642 + '@swc/helpers@0.5.17': 1643 + resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} 2425 1644 2426 - "@ts-morph/common@0.25.0": 2427 - resolution: 2428 - { 2429 - integrity: sha512-kMnZz+vGGHi4GoHnLmMhGNjm44kGtKUXGnOvrKmMwAuvNjM/PgKVGfUnL7IDvK7Jb2QQ82jq3Zmp04Gy+r3Dkg==, 2430 - } 1645 + '@ts-morph/common@0.25.0': 1646 + resolution: {integrity: sha512-kMnZz+vGGHi4GoHnLmMhGNjm44kGtKUXGnOvrKmMwAuvNjM/PgKVGfUnL7IDvK7Jb2QQ82jq3Zmp04Gy+r3Dkg==} 2431 1647 2432 - "@types/babel__core@7.20.5": 2433 - resolution: 2434 - { 2435 - integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==, 2436 - } 1648 + '@types/babel__core@7.20.5': 1649 + resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 2437 1650 2438 - "@types/babel__generator@7.27.0": 2439 - resolution: 2440 - { 2441 - integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==, 2442 - } 1651 + '@types/babel__generator@7.27.0': 1652 + resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} 2443 1653 2444 - "@types/babel__template@7.4.4": 2445 - resolution: 2446 - { 2447 - integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==, 2448 - } 1654 + '@types/babel__template@7.4.4': 1655 + resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 2449 1656 2450 - "@types/babel__traverse@7.28.0": 2451 - resolution: 2452 - { 2453 - integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==, 2454 - } 1657 + '@types/babel__traverse@7.28.0': 1658 + resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} 2455 1659 2456 - "@types/debug@4.1.12": 2457 - resolution: 2458 - { 2459 - integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, 2460 - } 1660 + '@types/debug@4.1.12': 1661 + resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 2461 1662 2462 - "@types/estree@1.0.8": 2463 - resolution: 2464 - { 2465 - integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==, 2466 - } 1663 + '@types/estree@1.0.8': 1664 + resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 2467 1665 2468 - "@types/fontkit@2.0.8": 2469 - resolution: 2470 - { 2471 - integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==, 2472 - } 1666 + '@types/fontkit@2.0.8': 1667 + resolution: {integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==} 2473 1668 2474 - "@types/hast@3.0.4": 2475 - resolution: 2476 - { 2477 - integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, 2478 - } 1669 + '@types/hast@3.0.4': 1670 + resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 2479 1671 2480 - "@types/json-schema@7.0.15": 2481 - resolution: 2482 - { 2483 - integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, 2484 - } 1672 + '@types/json-schema@7.0.15': 1673 + resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 2485 1674 2486 - "@types/mdast@4.0.4": 2487 - resolution: 2488 - { 2489 - integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, 2490 - } 1675 + '@types/mdast@4.0.4': 1676 + resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 2491 1677 2492 - "@types/ms@2.1.0": 2493 - resolution: 2494 - { 2495 - integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==, 2496 - } 1678 + '@types/ms@2.1.0': 1679 + resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 2497 1680 2498 - "@types/nlcst@2.0.3": 2499 - resolution: 2500 - { 2501 - integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==, 2502 - } 1681 + '@types/nlcst@2.0.3': 1682 + resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} 2503 1683 2504 - "@types/node@20.19.19": 2505 - resolution: 2506 - { 2507 - integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==, 2508 - } 1684 + '@types/node@20.19.19': 1685 + resolution: {integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==} 2509 1686 2510 - "@types/prop-types@15.7.15": 2511 - resolution: 2512 - { 2513 - integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==, 2514 - } 1687 + '@types/prop-types@15.7.15': 1688 + resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} 2515 1689 2516 - "@types/react-dom@18.3.7": 2517 - resolution: 2518 - { 2519 - integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==, 2520 - } 1690 + '@types/react-dom@18.3.7': 1691 + resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} 2521 1692 peerDependencies: 2522 - "@types/react": ^18.0.0 1693 + '@types/react': ^18.0.0 2523 1694 2524 - "@types/react-dom@19.2.0": 2525 - resolution: 2526 - { 2527 - integrity: sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==, 2528 - } 1695 + '@types/react-dom@19.2.0': 1696 + resolution: {integrity: sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==} 2529 1697 peerDependencies: 2530 - "@types/react": ^19.2.0 1698 + '@types/react': ^19.2.0 2531 1699 2532 - "@types/react@18.3.25": 2533 - resolution: 2534 - { 2535 - integrity: sha512-oSVZmGtDPmRZtVDqvdKUi/qgCsWp5IDY29wp8na8Bj4B3cc99hfNzvNhlMkVVxctkAOGUA3Km7MMpBHAnWfcIA==, 2536 - } 1700 + '@types/react@18.3.25': 1701 + resolution: {integrity: sha512-oSVZmGtDPmRZtVDqvdKUi/qgCsWp5IDY29wp8na8Bj4B3cc99hfNzvNhlMkVVxctkAOGUA3Km7MMpBHAnWfcIA==} 2537 1702 2538 - "@types/react@19.2.0": 2539 - resolution: 2540 - { 2541 - integrity: sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==, 2542 - } 1703 + '@types/react@19.2.0': 1704 + resolution: {integrity: sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==} 2543 1705 2544 - "@types/unist@3.0.3": 2545 - resolution: 2546 - { 2547 - integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==, 2548 - } 1706 + '@types/unist@3.0.3': 1707 + resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 2549 1708 2550 - "@typespec/asset-emitter@0.74.0": 2551 - resolution: 2552 - { 2553 - integrity: sha512-DWIdlSNhRgBeZ8exfqubfUn0H6mRg4gr0s7zLTdBMUEDHL3Yh0ljnRPkd8AXTZhoW3maTFT69loWTrqx09T5oQ==, 2554 - } 2555 - engines: { node: ">=20.0.0" } 1709 + '@typespec/asset-emitter@0.74.0': 1710 + resolution: {integrity: sha512-DWIdlSNhRgBeZ8exfqubfUn0H6mRg4gr0s7zLTdBMUEDHL3Yh0ljnRPkd8AXTZhoW3maTFT69loWTrqx09T5oQ==} 1711 + engines: {node: '>=20.0.0'} 2556 1712 peerDependencies: 2557 - "@typespec/compiler": ^1.4.0 1713 + '@typespec/compiler': ^1.4.0 2558 1714 2559 - "@typespec/bundler@0.4.4": 2560 - resolution: 2561 - { 2562 - integrity: sha512-yj6X2gTktZ3NmiksdKfEmuYX+oo3yLTvfE+IYPWkveoKGqP4HpGM5OctY9d4y2iqPZ2acG4LemR6064pQ0SIVA==, 2563 - } 2564 - engines: { node: ">=20.0.0" } 1715 + '@typespec/bundler@0.4.4': 1716 + resolution: {integrity: sha512-yj6X2gTktZ3NmiksdKfEmuYX+oo3yLTvfE+IYPWkveoKGqP4HpGM5OctY9d4y2iqPZ2acG4LemR6064pQ0SIVA==} 1717 + engines: {node: '>=20.0.0'} 2565 1718 2566 - "@typespec/compiler@1.4.0": 2567 - resolution: 2568 - { 2569 - integrity: sha512-/AFiU3ImuhH/vHKzSGv7I2peewdJ7YLhgMCfFDNk6Ae0a5Ylrc8R1GOATVilisEPBFG9lnjHn3uUcyaZs5VWRw==, 2570 - } 2571 - engines: { node: ">=20.0.0" } 1719 + '@typespec/compiler@1.4.0': 1720 + resolution: {integrity: sha512-/AFiU3ImuhH/vHKzSGv7I2peewdJ7YLhgMCfFDNk6Ae0a5Ylrc8R1GOATVilisEPBFG9lnjHn3uUcyaZs5VWRw==} 1721 + engines: {node: '>=20.0.0'} 2572 1722 hasBin: true 2573 1723 2574 - "@typespec/html-program-viewer@0.74.0": 2575 - resolution: 2576 - { 2577 - integrity: sha512-VJdVe4z4h367bJkTwx7KpOl1Mm9hbF2Yy0EHHYvTVg/gOIqDRfLOgoHSMITWQgxK/AqzX/xPAA44eWc7eeXGQQ==, 2578 - } 2579 - engines: { node: ">=14.0.0" } 1724 + '@typespec/html-program-viewer@0.74.0': 1725 + resolution: {integrity: sha512-VJdVe4z4h367bJkTwx7KpOl1Mm9hbF2Yy0EHHYvTVg/gOIqDRfLOgoHSMITWQgxK/AqzX/xPAA44eWc7eeXGQQ==} 1726 + engines: {node: '>=14.0.0'} 2580 1727 peerDependencies: 2581 - "@typespec/compiler": ^1.4.0 1728 + '@typespec/compiler': ^1.4.0 2582 1729 2583 - "@typespec/http@1.4.0": 2584 - resolution: 2585 - { 2586 - integrity: sha512-Y0PDDtBu+oZnwivfhbL0lN6Mk3QiCxZ66DgB5kFjcgKNpnXf0u440PPyaL42a8lbchzz5lVwz+cinyIMI89FIQ==, 2587 - } 2588 - engines: { node: ">=20.0.0" } 1730 + '@typespec/http@1.4.0': 1731 + resolution: {integrity: sha512-Y0PDDtBu+oZnwivfhbL0lN6Mk3QiCxZ66DgB5kFjcgKNpnXf0u440PPyaL42a8lbchzz5lVwz+cinyIMI89FIQ==} 1732 + engines: {node: '>=20.0.0'} 2589 1733 peerDependencies: 2590 - "@typespec/compiler": ^1.4.0 2591 - "@typespec/streams": ^0.74.0 1734 + '@typespec/compiler': ^1.4.0 1735 + '@typespec/streams': ^0.74.0 2592 1736 peerDependenciesMeta: 2593 - "@typespec/streams": 1737 + '@typespec/streams': 2594 1738 optional: true 2595 1739 2596 - "@typespec/openapi3@1.4.0": 2597 - resolution: 2598 - { 2599 - integrity: sha512-krMSBe23NU42qXiLTmkr7T2NRfsIVv70pp3w/+uyWbrxdwdLEdb8PpbHeYV417D/YU+JLj00fQ7uYzEQGZX82w==, 2600 - } 2601 - engines: { node: ">=20.0.0" } 1740 + '@typespec/openapi3@1.4.0': 1741 + resolution: {integrity: sha512-krMSBe23NU42qXiLTmkr7T2NRfsIVv70pp3w/+uyWbrxdwdLEdb8PpbHeYV417D/YU+JLj00fQ7uYzEQGZX82w==} 1742 + engines: {node: '>=20.0.0'} 2602 1743 hasBin: true 2603 1744 peerDependencies: 2604 - "@typespec/compiler": ^1.4.0 2605 - "@typespec/http": ^1.4.0 2606 - "@typespec/json-schema": ^1.4.0 2607 - "@typespec/openapi": ^1.4.0 2608 - "@typespec/versioning": ^0.74.0 2609 - "@typespec/xml": "*" 1745 + '@typespec/compiler': ^1.4.0 1746 + '@typespec/http': ^1.4.0 1747 + '@typespec/json-schema': ^1.4.0 1748 + '@typespec/openapi': ^1.4.0 1749 + '@typespec/versioning': ^0.74.0 1750 + '@typespec/xml': '*' 2610 1751 peerDependenciesMeta: 2611 - "@typespec/json-schema": 1752 + '@typespec/json-schema': 2612 1753 optional: true 2613 - "@typespec/versioning": 1754 + '@typespec/versioning': 2614 1755 optional: true 2615 - "@typespec/xml": 1756 + '@typespec/xml': 2616 1757 optional: true 2617 1758 2618 - "@typespec/openapi@1.4.0": 2619 - resolution: 2620 - { 2621 - integrity: sha512-ZfrCsmZG/Zt1laLaWC0pKvnZr4jqrm/YS/YuZe/gVrSYKBxGLopXle7H0wrSSMYkIVCNCLiC68/HqRxV6XTfoA==, 2622 - } 2623 - engines: { node: ">=20.0.0" } 1759 + '@typespec/openapi@1.4.0': 1760 + resolution: {integrity: sha512-ZfrCsmZG/Zt1laLaWC0pKvnZr4jqrm/YS/YuZe/gVrSYKBxGLopXle7H0wrSSMYkIVCNCLiC68/HqRxV6XTfoA==} 1761 + engines: {node: '>=20.0.0'} 2624 1762 peerDependencies: 2625 - "@typespec/compiler": ^1.4.0 2626 - "@typespec/http": ^1.4.0 1763 + '@typespec/compiler': ^1.4.0 1764 + '@typespec/http': ^1.4.0 2627 1765 2628 - "@typespec/playground@0.11.0": 2629 - resolution: 2630 - { 2631 - integrity: sha512-rtKK/GprMyBEupXRrvtrKqgT+qp8McZy+V/CLx+mhZN8F5Yh4FuLtppAGwSflzsSMPx2rD4YZveeNakaZAO70A==, 2632 - } 2633 - engines: { node: ">=20.0.0" } 1766 + '@typespec/playground@0.11.0': 1767 + resolution: {integrity: sha512-rtKK/GprMyBEupXRrvtrKqgT+qp8McZy+V/CLx+mhZN8F5Yh4FuLtppAGwSflzsSMPx2rD4YZveeNakaZAO70A==} 1768 + engines: {node: '>=20.0.0'} 2634 1769 2635 - "@typespec/protobuf@0.74.0": 2636 - resolution: 2637 - { 2638 - integrity: sha512-9Mn/gGgrrPrFG46t7DyUztUwLDOfjrksC3q2KjkSqGK5xw744/76OsqY51iAnd4DMKUg7twMqNFrKrTr6AqH2g==, 2639 - } 1770 + '@typespec/protobuf@0.74.0': 1771 + resolution: {integrity: sha512-9Mn/gGgrrPrFG46t7DyUztUwLDOfjrksC3q2KjkSqGK5xw744/76OsqY51iAnd4DMKUg7twMqNFrKrTr6AqH2g==} 2640 1772 peerDependencies: 2641 - "@typespec/compiler": ^1.4.0 1773 + '@typespec/compiler': ^1.4.0 2642 1774 2643 - "@typespec/rest@0.74.0": 2644 - resolution: 2645 - { 2646 - integrity: sha512-dE+Xmv01AQ7m8jUvEbGsUQLSVo3sLzMpnHRbQEOnJX42oDqtIsz/2GEOXKQpNm1AKBISK66E2FFB5boz999Ziw==, 2647 - } 2648 - engines: { node: ">=20.0.0" } 1775 + '@typespec/rest@0.74.0': 1776 + resolution: {integrity: sha512-dE+Xmv01AQ7m8jUvEbGsUQLSVo3sLzMpnHRbQEOnJX42oDqtIsz/2GEOXKQpNm1AKBISK66E2FFB5boz999Ziw==} 1777 + engines: {node: '>=20.0.0'} 2649 1778 peerDependencies: 2650 - "@typespec/compiler": ^1.4.0 2651 - "@typespec/http": ^1.4.0 1779 + '@typespec/compiler': ^1.4.0 1780 + '@typespec/http': ^1.4.0 2652 1781 2653 - "@typespec/versioning@0.74.0": 2654 - resolution: 2655 - { 2656 - integrity: sha512-eFIa23tycWJgv3Lxyu6jUlRi02dhtQE4Jjx3Ui5vEbwHW8pMEzuyF7ALt1c+V9HOLkfDkS4dJkiOVIoikZHPvQ==, 2657 - } 2658 - engines: { node: ">=20.0.0" } 1782 + '@typespec/versioning@0.74.0': 1783 + resolution: {integrity: sha512-eFIa23tycWJgv3Lxyu6jUlRi02dhtQE4Jjx3Ui5vEbwHW8pMEzuyF7ALt1c+V9HOLkfDkS4dJkiOVIoikZHPvQ==} 1784 + engines: {node: '>=20.0.0'} 2659 1785 peerDependencies: 2660 - "@typespec/compiler": ^1.4.0 1786 + '@typespec/compiler': ^1.4.0 2661 1787 2662 - "@ungap/structured-clone@1.3.0": 2663 - resolution: 2664 - { 2665 - integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==, 2666 - } 1788 + '@ungap/structured-clone@1.3.0': 1789 + resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 2667 1790 2668 - "@vitejs/plugin-react@4.7.0": 2669 - resolution: 2670 - { 2671 - integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==, 2672 - } 2673 - engines: { node: ^14.18.0 || >=16.0.0 } 1791 + '@vitejs/plugin-react@4.7.0': 1792 + resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} 1793 + engines: {node: ^14.18.0 || >=16.0.0} 2674 1794 peerDependencies: 2675 1795 vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 2676 1796 2677 - "@vitest/expect@1.6.1": 2678 - resolution: 2679 - { 2680 - integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==, 2681 - } 1797 + '@vitest/expect@1.6.1': 1798 + resolution: {integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==} 2682 1799 2683 - "@vitest/runner@1.6.1": 2684 - resolution: 2685 - { 2686 - integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==, 2687 - } 1800 + '@vitest/runner@1.6.1': 1801 + resolution: {integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==} 2688 1802 2689 - "@vitest/snapshot@1.6.1": 2690 - resolution: 2691 - { 2692 - integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==, 2693 - } 1803 + '@vitest/snapshot@1.6.1': 1804 + resolution: {integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==} 2694 1805 2695 - "@vitest/spy@1.6.1": 2696 - resolution: 2697 - { 2698 - integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==, 2699 - } 1806 + '@vitest/spy@1.6.1': 1807 + resolution: {integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==} 2700 1808 2701 - "@vitest/utils@1.6.1": 2702 - resolution: 2703 - { 2704 - integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==, 2705 - } 1809 + '@vitest/utils@1.6.1': 1810 + resolution: {integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==} 2706 1811 2707 1812 abort-controller@3.0.0: 2708 - resolution: 2709 - { 2710 - integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, 2711 - } 2712 - engines: { node: ">=6.5" } 1813 + resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 1814 + engines: {node: '>=6.5'} 2713 1815 2714 1816 accepts@1.3.8: 2715 - resolution: 2716 - { 2717 - integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, 2718 - } 2719 - engines: { node: ">= 0.6" } 1817 + resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} 1818 + engines: {node: '>= 0.6'} 2720 1819 2721 1820 acorn-walk@8.3.4: 2722 - resolution: 2723 - { 2724 - integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==, 2725 - } 2726 - engines: { node: ">=0.4.0" } 1821 + resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} 1822 + engines: {node: '>=0.4.0'} 2727 1823 2728 1824 acorn@8.15.0: 2729 - resolution: 2730 - { 2731 - integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==, 2732 - } 2733 - engines: { node: ">=0.4.0" } 1825 + resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} 1826 + engines: {node: '>=0.4.0'} 2734 1827 hasBin: true 2735 1828 2736 1829 ajv-draft-04@1.0.0: 2737 - resolution: 2738 - { 2739 - integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==, 2740 - } 1830 + resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==} 2741 1831 peerDependencies: 2742 1832 ajv: ^8.5.0 2743 1833 peerDependenciesMeta: ··· 2745 1835 optional: true 2746 1836 2747 1837 ajv@8.17.1: 2748 - resolution: 2749 - { 2750 - integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, 2751 - } 1838 + resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} 2752 1839 2753 1840 ansi-align@3.0.1: 2754 - resolution: 2755 - { 2756 - integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, 2757 - } 1841 + resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 2758 1842 2759 1843 ansi-regex@5.0.1: 2760 - resolution: 2761 - { 2762 - integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, 2763 - } 2764 - engines: { node: ">=8" } 1844 + resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1845 + engines: {node: '>=8'} 2765 1846 2766 1847 ansi-regex@6.2.2: 2767 - resolution: 2768 - { 2769 - integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==, 2770 - } 2771 - engines: { node: ">=12" } 1848 + resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} 1849 + engines: {node: '>=12'} 2772 1850 2773 1851 ansi-styles@4.3.0: 2774 - resolution: 2775 - { 2776 - integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, 2777 - } 2778 - engines: { node: ">=8" } 1852 + resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1853 + engines: {node: '>=8'} 2779 1854 2780 1855 ansi-styles@5.2.0: 2781 - resolution: 2782 - { 2783 - integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, 2784 - } 2785 - engines: { node: ">=10" } 1856 + resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 1857 + engines: {node: '>=10'} 2786 1858 2787 1859 ansi-styles@6.2.3: 2788 - resolution: 2789 - { 2790 - integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==, 2791 - } 2792 - engines: { node: ">=12" } 1860 + resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} 1861 + engines: {node: '>=12'} 2793 1862 2794 1863 anymatch@3.1.3: 2795 - resolution: 2796 - { 2797 - integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, 2798 - } 2799 - engines: { node: ">= 8" } 1864 + resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1865 + engines: {node: '>= 8'} 2800 1866 2801 1867 argparse@2.0.1: 2802 - resolution: 2803 - { 2804 - integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, 2805 - } 1868 + resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 2806 1869 2807 1870 aria-query@5.3.2: 2808 - resolution: 2809 - { 2810 - integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==, 2811 - } 2812 - engines: { node: ">= 0.4" } 1871 + resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 1872 + engines: {node: '>= 0.4'} 2813 1873 2814 1874 array-flatten@1.1.1: 2815 - resolution: 2816 - { 2817 - integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==, 2818 - } 1875 + resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} 2819 1876 2820 1877 array-iterate@2.0.1: 2821 - resolution: 2822 - { 2823 - integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==, 2824 - } 1878 + resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} 2825 1879 2826 1880 asn1.js@4.10.1: 2827 - resolution: 2828 - { 2829 - integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==, 2830 - } 1881 + resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} 2831 1882 2832 1883 assert@2.1.0: 2833 - resolution: 2834 - { 2835 - integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==, 2836 - } 1884 + resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} 2837 1885 2838 1886 assertion-error@1.1.0: 2839 - resolution: 2840 - { 2841 - integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, 2842 - } 1887 + resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} 2843 1888 2844 1889 astro@5.14.1: 2845 - resolution: 2846 - { 2847 - integrity: sha512-gPa8NY7/lP8j8g81iy8UwANF3+aukKRWS68IlthZQNgykpg80ne6lbHOp6FErYycxQ1TUhgEfkXVDQZAoJx8Bg==, 2848 - } 2849 - engines: 2850 - { node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: ">=9.6.5", pnpm: ">=7.1.0" } 1890 + resolution: {integrity: sha512-gPa8NY7/lP8j8g81iy8UwANF3+aukKRWS68IlthZQNgykpg80ne6lbHOp6FErYycxQ1TUhgEfkXVDQZAoJx8Bg==} 1891 + engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 2851 1892 hasBin: true 2852 1893 2853 1894 atomic-sleep@1.0.0: 2854 - resolution: 2855 - { 2856 - integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==, 2857 - } 2858 - engines: { node: ">=8.0.0" } 1895 + resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} 1896 + engines: {node: '>=8.0.0'} 2859 1897 2860 1898 available-typed-arrays@1.0.7: 2861 - resolution: 2862 - { 2863 - integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, 2864 - } 2865 - engines: { node: ">= 0.4" } 1899 + resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 1900 + engines: {node: '>= 0.4'} 2866 1901 2867 1902 axobject-query@4.1.0: 2868 - resolution: 2869 - { 2870 - integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==, 2871 - } 2872 - engines: { node: ">= 0.4" } 1903 + resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 1904 + engines: {node: '>= 0.4'} 2873 1905 2874 1906 bail@2.0.2: 2875 - resolution: 2876 - { 2877 - integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, 2878 - } 1907 + resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 2879 1908 2880 1909 balanced-match@1.0.2: 2881 - resolution: 2882 - { 2883 - integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, 2884 - } 1910 + resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 2885 1911 2886 1912 base-64@1.0.0: 2887 - resolution: 2888 - { 2889 - integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==, 2890 - } 1913 + resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} 2891 1914 2892 1915 base64-js@1.5.1: 2893 - resolution: 2894 - { 2895 - integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, 2896 - } 1916 + resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 2897 1917 2898 1918 baseline-browser-mapping@2.8.12: 2899 - resolution: 2900 - { 2901 - integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==, 2902 - } 1919 + resolution: {integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==} 2903 1920 hasBin: true 2904 1921 2905 1922 blob-to-buffer@1.2.9: 2906 - resolution: 2907 - { 2908 - integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==, 2909 - } 1923 + resolution: {integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==} 2910 1924 2911 1925 bn.js@4.12.2: 2912 - resolution: 2913 - { 2914 - integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==, 2915 - } 1926 + resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==} 2916 1927 2917 1928 bn.js@5.2.2: 2918 - resolution: 2919 - { 2920 - integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==, 2921 - } 1929 + resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==} 2922 1930 2923 1931 body-parser@1.20.3: 2924 - resolution: 2925 - { 2926 - integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==, 2927 - } 2928 - engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } 1932 + resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} 1933 + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 2929 1934 2930 1935 boxen@8.0.1: 2931 - resolution: 2932 - { 2933 - integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==, 2934 - } 2935 - engines: { node: ">=18" } 1936 + resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} 1937 + engines: {node: '>=18'} 2936 1938 2937 1939 brace-expansion@2.0.2: 2938 - resolution: 2939 - { 2940 - integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==, 2941 - } 1940 + resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} 2942 1941 2943 1942 braces@3.0.3: 2944 - resolution: 2945 - { 2946 - integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, 2947 - } 2948 - engines: { node: ">=8" } 1943 + resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 1944 + engines: {node: '>=8'} 2949 1945 2950 1946 brorand@1.1.0: 2951 - resolution: 2952 - { 2953 - integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==, 2954 - } 1947 + resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} 2955 1948 2956 1949 brotli@1.3.3: 2957 - resolution: 2958 - { 2959 - integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==, 2960 - } 1950 + resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==} 2961 1951 2962 1952 browser-resolve@2.0.0: 2963 - resolution: 2964 - { 2965 - integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==, 2966 - } 1953 + resolution: {integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==} 2967 1954 2968 1955 browserify-aes@1.2.0: 2969 - resolution: 2970 - { 2971 - integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==, 2972 - } 1956 + resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} 2973 1957 2974 1958 browserify-cipher@1.0.1: 2975 - resolution: 2976 - { 2977 - integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==, 2978 - } 1959 + resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} 2979 1960 2980 1961 browserify-des@1.0.2: 2981 - resolution: 2982 - { 2983 - integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==, 2984 - } 1962 + resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} 2985 1963 2986 1964 browserify-rsa@4.1.1: 2987 - resolution: 2988 - { 2989 - integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==, 2990 - } 2991 - engines: { node: ">= 0.10" } 1965 + resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==} 1966 + engines: {node: '>= 0.10'} 2992 1967 2993 1968 browserify-sign@4.2.5: 2994 - resolution: 2995 - { 2996 - integrity: sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==, 2997 - } 2998 - engines: { node: ">= 0.10" } 1969 + resolution: {integrity: sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==} 1970 + engines: {node: '>= 0.10'} 2999 1971 3000 1972 browserify-zlib@0.2.0: 3001 - resolution: 3002 - { 3003 - integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==, 3004 - } 1973 + resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} 3005 1974 3006 1975 browserslist@4.26.3: 3007 - resolution: 3008 - { 3009 - integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==, 3010 - } 3011 - engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } 1976 + resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==} 1977 + engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 3012 1978 hasBin: true 3013 1979 3014 1980 buffer-xor@1.0.3: 3015 - resolution: 3016 - { 3017 - integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==, 3018 - } 1981 + resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} 3019 1982 3020 1983 buffer@5.7.1: 3021 - resolution: 3022 - { 3023 - integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, 3024 - } 1984 + resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 3025 1985 3026 1986 buffer@6.0.3: 3027 - resolution: 3028 - { 3029 - integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==, 3030 - } 1987 + resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 3031 1988 3032 1989 builtin-status-codes@3.0.0: 3033 - resolution: 3034 - { 3035 - integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==, 3036 - } 1990 + resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} 3037 1991 3038 1992 bytes@3.1.2: 3039 - resolution: 3040 - { 3041 - integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, 3042 - } 3043 - engines: { node: ">= 0.8" } 1993 + resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 1994 + engines: {node: '>= 0.8'} 3044 1995 3045 1996 cac@6.7.14: 3046 - resolution: 3047 - { 3048 - integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, 3049 - } 3050 - engines: { node: ">=8" } 1997 + resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 1998 + engines: {node: '>=8'} 3051 1999 3052 2000 call-bind-apply-helpers@1.0.2: 3053 - resolution: 3054 - { 3055 - integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==, 3056 - } 3057 - engines: { node: ">= 0.4" } 2001 + resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} 2002 + engines: {node: '>= 0.4'} 3058 2003 3059 2004 call-bind@1.0.8: 3060 - resolution: 3061 - { 3062 - integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==, 3063 - } 3064 - engines: { node: ">= 0.4" } 2005 + resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 2006 + engines: {node: '>= 0.4'} 3065 2007 3066 2008 call-bound@1.0.4: 3067 - resolution: 3068 - { 3069 - integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==, 3070 - } 3071 - engines: { node: ">= 0.4" } 2009 + resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} 2010 + engines: {node: '>= 0.4'} 3072 2011 3073 2012 call-me-maybe@1.0.2: 3074 - resolution: 3075 - { 3076 - integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==, 3077 - } 2013 + resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} 3078 2014 3079 2015 camelcase@8.0.0: 3080 - resolution: 3081 - { 3082 - integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==, 3083 - } 3084 - engines: { node: ">=16" } 2016 + resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 2017 + engines: {node: '>=16'} 3085 2018 3086 2019 caniuse-lite@1.0.30001747: 3087 - resolution: 3088 - { 3089 - integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==, 3090 - } 2020 + resolution: {integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==} 3091 2021 3092 2022 cbor-extract@2.2.0: 3093 - resolution: 3094 - { 3095 - integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==, 3096 - } 2023 + resolution: {integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==} 3097 2024 hasBin: true 3098 2025 3099 2026 cbor-x@1.6.0: 3100 - resolution: 3101 - { 3102 - integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==, 3103 - } 2027 + resolution: {integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==} 3104 2028 3105 2029 cborg@1.10.2: 3106 - resolution: 3107 - { 3108 - integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==, 3109 - } 2030 + resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==} 3110 2031 hasBin: true 3111 2032 3112 2033 ccount@2.0.1: 3113 - resolution: 3114 - { 3115 - integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, 3116 - } 2034 + resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 3117 2035 3118 2036 chai@4.5.0: 3119 - resolution: 3120 - { 3121 - integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==, 3122 - } 3123 - engines: { node: ">=4" } 2037 + resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} 2038 + engines: {node: '>=4'} 3124 2039 3125 2040 chalk@4.1.2: 3126 - resolution: 3127 - { 3128 - integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, 3129 - } 3130 - engines: { node: ">=10" } 2041 + resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 2042 + engines: {node: '>=10'} 3131 2043 3132 2044 chalk@5.6.2: 3133 - resolution: 3134 - { 3135 - integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==, 3136 - } 3137 - engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } 2045 + resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} 2046 + engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 3138 2047 3139 2048 change-case@5.4.4: 3140 - resolution: 3141 - { 3142 - integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==, 3143 - } 2049 + resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} 3144 2050 3145 2051 character-entities-html4@2.1.0: 3146 - resolution: 3147 - { 3148 - integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, 3149 - } 2052 + resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 3150 2053 3151 2054 character-entities-legacy@3.0.0: 3152 - resolution: 3153 - { 3154 - integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==, 3155 - } 2055 + resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 3156 2056 3157 2057 character-entities@2.0.2: 3158 - resolution: 3159 - { 3160 - integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, 3161 - } 2058 + resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 3162 2059 3163 2060 chardet@2.1.0: 3164 - resolution: 3165 - { 3166 - integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==, 3167 - } 2061 + resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} 3168 2062 3169 2063 check-error@1.0.3: 3170 - resolution: 3171 - { 3172 - integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==, 3173 - } 2064 + resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} 3174 2065 3175 2066 chokidar@4.0.3: 3176 - resolution: 3177 - { 3178 - integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==, 3179 - } 3180 - engines: { node: ">= 14.16.0" } 2067 + resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 2068 + engines: {node: '>= 14.16.0'} 3181 2069 3182 2070 chownr@3.0.0: 3183 - resolution: 3184 - { 3185 - integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==, 3186 - } 3187 - engines: { node: ">=18" } 2071 + resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} 2072 + engines: {node: '>=18'} 3188 2073 3189 2074 ci-info@4.3.0: 3190 - resolution: 3191 - { 3192 - integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==, 3193 - } 3194 - engines: { node: ">=8" } 2075 + resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} 2076 + engines: {node: '>=8'} 3195 2077 3196 2078 cipher-base@1.0.7: 3197 - resolution: 3198 - { 3199 - integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==, 3200 - } 3201 - engines: { node: ">= 0.10" } 2079 + resolution: {integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==} 2080 + engines: {node: '>= 0.10'} 3202 2081 3203 2082 cli-boxes@3.0.0: 3204 - resolution: 3205 - { 3206 - integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==, 3207 - } 3208 - engines: { node: ">=10" } 2083 + resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 2084 + engines: {node: '>=10'} 3209 2085 3210 2086 cli-width@4.1.0: 3211 - resolution: 3212 - { 3213 - integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==, 3214 - } 3215 - engines: { node: ">= 12" } 2087 + resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} 2088 + engines: {node: '>= 12'} 3216 2089 3217 2090 cliui@8.0.1: 3218 - resolution: 3219 - { 3220 - integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, 3221 - } 3222 - engines: { node: ">=12" } 2091 + resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 2092 + engines: {node: '>=12'} 3223 2093 3224 2094 cliui@9.0.1: 3225 - resolution: 3226 - { 3227 - integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==, 3228 - } 3229 - engines: { node: ">=20" } 2095 + resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==} 2096 + engines: {node: '>=20'} 3230 2097 3231 2098 clone@2.1.2: 3232 - resolution: 3233 - { 3234 - integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, 3235 - } 3236 - engines: { node: ">=0.8" } 2099 + resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} 2100 + engines: {node: '>=0.8'} 3237 2101 3238 2102 clsx@2.1.1: 3239 - resolution: 3240 - { 3241 - integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==, 3242 - } 3243 - engines: { node: ">=6" } 2103 + resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 2104 + engines: {node: '>=6'} 3244 2105 3245 2106 code-block-writer@13.0.3: 3246 - resolution: 3247 - { 3248 - integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==, 3249 - } 2107 + resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==} 3250 2108 3251 2109 color-convert@2.0.1: 3252 - resolution: 3253 - { 3254 - integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, 3255 - } 3256 - engines: { node: ">=7.0.0" } 2110 + resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 2111 + engines: {node: '>=7.0.0'} 3257 2112 3258 2113 color-name@1.1.4: 3259 - resolution: 3260 - { 3261 - integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, 3262 - } 2114 + resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 3263 2115 3264 2116 comma-separated-tokens@2.0.3: 3265 - resolution: 3266 - { 3267 - integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==, 3268 - } 2117 + resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 3269 2118 3270 2119 commander@9.5.0: 3271 - resolution: 3272 - { 3273 - integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==, 3274 - } 3275 - engines: { node: ^12.20.0 || >=14 } 2120 + resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} 2121 + engines: {node: ^12.20.0 || >=14} 3276 2122 3277 2123 common-ancestor-path@1.0.1: 3278 - resolution: 3279 - { 3280 - integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==, 3281 - } 2124 + resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} 3282 2125 3283 2126 concurrently@9.2.1: 3284 - resolution: 3285 - { 3286 - integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==, 3287 - } 3288 - engines: { node: ">=18" } 2127 + resolution: {integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==} 2128 + engines: {node: '>=18'} 3289 2129 hasBin: true 3290 2130 3291 2131 confbox@0.1.8: 3292 - resolution: 3293 - { 3294 - integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==, 3295 - } 2132 + resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 3296 2133 3297 2134 confbox@0.2.2: 3298 - resolution: 3299 - { 3300 - integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==, 3301 - } 2135 + resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} 3302 2136 3303 2137 console-browserify@1.2.0: 3304 - resolution: 3305 - { 3306 - integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==, 3307 - } 2138 + resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} 3308 2139 3309 2140 constants-browserify@1.0.0: 3310 - resolution: 3311 - { 3312 - integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==, 3313 - } 2141 + resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} 3314 2142 3315 2143 content-disposition@0.5.4: 3316 - resolution: 3317 - { 3318 - integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, 3319 - } 3320 - engines: { node: ">= 0.6" } 2144 + resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} 2145 + engines: {node: '>= 0.6'} 3321 2146 3322 2147 content-type@1.0.5: 3323 - resolution: 3324 - { 3325 - integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, 3326 - } 3327 - engines: { node: ">= 0.6" } 2148 + resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 2149 + engines: {node: '>= 0.6'} 3328 2150 3329 2151 convert-source-map@2.0.0: 3330 - resolution: 3331 - { 3332 - integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, 3333 - } 2152 + resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 3334 2153 3335 2154 cookie-es@1.2.2: 3336 - resolution: 3337 - { 3338 - integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==, 3339 - } 2155 + resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} 3340 2156 3341 2157 cookie-signature@1.0.6: 3342 - resolution: 3343 - { 3344 - integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==, 3345 - } 2158 + resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} 3346 2159 3347 2160 cookie@0.7.1: 3348 - resolution: 3349 - { 3350 - integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==, 3351 - } 3352 - engines: { node: ">= 0.6" } 2161 + resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} 2162 + engines: {node: '>= 0.6'} 3353 2163 3354 2164 cookie@1.0.2: 3355 - resolution: 3356 - { 3357 - integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==, 3358 - } 3359 - engines: { node: ">=18" } 2165 + resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} 2166 + engines: {node: '>=18'} 3360 2167 3361 2168 core-util-is@1.0.3: 3362 - resolution: 3363 - { 3364 - integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, 3365 - } 2169 + resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 3366 2170 3367 2171 create-ecdh@4.0.4: 3368 - resolution: 3369 - { 3370 - integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==, 3371 - } 2172 + resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} 3372 2173 3373 2174 create-hash@1.2.0: 3374 - resolution: 3375 - { 3376 - integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==, 3377 - } 2175 + resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} 3378 2176 3379 2177 create-hmac@1.1.7: 3380 - resolution: 3381 - { 3382 - integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==, 3383 - } 2178 + resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} 3384 2179 3385 2180 create-require@1.1.1: 3386 - resolution: 3387 - { 3388 - integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, 3389 - } 2181 + resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 3390 2182 3391 2183 cross-fetch@3.2.0: 3392 - resolution: 3393 - { 3394 - integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==, 3395 - } 2184 + resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} 3396 2185 3397 2186 cross-spawn@7.0.6: 3398 - resolution: 3399 - { 3400 - integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, 3401 - } 3402 - engines: { node: ">= 8" } 2187 + resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 2188 + engines: {node: '>= 8'} 3403 2189 3404 2190 crossws@0.3.5: 3405 - resolution: 3406 - { 3407 - integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==, 3408 - } 2191 + resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} 3409 2192 3410 2193 crypto-browserify@3.12.1: 3411 - resolution: 3412 - { 3413 - integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==, 3414 - } 3415 - engines: { node: ">= 0.10" } 2194 + resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==} 2195 + engines: {node: '>= 0.10'} 3416 2196 3417 2197 css-tree@3.1.0: 3418 - resolution: 3419 - { 3420 - integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==, 3421 - } 3422 - engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } 2198 + resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} 2199 + engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0} 3423 2200 3424 2201 cssesc@3.0.0: 3425 - resolution: 3426 - { 3427 - integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, 3428 - } 3429 - engines: { node: ">=4" } 2202 + resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 2203 + engines: {node: '>=4'} 3430 2204 hasBin: true 3431 2205 3432 2206 csstype@3.1.3: 3433 - resolution: 3434 - { 3435 - integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, 3436 - } 2207 + resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 3437 2208 3438 2209 debounce@2.2.0: 3439 - resolution: 3440 - { 3441 - integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==, 3442 - } 3443 - engines: { node: ">=18" } 2210 + resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==} 2211 + engines: {node: '>=18'} 3444 2212 3445 2213 debug@2.6.9: 3446 - resolution: 3447 - { 3448 - integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, 3449 - } 2214 + resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 3450 2215 peerDependencies: 3451 - supports-color: "*" 2216 + supports-color: '*' 3452 2217 peerDependenciesMeta: 3453 2218 supports-color: 3454 2219 optional: true 3455 2220 3456 2221 debug@4.4.3: 3457 - resolution: 3458 - { 3459 - integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==, 3460 - } 3461 - engines: { node: ">=6.0" } 2222 + resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 2223 + engines: {node: '>=6.0'} 3462 2224 peerDependencies: 3463 - supports-color: "*" 2225 + supports-color: '*' 3464 2226 peerDependenciesMeta: 3465 2227 supports-color: 3466 2228 optional: true 3467 2229 3468 2230 decode-named-character-reference@1.2.0: 3469 - resolution: 3470 - { 3471 - integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==, 3472 - } 2231 + resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} 3473 2232 3474 2233 deep-eql@4.1.4: 3475 - resolution: 3476 - { 3477 - integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==, 3478 - } 3479 - engines: { node: ">=6" } 2234 + resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} 2235 + engines: {node: '>=6'} 3480 2236 3481 2237 define-data-property@1.1.4: 3482 - resolution: 3483 - { 3484 - integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, 3485 - } 3486 - engines: { node: ">= 0.4" } 2238 + resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 2239 + engines: {node: '>= 0.4'} 3487 2240 3488 2241 define-properties@1.2.1: 3489 - resolution: 3490 - { 3491 - integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, 3492 - } 3493 - engines: { node: ">= 0.4" } 2242 + resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 2243 + engines: {node: '>= 0.4'} 3494 2244 3495 2245 defu@6.1.4: 3496 - resolution: 3497 - { 3498 - integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==, 3499 - } 2246 + resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 3500 2247 3501 2248 depd@2.0.0: 3502 - resolution: 3503 - { 3504 - integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, 3505 - } 3506 - engines: { node: ">= 0.8" } 2249 + resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 2250 + engines: {node: '>= 0.8'} 3507 2251 3508 2252 dequal@2.0.3: 3509 - resolution: 3510 - { 3511 - integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, 3512 - } 3513 - engines: { node: ">=6" } 2253 + resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 2254 + engines: {node: '>=6'} 3514 2255 3515 2256 des.js@1.1.0: 3516 - resolution: 3517 - { 3518 - integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==, 3519 - } 2257 + resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} 3520 2258 3521 2259 destr@2.0.5: 3522 - resolution: 3523 - { 3524 - integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==, 3525 - } 2260 + resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 3526 2261 3527 2262 destroy@1.2.0: 3528 - resolution: 3529 - { 3530 - integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==, 3531 - } 3532 - engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } 2263 + resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 2264 + engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 3533 2265 3534 2266 detect-libc@2.1.1: 3535 - resolution: 3536 - { 3537 - integrity: sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==, 3538 - } 3539 - engines: { node: ">=8" } 2267 + resolution: {integrity: sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==} 2268 + engines: {node: '>=8'} 3540 2269 3541 2270 deterministic-object-hash@2.0.2: 3542 - resolution: 3543 - { 3544 - integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==, 3545 - } 3546 - engines: { node: ">=18" } 2271 + resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} 2272 + engines: {node: '>=18'} 3547 2273 3548 2274 devalue@5.3.2: 3549 - resolution: 3550 - { 3551 - integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==, 3552 - } 2275 + resolution: {integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==} 3553 2276 3554 2277 devlop@1.1.0: 3555 - resolution: 3556 - { 3557 - integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, 3558 - } 2278 + resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 3559 2279 3560 2280 dfa@1.2.0: 3561 - resolution: 3562 - { 3563 - integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==, 3564 - } 2281 + resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} 3565 2282 3566 2283 diff-sequences@29.6.3: 3567 - resolution: 3568 - { 3569 - integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==, 3570 - } 3571 - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } 2284 + resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} 2285 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 3572 2286 3573 2287 diff@5.2.0: 3574 - resolution: 3575 - { 3576 - integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==, 3577 - } 3578 - engines: { node: ">=0.3.1" } 2288 + resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} 2289 + engines: {node: '>=0.3.1'} 3579 2290 3580 2291 diffie-hellman@5.0.3: 3581 - resolution: 3582 - { 3583 - integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==, 3584 - } 2292 + resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} 3585 2293 3586 2294 dlv@1.1.3: 3587 - resolution: 3588 - { 3589 - integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, 3590 - } 2295 + resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 3591 2296 3592 2297 domain-browser@4.22.0: 3593 - resolution: 3594 - { 3595 - integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==, 3596 - } 3597 - engines: { node: ">=10" } 2298 + resolution: {integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==} 2299 + engines: {node: '>=10'} 3598 2300 3599 2301 dset@3.1.4: 3600 - resolution: 3601 - { 3602 - integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==, 3603 - } 3604 - engines: { node: ">=4" } 2302 + resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} 2303 + engines: {node: '>=4'} 3605 2304 3606 2305 dunder-proto@1.0.1: 3607 - resolution: 3608 - { 3609 - integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==, 3610 - } 3611 - engines: { node: ">= 0.4" } 2306 + resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 2307 + engines: {node: '>= 0.4'} 3612 2308 3613 2309 duplexer@0.1.2: 3614 - resolution: 3615 - { 3616 - integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, 3617 - } 2310 + resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} 3618 2311 3619 2312 ee-first@1.1.1: 3620 - resolution: 3621 - { 3622 - integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, 3623 - } 2313 + resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 3624 2314 3625 2315 electron-to-chromium@1.5.230: 3626 - resolution: 3627 - { 3628 - integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==, 3629 - } 2316 + resolution: {integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==} 3630 2317 3631 2318 elliptic@6.6.1: 3632 - resolution: 3633 - { 3634 - integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==, 3635 - } 2319 + resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} 3636 2320 3637 2321 embla-carousel-autoplay@8.6.0: 3638 - resolution: 3639 - { 3640 - integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==, 3641 - } 2322 + resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==} 3642 2323 peerDependencies: 3643 2324 embla-carousel: 8.6.0 3644 2325 3645 2326 embla-carousel-fade@8.6.0: 3646 - resolution: 3647 - { 3648 - integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==, 3649 - } 2327 + resolution: {integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==} 3650 2328 peerDependencies: 3651 2329 embla-carousel: 8.6.0 3652 2330 3653 2331 embla-carousel@8.6.0: 3654 - resolution: 3655 - { 3656 - integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==, 3657 - } 2332 + resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==} 3658 2333 3659 2334 emoji-regex@10.5.0: 3660 - resolution: 3661 - { 3662 - integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==, 3663 - } 2335 + resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==} 3664 2336 3665 2337 emoji-regex@8.0.0: 3666 - resolution: 3667 - { 3668 - integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, 3669 - } 2338 + resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 3670 2339 3671 2340 encodeurl@1.0.2: 3672 - resolution: 3673 - { 3674 - integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, 3675 - } 3676 - engines: { node: ">= 0.8" } 2341 + resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} 2342 + engines: {node: '>= 0.8'} 3677 2343 3678 2344 encodeurl@2.0.0: 3679 - resolution: 3680 - { 3681 - integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==, 3682 - } 3683 - engines: { node: ">= 0.8" } 2345 + resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 2346 + engines: {node: '>= 0.8'} 3684 2347 3685 2348 entities@6.0.1: 3686 - resolution: 3687 - { 3688 - integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==, 3689 - } 3690 - engines: { node: ">=0.12" } 2349 + resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 2350 + engines: {node: '>=0.12'} 3691 2351 3692 2352 env-paths@3.0.0: 3693 - resolution: 3694 - { 3695 - integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==, 3696 - } 3697 - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 2353 + resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} 2354 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 3698 2355 3699 2356 es-define-property@1.0.1: 3700 - resolution: 3701 - { 3702 - integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==, 3703 - } 3704 - engines: { node: ">= 0.4" } 2357 + resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 2358 + engines: {node: '>= 0.4'} 3705 2359 3706 2360 es-errors@1.3.0: 3707 - resolution: 3708 - { 3709 - integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, 3710 - } 3711 - engines: { node: ">= 0.4" } 2361 + resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 2362 + engines: {node: '>= 0.4'} 3712 2363 3713 2364 es-module-lexer@1.7.0: 3714 - resolution: 3715 - { 3716 - integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==, 3717 - } 2365 + resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} 3718 2366 3719 2367 es-object-atoms@1.1.1: 3720 - resolution: 3721 - { 3722 - integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==, 3723 - } 3724 - engines: { node: ">= 0.4" } 2368 + resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 2369 + engines: {node: '>= 0.4'} 3725 2370 3726 2371 esbuild-plugins-node-modules-polyfill@1.7.1: 3727 - resolution: 3728 - { 3729 - integrity: sha512-IEaUhaS1RukGGcatDzqJmR+AzUWJ2upTJZP2i7FzR37Iw5Lk0LReCTnWnPMWnGG9lO4MWTGKEGGLWEOPegTRJA==, 3730 - } 3731 - engines: { node: ">=14.0.0" } 2372 + resolution: {integrity: sha512-IEaUhaS1RukGGcatDzqJmR+AzUWJ2upTJZP2i7FzR37Iw5Lk0LReCTnWnPMWnGG9lO4MWTGKEGGLWEOPegTRJA==} 2373 + engines: {node: '>=14.0.0'} 3732 2374 peerDependencies: 3733 - esbuild: ">=0.14.0 <=0.25.x" 2375 + esbuild: '>=0.14.0 <=0.25.x' 3734 2376 3735 2377 esbuild@0.21.5: 3736 - resolution: 3737 - { 3738 - integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==, 3739 - } 3740 - engines: { node: ">=12" } 2378 + resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 2379 + engines: {node: '>=12'} 3741 2380 hasBin: true 3742 2381 3743 2382 esbuild@0.25.10: 3744 - resolution: 3745 - { 3746 - integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==, 3747 - } 3748 - engines: { node: ">=18" } 2383 + resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} 2384 + engines: {node: '>=18'} 3749 2385 hasBin: true 3750 2386 3751 2387 escalade@3.2.0: 3752 - resolution: 3753 - { 3754 - integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, 3755 - } 3756 - engines: { node: ">=6" } 2388 + resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 2389 + engines: {node: '>=6'} 3757 2390 3758 2391 escape-html@1.0.3: 3759 - resolution: 3760 - { 3761 - integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, 3762 - } 2392 + resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 3763 2393 3764 2394 escape-string-regexp@5.0.0: 3765 - resolution: 3766 - { 3767 - integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, 3768 - } 3769 - engines: { node: ">=12" } 2395 + resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 2396 + engines: {node: '>=12'} 3770 2397 3771 2398 estree-walker@2.0.2: 3772 - resolution: 3773 - { 3774 - integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, 3775 - } 2399 + resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 3776 2400 3777 2401 estree-walker@3.0.3: 3778 - resolution: 3779 - { 3780 - integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, 3781 - } 2402 + resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 3782 2403 3783 2404 etag@1.8.1: 3784 - resolution: 3785 - { 3786 - integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, 3787 - } 3788 - engines: { node: ">= 0.6" } 2405 + resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 2406 + engines: {node: '>= 0.6'} 3789 2407 3790 2408 event-stream@3.3.4: 3791 - resolution: 3792 - { 3793 - integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==, 3794 - } 2409 + resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} 3795 2410 3796 2411 event-target-shim@5.0.1: 3797 - resolution: 3798 - { 3799 - integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, 3800 - } 3801 - engines: { node: ">=6" } 2412 + resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 2413 + engines: {node: '>=6'} 3802 2414 3803 2415 eventemitter3@5.0.1: 3804 - resolution: 3805 - { 3806 - integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, 3807 - } 2416 + resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 3808 2417 3809 2418 events@3.3.0: 3810 - resolution: 3811 - { 3812 - integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, 3813 - } 3814 - engines: { node: ">=0.8.x" } 2419 + resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 2420 + engines: {node: '>=0.8.x'} 3815 2421 3816 2422 evp_bytestokey@1.0.3: 3817 - resolution: 3818 - { 3819 - integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==, 3820 - } 2423 + resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} 3821 2424 3822 2425 execa@8.0.1: 3823 - resolution: 3824 - { 3825 - integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, 3826 - } 3827 - engines: { node: ">=16.17" } 2426 + resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 2427 + engines: {node: '>=16.17'} 3828 2428 3829 2429 express@4.21.2: 3830 - resolution: 3831 - { 3832 - integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==, 3833 - } 3834 - engines: { node: ">= 0.10.0" } 2430 + resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} 2431 + engines: {node: '>= 0.10.0'} 3835 2432 3836 2433 exsolve@1.0.7: 3837 - resolution: 3838 - { 3839 - integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==, 3840 - } 2434 + resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} 3841 2435 3842 2436 extend@3.0.2: 3843 - resolution: 3844 - { 3845 - integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, 3846 - } 2437 + resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 3847 2438 3848 2439 fast-deep-equal@3.1.3: 3849 - resolution: 3850 - { 3851 - integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, 3852 - } 2440 + resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 3853 2441 3854 2442 fast-glob@3.3.3: 3855 - resolution: 3856 - { 3857 - integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==, 3858 - } 3859 - engines: { node: ">=8.6.0" } 2443 + resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 2444 + engines: {node: '>=8.6.0'} 3860 2445 3861 2446 fast-redact@3.5.0: 3862 - resolution: 3863 - { 3864 - integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==, 3865 - } 3866 - engines: { node: ">=6" } 2447 + resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} 2448 + engines: {node: '>=6'} 3867 2449 3868 2450 fast-uri@3.1.0: 3869 - resolution: 3870 - { 3871 - integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==, 3872 - } 2451 + resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==} 3873 2452 3874 2453 fastq@1.19.1: 3875 - resolution: 3876 - { 3877 - integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==, 3878 - } 2454 + resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 3879 2455 3880 2456 fdir@6.5.0: 3881 - resolution: 3882 - { 3883 - integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==, 3884 - } 3885 - engines: { node: ">=12.0.0" } 2457 + resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 2458 + engines: {node: '>=12.0.0'} 3886 2459 peerDependencies: 3887 2460 picomatch: ^3 || ^4 3888 2461 peerDependenciesMeta: ··· 3890 2463 optional: true 3891 2464 3892 2465 fill-range@7.1.1: 3893 - resolution: 3894 - { 3895 - integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, 3896 - } 3897 - engines: { node: ">=8" } 2466 + resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 2467 + engines: {node: '>=8'} 3898 2468 3899 2469 finalhandler@1.3.1: 3900 - resolution: 3901 - { 3902 - integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==, 3903 - } 3904 - engines: { node: ">= 0.8" } 2470 + resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} 2471 + engines: {node: '>= 0.8'} 3905 2472 3906 2473 find-up@5.0.0: 3907 - resolution: 3908 - { 3909 - integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, 3910 - } 3911 - engines: { node: ">=10" } 2474 + resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 2475 + engines: {node: '>=10'} 3912 2476 3913 2477 flattie@1.1.1: 3914 - resolution: 3915 - { 3916 - integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==, 3917 - } 3918 - engines: { node: ">=8" } 2478 + resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 2479 + engines: {node: '>=8'} 3919 2480 3920 2481 fontace@0.3.0: 3921 - resolution: 3922 - { 3923 - integrity: sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==, 3924 - } 2482 + resolution: {integrity: sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==} 3925 2483 3926 2484 fontkit@2.0.4: 3927 - resolution: 3928 - { 3929 - integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==, 3930 - } 2485 + resolution: {integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==} 3931 2486 3932 2487 for-each@0.3.5: 3933 - resolution: 3934 - { 3935 - integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==, 3936 - } 3937 - engines: { node: ">= 0.4" } 2488 + resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} 2489 + engines: {node: '>= 0.4'} 3938 2490 3939 2491 forwarded@0.2.0: 3940 - resolution: 3941 - { 3942 - integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, 3943 - } 3944 - engines: { node: ">= 0.6" } 2492 + resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 2493 + engines: {node: '>= 0.6'} 3945 2494 3946 2495 fresh@0.5.2: 3947 - resolution: 3948 - { 3949 - integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, 3950 - } 3951 - engines: { node: ">= 0.6" } 2496 + resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 2497 + engines: {node: '>= 0.6'} 3952 2498 3953 2499 from@0.1.7: 3954 - resolution: 3955 - { 3956 - integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==, 3957 - } 2500 + resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} 3958 2501 3959 2502 fsevents@2.3.3: 3960 - resolution: 3961 - { 3962 - integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, 3963 - } 3964 - engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } 2503 + resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 2504 + engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 3965 2505 os: [darwin] 3966 2506 3967 2507 function-bind@1.1.2: 3968 - resolution: 3969 - { 3970 - integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, 3971 - } 2508 + resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 3972 2509 3973 2510 generator-function@2.0.1: 3974 - resolution: 3975 - { 3976 - integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==, 3977 - } 3978 - engines: { node: ">= 0.4" } 2511 + resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} 2512 + engines: {node: '>= 0.4'} 3979 2513 3980 2514 gensync@1.0.0-beta.2: 3981 - resolution: 3982 - { 3983 - integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, 3984 - } 3985 - engines: { node: ">=6.9.0" } 2515 + resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 2516 + engines: {node: '>=6.9.0'} 3986 2517 3987 2518 get-caller-file@2.0.5: 3988 - resolution: 3989 - { 3990 - integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, 3991 - } 3992 - engines: { node: 6.* || 8.* || >= 10.* } 2519 + resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 2520 + engines: {node: 6.* || 8.* || >= 10.*} 3993 2521 3994 2522 get-east-asian-width@1.4.0: 3995 - resolution: 3996 - { 3997 - integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==, 3998 - } 3999 - engines: { node: ">=18" } 2523 + resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==} 2524 + engines: {node: '>=18'} 4000 2525 4001 2526 get-func-name@2.0.2: 4002 - resolution: 4003 - { 4004 - integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==, 4005 - } 2527 + resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} 4006 2528 4007 2529 get-intrinsic@1.3.0: 4008 - resolution: 4009 - { 4010 - integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==, 4011 - } 4012 - engines: { node: ">= 0.4" } 2530 + resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} 2531 + engines: {node: '>= 0.4'} 4013 2532 4014 2533 get-proto@1.0.1: 4015 - resolution: 4016 - { 4017 - integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==, 4018 - } 4019 - engines: { node: ">= 0.4" } 2534 + resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 2535 + engines: {node: '>= 0.4'} 4020 2536 4021 2537 get-stream@8.0.1: 4022 - resolution: 4023 - { 4024 - integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, 4025 - } 4026 - engines: { node: ">=16" } 2538 + resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 2539 + engines: {node: '>=16'} 4027 2540 4028 2541 github-slugger@2.0.0: 4029 - resolution: 4030 - { 4031 - integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==, 4032 - } 2542 + resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 4033 2543 4034 2544 glob-parent@5.1.2: 4035 - resolution: 4036 - { 4037 - integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, 4038 - } 4039 - engines: { node: ">= 6" } 2545 + resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 2546 + engines: {node: '>= 6'} 4040 2547 4041 2548 globby@14.1.0: 4042 - resolution: 4043 - { 4044 - integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==, 4045 - } 4046 - engines: { node: ">=18" } 2549 + resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} 2550 + engines: {node: '>=18'} 4047 2551 4048 2552 gopd@1.2.0: 4049 - resolution: 4050 - { 4051 - integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==, 4052 - } 4053 - engines: { node: ">= 0.4" } 2553 + resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 2554 + engines: {node: '>= 0.4'} 4054 2555 4055 2556 graphemer@1.4.0: 4056 - resolution: 4057 - { 4058 - integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, 4059 - } 2557 + resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 4060 2558 4061 2559 h3@1.15.4: 4062 - resolution: 4063 - { 4064 - integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==, 4065 - } 2560 + resolution: {integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==} 4066 2561 4067 2562 has-flag@4.0.0: 4068 - resolution: 4069 - { 4070 - integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, 4071 - } 4072 - engines: { node: ">=8" } 2563 + resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 2564 + engines: {node: '>=8'} 4073 2565 4074 2566 has-property-descriptors@1.0.2: 4075 - resolution: 4076 - { 4077 - integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, 4078 - } 2567 + resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 4079 2568 4080 2569 has-symbols@1.1.0: 4081 - resolution: 4082 - { 4083 - integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==, 4084 - } 4085 - engines: { node: ">= 0.4" } 2570 + resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 2571 + engines: {node: '>= 0.4'} 4086 2572 4087 2573 has-tostringtag@1.0.2: 4088 - resolution: 4089 - { 4090 - integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, 4091 - } 4092 - engines: { node: ">= 0.4" } 2574 + resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 2575 + engines: {node: '>= 0.4'} 4093 2576 4094 2577 hash-base@3.0.5: 4095 - resolution: 4096 - { 4097 - integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==, 4098 - } 4099 - engines: { node: ">= 0.10" } 2578 + resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} 2579 + engines: {node: '>= 0.10'} 4100 2580 4101 2581 hash-base@3.1.2: 4102 - resolution: 4103 - { 4104 - integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==, 4105 - } 4106 - engines: { node: ">= 0.8" } 2582 + resolution: {integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==} 2583 + engines: {node: '>= 0.8'} 4107 2584 4108 2585 hash.js@1.1.7: 4109 - resolution: 4110 - { 4111 - integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==, 4112 - } 2586 + resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} 4113 2587 4114 2588 hasown@2.0.2: 4115 - resolution: 4116 - { 4117 - integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, 4118 - } 4119 - engines: { node: ">= 0.4" } 2589 + resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 2590 + engines: {node: '>= 0.4'} 4120 2591 4121 2592 hast-util-from-html@2.0.3: 4122 - resolution: 4123 - { 4124 - integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==, 4125 - } 2593 + resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} 4126 2594 4127 2595 hast-util-from-parse5@8.0.3: 4128 - resolution: 4129 - { 4130 - integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==, 4131 - } 2596 + resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} 4132 2597 4133 2598 hast-util-is-element@3.0.0: 4134 - resolution: 4135 - { 4136 - integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==, 4137 - } 2599 + resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 4138 2600 4139 2601 hast-util-parse-selector@4.0.0: 4140 - resolution: 4141 - { 4142 - integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, 4143 - } 2602 + resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 4144 2603 4145 2604 hast-util-raw@9.1.0: 4146 - resolution: 4147 - { 4148 - integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==, 4149 - } 2605 + resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} 4150 2606 4151 2607 hast-util-to-html@9.0.5: 4152 - resolution: 4153 - { 4154 - integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==, 4155 - } 2608 + resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 4156 2609 4157 2610 hast-util-to-parse5@8.0.0: 4158 - resolution: 4159 - { 4160 - integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==, 4161 - } 2611 + resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} 4162 2612 4163 2613 hast-util-to-text@4.0.2: 4164 - resolution: 4165 - { 4166 - integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==, 4167 - } 2614 + resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 4168 2615 4169 2616 hast-util-whitespace@3.0.0: 4170 - resolution: 4171 - { 4172 - integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==, 4173 - } 2617 + resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 4174 2618 4175 2619 hastscript@9.0.1: 4176 - resolution: 4177 - { 4178 - integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==, 4179 - } 2620 + resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} 4180 2621 4181 2622 hmac-drbg@1.0.1: 4182 - resolution: 4183 - { 4184 - integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==, 4185 - } 2623 + resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} 4186 2624 4187 2625 html-escaper@3.0.3: 4188 - resolution: 4189 - { 4190 - integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==, 4191 - } 2626 + resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 4192 2627 4193 2628 html-void-elements@3.0.0: 4194 - resolution: 4195 - { 4196 - integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, 4197 - } 2629 + resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 4198 2630 4199 2631 http-cache-semantics@4.2.0: 4200 - resolution: 4201 - { 4202 - integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==, 4203 - } 2632 + resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} 4204 2633 4205 2634 http-errors@2.0.0: 4206 - resolution: 4207 - { 4208 - integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, 4209 - } 4210 - engines: { node: ">= 0.8" } 2635 + resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 2636 + engines: {node: '>= 0.8'} 4211 2637 4212 2638 https-browserify@1.0.0: 4213 - resolution: 4214 - { 4215 - integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==, 4216 - } 2639 + resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} 4217 2640 4218 2641 human-signals@5.0.0: 4219 - resolution: 4220 - { 4221 - integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, 4222 - } 4223 - engines: { node: ">=16.17.0" } 2642 + resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 2643 + engines: {node: '>=16.17.0'} 4224 2644 4225 2645 iconv-lite@0.4.24: 4226 - resolution: 4227 - { 4228 - integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, 4229 - } 4230 - engines: { node: ">=0.10.0" } 2646 + resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 2647 + engines: {node: '>=0.10.0'} 4231 2648 4232 2649 iconv-lite@0.7.0: 4233 - resolution: 4234 - { 4235 - integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==, 4236 - } 4237 - engines: { node: ">=0.10.0" } 2650 + resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==} 2651 + engines: {node: '>=0.10.0'} 4238 2652 4239 2653 ieee754@1.2.1: 4240 - resolution: 4241 - { 4242 - integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, 4243 - } 2654 + resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 4244 2655 4245 2656 ignore@7.0.5: 4246 - resolution: 4247 - { 4248 - integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==, 4249 - } 4250 - engines: { node: ">= 4" } 2657 + resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} 2658 + engines: {node: '>= 4'} 4251 2659 4252 2660 import-meta-resolve@4.2.0: 4253 - resolution: 4254 - { 4255 - integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==, 4256 - } 2661 + resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} 4257 2662 4258 2663 inherits@2.0.4: 4259 - resolution: 4260 - { 4261 - integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, 4262 - } 2664 + resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 4263 2665 4264 2666 ipaddr.js@1.9.1: 4265 - resolution: 4266 - { 4267 - integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, 4268 - } 4269 - engines: { node: ">= 0.10" } 2667 + resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 2668 + engines: {node: '>= 0.10'} 4270 2669 4271 2670 iron-webcrypto@1.2.1: 4272 - resolution: 4273 - { 4274 - integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==, 4275 - } 2671 + resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 4276 2672 4277 2673 is-arguments@1.2.0: 4278 - resolution: 4279 - { 4280 - integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==, 4281 - } 4282 - engines: { node: ">= 0.4" } 2674 + resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} 2675 + engines: {node: '>= 0.4'} 4283 2676 4284 2677 is-callable@1.2.7: 4285 - resolution: 4286 - { 4287 - integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, 4288 - } 4289 - engines: { node: ">= 0.4" } 2678 + resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 2679 + engines: {node: '>= 0.4'} 4290 2680 4291 2681 is-core-module@2.16.1: 4292 - resolution: 4293 - { 4294 - integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==, 4295 - } 4296 - engines: { node: ">= 0.4" } 2682 + resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 2683 + engines: {node: '>= 0.4'} 4297 2684 4298 2685 is-docker@3.0.0: 4299 - resolution: 4300 - { 4301 - integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==, 4302 - } 4303 - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 2686 + resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 2687 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4304 2688 hasBin: true 4305 2689 4306 2690 is-extglob@2.1.1: 4307 - resolution: 4308 - { 4309 - integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, 4310 - } 4311 - engines: { node: ">=0.10.0" } 2691 + resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2692 + engines: {node: '>=0.10.0'} 4312 2693 4313 2694 is-fullwidth-code-point@3.0.0: 4314 - resolution: 4315 - { 4316 - integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, 4317 - } 4318 - engines: { node: ">=8" } 2695 + resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2696 + engines: {node: '>=8'} 4319 2697 4320 2698 is-generator-function@1.1.2: 4321 - resolution: 4322 - { 4323 - integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==, 4324 - } 4325 - engines: { node: ">= 0.4" } 2699 + resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} 2700 + engines: {node: '>= 0.4'} 4326 2701 4327 2702 is-glob@4.0.3: 4328 - resolution: 4329 - { 4330 - integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, 4331 - } 4332 - engines: { node: ">=0.10.0" } 2703 + resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2704 + engines: {node: '>=0.10.0'} 4333 2705 4334 2706 is-inside-container@1.0.0: 4335 - resolution: 4336 - { 4337 - integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==, 4338 - } 4339 - engines: { node: ">=14.16" } 2707 + resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 2708 + engines: {node: '>=14.16'} 4340 2709 hasBin: true 4341 2710 4342 2711 is-nan@1.3.2: 4343 - resolution: 4344 - { 4345 - integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==, 4346 - } 4347 - engines: { node: ">= 0.4" } 2712 + resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} 2713 + engines: {node: '>= 0.4'} 4348 2714 4349 2715 is-number@7.0.0: 4350 - resolution: 4351 - { 4352 - integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, 4353 - } 4354 - engines: { node: ">=0.12.0" } 2716 + resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2717 + engines: {node: '>=0.12.0'} 4355 2718 4356 2719 is-plain-obj@4.1.0: 4357 - resolution: 4358 - { 4359 - integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, 4360 - } 4361 - engines: { node: ">=12" } 2720 + resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 2721 + engines: {node: '>=12'} 4362 2722 4363 2723 is-regex@1.2.1: 4364 - resolution: 4365 - { 4366 - integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==, 4367 - } 4368 - engines: { node: ">= 0.4" } 2724 + resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 2725 + engines: {node: '>= 0.4'} 4369 2726 4370 2727 is-stream@3.0.0: 4371 - resolution: 4372 - { 4373 - integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, 4374 - } 4375 - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 2728 + resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 2729 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4376 2730 4377 2731 is-typed-array@1.1.15: 4378 - resolution: 4379 - { 4380 - integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==, 4381 - } 4382 - engines: { node: ">= 0.4" } 2732 + resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 2733 + engines: {node: '>= 0.4'} 4383 2734 4384 2735 is-unicode-supported@2.1.0: 4385 - resolution: 4386 - { 4387 - integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==, 4388 - } 4389 - engines: { node: ">=18" } 2736 + resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} 2737 + engines: {node: '>=18'} 4390 2738 4391 2739 is-wsl@3.1.0: 4392 - resolution: 4393 - { 4394 - integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==, 4395 - } 4396 - engines: { node: ">=16" } 2740 + resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 2741 + engines: {node: '>=16'} 4397 2742 4398 2743 isarray@1.0.0: 4399 - resolution: 4400 - { 4401 - integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, 4402 - } 2744 + resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 4403 2745 4404 2746 isarray@2.0.5: 4405 - resolution: 4406 - { 4407 - integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, 4408 - } 2747 + resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 4409 2748 4410 2749 isexe@2.0.0: 4411 - resolution: 4412 - { 4413 - integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, 4414 - } 2750 + resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 4415 2751 4416 2752 iso-datestring-validator@2.2.2: 4417 - resolution: 4418 - { 4419 - integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==, 4420 - } 2753 + resolution: {integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==} 4421 2754 4422 2755 isomorphic-timers-promises@1.0.1: 4423 - resolution: 4424 - { 4425 - integrity: sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ==, 4426 - } 4427 - engines: { node: ">=10" } 2756 + resolution: {integrity: sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ==} 2757 + engines: {node: '>=10'} 4428 2758 4429 2759 js-tokens@4.0.0: 4430 - resolution: 4431 - { 4432 - integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, 4433 - } 2760 + resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 4434 2761 4435 2762 js-tokens@9.0.1: 4436 - resolution: 4437 - { 4438 - integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==, 4439 - } 2763 + resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} 4440 2764 4441 2765 js-yaml@4.1.0: 4442 - resolution: 4443 - { 4444 - integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, 4445 - } 2766 + resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 4446 2767 hasBin: true 4447 2768 4448 2769 jsesc@3.1.0: 4449 - resolution: 4450 - { 4451 - integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==, 4452 - } 4453 - engines: { node: ">=6" } 2770 + resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 2771 + engines: {node: '>=6'} 4454 2772 hasBin: true 4455 2773 4456 2774 json-schema-traverse@1.0.0: 4457 - resolution: 4458 - { 4459 - integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, 4460 - } 2775 + resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 4461 2776 4462 2777 json-stringify-pretty-compact@4.0.0: 4463 - resolution: 4464 - { 4465 - integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==, 4466 - } 2778 + resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==} 4467 2779 4468 2780 json5@2.2.3: 4469 - resolution: 4470 - { 4471 - integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, 4472 - } 4473 - engines: { node: ">=6" } 2781 + resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 2782 + engines: {node: '>=6'} 4474 2783 hasBin: true 4475 2784 4476 2785 keyborg@2.6.0: 4477 - resolution: 4478 - { 4479 - integrity: sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==, 4480 - } 2786 + resolution: {integrity: sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==} 4481 2787 4482 2788 kleur@3.0.3: 4483 - resolution: 4484 - { 4485 - integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, 4486 - } 4487 - engines: { node: ">=6" } 2789 + resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 2790 + engines: {node: '>=6'} 4488 2791 4489 2792 kleur@4.1.5: 4490 - resolution: 4491 - { 4492 - integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, 4493 - } 4494 - engines: { node: ">=6" } 2793 + resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 2794 + engines: {node: '>=6'} 4495 2795 4496 2796 local-pkg@0.5.1: 4497 - resolution: 4498 - { 4499 - integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==, 4500 - } 4501 - engines: { node: ">=14" } 2797 + resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} 2798 + engines: {node: '>=14'} 4502 2799 4503 2800 local-pkg@1.1.2: 4504 - resolution: 4505 - { 4506 - integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==, 4507 - } 4508 - engines: { node: ">=14" } 2801 + resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} 2802 + engines: {node: '>=14'} 4509 2803 4510 2804 locate-path@6.0.0: 4511 - resolution: 4512 - { 4513 - integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, 4514 - } 4515 - engines: { node: ">=10" } 2805 + resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2806 + engines: {node: '>=10'} 4516 2807 4517 2808 longest-streak@3.1.0: 4518 - resolution: 4519 - { 4520 - integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==, 4521 - } 2809 + resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 4522 2810 4523 2811 loose-envify@1.4.0: 4524 - resolution: 4525 - { 4526 - integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, 4527 - } 2812 + resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 4528 2813 hasBin: true 4529 2814 4530 2815 loupe@2.3.7: 4531 - resolution: 4532 - { 4533 - integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==, 4534 - } 2816 + resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} 4535 2817 4536 2818 lru-cache@10.4.3: 4537 - resolution: 4538 - { 4539 - integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, 4540 - } 2819 + resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 4541 2820 4542 2821 lru-cache@5.1.1: 4543 - resolution: 4544 - { 4545 - integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, 4546 - } 2822 + resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 4547 2823 4548 2824 lzutf8@0.6.3: 4549 - resolution: 4550 - { 4551 - integrity: sha512-CAkF9HKrM+XpB0f3DepQ2to2iUEo0zrbh+XgBqgNBc1+k8HMM3u/YSfHI3Dr4GmoTIez2Pr/If1XFl3rU26AwA==, 4552 - } 2825 + resolution: {integrity: sha512-CAkF9HKrM+XpB0f3DepQ2to2iUEo0zrbh+XgBqgNBc1+k8HMM3u/YSfHI3Dr4GmoTIez2Pr/If1XFl3rU26AwA==} 4553 2826 4554 2827 magic-string@0.30.19: 4555 - resolution: 4556 - { 4557 - integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==, 4558 - } 2828 + resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} 4559 2829 4560 2830 magicast@0.3.5: 4561 - resolution: 4562 - { 4563 - integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==, 4564 - } 2831 + resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 4565 2832 4566 2833 map-stream@0.1.0: 4567 - resolution: 4568 - { 4569 - integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==, 4570 - } 2834 + resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} 4571 2835 4572 2836 markdown-table@3.0.4: 4573 - resolution: 4574 - { 4575 - integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==, 4576 - } 2837 + resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 4577 2838 4578 2839 math-intrinsics@1.1.0: 4579 - resolution: 4580 - { 4581 - integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==, 4582 - } 4583 - engines: { node: ">= 0.4" } 2840 + resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 2841 + engines: {node: '>= 0.4'} 4584 2842 4585 2843 md5.js@1.3.5: 4586 - resolution: 4587 - { 4588 - integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==, 4589 - } 2844 + resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} 4590 2845 4591 2846 mdast-util-definitions@6.0.0: 4592 - resolution: 4593 - { 4594 - integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==, 4595 - } 2847 + resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} 4596 2848 4597 2849 mdast-util-find-and-replace@3.0.2: 4598 - resolution: 4599 - { 4600 - integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==, 4601 - } 2850 + resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 4602 2851 4603 2852 mdast-util-from-markdown@2.0.2: 4604 - resolution: 4605 - { 4606 - integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==, 4607 - } 2853 + resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 4608 2854 4609 2855 mdast-util-gfm-autolink-literal@2.0.1: 4610 - resolution: 4611 - { 4612 - integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==, 4613 - } 2856 + resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 4614 2857 4615 2858 mdast-util-gfm-footnote@2.1.0: 4616 - resolution: 4617 - { 4618 - integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==, 4619 - } 2859 + resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} 4620 2860 4621 2861 mdast-util-gfm-strikethrough@2.0.0: 4622 - resolution: 4623 - { 4624 - integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==, 4625 - } 2862 + resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 4626 2863 4627 2864 mdast-util-gfm-table@2.0.0: 4628 - resolution: 4629 - { 4630 - integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==, 4631 - } 2865 + resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 4632 2866 4633 2867 mdast-util-gfm-task-list-item@2.0.0: 4634 - resolution: 4635 - { 4636 - integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==, 4637 - } 2868 + resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 4638 2869 4639 2870 mdast-util-gfm@3.1.0: 4640 - resolution: 4641 - { 4642 - integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==, 4643 - } 2871 + resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} 4644 2872 4645 2873 mdast-util-phrasing@4.1.0: 4646 - resolution: 4647 - { 4648 - integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==, 4649 - } 2874 + resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 4650 2875 4651 2876 mdast-util-to-hast@13.2.0: 4652 - resolution: 4653 - { 4654 - integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==, 4655 - } 2877 + resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 4656 2878 4657 2879 mdast-util-to-markdown@2.1.2: 4658 - resolution: 4659 - { 4660 - integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==, 4661 - } 2880 + resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 4662 2881 4663 2882 mdast-util-to-string@4.0.0: 4664 - resolution: 4665 - { 4666 - integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==, 4667 - } 2883 + resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 4668 2884 4669 2885 mdn-data@2.12.2: 4670 - resolution: 4671 - { 4672 - integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==, 4673 - } 2886 + resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} 4674 2887 4675 2888 media-typer@0.3.0: 4676 - resolution: 4677 - { 4678 - integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==, 4679 - } 4680 - engines: { node: ">= 0.6" } 2889 + resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} 2890 + engines: {node: '>= 0.6'} 4681 2891 4682 2892 merge-descriptors@1.0.3: 4683 - resolution: 4684 - { 4685 - integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==, 4686 - } 2893 + resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} 4687 2894 4688 2895 merge-stream@2.0.0: 4689 - resolution: 4690 - { 4691 - integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, 4692 - } 2896 + resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 4693 2897 4694 2898 merge2@1.4.1: 4695 - resolution: 4696 - { 4697 - integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, 4698 - } 4699 - engines: { node: ">= 8" } 2899 + resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2900 + engines: {node: '>= 8'} 4700 2901 4701 2902 methods@1.1.2: 4702 - resolution: 4703 - { 4704 - integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, 4705 - } 4706 - engines: { node: ">= 0.6" } 2903 + resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 2904 + engines: {node: '>= 0.6'} 4707 2905 4708 2906 micromark-core-commonmark@2.0.3: 4709 - resolution: 4710 - { 4711 - integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==, 4712 - } 2907 + resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 4713 2908 4714 2909 micromark-extension-gfm-autolink-literal@2.1.0: 4715 - resolution: 4716 - { 4717 - integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==, 4718 - } 2910 + resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 4719 2911 4720 2912 micromark-extension-gfm-footnote@2.1.0: 4721 - resolution: 4722 - { 4723 - integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==, 4724 - } 2913 + resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 4725 2914 4726 2915 micromark-extension-gfm-strikethrough@2.1.0: 4727 - resolution: 4728 - { 4729 - integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==, 4730 - } 2916 + resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 4731 2917 4732 2918 micromark-extension-gfm-table@2.1.1: 4733 - resolution: 4734 - { 4735 - integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==, 4736 - } 2919 + resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} 4737 2920 4738 2921 micromark-extension-gfm-tagfilter@2.0.0: 4739 - resolution: 4740 - { 4741 - integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==, 4742 - } 2922 + resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 4743 2923 4744 2924 micromark-extension-gfm-task-list-item@2.1.0: 4745 - resolution: 4746 - { 4747 - integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==, 4748 - } 2925 + resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 4749 2926 4750 2927 micromark-extension-gfm@3.0.0: 4751 - resolution: 4752 - { 4753 - integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==, 4754 - } 2928 + resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 4755 2929 4756 2930 micromark-factory-destination@2.0.1: 4757 - resolution: 4758 - { 4759 - integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==, 4760 - } 2931 + resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 4761 2932 4762 2933 micromark-factory-label@2.0.1: 4763 - resolution: 4764 - { 4765 - integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==, 4766 - } 2934 + resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 4767 2935 4768 2936 micromark-factory-space@2.0.1: 4769 - resolution: 4770 - { 4771 - integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==, 4772 - } 2937 + resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 4773 2938 4774 2939 micromark-factory-title@2.0.1: 4775 - resolution: 4776 - { 4777 - integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==, 4778 - } 2940 + resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 4779 2941 4780 2942 micromark-factory-whitespace@2.0.1: 4781 - resolution: 4782 - { 4783 - integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==, 4784 - } 2943 + resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 4785 2944 4786 2945 micromark-util-character@2.1.1: 4787 - resolution: 4788 - { 4789 - integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==, 4790 - } 2946 + resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 4791 2947 4792 2948 micromark-util-chunked@2.0.1: 4793 - resolution: 4794 - { 4795 - integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==, 4796 - } 2949 + resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 4797 2950 4798 2951 micromark-util-classify-character@2.0.1: 4799 - resolution: 4800 - { 4801 - integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==, 4802 - } 2952 + resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 4803 2953 4804 2954 micromark-util-combine-extensions@2.0.1: 4805 - resolution: 4806 - { 4807 - integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==, 4808 - } 2955 + resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 4809 2956 4810 2957 micromark-util-decode-numeric-character-reference@2.0.2: 4811 - resolution: 4812 - { 4813 - integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==, 4814 - } 2958 + resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 4815 2959 4816 2960 micromark-util-decode-string@2.0.1: 4817 - resolution: 4818 - { 4819 - integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==, 4820 - } 2961 + resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 4821 2962 4822 2963 micromark-util-encode@2.0.1: 4823 - resolution: 4824 - { 4825 - integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==, 4826 - } 2964 + resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 4827 2965 4828 2966 micromark-util-html-tag-name@2.0.1: 4829 - resolution: 4830 - { 4831 - integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==, 4832 - } 2967 + resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 4833 2968 4834 2969 micromark-util-normalize-identifier@2.0.1: 4835 - resolution: 4836 - { 4837 - integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==, 4838 - } 2970 + resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 4839 2971 4840 2972 micromark-util-resolve-all@2.0.1: 4841 - resolution: 4842 - { 4843 - integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==, 4844 - } 2973 + resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 4845 2974 4846 2975 micromark-util-sanitize-uri@2.0.1: 4847 - resolution: 4848 - { 4849 - integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==, 4850 - } 2976 + resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 4851 2977 4852 2978 micromark-util-subtokenize@2.1.0: 4853 - resolution: 4854 - { 4855 - integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==, 4856 - } 2979 + resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} 4857 2980 4858 2981 micromark-util-symbol@2.0.1: 4859 - resolution: 4860 - { 4861 - integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==, 4862 - } 2982 + resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 4863 2983 4864 2984 micromark-util-types@2.0.2: 4865 - resolution: 4866 - { 4867 - integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==, 4868 - } 2985 + resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 4869 2986 4870 2987 micromark@4.0.2: 4871 - resolution: 4872 - { 4873 - integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==, 4874 - } 2988 + resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 4875 2989 4876 2990 micromatch@4.0.8: 4877 - resolution: 4878 - { 4879 - integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, 4880 - } 4881 - engines: { node: ">=8.6" } 2991 + resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 2992 + engines: {node: '>=8.6'} 4882 2993 4883 2994 miller-rabin@4.0.1: 4884 - resolution: 4885 - { 4886 - integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==, 4887 - } 2995 + resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} 4888 2996 hasBin: true 4889 2997 4890 2998 mime-db@1.52.0: 4891 - resolution: 4892 - { 4893 - integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, 4894 - } 4895 - engines: { node: ">= 0.6" } 2999 + resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 3000 + engines: {node: '>= 0.6'} 4896 3001 4897 3002 mime-types@2.1.35: 4898 - resolution: 4899 - { 4900 - integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, 4901 - } 4902 - engines: { node: ">= 0.6" } 3003 + resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 3004 + engines: {node: '>= 0.6'} 4903 3005 4904 3006 mime@1.6.0: 4905 - resolution: 4906 - { 4907 - integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, 4908 - } 4909 - engines: { node: ">=4" } 3007 + resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 3008 + engines: {node: '>=4'} 4910 3009 hasBin: true 4911 3010 4912 3011 mimic-fn@4.0.0: 4913 - resolution: 4914 - { 4915 - integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, 4916 - } 4917 - engines: { node: ">=12" } 3012 + resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 3013 + engines: {node: '>=12'} 4918 3014 4919 3015 minimalistic-assert@1.0.1: 4920 - resolution: 4921 - { 4922 - integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==, 4923 - } 3016 + resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} 4924 3017 4925 3018 minimalistic-crypto-utils@1.0.1: 4926 - resolution: 4927 - { 4928 - integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==, 4929 - } 3019 + resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} 4930 3020 4931 3021 minimatch@9.0.5: 4932 - resolution: 4933 - { 4934 - integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, 4935 - } 4936 - engines: { node: ">=16 || 14 >=14.17" } 3022 + resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 3023 + engines: {node: '>=16 || 14 >=14.17'} 4937 3024 4938 3025 minipass@7.1.2: 4939 - resolution: 4940 - { 4941 - integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, 4942 - } 4943 - engines: { node: ">=16 || 14 >=14.17" } 3026 + resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 3027 + engines: {node: '>=16 || 14 >=14.17'} 4944 3028 4945 3029 minizlib@3.1.0: 4946 - resolution: 4947 - { 4948 - integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==, 4949 - } 4950 - engines: { node: ">= 18" } 3030 + resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} 3031 + engines: {node: '>= 18'} 4951 3032 4952 3033 mlly@1.8.0: 4953 - resolution: 4954 - { 4955 - integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==, 4956 - } 3034 + resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} 4957 3035 4958 3036 monaco-editor@0.52.2: 4959 - resolution: 4960 - { 4961 - integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==, 4962 - } 3037 + resolution: {integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==} 4963 3038 4964 3039 mrmime@2.0.1: 4965 - resolution: 4966 - { 4967 - integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==, 4968 - } 4969 - engines: { node: ">=10" } 3040 + resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 3041 + engines: {node: '>=10'} 4970 3042 4971 3043 ms@2.0.0: 4972 - resolution: 4973 - { 4974 - integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, 4975 - } 3044 + resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 4976 3045 4977 3046 ms@2.1.3: 4978 - resolution: 4979 - { 4980 - integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, 4981 - } 3047 + resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 4982 3048 4983 3049 multiformats@9.9.0: 4984 - resolution: 4985 - { 4986 - integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==, 4987 - } 3050 + resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} 4988 3051 4989 3052 mustache@4.2.0: 4990 - resolution: 4991 - { 4992 - integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==, 4993 - } 3053 + resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} 4994 3054 hasBin: true 4995 3055 4996 3056 mute-stream@2.0.0: 4997 - resolution: 4998 - { 4999 - integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==, 5000 - } 5001 - engines: { node: ^18.17.0 || >=20.5.0 } 3057 + resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} 3058 + engines: {node: ^18.17.0 || >=20.5.0} 5002 3059 5003 3060 nanoid@3.3.11: 5004 - resolution: 5005 - { 5006 - integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==, 5007 - } 5008 - engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } 3061 + resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 3062 + engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 5009 3063 hasBin: true 5010 3064 5011 3065 negotiator@0.6.3: 5012 - resolution: 5013 - { 5014 - integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, 5015 - } 5016 - engines: { node: ">= 0.6" } 3066 + resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} 3067 + engines: {node: '>= 0.6'} 5017 3068 5018 3069 neotraverse@0.6.18: 5019 - resolution: 5020 - { 5021 - integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==, 5022 - } 5023 - engines: { node: ">= 10" } 3070 + resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 3071 + engines: {node: '>= 10'} 5024 3072 5025 3073 nlcst-to-string@4.0.0: 5026 - resolution: 5027 - { 5028 - integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==, 5029 - } 3074 + resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 5030 3075 5031 3076 node-cleanup@2.1.2: 5032 - resolution: 5033 - { 5034 - integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==, 5035 - } 3077 + resolution: {integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==} 5036 3078 5037 3079 node-fetch-native@1.6.7: 5038 - resolution: 5039 - { 5040 - integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==, 5041 - } 3080 + resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} 5042 3081 5043 3082 node-fetch@2.7.0: 5044 - resolution: 5045 - { 5046 - integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, 5047 - } 5048 - engines: { node: 4.x || >=6.0.0 } 3083 + resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 3084 + engines: {node: 4.x || >=6.0.0} 5049 3085 peerDependencies: 5050 3086 encoding: ^0.1.0 5051 3087 peerDependenciesMeta: ··· 5053 3089 optional: true 5054 3090 5055 3091 node-gyp-build-optional-packages@5.1.1: 5056 - resolution: 5057 - { 5058 - integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==, 5059 - } 3092 + resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==} 5060 3093 hasBin: true 5061 3094 5062 3095 node-mock-http@1.0.3: 5063 - resolution: 5064 - { 5065 - integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==, 5066 - } 3096 + resolution: {integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==} 5067 3097 5068 3098 node-releases@2.0.23: 5069 - resolution: 5070 - { 5071 - integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==, 5072 - } 3099 + resolution: {integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==} 5073 3100 5074 3101 node-stdlib-browser@1.3.1: 5075 - resolution: 5076 - { 5077 - integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==, 5078 - } 5079 - engines: { node: ">=10" } 3102 + resolution: {integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==} 3103 + engines: {node: '>=10'} 5080 3104 5081 3105 normalize-path@3.0.0: 5082 - resolution: 5083 - { 5084 - integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, 5085 - } 5086 - engines: { node: ">=0.10.0" } 3106 + resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 3107 + engines: {node: '>=0.10.0'} 5087 3108 5088 3109 npm-run-path@5.3.0: 5089 - resolution: 5090 - { 5091 - integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, 5092 - } 5093 - engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 3110 + resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} 3111 + engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 5094 3112 5095 3113 object-inspect@1.13.4: 5096 - resolution: 5097 - { 5098 - integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==, 5099 - } 5100 - engines: { node: ">= 0.4" } 3114 + resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 3115 + engines: {node: '>= 0.4'} 5101 3116 5102 3117 object-is@1.1.6: 5103 - resolution: 5104 - { 5105 - integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==, 5106 - } 5107 - engines: { node: ">= 0.4" } 3118 + resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} 3119 + engines: {node: '>= 0.4'} 5108 3120 5109 3121 object-keys@1.1.1: 5110 - resolution: 5111 - { 5112 - integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, 5113 - } 5114 - engines: { node: ">= 0.4" } 3122 + resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 3123 + engines: {node: '>= 0.4'} 5115 3124 5116 3125 object.assign@4.1.7: 5117 - resolution: 5118 - { 5119 - integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==, 5120 - } 5121 - engines: { node: ">= 0.4" } 3126 + resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 3127 + engines: {node: '>= 0.4'} 5122 3128 5123 3129 ofetch@1.4.1: 5124 - resolution: 5125 - { 5126 - integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==, 5127 - } 3130 + resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} 5128 3131 5129 3132 ohash@2.0.11: 5130 - resolution: 5131 - { 5132 - integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==, 5133 - } 3133 + resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 5134 3134 5135 3135 on-exit-leak-free@2.1.2: 5136 - resolution: 5137 - { 5138 - integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==, 5139 - } 5140 - engines: { node: ">=14.0.0" } 3136 + resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} 3137 + engines: {node: '>=14.0.0'} 5141 3138 5142 3139 on-finished@2.4.1: 5143 - resolution: 5144 - { 5145 - integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==, 5146 - } 5147 - engines: { node: ">= 0.8" } 3140 + resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 3141 + engines: {node: '>= 0.8'} 5148 3142 5149 3143 onetime@6.0.0: 5150 - resolution: 5151 - { 5152 - integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, 5153 - } 5154 - engines: { node: ">=12" } 3144 + resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 3145 + engines: {node: '>=12'} 5155 3146 5156 3147 oniguruma-parser@0.12.1: 5157 - resolution: 5158 - { 5159 - integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==, 5160 - } 3148 + resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} 5161 3149 5162 3150 oniguruma-to-es@4.3.3: 5163 - resolution: 5164 - { 5165 - integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==, 5166 - } 3151 + resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==} 5167 3152 5168 3153 openapi-types@12.1.3: 5169 - resolution: 5170 - { 5171 - integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==, 5172 - } 3154 + resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==} 5173 3155 5174 3156 os-browserify@0.3.0: 5175 - resolution: 5176 - { 5177 - integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==, 5178 - } 3157 + resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} 5179 3158 5180 3159 p-limit@3.1.0: 5181 - resolution: 5182 - { 5183 - integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, 5184 - } 5185 - engines: { node: ">=10" } 3160 + resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 3161 + engines: {node: '>=10'} 5186 3162 5187 3163 p-limit@5.0.0: 5188 - resolution: 5189 - { 5190 - integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==, 5191 - } 5192 - engines: { node: ">=18" } 3164 + resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} 3165 + engines: {node: '>=18'} 5193 3166 5194 3167 p-limit@6.2.0: 5195 - resolution: 5196 - { 5197 - integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==, 5198 - } 5199 - engines: { node: ">=18" } 3168 + resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} 3169 + engines: {node: '>=18'} 5200 3170 5201 3171 p-locate@5.0.0: 5202 - resolution: 5203 - { 5204 - integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, 5205 - } 5206 - engines: { node: ">=10" } 3172 + resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 3173 + engines: {node: '>=10'} 5207 3174 5208 3175 p-queue@8.1.1: 5209 - resolution: 5210 - { 5211 - integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==, 5212 - } 5213 - engines: { node: ">=18" } 3176 + resolution: {integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==} 3177 + engines: {node: '>=18'} 5214 3178 5215 3179 p-timeout@6.1.4: 5216 - resolution: 5217 - { 5218 - integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==, 5219 - } 5220 - engines: { node: ">=14.16" } 3180 + resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} 3181 + engines: {node: '>=14.16'} 5221 3182 5222 3183 package-manager-detector@1.3.0: 5223 - resolution: 5224 - { 5225 - integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==, 5226 - } 3184 + resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} 5227 3185 5228 3186 pako@0.2.9: 5229 - resolution: 5230 - { 5231 - integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==, 5232 - } 3187 + resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} 5233 3188 5234 3189 pako@1.0.11: 5235 - resolution: 5236 - { 5237 - integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, 5238 - } 3190 + resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} 5239 3191 5240 3192 parse-asn1@5.1.9: 5241 - resolution: 5242 - { 5243 - integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==, 5244 - } 5245 - engines: { node: ">= 0.10" } 3193 + resolution: {integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==} 3194 + engines: {node: '>= 0.10'} 5246 3195 5247 3196 parse-latin@7.0.0: 5248 - resolution: 5249 - { 5250 - integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==, 5251 - } 3197 + resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 5252 3198 5253 3199 parse5@7.3.0: 5254 - resolution: 5255 - { 5256 - integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==, 5257 - } 3200 + resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 5258 3201 5259 3202 parseurl@1.3.3: 5260 - resolution: 5261 - { 5262 - integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, 5263 - } 5264 - engines: { node: ">= 0.8" } 3203 + resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 3204 + engines: {node: '>= 0.8'} 5265 3205 5266 3206 path-browserify@1.0.1: 5267 - resolution: 5268 - { 5269 - integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==, 5270 - } 3207 + resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} 5271 3208 5272 3209 path-exists@4.0.0: 5273 - resolution: 5274 - { 5275 - integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, 5276 - } 5277 - engines: { node: ">=8" } 3210 + resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 3211 + engines: {node: '>=8'} 5278 3212 5279 3213 path-key@3.1.1: 5280 - resolution: 5281 - { 5282 - integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, 5283 - } 5284 - engines: { node: ">=8" } 3214 + resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 3215 + engines: {node: '>=8'} 5285 3216 5286 3217 path-key@4.0.0: 5287 - resolution: 5288 - { 5289 - integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, 5290 - } 5291 - engines: { node: ">=12" } 3218 + resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 3219 + engines: {node: '>=12'} 5292 3220 5293 3221 path-parse@1.0.7: 5294 - resolution: 5295 - { 5296 - integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, 5297 - } 3222 + resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 5298 3223 5299 3224 path-to-regexp@0.1.12: 5300 - resolution: 5301 - { 5302 - integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==, 5303 - } 3225 + resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} 5304 3226 5305 3227 path-type@6.0.0: 5306 - resolution: 5307 - { 5308 - integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==, 5309 - } 5310 - engines: { node: ">=18" } 3228 + resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} 3229 + engines: {node: '>=18'} 5311 3230 5312 3231 pathe@1.1.2: 5313 - resolution: 5314 - { 5315 - integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==, 5316 - } 3232 + resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 5317 3233 5318 3234 pathe@2.0.3: 5319 - resolution: 5320 - { 5321 - integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==, 5322 - } 3235 + resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 5323 3236 5324 3237 pathval@1.1.1: 5325 - resolution: 5326 - { 5327 - integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, 5328 - } 3238 + resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} 5329 3239 5330 3240 pause-stream@0.0.11: 5331 - resolution: 5332 - { 5333 - integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==, 5334 - } 3241 + resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} 5335 3242 5336 3243 pbkdf2@3.1.5: 5337 - resolution: 5338 - { 5339 - integrity: sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==, 5340 - } 5341 - engines: { node: ">= 0.10" } 3244 + resolution: {integrity: sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==} 3245 + engines: {node: '>= 0.10'} 5342 3246 5343 3247 picocolors@1.1.1: 5344 - resolution: 5345 - { 5346 - integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, 5347 - } 3248 + resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 5348 3249 5349 3250 picomatch@2.3.1: 5350 - resolution: 5351 - { 5352 - integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, 5353 - } 5354 - engines: { node: ">=8.6" } 3251 + resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3252 + engines: {node: '>=8.6'} 5355 3253 5356 3254 picomatch@4.0.3: 5357 - resolution: 5358 - { 5359 - integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==, 5360 - } 5361 - engines: { node: ">=12" } 3255 + resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 3256 + engines: {node: '>=12'} 5362 3257 5363 3258 pino-abstract-transport@1.2.0: 5364 - resolution: 5365 - { 5366 - integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==, 5367 - } 3259 + resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} 5368 3260 5369 3261 pino-std-serializers@6.2.2: 5370 - resolution: 5371 - { 5372 - integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==, 5373 - } 3262 + resolution: {integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==} 5374 3263 5375 3264 pino@8.21.0: 5376 - resolution: 5377 - { 5378 - integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==, 5379 - } 3265 + resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==} 5380 3266 hasBin: true 5381 3267 5382 3268 pkg-dir@5.0.0: 5383 - resolution: 5384 - { 5385 - integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==, 5386 - } 5387 - engines: { node: ">=10" } 3269 + resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} 3270 + engines: {node: '>=10'} 5388 3271 5389 3272 pkg-types@1.3.1: 5390 - resolution: 5391 - { 5392 - integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==, 5393 - } 3273 + resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} 5394 3274 5395 3275 pkg-types@2.3.0: 5396 - resolution: 5397 - { 5398 - integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==, 5399 - } 3276 + resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} 5400 3277 5401 3278 possible-typed-array-names@1.1.0: 5402 - resolution: 5403 - { 5404 - integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==, 5405 - } 5406 - engines: { node: ">= 0.4" } 3279 + resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} 3280 + engines: {node: '>= 0.4'} 5407 3281 5408 3282 postcss@8.5.6: 5409 - resolution: 5410 - { 5411 - integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==, 5412 - } 5413 - engines: { node: ^10 || ^12 || >=14 } 3283 + resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 3284 + engines: {node: ^10 || ^12 || >=14} 5414 3285 5415 3286 prettier@3.3.3: 5416 - resolution: 5417 - { 5418 - integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==, 5419 - } 5420 - engines: { node: ">=14" } 3287 + resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} 3288 + engines: {node: '>=14'} 5421 3289 hasBin: true 5422 3290 5423 3291 prettier@3.6.2: 5424 - resolution: 5425 - { 5426 - integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==, 5427 - } 5428 - engines: { node: ">=14" } 3292 + resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} 3293 + engines: {node: '>=14'} 5429 3294 hasBin: true 5430 3295 5431 3296 pretty-format@29.7.0: 5432 - resolution: 5433 - { 5434 - integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==, 5435 - } 5436 - engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } 3297 + resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} 3298 + engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 5437 3299 5438 3300 prismjs@1.30.0: 5439 - resolution: 5440 - { 5441 - integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==, 5442 - } 5443 - engines: { node: ">=6" } 3301 + resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} 3302 + engines: {node: '>=6'} 5444 3303 5445 3304 process-nextick-args@2.0.1: 5446 - resolution: 5447 - { 5448 - integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, 5449 - } 3305 + resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 5450 3306 5451 3307 process-warning@3.0.0: 5452 - resolution: 5453 - { 5454 - integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==, 5455 - } 3308 + resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==} 5456 3309 5457 3310 process@0.11.10: 5458 - resolution: 5459 - { 5460 - integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, 5461 - } 5462 - engines: { node: ">= 0.6.0" } 3311 + resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 3312 + engines: {node: '>= 0.6.0'} 5463 3313 5464 3314 prompts@2.4.2: 5465 - resolution: 5466 - { 5467 - integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, 5468 - } 5469 - engines: { node: ">= 6" } 3315 + resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 3316 + engines: {node: '>= 6'} 5470 3317 5471 3318 property-information@6.5.0: 5472 - resolution: 5473 - { 5474 - integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==, 5475 - } 3319 + resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 5476 3320 5477 3321 property-information@7.1.0: 5478 - resolution: 5479 - { 5480 - integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==, 5481 - } 3322 + resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} 5482 3323 5483 3324 proxy-addr@2.0.7: 5484 - resolution: 5485 - { 5486 - integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, 5487 - } 5488 - engines: { node: ">= 0.10" } 3325 + resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 3326 + engines: {node: '>= 0.10'} 5489 3327 5490 3328 ps-tree@1.2.0: 5491 - resolution: 5492 - { 5493 - integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==, 5494 - } 5495 - engines: { node: ">= 0.10" } 3329 + resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==} 3330 + engines: {node: '>= 0.10'} 5496 3331 hasBin: true 5497 3332 5498 3333 public-encrypt@4.0.3: 5499 - resolution: 5500 - { 5501 - integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==, 5502 - } 3334 + resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} 5503 3335 5504 3336 punycode@1.4.1: 5505 - resolution: 5506 - { 5507 - integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, 5508 - } 3337 + resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} 5509 3338 5510 3339 qs@6.13.0: 5511 - resolution: 5512 - { 5513 - integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==, 5514 - } 5515 - engines: { node: ">=0.6" } 3340 + resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} 3341 + engines: {node: '>=0.6'} 5516 3342 5517 3343 quansync@0.2.11: 5518 - resolution: 5519 - { 5520 - integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==, 5521 - } 3344 + resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} 5522 3345 5523 3346 querystring-es3@0.2.1: 5524 - resolution: 5525 - { 5526 - integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==, 5527 - } 5528 - engines: { node: ">=0.4.x" } 3347 + resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} 3348 + engines: {node: '>=0.4.x'} 5529 3349 5530 3350 queue-microtask@1.2.3: 5531 - resolution: 5532 - { 5533 - integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, 5534 - } 3351 + resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 5535 3352 5536 3353 quick-format-unescaped@4.0.4: 5537 - resolution: 5538 - { 5539 - integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, 5540 - } 3354 + resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} 5541 3355 5542 3356 radix3@1.1.2: 5543 - resolution: 5544 - { 5545 - integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==, 5546 - } 3357 + resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 5547 3358 5548 3359 randombytes@2.1.0: 5549 - resolution: 5550 - { 5551 - integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, 5552 - } 3360 + resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} 5553 3361 5554 3362 randomfill@1.0.4: 5555 - resolution: 5556 - { 5557 - integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==, 5558 - } 3363 + resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} 5559 3364 5560 3365 range-parser@1.2.1: 5561 - resolution: 5562 - { 5563 - integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, 5564 - } 5565 - engines: { node: ">= 0.6" } 3366 + resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 3367 + engines: {node: '>= 0.6'} 5566 3368 5567 3369 rate-limiter-flexible@2.4.2: 5568 - resolution: 5569 - { 5570 - integrity: sha512-rMATGGOdO1suFyf/mI5LYhts71g1sbdhmd6YvdiXO2gJnd42Tt6QS4JUKJKSWVVkMtBacm6l40FR7Trjo6Iruw==, 5571 - } 3370 + resolution: {integrity: sha512-rMATGGOdO1suFyf/mI5LYhts71g1sbdhmd6YvdiXO2gJnd42Tt6QS4JUKJKSWVVkMtBacm6l40FR7Trjo6Iruw==} 5572 3371 5573 3372 raw-body@2.5.2: 5574 - resolution: 5575 - { 5576 - integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==, 5577 - } 5578 - engines: { node: ">= 0.8" } 3373 + resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} 3374 + engines: {node: '>= 0.8'} 5579 3375 5580 3376 react-dom@18.3.1: 5581 - resolution: 5582 - { 5583 - integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, 5584 - } 3377 + resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 5585 3378 peerDependencies: 5586 3379 react: ^18.3.1 5587 3380 5588 3381 react-dom@19.2.0: 5589 - resolution: 5590 - { 5591 - integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==, 5592 - } 3382 + resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==} 5593 3383 peerDependencies: 5594 3384 react: ^19.2.0 5595 3385 5596 3386 react-error-boundary@6.0.0: 5597 - resolution: 5598 - { 5599 - integrity: sha512-gdlJjD7NWr0IfkPlaREN2d9uUZUlksrfOx7SX62VRerwXbMY6ftGCIZua1VG1aXFNOimhISsTq+Owp725b9SiA==, 5600 - } 3387 + resolution: {integrity: sha512-gdlJjD7NWr0IfkPlaREN2d9uUZUlksrfOx7SX62VRerwXbMY6ftGCIZua1VG1aXFNOimhISsTq+Owp725b9SiA==} 5601 3388 peerDependencies: 5602 - react: ">=16.13.1" 3389 + react: '>=16.13.1' 5603 3390 5604 3391 react-hotkeys-hook@5.1.0: 5605 - resolution: 5606 - { 5607 - integrity: sha512-GCNGXjBzV9buOS3REoQFmSmE4WTvBhYQ0YrAeeMZI83bhXg3dRWsLHXDutcVDdEjwJqJCxk5iewWYX5LtFUd7g==, 5608 - } 3392 + resolution: {integrity: sha512-GCNGXjBzV9buOS3REoQFmSmE4WTvBhYQ0YrAeeMZI83bhXg3dRWsLHXDutcVDdEjwJqJCxk5iewWYX5LtFUd7g==} 5609 3393 peerDependencies: 5610 - react: ">=16.8.0" 5611 - react-dom: ">=16.8.0" 3394 + react: '>=16.8.0' 3395 + react-dom: '>=16.8.0' 5612 3396 5613 3397 react-is@17.0.2: 5614 - resolution: 5615 - { 5616 - integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, 5617 - } 3398 + resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 5618 3399 5619 3400 react-is@18.3.1: 5620 - resolution: 5621 - { 5622 - integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==, 5623 - } 3401 + resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} 5624 3402 5625 3403 react-refresh@0.17.0: 5626 - resolution: 5627 - { 5628 - integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==, 5629 - } 5630 - engines: { node: ">=0.10.0" } 3404 + resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} 3405 + engines: {node: '>=0.10.0'} 5631 3406 5632 3407 react@18.3.1: 5633 - resolution: 5634 - { 5635 - integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, 5636 - } 5637 - engines: { node: ">=0.10.0" } 3408 + resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 3409 + engines: {node: '>=0.10.0'} 5638 3410 5639 3411 react@19.2.0: 5640 - resolution: 5641 - { 5642 - integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==, 5643 - } 5644 - engines: { node: ">=0.10.0" } 3412 + resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} 3413 + engines: {node: '>=0.10.0'} 5645 3414 5646 3415 readable-stream@2.3.8: 5647 - resolution: 5648 - { 5649 - integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, 5650 - } 3416 + resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 5651 3417 5652 3418 readable-stream@3.6.2: 5653 - resolution: 5654 - { 5655 - integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, 5656 - } 5657 - engines: { node: ">= 6" } 3419 + resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 3420 + engines: {node: '>= 6'} 5658 3421 5659 3422 readable-stream@4.7.0: 5660 - resolution: 5661 - { 5662 - integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==, 5663 - } 5664 - engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } 3423 + resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} 3424 + engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 5665 3425 5666 3426 readdirp@4.1.2: 5667 - resolution: 5668 - { 5669 - integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==, 5670 - } 5671 - engines: { node: ">= 14.18.0" } 3427 + resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 3428 + engines: {node: '>= 14.18.0'} 5672 3429 5673 3430 real-require@0.2.0: 5674 - resolution: 5675 - { 5676 - integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==, 5677 - } 5678 - engines: { node: ">= 12.13.0" } 3431 + resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 3432 + engines: {node: '>= 12.13.0'} 5679 3433 5680 3434 regex-recursion@6.0.2: 5681 - resolution: 5682 - { 5683 - integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==, 5684 - } 3435 + resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} 5685 3436 5686 3437 regex-utilities@2.3.0: 5687 - resolution: 5688 - { 5689 - integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==, 5690 - } 3438 + resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 5691 3439 5692 3440 regex@6.0.1: 5693 - resolution: 5694 - { 5695 - integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==, 5696 - } 3441 + resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==} 5697 3442 5698 3443 rehype-parse@9.0.1: 5699 - resolution: 5700 - { 5701 - integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==, 5702 - } 3444 + resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} 5703 3445 5704 3446 rehype-raw@7.0.0: 5705 - resolution: 5706 - { 5707 - integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==, 5708 - } 3447 + resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 5709 3448 5710 3449 rehype-stringify@10.0.1: 5711 - resolution: 5712 - { 5713 - integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==, 5714 - } 3450 + resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} 5715 3451 5716 3452 rehype@13.0.2: 5717 - resolution: 5718 - { 5719 - integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==, 5720 - } 3453 + resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} 5721 3454 5722 3455 remark-gfm@4.0.1: 5723 - resolution: 5724 - { 5725 - integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==, 5726 - } 3456 + resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} 5727 3457 5728 3458 remark-parse@11.0.0: 5729 - resolution: 5730 - { 5731 - integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==, 5732 - } 3459 + resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 5733 3460 5734 3461 remark-rehype@11.1.2: 5735 - resolution: 5736 - { 5737 - integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==, 5738 - } 3462 + resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} 5739 3463 5740 3464 remark-smartypants@3.0.2: 5741 - resolution: 5742 - { 5743 - integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==, 5744 - } 5745 - engines: { node: ">=16.0.0" } 3465 + resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} 3466 + engines: {node: '>=16.0.0'} 5746 3467 5747 3468 remark-stringify@11.0.0: 5748 - resolution: 5749 - { 5750 - integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==, 5751 - } 3469 + resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 5752 3470 5753 3471 require-directory@2.1.1: 5754 - resolution: 5755 - { 5756 - integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, 5757 - } 5758 - engines: { node: ">=0.10.0" } 3472 + resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 3473 + engines: {node: '>=0.10.0'} 5759 3474 5760 3475 require-from-string@2.0.2: 5761 - resolution: 5762 - { 5763 - integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, 5764 - } 5765 - engines: { node: ">=0.10.0" } 3476 + resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 3477 + engines: {node: '>=0.10.0'} 5766 3478 5767 3479 resolve.exports@2.0.3: 5768 - resolution: 5769 - { 5770 - integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==, 5771 - } 5772 - engines: { node: ">=10" } 3480 + resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} 3481 + engines: {node: '>=10'} 5773 3482 5774 3483 resolve@1.22.10: 5775 - resolution: 5776 - { 5777 - integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==, 5778 - } 5779 - engines: { node: ">= 0.4" } 3484 + resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 3485 + engines: {node: '>= 0.4'} 5780 3486 hasBin: true 5781 3487 5782 3488 restructure@3.0.2: 5783 - resolution: 5784 - { 5785 - integrity: sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==, 5786 - } 3489 + resolution: {integrity: sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==} 5787 3490 5788 3491 retext-latin@4.0.0: 5789 - resolution: 5790 - { 5791 - integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==, 5792 - } 3492 + resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} 5793 3493 5794 3494 retext-smartypants@6.2.0: 5795 - resolution: 5796 - { 5797 - integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==, 5798 - } 3495 + resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} 5799 3496 5800 3497 retext-stringify@4.0.0: 5801 - resolution: 5802 - { 5803 - integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==, 5804 - } 3498 + resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} 5805 3499 5806 3500 retext@9.0.0: 5807 - resolution: 5808 - { 5809 - integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==, 5810 - } 3501 + resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} 5811 3502 5812 3503 reusify@1.1.0: 5813 - resolution: 5814 - { 5815 - integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==, 5816 - } 5817 - engines: { iojs: ">=1.0.0", node: ">=0.10.0" } 3504 + resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 3505 + engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 5818 3506 5819 3507 ripemd160@2.0.3: 5820 - resolution: 5821 - { 5822 - integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==, 5823 - } 5824 - engines: { node: ">= 0.8" } 3508 + resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==} 3509 + engines: {node: '>= 0.8'} 5825 3510 5826 3511 rollup@4.52.4: 5827 - resolution: 5828 - { 5829 - integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==, 5830 - } 5831 - engines: { node: ">=18.0.0", npm: ">=8.0.0" } 3512 + resolution: {integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==} 3513 + engines: {node: '>=18.0.0', npm: '>=8.0.0'} 5832 3514 hasBin: true 5833 3515 5834 3516 rtl-css-js@1.16.1: 5835 - resolution: 5836 - { 5837 - integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==, 5838 - } 3517 + resolution: {integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==} 5839 3518 5840 3519 run-parallel@1.2.0: 5841 - resolution: 5842 - { 5843 - integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, 5844 - } 3520 + resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 5845 3521 5846 3522 rxjs@7.8.2: 5847 - resolution: 5848 - { 5849 - integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==, 5850 - } 3523 + resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} 5851 3524 5852 3525 safe-buffer@5.1.2: 5853 - resolution: 5854 - { 5855 - integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, 5856 - } 3526 + resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 5857 3527 5858 3528 safe-buffer@5.2.1: 5859 - resolution: 5860 - { 5861 - integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, 5862 - } 3529 + resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 5863 3530 5864 3531 safe-regex-test@1.1.0: 5865 - resolution: 5866 - { 5867 - integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==, 5868 - } 5869 - engines: { node: ">= 0.4" } 3532 + resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 3533 + engines: {node: '>= 0.4'} 5870 3534 5871 3535 safe-stable-stringify@2.5.0: 5872 - resolution: 5873 - { 5874 - integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==, 5875 - } 5876 - engines: { node: ">=10" } 3536 + resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} 3537 + engines: {node: '>=10'} 5877 3538 5878 3539 safer-buffer@2.1.2: 5879 - resolution: 5880 - { 5881 - integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, 5882 - } 3540 + resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 5883 3541 5884 3542 scheduler@0.23.2: 5885 - resolution: 5886 - { 5887 - integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, 5888 - } 3543 + resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 5889 3544 5890 3545 scheduler@0.27.0: 5891 - resolution: 5892 - { 5893 - integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==, 5894 - } 3546 + resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} 5895 3547 5896 3548 semver@6.3.1: 5897 - resolution: 5898 - { 5899 - integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, 5900 - } 3549 + resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 5901 3550 hasBin: true 5902 3551 5903 3552 semver@7.7.2: 5904 - resolution: 5905 - { 5906 - integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==, 5907 - } 5908 - engines: { node: ">=10" } 3553 + resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 3554 + engines: {node: '>=10'} 5909 3555 hasBin: true 5910 3556 5911 3557 send@0.19.0: 5912 - resolution: 5913 - { 5914 - integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==, 5915 - } 5916 - engines: { node: ">= 0.8.0" } 3558 + resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} 3559 + engines: {node: '>= 0.8.0'} 5917 3560 5918 3561 serve-static@1.16.2: 5919 - resolution: 5920 - { 5921 - integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==, 5922 - } 5923 - engines: { node: ">= 0.8.0" } 3562 + resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} 3563 + engines: {node: '>= 0.8.0'} 5924 3564 5925 3565 set-function-length@1.2.2: 5926 - resolution: 5927 - { 5928 - integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, 5929 - } 5930 - engines: { node: ">= 0.4" } 3566 + resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 3567 + engines: {node: '>= 0.4'} 5931 3568 5932 3569 setimmediate@1.0.5: 5933 - resolution: 5934 - { 5935 - integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, 5936 - } 3570 + resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} 5937 3571 5938 3572 setprototypeof@1.2.0: 5939 - resolution: 5940 - { 5941 - integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, 5942 - } 3573 + resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 5943 3574 5944 3575 sha.js@2.4.12: 5945 - resolution: 5946 - { 5947 - integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==, 5948 - } 5949 - engines: { node: ">= 0.10" } 3576 + resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==} 3577 + engines: {node: '>= 0.10'} 5950 3578 hasBin: true 5951 3579 5952 3580 sharp@0.34.4: 5953 - resolution: 5954 - { 5955 - integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==, 5956 - } 5957 - engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 3581 + resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==} 3582 + engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 5958 3583 5959 3584 shebang-command@2.0.0: 5960 - resolution: 5961 - { 5962 - integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, 5963 - } 5964 - engines: { node: ">=8" } 3585 + resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3586 + engines: {node: '>=8'} 5965 3587 5966 3588 shebang-regex@3.0.0: 5967 - resolution: 5968 - { 5969 - integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, 5970 - } 5971 - engines: { node: ">=8" } 3589 + resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3590 + engines: {node: '>=8'} 5972 3591 5973 3592 shell-quote@1.8.3: 5974 - resolution: 5975 - { 5976 - integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==, 5977 - } 5978 - engines: { node: ">= 0.4" } 3593 + resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} 3594 + engines: {node: '>= 0.4'} 5979 3595 5980 3596 shiki@3.13.0: 5981 - resolution: 5982 - { 5983 - integrity: sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==, 5984 - } 3597 + resolution: {integrity: sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==} 5985 3598 5986 3599 side-channel-list@1.0.0: 5987 - resolution: 5988 - { 5989 - integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==, 5990 - } 5991 - engines: { node: ">= 0.4" } 3600 + resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 3601 + engines: {node: '>= 0.4'} 5992 3602 5993 3603 side-channel-map@1.0.1: 5994 - resolution: 5995 - { 5996 - integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==, 5997 - } 5998 - engines: { node: ">= 0.4" } 3604 + resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 3605 + engines: {node: '>= 0.4'} 5999 3606 6000 3607 side-channel-weakmap@1.0.2: 6001 - resolution: 6002 - { 6003 - integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==, 6004 - } 6005 - engines: { node: ">= 0.4" } 3608 + resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 3609 + engines: {node: '>= 0.4'} 6006 3610 6007 3611 side-channel@1.1.0: 6008 - resolution: 6009 - { 6010 - integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==, 6011 - } 6012 - engines: { node: ">= 0.4" } 3612 + resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 3613 + engines: {node: '>= 0.4'} 6013 3614 6014 3615 siginfo@2.0.0: 6015 - resolution: 6016 - { 6017 - integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==, 6018 - } 3616 + resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 6019 3617 6020 3618 signal-exit@4.1.0: 6021 - resolution: 6022 - { 6023 - integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, 6024 - } 6025 - engines: { node: ">=14" } 3619 + resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 3620 + engines: {node: '>=14'} 6026 3621 6027 3622 sisteransi@1.0.5: 6028 - resolution: 6029 - { 6030 - integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, 6031 - } 3623 + resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 6032 3624 6033 3625 slash@5.1.0: 6034 - resolution: 6035 - { 6036 - integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==, 6037 - } 6038 - engines: { node: ">=14.16" } 3626 + resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 3627 + engines: {node: '>=14.16'} 6039 3628 6040 3629 smol-toml@1.4.2: 6041 - resolution: 6042 - { 6043 - integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==, 6044 - } 6045 - engines: { node: ">= 18" } 3630 + resolution: {integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==} 3631 + engines: {node: '>= 18'} 6046 3632 6047 3633 sonic-boom@3.8.1: 6048 - resolution: 6049 - { 6050 - integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==, 6051 - } 3634 + resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==} 6052 3635 6053 3636 source-map-js@1.2.1: 6054 - resolution: 6055 - { 6056 - integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, 6057 - } 6058 - engines: { node: ">=0.10.0" } 3637 + resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 3638 + engines: {node: '>=0.10.0'} 6059 3639 6060 3640 space-separated-tokens@2.0.2: 6061 - resolution: 6062 - { 6063 - integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, 6064 - } 3641 + resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 6065 3642 6066 3643 split2@4.2.0: 6067 - resolution: 6068 - { 6069 - integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, 6070 - } 6071 - engines: { node: ">= 10.x" } 3644 + resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 3645 + engines: {node: '>= 10.x'} 6072 3646 6073 3647 split@0.3.3: 6074 - resolution: 6075 - { 6076 - integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==, 6077 - } 3648 + resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} 6078 3649 6079 3650 stackback@0.0.2: 6080 - resolution: 6081 - { 6082 - integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==, 6083 - } 3651 + resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 6084 3652 6085 3653 statuses@2.0.1: 6086 - resolution: 6087 - { 6088 - integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, 6089 - } 6090 - engines: { node: ">= 0.8" } 3654 + resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 3655 + engines: {node: '>= 0.8'} 6091 3656 6092 3657 std-env@3.9.0: 6093 - resolution: 6094 - { 6095 - integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==, 6096 - } 3658 + resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} 6097 3659 6098 3660 stream-browserify@3.0.0: 6099 - resolution: 6100 - { 6101 - integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==, 6102 - } 3661 + resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} 6103 3662 6104 3663 stream-combiner@0.0.4: 6105 - resolution: 6106 - { 6107 - integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==, 6108 - } 3664 + resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} 6109 3665 6110 3666 stream-http@3.2.0: 6111 - resolution: 6112 - { 6113 - integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==, 6114 - } 3667 + resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==} 6115 3668 6116 3669 string-argv@0.3.2: 6117 - resolution: 6118 - { 6119 - integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, 6120 - } 6121 - engines: { node: ">=0.6.19" } 3670 + resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 3671 + engines: {node: '>=0.6.19'} 6122 3672 6123 3673 string-width@4.2.3: 6124 - resolution: 6125 - { 6126 - integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, 6127 - } 6128 - engines: { node: ">=8" } 3674 + resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 3675 + engines: {node: '>=8'} 6129 3676 6130 3677 string-width@7.2.0: 6131 - resolution: 6132 - { 6133 - integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, 6134 - } 6135 - engines: { node: ">=18" } 3678 + resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 3679 + engines: {node: '>=18'} 6136 3680 6137 3681 string_decoder@1.1.1: 6138 - resolution: 6139 - { 6140 - integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, 6141 - } 3682 + resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 6142 3683 6143 3684 string_decoder@1.3.0: 6144 - resolution: 6145 - { 6146 - integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, 6147 - } 3685 + resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 6148 3686 6149 3687 stringify-entities@4.0.4: 6150 - resolution: 6151 - { 6152 - integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==, 6153 - } 3688 + resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 6154 3689 6155 3690 strip-ansi@6.0.1: 6156 - resolution: 6157 - { 6158 - integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, 6159 - } 6160 - engines: { node: ">=8" } 3691 + resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3692 + engines: {node: '>=8'} 6161 3693 6162 3694 strip-ansi@7.1.2: 6163 - resolution: 6164 - { 6165 - integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==, 6166 - } 6167 - engines: { node: ">=12" } 3695 + resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} 3696 + engines: {node: '>=12'} 6168 3697 6169 3698 strip-final-newline@3.0.0: 6170 - resolution: 6171 - { 6172 - integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, 6173 - } 6174 - engines: { node: ">=12" } 3699 + resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 3700 + engines: {node: '>=12'} 6175 3701 6176 3702 strip-literal@2.1.1: 6177 - resolution: 6178 - { 6179 - integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==, 6180 - } 3703 + resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==} 6181 3704 6182 3705 stylis@4.3.6: 6183 - resolution: 6184 - { 6185 - integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==, 6186 - } 3706 + resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==} 6187 3707 6188 3708 supports-color@7.2.0: 6189 - resolution: 6190 - { 6191 - integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, 6192 - } 6193 - engines: { node: ">=8" } 3709 + resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3710 + engines: {node: '>=8'} 6194 3711 6195 3712 supports-color@8.1.1: 6196 - resolution: 6197 - { 6198 - integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, 6199 - } 6200 - engines: { node: ">=10" } 3713 + resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} 3714 + engines: {node: '>=10'} 6201 3715 6202 3716 supports-preserve-symlinks-flag@1.0.0: 6203 - resolution: 6204 - { 6205 - integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, 6206 - } 6207 - engines: { node: ">= 0.4" } 3717 + resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 3718 + engines: {node: '>= 0.4'} 6208 3719 6209 3720 swagger-ui-dist@5.29.3: 6210 - resolution: 6211 - { 6212 - integrity: sha512-U99f/2YocRA2Mxqx3eUBRhQonWVtE5dIvMs0Zlsn4a4ip8awMq0JxXhU+Sidtna2WlZrHbK2Rro3RZvYUymRbA==, 6213 - } 3721 + resolution: {integrity: sha512-U99f/2YocRA2Mxqx3eUBRhQonWVtE5dIvMs0Zlsn4a4ip8awMq0JxXhU+Sidtna2WlZrHbK2Rro3RZvYUymRbA==} 6214 3722 6215 3723 tabster@8.5.6: 6216 - resolution: 6217 - { 6218 - integrity: sha512-2vfrRGrx8O9BjdrtSlVA5fvpmbq5HQBRN13XFRg6LAvZ1Fr3QdBnswgT4YgFS5Bhoo5nxwgjRaRueI2Us/dv7g==, 6219 - } 3724 + resolution: {integrity: sha512-2vfrRGrx8O9BjdrtSlVA5fvpmbq5HQBRN13XFRg6LAvZ1Fr3QdBnswgT4YgFS5Bhoo5nxwgjRaRueI2Us/dv7g==} 6220 3725 6221 3726 tar@7.5.1: 6222 - resolution: 6223 - { 6224 - integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==, 6225 - } 6226 - engines: { node: ">=18" } 3727 + resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==} 3728 + engines: {node: '>=18'} 6227 3729 6228 3730 temporal-polyfill@0.3.0: 6229 - resolution: 6230 - { 6231 - integrity: sha512-qNsTkX9K8hi+FHDfHmf22e/OGuXmfBm9RqNismxBrnSmZVJKegQ+HYYXT+R7Ha8F/YSm2Y34vmzD4cxMu2u95g==, 6232 - } 3731 + resolution: {integrity: sha512-qNsTkX9K8hi+FHDfHmf22e/OGuXmfBm9RqNismxBrnSmZVJKegQ+HYYXT+R7Ha8F/YSm2Y34vmzD4cxMu2u95g==} 6233 3732 6234 3733 temporal-spec@0.3.0: 6235 - resolution: 6236 - { 6237 - integrity: sha512-n+noVpIqz4hYgFSMOSiINNOUOMFtV5cZQNCmmszA6GiVFVRt3G7AqVyhXjhCSmowvQn+NsGn+jMDMKJYHd3bSQ==, 6238 - } 3734 + resolution: {integrity: sha512-n+noVpIqz4hYgFSMOSiINNOUOMFtV5cZQNCmmszA6GiVFVRt3G7AqVyhXjhCSmowvQn+NsGn+jMDMKJYHd3bSQ==} 6239 3735 6240 3736 thread-stream@2.7.0: 6241 - resolution: 6242 - { 6243 - integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==, 6244 - } 3737 + resolution: {integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==} 6245 3738 6246 3739 through@2.3.8: 6247 - resolution: 6248 - { 6249 - integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, 6250 - } 3740 + resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 6251 3741 6252 3742 timers-browserify@2.0.12: 6253 - resolution: 6254 - { 6255 - integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==, 6256 - } 6257 - engines: { node: ">=0.6.0" } 3743 + resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} 3744 + engines: {node: '>=0.6.0'} 6258 3745 6259 3746 tiny-inflate@1.0.3: 6260 - resolution: 6261 - { 6262 - integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==, 6263 - } 3747 + resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} 6264 3748 6265 3749 tinybench@2.9.0: 6266 - resolution: 6267 - { 6268 - integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==, 6269 - } 3750 + resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 6270 3751 6271 3752 tinyexec@0.3.2: 6272 - resolution: 6273 - { 6274 - integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==, 6275 - } 3753 + resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 6276 3754 6277 3755 tinyglobby@0.2.15: 6278 - resolution: 6279 - { 6280 - integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==, 6281 - } 6282 - engines: { node: ">=12.0.0" } 3756 + resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 3757 + engines: {node: '>=12.0.0'} 6283 3758 6284 3759 tinypool@0.8.4: 6285 - resolution: 6286 - { 6287 - integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==, 6288 - } 6289 - engines: { node: ">=14.0.0" } 3760 + resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} 3761 + engines: {node: '>=14.0.0'} 6290 3762 6291 3763 tinyspy@2.2.1: 6292 - resolution: 6293 - { 6294 - integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==, 6295 - } 6296 - engines: { node: ">=14.0.0" } 3764 + resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} 3765 + engines: {node: '>=14.0.0'} 6297 3766 6298 3767 to-buffer@1.2.2: 6299 - resolution: 6300 - { 6301 - integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==, 6302 - } 6303 - engines: { node: ">= 0.4" } 3768 + resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==} 3769 + engines: {node: '>= 0.4'} 6304 3770 6305 3771 to-regex-range@5.0.1: 6306 - resolution: 6307 - { 6308 - integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, 6309 - } 6310 - engines: { node: ">=8.0" } 3772 + resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3773 + engines: {node: '>=8.0'} 6311 3774 6312 3775 toidentifier@1.0.1: 6313 - resolution: 6314 - { 6315 - integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, 6316 - } 6317 - engines: { node: ">=0.6" } 3776 + resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 3777 + engines: {node: '>=0.6'} 6318 3778 6319 3779 tr46@0.0.3: 6320 - resolution: 6321 - { 6322 - integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, 6323 - } 3780 + resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 6324 3781 6325 3782 tree-kill@1.2.2: 6326 - resolution: 6327 - { 6328 - integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, 6329 - } 3783 + resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 6330 3784 hasBin: true 6331 3785 6332 3786 trim-lines@3.0.1: 6333 - resolution: 6334 - { 6335 - integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==, 6336 - } 3787 + resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 6337 3788 6338 3789 trough@2.2.0: 6339 - resolution: 6340 - { 6341 - integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, 6342 - } 3790 + resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 6343 3791 6344 3792 ts-morph@24.0.0: 6345 - resolution: 6346 - { 6347 - integrity: sha512-2OAOg/Ob5yx9Et7ZX4CvTCc0UFoZHwLEJ+dpDPSUi5TgwwlTlX47w+iFRrEwzUZwYACjq83cgjS/Da50Ga37uw==, 6348 - } 3793 + resolution: {integrity: sha512-2OAOg/Ob5yx9Et7ZX4CvTCc0UFoZHwLEJ+dpDPSUi5TgwwlTlX47w+iFRrEwzUZwYACjq83cgjS/Da50Ga37uw==} 6349 3794 6350 3795 tsc-watch@7.2.0: 6351 - resolution: 6352 - { 6353 - integrity: sha512-4gRFawQD1cVSaILvG7wl2x6NtteKbS2dGBMbL7Q6n1ldLIOKXCJUoEwUXdGuee4dp+zcnA6tukBBLz1lZrNI9w==, 6354 - } 6355 - engines: { node: ">=12.12.0" } 3796 + resolution: {integrity: sha512-4gRFawQD1cVSaILvG7wl2x6NtteKbS2dGBMbL7Q6n1ldLIOKXCJUoEwUXdGuee4dp+zcnA6tukBBLz1lZrNI9w==} 3797 + engines: {node: '>=12.12.0'} 6356 3798 hasBin: true 6357 3799 peerDependencies: 6358 - typescript: "*" 3800 + typescript: '*' 6359 3801 6360 3802 tsconfck@3.1.6: 6361 - resolution: 6362 - { 6363 - integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==, 6364 - } 6365 - engines: { node: ^18 || >=20 } 3803 + resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} 3804 + engines: {node: ^18 || >=20} 6366 3805 hasBin: true 6367 3806 peerDependencies: 6368 3807 typescript: ^5.0.0 ··· 6371 3810 optional: true 6372 3811 6373 3812 tslib@2.8.1: 6374 - resolution: 6375 - { 6376 - integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, 6377 - } 3813 + resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 6378 3814 6379 3815 tty-browserify@0.0.1: 6380 - resolution: 6381 - { 6382 - integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==, 6383 - } 3816 + resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} 6384 3817 6385 3818 type-detect@4.1.0: 6386 - resolution: 6387 - { 6388 - integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==, 6389 - } 6390 - engines: { node: ">=4" } 3819 + resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} 3820 + engines: {node: '>=4'} 6391 3821 6392 3822 type-fest@4.41.0: 6393 - resolution: 6394 - { 6395 - integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==, 6396 - } 6397 - engines: { node: ">=16" } 3823 + resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} 3824 + engines: {node: '>=16'} 6398 3825 6399 3826 type-is@1.6.18: 6400 - resolution: 6401 - { 6402 - integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, 6403 - } 6404 - engines: { node: ">= 0.6" } 3827 + resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} 3828 + engines: {node: '>= 0.6'} 6405 3829 6406 3830 typed-array-buffer@1.0.3: 6407 - resolution: 6408 - { 6409 - integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==, 6410 - } 6411 - engines: { node: ">= 0.4" } 3831 + resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} 3832 + engines: {node: '>= 0.4'} 6412 3833 6413 3834 typescript@5.9.3: 6414 - resolution: 6415 - { 6416 - integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==, 6417 - } 6418 - engines: { node: ">=14.17" } 3835 + resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} 3836 + engines: {node: '>=14.17'} 6419 3837 hasBin: true 6420 3838 6421 3839 ufo@1.6.1: 6422 - resolution: 6423 - { 6424 - integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==, 6425 - } 3840 + resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} 6426 3841 6427 3842 uint8arrays@3.0.0: 6428 - resolution: 6429 - { 6430 - integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==, 6431 - } 3843 + resolution: {integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==} 6432 3844 6433 3845 ultrahtml@1.6.0: 6434 - resolution: 6435 - { 6436 - integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==, 6437 - } 3846 + resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} 6438 3847 6439 3848 uncrypto@0.1.3: 6440 - resolution: 6441 - { 6442 - integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==, 6443 - } 3849 + resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 6444 3850 6445 3851 undici-types@6.21.0: 6446 - resolution: 6447 - { 6448 - integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==, 6449 - } 3852 + resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} 6450 3853 6451 3854 unicode-properties@1.4.1: 6452 - resolution: 6453 - { 6454 - integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==, 6455 - } 3855 + resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==} 6456 3856 6457 3857 unicode-trie@2.0.0: 6458 - resolution: 6459 - { 6460 - integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==, 6461 - } 3858 + resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} 6462 3859 6463 3860 unicorn-magic@0.3.0: 6464 - resolution: 6465 - { 6466 - integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==, 6467 - } 6468 - engines: { node: ">=18" } 3861 + resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} 3862 + engines: {node: '>=18'} 6469 3863 6470 3864 unified@11.0.5: 6471 - resolution: 6472 - { 6473 - integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==, 6474 - } 3865 + resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 6475 3866 6476 3867 unifont@0.5.2: 6477 - resolution: 6478 - { 6479 - integrity: sha512-LzR4WUqzH9ILFvjLAUU7dK3Lnou/qd5kD+IakBtBK4S15/+x2y9VX+DcWQv6s551R6W+vzwgVS6tFg3XggGBgg==, 6480 - } 3868 + resolution: {integrity: sha512-LzR4WUqzH9ILFvjLAUU7dK3Lnou/qd5kD+IakBtBK4S15/+x2y9VX+DcWQv6s551R6W+vzwgVS6tFg3XggGBgg==} 6481 3869 6482 3870 unist-util-find-after@5.0.0: 6483 - resolution: 6484 - { 6485 - integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==, 6486 - } 3871 + resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 6487 3872 6488 3873 unist-util-is@6.0.0: 6489 - resolution: 6490 - { 6491 - integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==, 6492 - } 3874 + resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 6493 3875 6494 3876 unist-util-modify-children@4.0.0: 6495 - resolution: 6496 - { 6497 - integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==, 6498 - } 3877 + resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 6499 3878 6500 3879 unist-util-position@5.0.0: 6501 - resolution: 6502 - { 6503 - integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, 6504 - } 3880 + resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 6505 3881 6506 3882 unist-util-remove-position@5.0.0: 6507 - resolution: 6508 - { 6509 - integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==, 6510 - } 3883 + resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 6511 3884 6512 3885 unist-util-stringify-position@4.0.0: 6513 - resolution: 6514 - { 6515 - integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, 6516 - } 3886 + resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 6517 3887 6518 3888 unist-util-visit-children@3.0.0: 6519 - resolution: 6520 - { 6521 - integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==, 6522 - } 3889 + resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} 6523 3890 6524 3891 unist-util-visit-parents@6.0.1: 6525 - resolution: 6526 - { 6527 - integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, 6528 - } 3892 + resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 6529 3893 6530 3894 unist-util-visit@5.0.0: 6531 - resolution: 6532 - { 6533 - integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==, 6534 - } 3895 + resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 6535 3896 6536 3897 unpipe@1.0.0: 6537 - resolution: 6538 - { 6539 - integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, 6540 - } 6541 - engines: { node: ">= 0.8" } 3898 + resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 3899 + engines: {node: '>= 0.8'} 6542 3900 6543 3901 unstorage@1.17.1: 6544 - resolution: 6545 - { 6546 - integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==, 6547 - } 3902 + resolution: {integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==} 6548 3903 peerDependencies: 6549 - "@azure/app-configuration": ^1.8.0 6550 - "@azure/cosmos": ^4.2.0 6551 - "@azure/data-tables": ^13.3.0 6552 - "@azure/identity": ^4.6.0 6553 - "@azure/keyvault-secrets": ^4.9.0 6554 - "@azure/storage-blob": ^12.26.0 6555 - "@capacitor/preferences": ^6.0.3 || ^7.0.0 6556 - "@deno/kv": ">=0.9.0" 6557 - "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 6558 - "@planetscale/database": ^1.19.0 6559 - "@upstash/redis": ^1.34.3 6560 - "@vercel/blob": ">=0.27.1" 6561 - "@vercel/functions": ^2.2.12 || ^3.0.0 6562 - "@vercel/kv": ^1.0.1 3904 + '@azure/app-configuration': ^1.8.0 3905 + '@azure/cosmos': ^4.2.0 3906 + '@azure/data-tables': ^13.3.0 3907 + '@azure/identity': ^4.6.0 3908 + '@azure/keyvault-secrets': ^4.9.0 3909 + '@azure/storage-blob': ^12.26.0 3910 + '@capacitor/preferences': ^6.0.3 || ^7.0.0 3911 + '@deno/kv': '>=0.9.0' 3912 + '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 3913 + '@planetscale/database': ^1.19.0 3914 + '@upstash/redis': ^1.34.3 3915 + '@vercel/blob': '>=0.27.1' 3916 + '@vercel/functions': ^2.2.12 || ^3.0.0 3917 + '@vercel/kv': ^1.0.1 6563 3918 aws4fetch: ^1.0.20 6564 - db0: ">=0.2.1" 3919 + db0: '>=0.2.1' 6565 3920 idb-keyval: ^6.2.1 6566 3921 ioredis: ^5.4.2 6567 3922 uploadthing: ^7.4.4 6568 3923 peerDependenciesMeta: 6569 - "@azure/app-configuration": 3924 + '@azure/app-configuration': 6570 3925 optional: true 6571 - "@azure/cosmos": 3926 + '@azure/cosmos': 6572 3927 optional: true 6573 - "@azure/data-tables": 3928 + '@azure/data-tables': 6574 3929 optional: true 6575 - "@azure/identity": 3930 + '@azure/identity': 6576 3931 optional: true 6577 - "@azure/keyvault-secrets": 3932 + '@azure/keyvault-secrets': 6578 3933 optional: true 6579 - "@azure/storage-blob": 3934 + '@azure/storage-blob': 6580 3935 optional: true 6581 - "@capacitor/preferences": 3936 + '@capacitor/preferences': 6582 3937 optional: true 6583 - "@deno/kv": 3938 + '@deno/kv': 6584 3939 optional: true 6585 - "@netlify/blobs": 3940 + '@netlify/blobs': 6586 3941 optional: true 6587 - "@planetscale/database": 3942 + '@planetscale/database': 6588 3943 optional: true 6589 - "@upstash/redis": 3944 + '@upstash/redis': 6590 3945 optional: true 6591 - "@vercel/blob": 3946 + '@vercel/blob': 6592 3947 optional: true 6593 - "@vercel/functions": 3948 + '@vercel/functions': 6594 3949 optional: true 6595 - "@vercel/kv": 3950 + '@vercel/kv': 6596 3951 optional: true 6597 3952 aws4fetch: 6598 3953 optional: true ··· 6606 3961 optional: true 6607 3962 6608 3963 update-browserslist-db@1.1.3: 6609 - resolution: 6610 - { 6611 - integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==, 6612 - } 3964 + resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 6613 3965 hasBin: true 6614 3966 peerDependencies: 6615 - browserslist: ">= 4.21.0" 3967 + browserslist: '>= 4.21.0' 6616 3968 6617 3969 url@0.11.4: 6618 - resolution: 6619 - { 6620 - integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==, 6621 - } 6622 - engines: { node: ">= 0.4" } 3970 + resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} 3971 + engines: {node: '>= 0.4'} 6623 3972 6624 3973 use-sync-external-store@1.6.0: 6625 - resolution: 6626 - { 6627 - integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==, 6628 - } 3974 + resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} 6629 3975 peerDependencies: 6630 3976 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 6631 3977 6632 3978 util-deprecate@1.0.2: 6633 - resolution: 6634 - { 6635 - integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, 6636 - } 3979 + resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 6637 3980 6638 3981 util@0.12.5: 6639 - resolution: 6640 - { 6641 - integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==, 6642 - } 3982 + resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} 6643 3983 6644 3984 utils-merge@1.0.1: 6645 - resolution: 6646 - { 6647 - integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, 6648 - } 6649 - engines: { node: ">= 0.4.0" } 3985 + resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} 3986 + engines: {node: '>= 0.4.0'} 6650 3987 6651 3988 vary@1.1.2: 6652 - resolution: 6653 - { 6654 - integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, 6655 - } 6656 - engines: { node: ">= 0.8" } 3989 + resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 3990 + engines: {node: '>= 0.8'} 6657 3991 6658 3992 vfile-location@5.0.3: 6659 - resolution: 6660 - { 6661 - integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==, 6662 - } 3993 + resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 6663 3994 6664 3995 vfile-message@4.0.3: 6665 - resolution: 6666 - { 6667 - integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==, 6668 - } 3996 + resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} 6669 3997 6670 3998 vfile@6.0.3: 6671 - resolution: 6672 - { 6673 - integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==, 6674 - } 3999 + resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 6675 4000 6676 4001 vite-node@1.6.1: 6677 - resolution: 6678 - { 6679 - integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==, 6680 - } 6681 - engines: { node: ^18.0.0 || >=20.0.0 } 4002 + resolution: {integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==} 4003 + engines: {node: ^18.0.0 || >=20.0.0} 6682 4004 hasBin: true 6683 4005 6684 4006 vite@5.4.20: 6685 - resolution: 6686 - { 6687 - integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==, 6688 - } 6689 - engines: { node: ^18.0.0 || >=20.0.0 } 4007 + resolution: {integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==} 4008 + engines: {node: ^18.0.0 || >=20.0.0} 6690 4009 hasBin: true 6691 4010 peerDependencies: 6692 - "@types/node": ^18.0.0 || >=20.0.0 6693 - less: "*" 4011 + '@types/node': ^18.0.0 || >=20.0.0 4012 + less: '*' 6694 4013 lightningcss: ^1.21.0 6695 - sass: "*" 6696 - sass-embedded: "*" 6697 - stylus: "*" 6698 - sugarss: "*" 4014 + sass: '*' 4015 + sass-embedded: '*' 4016 + stylus: '*' 4017 + sugarss: '*' 6699 4018 terser: ^5.4.0 6700 4019 peerDependenciesMeta: 6701 - "@types/node": 4020 + '@types/node': 6702 4021 optional: true 6703 4022 less: 6704 4023 optional: true ··· 6716 4035 optional: true 6717 4036 6718 4037 vite@6.3.6: 6719 - resolution: 6720 - { 6721 - integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==, 6722 - } 6723 - engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } 4038 + resolution: {integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==} 4039 + engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 6724 4040 hasBin: true 6725 4041 peerDependencies: 6726 - "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 6727 - jiti: ">=1.21.0" 6728 - less: "*" 4042 + '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 4043 + jiti: '>=1.21.0' 4044 + less: '*' 6729 4045 lightningcss: ^1.21.0 6730 - sass: "*" 6731 - sass-embedded: "*" 6732 - stylus: "*" 6733 - sugarss: "*" 4046 + sass: '*' 4047 + sass-embedded: '*' 4048 + stylus: '*' 4049 + sugarss: '*' 6734 4050 terser: ^5.16.0 6735 4051 tsx: ^4.8.1 6736 4052 yaml: ^2.4.2 6737 4053 peerDependenciesMeta: 6738 - "@types/node": 4054 + '@types/node': 6739 4055 optional: true 6740 4056 jiti: 6741 4057 optional: true ··· 6759 4075 optional: true 6760 4076 6761 4077 vitefu@1.1.1: 6762 - resolution: 6763 - { 6764 - integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==, 6765 - } 4078 + resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} 6766 4079 peerDependencies: 6767 4080 vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 6768 4081 peerDependenciesMeta: ··· 6770 4083 optional: true 6771 4084 6772 4085 vitest@1.6.1: 6773 - resolution: 6774 - { 6775 - integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==, 6776 - } 6777 - engines: { node: ^18.0.0 || >=20.0.0 } 4086 + resolution: {integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==} 4087 + engines: {node: ^18.0.0 || >=20.0.0} 6778 4088 hasBin: true 6779 4089 peerDependencies: 6780 - "@edge-runtime/vm": "*" 6781 - "@types/node": ^18.0.0 || >=20.0.0 6782 - "@vitest/browser": 1.6.1 6783 - "@vitest/ui": 1.6.1 6784 - happy-dom: "*" 6785 - jsdom: "*" 4090 + '@edge-runtime/vm': '*' 4091 + '@types/node': ^18.0.0 || >=20.0.0 4092 + '@vitest/browser': 1.6.1 4093 + '@vitest/ui': 1.6.1 4094 + happy-dom: '*' 4095 + jsdom: '*' 6786 4096 peerDependenciesMeta: 6787 - "@edge-runtime/vm": 4097 + '@edge-runtime/vm': 6788 4098 optional: true 6789 - "@types/node": 4099 + '@types/node': 6790 4100 optional: true 6791 - "@vitest/browser": 4101 + '@vitest/browser': 6792 4102 optional: true 6793 - "@vitest/ui": 4103 + '@vitest/ui': 6794 4104 optional: true 6795 4105 happy-dom: 6796 4106 optional: true ··· 6798 4108 optional: true 6799 4109 6800 4110 vm-browserify@1.1.2: 6801 - resolution: 6802 - { 6803 - integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==, 6804 - } 4111 + resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} 6805 4112 6806 4113 vscode-jsonrpc@8.2.0: 6807 - resolution: 6808 - { 6809 - integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==, 6810 - } 6811 - engines: { node: ">=14.0.0" } 4114 + resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} 4115 + engines: {node: '>=14.0.0'} 6812 4116 6813 4117 vscode-languageserver-protocol@3.17.5: 6814 - resolution: 6815 - { 6816 - integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==, 6817 - } 4118 + resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} 6818 4119 6819 4120 vscode-languageserver-textdocument@1.0.12: 6820 - resolution: 6821 - { 6822 - integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==, 6823 - } 4121 + resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} 6824 4122 6825 4123 vscode-languageserver-types@3.17.5: 6826 - resolution: 6827 - { 6828 - integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, 6829 - } 4124 + resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} 6830 4125 6831 4126 vscode-languageserver@9.0.1: 6832 - resolution: 6833 - { 6834 - integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==, 6835 - } 4127 + resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} 6836 4128 hasBin: true 6837 4129 6838 4130 web-namespaces@2.0.1: 6839 - resolution: 6840 - { 6841 - integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==, 6842 - } 4131 + resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 6843 4132 6844 4133 webidl-conversions@3.0.1: 6845 - resolution: 6846 - { 6847 - integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, 6848 - } 4134 + resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 6849 4135 6850 4136 whatwg-url@5.0.0: 6851 - resolution: 6852 - { 6853 - integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, 6854 - } 4137 + resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 6855 4138 6856 4139 which-pm-runs@1.1.0: 6857 - resolution: 6858 - { 6859 - integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==, 6860 - } 6861 - engines: { node: ">=4" } 4140 + resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} 4141 + engines: {node: '>=4'} 6862 4142 6863 4143 which-typed-array@1.1.19: 6864 - resolution: 6865 - { 6866 - integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==, 6867 - } 6868 - engines: { node: ">= 0.4" } 4144 + resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} 4145 + engines: {node: '>= 0.4'} 6869 4146 6870 4147 which@2.0.2: 6871 - resolution: 6872 - { 6873 - integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, 6874 - } 6875 - engines: { node: ">= 8" } 4148 + resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 4149 + engines: {node: '>= 8'} 6876 4150 hasBin: true 6877 4151 6878 4152 why-is-node-running@2.3.0: 6879 - resolution: 6880 - { 6881 - integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==, 6882 - } 6883 - engines: { node: ">=8" } 4153 + resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 4154 + engines: {node: '>=8'} 6884 4155 hasBin: true 6885 4156 6886 4157 widest-line@5.0.0: 6887 - resolution: 6888 - { 6889 - integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==, 6890 - } 6891 - engines: { node: ">=18" } 4158 + resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} 4159 + engines: {node: '>=18'} 6892 4160 6893 4161 wrap-ansi@6.2.0: 6894 - resolution: 6895 - { 6896 - integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, 6897 - } 6898 - engines: { node: ">=8" } 4162 + resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 4163 + engines: {node: '>=8'} 6899 4164 6900 4165 wrap-ansi@7.0.0: 6901 - resolution: 6902 - { 6903 - integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, 6904 - } 6905 - engines: { node: ">=10" } 4166 + resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 4167 + engines: {node: '>=10'} 6906 4168 6907 4169 wrap-ansi@9.0.2: 6908 - resolution: 6909 - { 6910 - integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==, 6911 - } 6912 - engines: { node: ">=18" } 4170 + resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} 4171 + engines: {node: '>=18'} 6913 4172 6914 4173 ws@8.18.3: 6915 - resolution: 6916 - { 6917 - integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==, 6918 - } 6919 - engines: { node: ">=10.0.0" } 4174 + resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} 4175 + engines: {node: '>=10.0.0'} 6920 4176 peerDependencies: 6921 4177 bufferutil: ^4.0.1 6922 - utf-8-validate: ">=5.0.2" 4178 + utf-8-validate: '>=5.0.2' 6923 4179 peerDependenciesMeta: 6924 4180 bufferutil: 6925 4181 optional: true ··· 6927 4183 optional: true 6928 4184 6929 4185 xtend@4.0.2: 6930 - resolution: 6931 - { 6932 - integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, 6933 - } 6934 - engines: { node: ">=0.4" } 4186 + resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 4187 + engines: {node: '>=0.4'} 6935 4188 6936 4189 xxhash-wasm@1.1.0: 6937 - resolution: 6938 - { 6939 - integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==, 6940 - } 4190 + resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} 6941 4191 6942 4192 y18n@5.0.8: 6943 - resolution: 6944 - { 6945 - integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, 6946 - } 6947 - engines: { node: ">=10" } 4193 + resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 4194 + engines: {node: '>=10'} 6948 4195 6949 4196 yallist@3.1.1: 6950 - resolution: 6951 - { 6952 - integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, 6953 - } 4197 + resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 6954 4198 6955 4199 yallist@5.0.0: 6956 - resolution: 6957 - { 6958 - integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==, 6959 - } 6960 - engines: { node: ">=18" } 4200 + resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} 4201 + engines: {node: '>=18'} 6961 4202 6962 4203 yaml@2.8.1: 6963 - resolution: 6964 - { 6965 - integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==, 6966 - } 6967 - engines: { node: ">= 14.6" } 4204 + resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} 4205 + engines: {node: '>= 14.6'} 6968 4206 hasBin: true 6969 4207 6970 4208 yargs-parser@21.1.1: 6971 - resolution: 6972 - { 6973 - integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, 6974 - } 6975 - engines: { node: ">=12" } 4209 + resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 4210 + engines: {node: '>=12'} 6976 4211 6977 4212 yargs-parser@22.0.0: 6978 - resolution: 6979 - { 6980 - integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==, 6981 - } 6982 - engines: { node: ^20.19.0 || ^22.12.0 || >=23 } 4213 + resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} 4214 + engines: {node: ^20.19.0 || ^22.12.0 || >=23} 6983 4215 6984 4216 yargs@17.7.2: 6985 - resolution: 6986 - { 6987 - integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, 6988 - } 6989 - engines: { node: ">=12" } 4217 + resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 4218 + engines: {node: '>=12'} 6990 4219 6991 4220 yargs@18.0.0: 6992 - resolution: 6993 - { 6994 - integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==, 6995 - } 6996 - engines: { node: ^20.19.0 || ^22.12.0 || >=23 } 4221 + resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==} 4222 + engines: {node: ^20.19.0 || ^22.12.0 || >=23} 6997 4223 6998 4224 yesno@0.4.0: 6999 - resolution: 7000 - { 7001 - integrity: sha512-tdBxmHvbXPBKYIg81bMCB7bVeDmHkRzk5rVJyYYXurwKkHq/MCd8rz4HSJUP7hW0H2NlXiq8IFiWvYKEHhlotA==, 7002 - } 4225 + resolution: {integrity: sha512-tdBxmHvbXPBKYIg81bMCB7bVeDmHkRzk5rVJyYYXurwKkHq/MCd8rz4HSJUP7hW0H2NlXiq8IFiWvYKEHhlotA==} 7003 4226 7004 4227 yocto-queue@0.1.0: 7005 - resolution: 7006 - { 7007 - integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, 7008 - } 7009 - engines: { node: ">=10" } 4228 + resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 4229 + engines: {node: '>=10'} 7010 4230 7011 4231 yocto-queue@1.2.1: 7012 - resolution: 7013 - { 7014 - integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==, 7015 - } 7016 - engines: { node: ">=12.20" } 4232 + resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} 4233 + engines: {node: '>=12.20'} 7017 4234 7018 4235 yocto-spinner@0.2.3: 7019 - resolution: 7020 - { 7021 - integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==, 7022 - } 7023 - engines: { node: ">=18.19" } 4236 + resolution: {integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==} 4237 + engines: {node: '>=18.19'} 7024 4238 7025 4239 yoctocolors-cjs@2.1.3: 7026 - resolution: 7027 - { 7028 - integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==, 7029 - } 7030 - engines: { node: ">=18" } 4240 + resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} 4241 + engines: {node: '>=18'} 7031 4242 7032 4243 yoctocolors@2.1.2: 7033 - resolution: 7034 - { 7035 - integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==, 7036 - } 7037 - engines: { node: ">=18" } 4244 + resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} 4245 + engines: {node: '>=18'} 7038 4246 7039 4247 zod-to-json-schema@3.24.6: 7040 - resolution: 7041 - { 7042 - integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==, 7043 - } 4248 + resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==} 7044 4249 peerDependencies: 7045 4250 zod: ^3.24.1 7046 4251 7047 4252 zod-to-ts@1.2.0: 7048 - resolution: 7049 - { 7050 - integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==, 7051 - } 4253 + resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} 7052 4254 peerDependencies: 7053 4255 typescript: ^4.9.4 || ^5.0.2 7054 4256 zod: ^3 7055 4257 7056 4258 zod@3.25.76: 7057 - resolution: 7058 - { 7059 - integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==, 7060 - } 4259 + resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 7061 4260 7062 4261 zwitch@2.0.4: 7063 - resolution: 7064 - { 7065 - integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, 7066 - } 4262 + resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 7067 4263 7068 4264 snapshots: 7069 - "@apidevtools/json-schema-ref-parser@14.0.1": 4265 + 4266 + '@apidevtools/json-schema-ref-parser@14.0.1': 7070 4267 dependencies: 7071 - "@types/json-schema": 7.0.15 4268 + '@types/json-schema': 7.0.15 7072 4269 js-yaml: 4.1.0 7073 4270 7074 - "@apidevtools/openapi-schemas@2.1.0": {} 4271 + '@apidevtools/openapi-schemas@2.1.0': {} 7075 4272 7076 - "@apidevtools/swagger-methods@3.0.2": {} 4273 + '@apidevtools/swagger-methods@3.0.2': {} 7077 4274 7078 - "@apidevtools/swagger-parser@12.0.0(openapi-types@12.1.3)": 4275 + '@apidevtools/swagger-parser@12.0.0(openapi-types@12.1.3)': 7079 4276 dependencies: 7080 - "@apidevtools/json-schema-ref-parser": 14.0.1 7081 - "@apidevtools/openapi-schemas": 2.1.0 7082 - "@apidevtools/swagger-methods": 3.0.2 4277 + '@apidevtools/json-schema-ref-parser': 14.0.1 4278 + '@apidevtools/openapi-schemas': 2.1.0 4279 + '@apidevtools/swagger-methods': 3.0.2 7083 4280 ajv: 8.17.1 7084 4281 ajv-draft-04: 1.0.0(ajv@8.17.1) 7085 4282 call-me-maybe: 1.0.2 7086 4283 openapi-types: 12.1.3 7087 4284 7088 - "@astrojs/compiler@2.13.0": {} 4285 + '@astrojs/compiler@2.13.0': {} 7089 4286 7090 - "@astrojs/internal-helpers@0.7.3": {} 4287 + '@astrojs/internal-helpers@0.7.3': {} 7091 4288 7092 - "@astrojs/markdown-remark@6.3.7": 4289 + '@astrojs/markdown-remark@6.3.7': 7093 4290 dependencies: 7094 - "@astrojs/internal-helpers": 0.7.3 7095 - "@astrojs/prism": 3.3.0 4291 + '@astrojs/internal-helpers': 0.7.3 4292 + '@astrojs/prism': 3.3.0 7096 4293 github-slugger: 2.0.0 7097 4294 hast-util-from-html: 2.0.3 7098 4295 hast-util-to-text: 4.0.2 ··· 7115 4312 transitivePeerDependencies: 7116 4313 - supports-color 7117 4314 7118 - "@astrojs/prism@3.3.0": 4315 + '@astrojs/prism@3.3.0': 7119 4316 dependencies: 7120 4317 prismjs: 1.30.0 7121 4318 7122 - "@astrojs/react@4.4.0(@types/node@20.19.19)(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(yaml@2.8.1)": 4319 + '@astrojs/react@4.4.0(@types/node@20.19.19)(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(yaml@2.8.1)': 7123 4320 dependencies: 7124 - "@types/react": 19.2.0 7125 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 7126 - "@vitejs/plugin-react": 4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1)) 4321 + '@types/react': 19.2.0 4322 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 4323 + '@vitejs/plugin-react': 4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1)) 7127 4324 react: 19.2.0 7128 4325 react-dom: 19.2.0(react@19.2.0) 7129 4326 ultrahtml: 1.6.0 7130 4327 vite: 6.3.6(@types/node@20.19.19)(yaml@2.8.1) 7131 4328 transitivePeerDependencies: 7132 - - "@types/node" 4329 + - '@types/node' 7133 4330 - jiti 7134 4331 - less 7135 4332 - lightningcss ··· 7142 4339 - tsx 7143 4340 - yaml 7144 4341 7145 - "@astrojs/telemetry@3.3.0": 4342 + '@astrojs/telemetry@3.3.0': 7146 4343 dependencies: 7147 4344 ci-info: 4.3.0 7148 4345 debug: 4.4.3 ··· 7154 4351 transitivePeerDependencies: 7155 4352 - supports-color 7156 4353 7157 - "@atproto/common-web@0.4.3": 4354 + '@atproto/common-web@0.4.3': 7158 4355 dependencies: 7159 4356 graphemer: 1.4.0 7160 4357 multiformats: 9.9.0 7161 4358 uint8arrays: 3.0.0 7162 4359 zod: 3.25.76 7163 4360 7164 - "@atproto/common@0.4.12": 4361 + '@atproto/common@0.4.12': 7165 4362 dependencies: 7166 - "@atproto/common-web": 0.4.3 7167 - "@ipld/dag-cbor": 7.0.3 4363 + '@atproto/common-web': 0.4.3 4364 + '@ipld/dag-cbor': 7.0.3 7168 4365 cbor-x: 1.6.0 7169 4366 iso-datestring-validator: 2.2.2 7170 4367 multiformats: 9.9.0 7171 4368 pino: 8.21.0 7172 4369 7173 - "@atproto/crypto@0.4.4": 4370 + '@atproto/crypto@0.4.4': 7174 4371 dependencies: 7175 - "@noble/curves": 1.9.7 7176 - "@noble/hashes": 1.8.0 4372 + '@noble/curves': 1.9.7 4373 + '@noble/hashes': 1.8.0 7177 4374 uint8arrays: 3.0.0 7178 4375 7179 - "@atproto/lex-cli@0.9.5": 4376 + '@atproto/lex-cli@0.9.5': 7180 4377 dependencies: 7181 - "@atproto/lexicon": 0.5.1 7182 - "@atproto/syntax": 0.4.1 4378 + '@atproto/lexicon': 0.5.1 4379 + '@atproto/syntax': 0.4.1 7183 4380 chalk: 4.1.2 7184 4381 commander: 9.5.0 7185 4382 prettier: 3.3.3 ··· 7187 4384 yesno: 0.4.0 7188 4385 zod: 3.25.76 7189 4386 7190 - "@atproto/lexicon@0.5.1": 4387 + '@atproto/lexicon@0.5.1': 7191 4388 dependencies: 7192 - "@atproto/common-web": 0.4.3 7193 - "@atproto/syntax": 0.4.1 4389 + '@atproto/common-web': 0.4.3 4390 + '@atproto/syntax': 0.4.1 7194 4391 iso-datestring-validator: 2.2.2 7195 4392 multiformats: 9.9.0 7196 4393 zod: 3.25.76 7197 4394 7198 - "@atproto/syntax@0.4.1": {} 4395 + '@atproto/syntax@0.4.1': {} 7199 4396 7200 - "@atproto/xrpc-server@0.9.5": 4397 + '@atproto/xrpc-server@0.9.5': 7201 4398 dependencies: 7202 - "@atproto/common": 0.4.12 7203 - "@atproto/crypto": 0.4.4 7204 - "@atproto/lexicon": 0.5.1 7205 - "@atproto/xrpc": 0.7.5 4399 + '@atproto/common': 0.4.12 4400 + '@atproto/crypto': 0.4.4 4401 + '@atproto/lexicon': 0.5.1 4402 + '@atproto/xrpc': 0.7.5 7206 4403 cbor-x: 1.6.0 7207 4404 express: 4.21.2 7208 4405 http-errors: 2.0.0 ··· 7216 4413 - supports-color 7217 4414 - utf-8-validate 7218 4415 7219 - "@atproto/xrpc@0.7.5": 4416 + '@atproto/xrpc@0.7.5': 7220 4417 dependencies: 7221 - "@atproto/lexicon": 0.5.1 4418 + '@atproto/lexicon': 0.5.1 7222 4419 zod: 3.25.76 7223 4420 7224 - "@babel/code-frame@7.27.1": 4421 + '@babel/code-frame@7.27.1': 7225 4422 dependencies: 7226 - "@babel/helper-validator-identifier": 7.27.1 4423 + '@babel/helper-validator-identifier': 7.27.1 7227 4424 js-tokens: 4.0.0 7228 4425 picocolors: 1.1.1 7229 4426 7230 - "@babel/compat-data@7.28.4": {} 4427 + '@babel/compat-data@7.28.4': {} 7231 4428 7232 - "@babel/core@7.28.4": 4429 + '@babel/core@7.28.4': 7233 4430 dependencies: 7234 - "@babel/code-frame": 7.27.1 7235 - "@babel/generator": 7.28.3 7236 - "@babel/helper-compilation-targets": 7.27.2 7237 - "@babel/helper-module-transforms": 7.28.3(@babel/core@7.28.4) 7238 - "@babel/helpers": 7.28.4 7239 - "@babel/parser": 7.28.4 7240 - "@babel/template": 7.27.2 7241 - "@babel/traverse": 7.28.4 7242 - "@babel/types": 7.28.4 7243 - "@jridgewell/remapping": 2.3.5 4431 + '@babel/code-frame': 7.27.1 4432 + '@babel/generator': 7.28.3 4433 + '@babel/helper-compilation-targets': 7.27.2 4434 + '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) 4435 + '@babel/helpers': 7.28.4 4436 + '@babel/parser': 7.28.4 4437 + '@babel/template': 7.27.2 4438 + '@babel/traverse': 7.28.4 4439 + '@babel/types': 7.28.4 4440 + '@jridgewell/remapping': 2.3.5 7244 4441 convert-source-map: 2.0.0 7245 4442 debug: 4.4.3 7246 4443 gensync: 1.0.0-beta.2 ··· 7249 4446 transitivePeerDependencies: 7250 4447 - supports-color 7251 4448 7252 - "@babel/generator@7.28.3": 4449 + '@babel/generator@7.28.3': 7253 4450 dependencies: 7254 - "@babel/parser": 7.28.4 7255 - "@babel/types": 7.28.4 7256 - "@jridgewell/gen-mapping": 0.3.13 7257 - "@jridgewell/trace-mapping": 0.3.31 4451 + '@babel/parser': 7.28.4 4452 + '@babel/types': 7.28.4 4453 + '@jridgewell/gen-mapping': 0.3.13 4454 + '@jridgewell/trace-mapping': 0.3.31 7258 4455 jsesc: 3.1.0 7259 4456 7260 - "@babel/helper-compilation-targets@7.27.2": 4457 + '@babel/helper-compilation-targets@7.27.2': 7261 4458 dependencies: 7262 - "@babel/compat-data": 7.28.4 7263 - "@babel/helper-validator-option": 7.27.1 4459 + '@babel/compat-data': 7.28.4 4460 + '@babel/helper-validator-option': 7.27.1 7264 4461 browserslist: 4.26.3 7265 4462 lru-cache: 5.1.1 7266 4463 semver: 6.3.1 7267 4464 7268 - "@babel/helper-globals@7.28.0": {} 4465 + '@babel/helper-globals@7.28.0': {} 7269 4466 7270 - "@babel/helper-module-imports@7.27.1": 4467 + '@babel/helper-module-imports@7.27.1': 7271 4468 dependencies: 7272 - "@babel/traverse": 7.28.4 7273 - "@babel/types": 7.28.4 4469 + '@babel/traverse': 7.28.4 4470 + '@babel/types': 7.28.4 7274 4471 transitivePeerDependencies: 7275 4472 - supports-color 7276 4473 7277 - "@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)": 4474 + '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)': 7278 4475 dependencies: 7279 - "@babel/core": 7.28.4 7280 - "@babel/helper-module-imports": 7.27.1 7281 - "@babel/helper-validator-identifier": 7.27.1 7282 - "@babel/traverse": 7.28.4 4476 + '@babel/core': 7.28.4 4477 + '@babel/helper-module-imports': 7.27.1 4478 + '@babel/helper-validator-identifier': 7.27.1 4479 + '@babel/traverse': 7.28.4 7283 4480 transitivePeerDependencies: 7284 4481 - supports-color 7285 4482 7286 - "@babel/helper-plugin-utils@7.27.1": {} 4483 + '@babel/helper-plugin-utils@7.27.1': {} 7287 4484 7288 - "@babel/helper-string-parser@7.27.1": {} 4485 + '@babel/helper-string-parser@7.27.1': {} 7289 4486 7290 - "@babel/helper-validator-identifier@7.27.1": {} 4487 + '@babel/helper-validator-identifier@7.27.1': {} 7291 4488 7292 - "@babel/helper-validator-option@7.27.1": {} 4489 + '@babel/helper-validator-option@7.27.1': {} 7293 4490 7294 - "@babel/helpers@7.28.4": 4491 + '@babel/helpers@7.28.4': 7295 4492 dependencies: 7296 - "@babel/template": 7.27.2 7297 - "@babel/types": 7.28.4 4493 + '@babel/template': 7.27.2 4494 + '@babel/types': 7.28.4 7298 4495 7299 - "@babel/parser@7.28.4": 4496 + '@babel/parser@7.28.4': 7300 4497 dependencies: 7301 - "@babel/types": 7.28.4 4498 + '@babel/types': 7.28.4 7302 4499 7303 - "@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)": 4500 + '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)': 7304 4501 dependencies: 7305 - "@babel/core": 7.28.4 7306 - "@babel/helper-plugin-utils": 7.27.1 4502 + '@babel/core': 7.28.4 4503 + '@babel/helper-plugin-utils': 7.27.1 7307 4504 7308 - "@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)": 4505 + '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)': 7309 4506 dependencies: 7310 - "@babel/core": 7.28.4 7311 - "@babel/helper-plugin-utils": 7.27.1 4507 + '@babel/core': 7.28.4 4508 + '@babel/helper-plugin-utils': 7.27.1 7312 4509 7313 - "@babel/runtime@7.28.4": {} 4510 + '@babel/runtime@7.28.4': {} 7314 4511 7315 - "@babel/template@7.27.2": 4512 + '@babel/template@7.27.2': 7316 4513 dependencies: 7317 - "@babel/code-frame": 7.27.1 7318 - "@babel/parser": 7.28.4 7319 - "@babel/types": 7.28.4 4514 + '@babel/code-frame': 7.27.1 4515 + '@babel/parser': 7.28.4 4516 + '@babel/types': 7.28.4 7320 4517 7321 - "@babel/traverse@7.28.4": 4518 + '@babel/traverse@7.28.4': 7322 4519 dependencies: 7323 - "@babel/code-frame": 7.27.1 7324 - "@babel/generator": 7.28.3 7325 - "@babel/helper-globals": 7.28.0 7326 - "@babel/parser": 7.28.4 7327 - "@babel/template": 7.27.2 7328 - "@babel/types": 7.28.4 4520 + '@babel/code-frame': 7.27.1 4521 + '@babel/generator': 7.28.3 4522 + '@babel/helper-globals': 7.28.0 4523 + '@babel/parser': 7.28.4 4524 + '@babel/template': 7.27.2 4525 + '@babel/types': 7.28.4 7329 4526 debug: 4.4.3 7330 4527 transitivePeerDependencies: 7331 4528 - supports-color 7332 4529 7333 - "@babel/types@7.28.4": 4530 + '@babel/types@7.28.4': 7334 4531 dependencies: 7335 - "@babel/helper-string-parser": 7.27.1 7336 - "@babel/helper-validator-identifier": 7.27.1 4532 + '@babel/helper-string-parser': 7.27.1 4533 + '@babel/helper-validator-identifier': 7.27.1 7337 4534 7338 - "@capsizecss/unpack@2.4.0": 4535 + '@capsizecss/unpack@2.4.0': 7339 4536 dependencies: 7340 4537 blob-to-buffer: 1.2.9 7341 4538 cross-fetch: 3.2.0 ··· 7343 4540 transitivePeerDependencies: 7344 4541 - encoding 7345 4542 7346 - "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": 4543 + '@cbor-extract/cbor-extract-darwin-arm64@2.2.0': 7347 4544 optional: true 7348 4545 7349 - "@cbor-extract/cbor-extract-darwin-x64@2.2.0": 4546 + '@cbor-extract/cbor-extract-darwin-x64@2.2.0': 7350 4547 optional: true 7351 4548 7352 - "@cbor-extract/cbor-extract-linux-arm64@2.2.0": 4549 + '@cbor-extract/cbor-extract-linux-arm64@2.2.0': 7353 4550 optional: true 7354 4551 7355 - "@cbor-extract/cbor-extract-linux-arm@2.2.0": 4552 + '@cbor-extract/cbor-extract-linux-arm@2.2.0': 7356 4553 optional: true 7357 4554 7358 - "@cbor-extract/cbor-extract-linux-x64@2.2.0": 4555 + '@cbor-extract/cbor-extract-linux-x64@2.2.0': 7359 4556 optional: true 7360 4557 7361 - "@cbor-extract/cbor-extract-win32-x64@2.2.0": 4558 + '@cbor-extract/cbor-extract-win32-x64@2.2.0': 7362 4559 optional: true 7363 4560 7364 - "@ctrl/tinycolor@3.6.1": {} 4561 + '@ctrl/tinycolor@3.6.1': {} 7365 4562 7366 - "@emnapi/runtime@1.5.0": 4563 + '@emnapi/runtime@1.5.0': 7367 4564 dependencies: 7368 4565 tslib: 2.8.1 7369 4566 optional: true 7370 4567 7371 - "@emotion/hash@0.9.2": {} 4568 + '@emotion/hash@0.9.2': {} 7372 4569 7373 - "@esbuild/aix-ppc64@0.21.5": 4570 + '@esbuild/aix-ppc64@0.21.5': 7374 4571 optional: true 7375 4572 7376 - "@esbuild/aix-ppc64@0.25.10": 4573 + '@esbuild/aix-ppc64@0.25.10': 7377 4574 optional: true 7378 4575 7379 - "@esbuild/android-arm64@0.21.5": 4576 + '@esbuild/android-arm64@0.21.5': 7380 4577 optional: true 7381 4578 7382 - "@esbuild/android-arm64@0.25.10": 4579 + '@esbuild/android-arm64@0.25.10': 7383 4580 optional: true 7384 4581 7385 - "@esbuild/android-arm@0.21.5": 4582 + '@esbuild/android-arm@0.21.5': 7386 4583 optional: true 7387 4584 7388 - "@esbuild/android-arm@0.25.10": 4585 + '@esbuild/android-arm@0.25.10': 7389 4586 optional: true 7390 4587 7391 - "@esbuild/android-x64@0.21.5": 4588 + '@esbuild/android-x64@0.21.5': 7392 4589 optional: true 7393 4590 7394 - "@esbuild/android-x64@0.25.10": 4591 + '@esbuild/android-x64@0.25.10': 7395 4592 optional: true 7396 4593 7397 - "@esbuild/darwin-arm64@0.21.5": 4594 + '@esbuild/darwin-arm64@0.21.5': 7398 4595 optional: true 7399 4596 7400 - "@esbuild/darwin-arm64@0.25.10": 4597 + '@esbuild/darwin-arm64@0.25.10': 7401 4598 optional: true 7402 4599 7403 - "@esbuild/darwin-x64@0.21.5": 4600 + '@esbuild/darwin-x64@0.21.5': 7404 4601 optional: true 7405 4602 7406 - "@esbuild/darwin-x64@0.25.10": 4603 + '@esbuild/darwin-x64@0.25.10': 7407 4604 optional: true 7408 4605 7409 - "@esbuild/freebsd-arm64@0.21.5": 4606 + '@esbuild/freebsd-arm64@0.21.5': 7410 4607 optional: true 7411 4608 7412 - "@esbuild/freebsd-arm64@0.25.10": 4609 + '@esbuild/freebsd-arm64@0.25.10': 7413 4610 optional: true 7414 4611 7415 - "@esbuild/freebsd-x64@0.21.5": 4612 + '@esbuild/freebsd-x64@0.21.5': 7416 4613 optional: true 7417 4614 7418 - "@esbuild/freebsd-x64@0.25.10": 4615 + '@esbuild/freebsd-x64@0.25.10': 7419 4616 optional: true 7420 4617 7421 - "@esbuild/linux-arm64@0.21.5": 4618 + '@esbuild/linux-arm64@0.21.5': 7422 4619 optional: true 7423 4620 7424 - "@esbuild/linux-arm64@0.25.10": 4621 + '@esbuild/linux-arm64@0.25.10': 7425 4622 optional: true 7426 4623 7427 - "@esbuild/linux-arm@0.21.5": 4624 + '@esbuild/linux-arm@0.21.5': 7428 4625 optional: true 7429 4626 7430 - "@esbuild/linux-arm@0.25.10": 4627 + '@esbuild/linux-arm@0.25.10': 7431 4628 optional: true 7432 4629 7433 - "@esbuild/linux-ia32@0.21.5": 4630 + '@esbuild/linux-ia32@0.21.5': 7434 4631 optional: true 7435 4632 7436 - "@esbuild/linux-ia32@0.25.10": 4633 + '@esbuild/linux-ia32@0.25.10': 7437 4634 optional: true 7438 4635 7439 - "@esbuild/linux-loong64@0.21.5": 4636 + '@esbuild/linux-loong64@0.21.5': 7440 4637 optional: true 7441 4638 7442 - "@esbuild/linux-loong64@0.25.10": 4639 + '@esbuild/linux-loong64@0.25.10': 7443 4640 optional: true 7444 4641 7445 - "@esbuild/linux-mips64el@0.21.5": 4642 + '@esbuild/linux-mips64el@0.21.5': 7446 4643 optional: true 7447 4644 7448 - "@esbuild/linux-mips64el@0.25.10": 4645 + '@esbuild/linux-mips64el@0.25.10': 7449 4646 optional: true 7450 4647 7451 - "@esbuild/linux-ppc64@0.21.5": 4648 + '@esbuild/linux-ppc64@0.21.5': 7452 4649 optional: true 7453 4650 7454 - "@esbuild/linux-ppc64@0.25.10": 4651 + '@esbuild/linux-ppc64@0.25.10': 7455 4652 optional: true 7456 4653 7457 - "@esbuild/linux-riscv64@0.21.5": 4654 + '@esbuild/linux-riscv64@0.21.5': 7458 4655 optional: true 7459 4656 7460 - "@esbuild/linux-riscv64@0.25.10": 4657 + '@esbuild/linux-riscv64@0.25.10': 7461 4658 optional: true 7462 4659 7463 - "@esbuild/linux-s390x@0.21.5": 4660 + '@esbuild/linux-s390x@0.21.5': 7464 4661 optional: true 7465 4662 7466 - "@esbuild/linux-s390x@0.25.10": 4663 + '@esbuild/linux-s390x@0.25.10': 7467 4664 optional: true 7468 4665 7469 - "@esbuild/linux-x64@0.21.5": 4666 + '@esbuild/linux-x64@0.21.5': 7470 4667 optional: true 7471 4668 7472 - "@esbuild/linux-x64@0.25.10": 4669 + '@esbuild/linux-x64@0.25.10': 7473 4670 optional: true 7474 4671 7475 - "@esbuild/netbsd-arm64@0.25.10": 4672 + '@esbuild/netbsd-arm64@0.25.10': 7476 4673 optional: true 7477 4674 7478 - "@esbuild/netbsd-x64@0.21.5": 4675 + '@esbuild/netbsd-x64@0.21.5': 7479 4676 optional: true 7480 4677 7481 - "@esbuild/netbsd-x64@0.25.10": 4678 + '@esbuild/netbsd-x64@0.25.10': 7482 4679 optional: true 7483 4680 7484 - "@esbuild/openbsd-arm64@0.25.10": 4681 + '@esbuild/openbsd-arm64@0.25.10': 7485 4682 optional: true 7486 4683 7487 - "@esbuild/openbsd-x64@0.21.5": 4684 + '@esbuild/openbsd-x64@0.21.5': 7488 4685 optional: true 7489 4686 7490 - "@esbuild/openbsd-x64@0.25.10": 4687 + '@esbuild/openbsd-x64@0.25.10': 7491 4688 optional: true 7492 4689 7493 - "@esbuild/openharmony-arm64@0.25.10": 4690 + '@esbuild/openharmony-arm64@0.25.10': 7494 4691 optional: true 7495 4692 7496 - "@esbuild/sunos-x64@0.21.5": 4693 + '@esbuild/sunos-x64@0.21.5': 7497 4694 optional: true 7498 4695 7499 - "@esbuild/sunos-x64@0.25.10": 4696 + '@esbuild/sunos-x64@0.25.10': 7500 4697 optional: true 7501 4698 7502 - "@esbuild/win32-arm64@0.21.5": 4699 + '@esbuild/win32-arm64@0.21.5': 7503 4700 optional: true 7504 4701 7505 - "@esbuild/win32-arm64@0.25.10": 4702 + '@esbuild/win32-arm64@0.25.10': 7506 4703 optional: true 7507 4704 7508 - "@esbuild/win32-ia32@0.21.5": 4705 + '@esbuild/win32-ia32@0.21.5': 7509 4706 optional: true 7510 4707 7511 - "@esbuild/win32-ia32@0.25.10": 4708 + '@esbuild/win32-ia32@0.25.10': 7512 4709 optional: true 7513 4710 7514 - "@esbuild/win32-x64@0.21.5": 4711 + '@esbuild/win32-x64@0.21.5': 7515 4712 optional: true 7516 4713 7517 - "@esbuild/win32-x64@0.25.10": 4714 + '@esbuild/win32-x64@0.25.10': 7518 4715 optional: true 7519 4716 7520 - "@floating-ui/core@1.7.3": 4717 + '@floating-ui/core@1.7.3': 7521 4718 dependencies: 7522 - "@floating-ui/utils": 0.2.10 4719 + '@floating-ui/utils': 0.2.10 7523 4720 7524 - "@floating-ui/devtools@0.2.3(@floating-ui/dom@1.7.4)": 4721 + '@floating-ui/devtools@0.2.3(@floating-ui/dom@1.7.4)': 7525 4722 dependencies: 7526 - "@floating-ui/dom": 1.7.4 4723 + '@floating-ui/dom': 1.7.4 7527 4724 7528 - "@floating-ui/dom@1.7.4": 4725 + '@floating-ui/dom@1.7.4': 7529 4726 dependencies: 7530 - "@floating-ui/core": 1.7.3 7531 - "@floating-ui/utils": 0.2.10 4727 + '@floating-ui/core': 1.7.3 4728 + '@floating-ui/utils': 0.2.10 7532 4729 7533 - "@floating-ui/utils@0.2.10": {} 4730 + '@floating-ui/utils@0.2.10': {} 7534 4731 7535 - "@fluentui/keyboard-keys@9.0.8": 4732 + '@fluentui/keyboard-keys@9.0.8': 7536 4733 dependencies: 7537 - "@swc/helpers": 0.5.17 4734 + '@swc/helpers': 0.5.17 7538 4735 7539 - "@fluentui/priority-overflow@9.2.0": 4736 + '@fluentui/priority-overflow@9.2.0': 7540 4737 dependencies: 7541 - "@swc/helpers": 0.5.17 4738 + '@swc/helpers': 0.5.17 7542 4739 7543 - "@fluentui/react-accordion@9.8.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 4740 + '@fluentui/react-accordion@9.8.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7544 4741 dependencies: 7545 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7546 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7547 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7548 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7549 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7550 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7551 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7552 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7553 - "@fluentui/react-theme": 9.2.0 7554 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7555 - "@griffel/react": 1.5.30(react@18.3.1) 7556 - "@swc/helpers": 0.5.17 7557 - "@types/react": 18.3.25 7558 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 4742 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4743 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 4744 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4745 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4746 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4747 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4748 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4749 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4750 + '@fluentui/react-theme': 9.2.0 4751 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4752 + '@griffel/react': 1.5.30(react@18.3.1) 4753 + '@swc/helpers': 0.5.17 4754 + '@types/react': 18.3.25 4755 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7559 4756 react: 18.3.1 7560 4757 react-dom: 18.3.1(react@18.3.1) 7561 4758 transitivePeerDependencies: 7562 4759 - scheduler 7563 4760 7564 - "@fluentui/react-accordion@9.8.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 4761 + '@fluentui/react-accordion@9.8.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7565 4762 dependencies: 7566 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7567 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7568 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7569 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7570 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7571 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7572 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7573 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7574 - "@fluentui/react-theme": 9.2.0 7575 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7576 - "@griffel/react": 1.5.30(react@18.3.1) 7577 - "@swc/helpers": 0.5.17 7578 - "@types/react": 19.2.0 7579 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 4763 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4764 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 4765 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4766 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4767 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4768 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4769 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4770 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4771 + '@fluentui/react-theme': 9.2.0 4772 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4773 + '@griffel/react': 1.5.30(react@18.3.1) 4774 + '@swc/helpers': 0.5.17 4775 + '@types/react': 19.2.0 4776 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7580 4777 react: 18.3.1 7581 4778 react-dom: 18.3.1(react@18.3.1) 7582 4779 transitivePeerDependencies: 7583 4780 - scheduler 7584 4781 7585 - "@fluentui/react-alert@9.0.0-beta.124(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 4782 + '@fluentui/react-alert@9.0.0-beta.124(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7586 4783 dependencies: 7587 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7588 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7589 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7590 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7591 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7592 - "@fluentui/react-theme": 9.2.0 7593 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7594 - "@griffel/react": 1.5.30(react@18.3.1) 7595 - "@swc/helpers": 0.5.17 7596 - "@types/react": 18.3.25 7597 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 4784 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 4785 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4786 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4787 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4788 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4789 + '@fluentui/react-theme': 9.2.0 4790 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4791 + '@griffel/react': 1.5.30(react@18.3.1) 4792 + '@swc/helpers': 0.5.17 4793 + '@types/react': 18.3.25 4794 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7598 4795 react: 18.3.1 7599 4796 react-dom: 18.3.1(react@18.3.1) 7600 4797 transitivePeerDependencies: 7601 4798 - scheduler 7602 4799 7603 - "@fluentui/react-alert@9.0.0-beta.124(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 4800 + '@fluentui/react-alert@9.0.0-beta.124(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7604 4801 dependencies: 7605 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7606 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7607 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7608 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7609 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7610 - "@fluentui/react-theme": 9.2.0 7611 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7612 - "@griffel/react": 1.5.30(react@18.3.1) 7613 - "@swc/helpers": 0.5.17 7614 - "@types/react": 19.2.0 7615 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 4802 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 4803 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4804 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4805 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4806 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4807 + '@fluentui/react-theme': 9.2.0 4808 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4809 + '@griffel/react': 1.5.30(react@18.3.1) 4810 + '@swc/helpers': 0.5.17 4811 + '@types/react': 19.2.0 4812 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7616 4813 react: 18.3.1 7617 4814 react-dom: 18.3.1(react@18.3.1) 7618 4815 transitivePeerDependencies: 7619 4816 - scheduler 7620 4817 7621 - "@fluentui/react-aria@9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4818 + '@fluentui/react-aria@9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7622 4819 dependencies: 7623 - "@fluentui/keyboard-keys": 9.0.8 7624 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7625 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7626 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7627 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7628 - "@swc/helpers": 0.5.17 7629 - "@types/react": 18.3.25 7630 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 4820 + '@fluentui/keyboard-keys': 9.0.8 4821 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4822 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4823 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4824 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4825 + '@swc/helpers': 0.5.17 4826 + '@types/react': 18.3.25 4827 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7631 4828 react: 18.3.1 7632 4829 react-dom: 18.3.1(react@18.3.1) 7633 4830 7634 - "@fluentui/react-aria@9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4831 + '@fluentui/react-aria@9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7635 4832 dependencies: 7636 - "@fluentui/keyboard-keys": 9.0.8 7637 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7638 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7639 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7640 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7641 - "@swc/helpers": 0.5.17 7642 - "@types/react": 19.2.0 7643 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 4833 + '@fluentui/keyboard-keys': 9.0.8 4834 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4835 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4836 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4837 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4838 + '@swc/helpers': 0.5.17 4839 + '@types/react': 19.2.0 4840 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7644 4841 react: 18.3.1 7645 4842 react-dom: 18.3.1(react@18.3.1) 7646 4843 7647 - "@fluentui/react-avatar@9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 4844 + '@fluentui/react-avatar@9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7648 4845 dependencies: 7649 - "@fluentui/react-badge": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7650 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7651 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7652 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7653 - "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7654 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7655 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7656 - "@fluentui/react-theme": 9.2.0 7657 - "@fluentui/react-tooltip": 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7658 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7659 - "@griffel/react": 1.5.30(react@18.3.1) 7660 - "@swc/helpers": 0.5.17 7661 - "@types/react": 18.3.25 7662 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 4846 + '@fluentui/react-badge': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4847 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 4848 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4849 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4850 + '@fluentui/react-popover': 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 4851 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4852 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4853 + '@fluentui/react-theme': 9.2.0 4854 + '@fluentui/react-tooltip': 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4855 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4856 + '@griffel/react': 1.5.30(react@18.3.1) 4857 + '@swc/helpers': 0.5.17 4858 + '@types/react': 18.3.25 4859 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7663 4860 react: 18.3.1 7664 4861 react-dom: 18.3.1(react@18.3.1) 7665 4862 transitivePeerDependencies: 7666 4863 - scheduler 7667 4864 7668 - "@fluentui/react-avatar@9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 4865 + '@fluentui/react-avatar@9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7669 4866 dependencies: 7670 - "@fluentui/react-badge": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7671 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7672 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7673 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7674 - "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7675 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7676 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7677 - "@fluentui/react-theme": 9.2.0 7678 - "@fluentui/react-tooltip": 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7679 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7680 - "@griffel/react": 1.5.30(react@18.3.1) 7681 - "@swc/helpers": 0.5.17 7682 - "@types/react": 19.2.0 7683 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 4867 + '@fluentui/react-badge': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4868 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 4869 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4870 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4871 + '@fluentui/react-popover': 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 4872 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4873 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4874 + '@fluentui/react-theme': 9.2.0 4875 + '@fluentui/react-tooltip': 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4876 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4877 + '@griffel/react': 1.5.30(react@18.3.1) 4878 + '@swc/helpers': 0.5.17 4879 + '@types/react': 19.2.0 4880 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7684 4881 react: 18.3.1 7685 4882 react-dom: 18.3.1(react@18.3.1) 7686 4883 transitivePeerDependencies: 7687 4884 - scheduler 7688 4885 7689 - "@fluentui/react-badge@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4886 + '@fluentui/react-badge@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7690 4887 dependencies: 7691 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7692 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7693 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7694 - "@fluentui/react-theme": 9.2.0 7695 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7696 - "@griffel/react": 1.5.30(react@18.3.1) 7697 - "@swc/helpers": 0.5.17 7698 - "@types/react": 18.3.25 7699 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 4888 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4889 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4890 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4891 + '@fluentui/react-theme': 9.2.0 4892 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4893 + '@griffel/react': 1.5.30(react@18.3.1) 4894 + '@swc/helpers': 0.5.17 4895 + '@types/react': 18.3.25 4896 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7700 4897 react: 18.3.1 7701 4898 react-dom: 18.3.1(react@18.3.1) 7702 4899 7703 - "@fluentui/react-badge@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4900 + '@fluentui/react-badge@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7704 4901 dependencies: 7705 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7706 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7707 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7708 - "@fluentui/react-theme": 9.2.0 7709 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7710 - "@griffel/react": 1.5.30(react@18.3.1) 7711 - "@swc/helpers": 0.5.17 7712 - "@types/react": 19.2.0 7713 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 4902 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4903 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4904 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4905 + '@fluentui/react-theme': 9.2.0 4906 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4907 + '@griffel/react': 1.5.30(react@18.3.1) 4908 + '@swc/helpers': 0.5.17 4909 + '@types/react': 19.2.0 4910 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7714 4911 react: 18.3.1 7715 4912 react-dom: 18.3.1(react@18.3.1) 7716 4913 7717 - "@fluentui/react-breadcrumb@9.3.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4914 + '@fluentui/react-breadcrumb@9.3.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7718 4915 dependencies: 7719 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7720 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7721 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7722 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7723 - "@fluentui/react-link": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7724 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7725 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7726 - "@fluentui/react-theme": 9.2.0 7727 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7728 - "@griffel/react": 1.5.30(react@18.3.1) 7729 - "@swc/helpers": 0.5.17 7730 - "@types/react": 18.3.25 7731 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 4916 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4917 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4918 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4919 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4920 + '@fluentui/react-link': 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4921 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4922 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4923 + '@fluentui/react-theme': 9.2.0 4924 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4925 + '@griffel/react': 1.5.30(react@18.3.1) 4926 + '@swc/helpers': 0.5.17 4927 + '@types/react': 18.3.25 4928 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7732 4929 react: 18.3.1 7733 4930 react-dom: 18.3.1(react@18.3.1) 7734 4931 7735 - "@fluentui/react-breadcrumb@9.3.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4932 + '@fluentui/react-breadcrumb@9.3.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7736 4933 dependencies: 7737 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7738 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7739 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7740 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7741 - "@fluentui/react-link": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7742 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7743 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7744 - "@fluentui/react-theme": 9.2.0 7745 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7746 - "@griffel/react": 1.5.30(react@18.3.1) 7747 - "@swc/helpers": 0.5.17 7748 - "@types/react": 19.2.0 7749 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 4934 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4935 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4936 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4937 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4938 + '@fluentui/react-link': 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4939 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4940 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4941 + '@fluentui/react-theme': 9.2.0 4942 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4943 + '@griffel/react': 1.5.30(react@18.3.1) 4944 + '@swc/helpers': 0.5.17 4945 + '@types/react': 19.2.0 4946 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7750 4947 react: 18.3.1 7751 4948 react-dom: 18.3.1(react@18.3.1) 7752 4949 7753 - "@fluentui/react-button@9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4950 + '@fluentui/react-button@9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7754 4951 dependencies: 7755 - "@fluentui/keyboard-keys": 9.0.8 7756 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7757 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7758 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7759 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7760 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7761 - "@fluentui/react-theme": 9.2.0 7762 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7763 - "@griffel/react": 1.5.30(react@18.3.1) 7764 - "@swc/helpers": 0.5.17 7765 - "@types/react": 18.3.25 7766 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 4952 + '@fluentui/keyboard-keys': 9.0.8 4953 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4954 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4955 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4956 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4957 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4958 + '@fluentui/react-theme': 9.2.0 4959 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4960 + '@griffel/react': 1.5.30(react@18.3.1) 4961 + '@swc/helpers': 0.5.17 4962 + '@types/react': 18.3.25 4963 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7767 4964 react: 18.3.1 7768 4965 react-dom: 18.3.1(react@18.3.1) 7769 4966 7770 - "@fluentui/react-button@9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4967 + '@fluentui/react-button@9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7771 4968 dependencies: 7772 - "@fluentui/keyboard-keys": 9.0.8 7773 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7774 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7775 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7776 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7777 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7778 - "@fluentui/react-theme": 9.2.0 7779 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7780 - "@griffel/react": 1.5.30(react@18.3.1) 7781 - "@swc/helpers": 0.5.17 7782 - "@types/react": 19.2.0 7783 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 4969 + '@fluentui/keyboard-keys': 9.0.8 4970 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4971 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 4972 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4973 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4974 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4975 + '@fluentui/react-theme': 9.2.0 4976 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4977 + '@griffel/react': 1.5.30(react@18.3.1) 4978 + '@swc/helpers': 0.5.17 4979 + '@types/react': 19.2.0 4980 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7784 4981 react: 18.3.1 7785 4982 react-dom: 18.3.1(react@18.3.1) 7786 4983 7787 - "@fluentui/react-card@9.5.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 4984 + '@fluentui/react-card@9.5.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7788 4985 dependencies: 7789 - "@fluentui/keyboard-keys": 9.0.8 7790 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7791 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7792 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7793 - "@fluentui/react-text": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7794 - "@fluentui/react-theme": 9.2.0 7795 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7796 - "@griffel/react": 1.5.30(react@18.3.1) 7797 - "@swc/helpers": 0.5.17 7798 - "@types/react": 18.3.25 7799 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 4986 + '@fluentui/keyboard-keys': 9.0.8 4987 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4988 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4989 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4990 + '@fluentui/react-text': 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 4991 + '@fluentui/react-theme': 9.2.0 4992 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4993 + '@griffel/react': 1.5.30(react@18.3.1) 4994 + '@swc/helpers': 0.5.17 4995 + '@types/react': 18.3.25 4996 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7800 4997 react: 18.3.1 7801 4998 react-dom: 18.3.1(react@18.3.1) 7802 4999 7803 - "@fluentui/react-card@9.5.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5000 + '@fluentui/react-card@9.5.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 7804 5001 dependencies: 7805 - "@fluentui/keyboard-keys": 9.0.8 7806 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7807 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7808 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7809 - "@fluentui/react-text": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7810 - "@fluentui/react-theme": 9.2.0 7811 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7812 - "@griffel/react": 1.5.30(react@18.3.1) 7813 - "@swc/helpers": 0.5.17 7814 - "@types/react": 19.2.0 7815 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5002 + '@fluentui/keyboard-keys': 9.0.8 5003 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5004 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5005 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5006 + '@fluentui/react-text': 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5007 + '@fluentui/react-theme': 9.2.0 5008 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5009 + '@griffel/react': 1.5.30(react@18.3.1) 5010 + '@swc/helpers': 0.5.17 5011 + '@types/react': 19.2.0 5012 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7816 5013 react: 18.3.1 7817 5014 react-dom: 18.3.1(react@18.3.1) 7818 5015 7819 - "@fluentui/react-carousel@9.8.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5016 + '@fluentui/react-carousel@9.8.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7820 5017 dependencies: 7821 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7822 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7823 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7824 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7825 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7826 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7827 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7828 - "@fluentui/react-theme": 9.2.0 7829 - "@fluentui/react-tooltip": 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7830 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7831 - "@griffel/react": 1.5.30(react@18.3.1) 7832 - "@swc/helpers": 0.5.17 7833 - "@types/react": 18.3.25 7834 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5018 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5019 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5020 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5021 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5022 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5023 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5024 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5025 + '@fluentui/react-theme': 9.2.0 5026 + '@fluentui/react-tooltip': 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5027 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5028 + '@griffel/react': 1.5.30(react@18.3.1) 5029 + '@swc/helpers': 0.5.17 5030 + '@types/react': 18.3.25 5031 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7835 5032 embla-carousel: 8.6.0 7836 5033 embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 7837 5034 embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) ··· 7840 5037 transitivePeerDependencies: 7841 5038 - scheduler 7842 5039 7843 - "@fluentui/react-carousel@9.8.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5040 + '@fluentui/react-carousel@9.8.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7844 5041 dependencies: 7845 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7846 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7847 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7848 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7849 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7850 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7851 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7852 - "@fluentui/react-theme": 9.2.0 7853 - "@fluentui/react-tooltip": 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7854 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7855 - "@griffel/react": 1.5.30(react@18.3.1) 7856 - "@swc/helpers": 0.5.17 7857 - "@types/react": 19.2.0 7858 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5042 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5043 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5044 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5045 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5046 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5047 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5048 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5049 + '@fluentui/react-theme': 9.2.0 5050 + '@fluentui/react-tooltip': 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5051 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5052 + '@griffel/react': 1.5.30(react@18.3.1) 5053 + '@swc/helpers': 0.5.17 5054 + '@types/react': 19.2.0 5055 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7859 5056 embla-carousel: 8.6.0 7860 5057 embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 7861 5058 embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) ··· 7864 5061 transitivePeerDependencies: 7865 5062 - scheduler 7866 5063 7867 - "@fluentui/react-checkbox@9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5064 + '@fluentui/react-checkbox@9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7868 5065 dependencies: 7869 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7870 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7871 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7872 - "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7873 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7874 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7875 - "@fluentui/react-theme": 9.2.0 7876 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7877 - "@griffel/react": 1.5.30(react@18.3.1) 7878 - "@swc/helpers": 0.5.17 7879 - "@types/react": 18.3.25 7880 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5066 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5067 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5068 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5069 + '@fluentui/react-label': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5070 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5071 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5072 + '@fluentui/react-theme': 9.2.0 5073 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5074 + '@griffel/react': 1.5.30(react@18.3.1) 5075 + '@swc/helpers': 0.5.17 5076 + '@types/react': 18.3.25 5077 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7881 5078 react: 18.3.1 7882 5079 react-dom: 18.3.1(react@18.3.1) 7883 5080 transitivePeerDependencies: 7884 5081 - scheduler 7885 5082 7886 - "@fluentui/react-checkbox@9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5083 + '@fluentui/react-checkbox@9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7887 5084 dependencies: 7888 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7889 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7890 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7891 - "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7892 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7893 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7894 - "@fluentui/react-theme": 9.2.0 7895 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7896 - "@griffel/react": 1.5.30(react@18.3.1) 7897 - "@swc/helpers": 0.5.17 7898 - "@types/react": 19.2.0 7899 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5085 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5086 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5087 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5088 + '@fluentui/react-label': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5089 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5090 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5091 + '@fluentui/react-theme': 9.2.0 5092 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5093 + '@griffel/react': 1.5.30(react@18.3.1) 5094 + '@swc/helpers': 0.5.17 5095 + '@types/react': 19.2.0 5096 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7900 5097 react: 18.3.1 7901 5098 react-dom: 18.3.1(react@18.3.1) 7902 5099 transitivePeerDependencies: 7903 5100 - scheduler 7904 5101 7905 - "@fluentui/react-color-picker@9.2.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5102 + '@fluentui/react-color-picker@9.2.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7906 5103 dependencies: 7907 - "@ctrl/tinycolor": 3.6.1 7908 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7909 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7910 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7911 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7912 - "@fluentui/react-theme": 9.2.0 7913 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7914 - "@griffel/react": 1.5.30(react@18.3.1) 7915 - "@swc/helpers": 0.5.17 7916 - "@types/react": 18.3.25 7917 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5104 + '@ctrl/tinycolor': 3.6.1 5105 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5106 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5107 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5108 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5109 + '@fluentui/react-theme': 9.2.0 5110 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5111 + '@griffel/react': 1.5.30(react@18.3.1) 5112 + '@swc/helpers': 0.5.17 5113 + '@types/react': 18.3.25 5114 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7918 5115 react: 18.3.1 7919 5116 react-dom: 18.3.1(react@18.3.1) 7920 5117 transitivePeerDependencies: 7921 5118 - scheduler 7922 5119 7923 - "@fluentui/react-color-picker@9.2.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5120 + '@fluentui/react-color-picker@9.2.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7924 5121 dependencies: 7925 - "@ctrl/tinycolor": 3.6.1 7926 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7927 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7928 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7929 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7930 - "@fluentui/react-theme": 9.2.0 7931 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7932 - "@griffel/react": 1.5.30(react@18.3.1) 7933 - "@swc/helpers": 0.5.17 7934 - "@types/react": 19.2.0 7935 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5122 + '@ctrl/tinycolor': 3.6.1 5123 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5124 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5125 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5126 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5127 + '@fluentui/react-theme': 9.2.0 5128 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5129 + '@griffel/react': 1.5.30(react@18.3.1) 5130 + '@swc/helpers': 0.5.17 5131 + '@types/react': 19.2.0 5132 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7936 5133 react: 18.3.1 7937 5134 react-dom: 18.3.1(react@18.3.1) 7938 5135 transitivePeerDependencies: 7939 5136 - scheduler 7940 5137 7941 - "@fluentui/react-combobox@9.16.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5138 + '@fluentui/react-combobox@9.16.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7942 5139 dependencies: 7943 - "@fluentui/keyboard-keys": 9.0.8 7944 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7945 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7946 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7947 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7948 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7949 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7950 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7951 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7952 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7953 - "@fluentui/react-theme": 9.2.0 7954 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7955 - "@griffel/react": 1.5.30(react@18.3.1) 7956 - "@swc/helpers": 0.5.17 7957 - "@types/react": 18.3.25 7958 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5140 + '@fluentui/keyboard-keys': 9.0.8 5141 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5142 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5143 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5144 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5145 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5146 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5147 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5148 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5149 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5150 + '@fluentui/react-theme': 9.2.0 5151 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5152 + '@griffel/react': 1.5.30(react@18.3.1) 5153 + '@swc/helpers': 0.5.17 5154 + '@types/react': 18.3.25 5155 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 7959 5156 react: 18.3.1 7960 5157 react-dom: 18.3.1(react@18.3.1) 7961 5158 transitivePeerDependencies: 7962 5159 - scheduler 7963 5160 7964 - "@fluentui/react-combobox@9.16.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5161 + '@fluentui/react-combobox@9.16.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7965 5162 dependencies: 7966 - "@fluentui/keyboard-keys": 9.0.8 7967 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7968 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7969 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7970 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 7971 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7972 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7973 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7974 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7975 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7976 - "@fluentui/react-theme": 9.2.0 7977 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7978 - "@griffel/react": 1.5.30(react@18.3.1) 7979 - "@swc/helpers": 0.5.17 7980 - "@types/react": 19.2.0 7981 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5163 + '@fluentui/keyboard-keys': 9.0.8 5164 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5165 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5166 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5167 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5168 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5169 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5170 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5171 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5172 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5173 + '@fluentui/react-theme': 9.2.0 5174 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5175 + '@griffel/react': 1.5.30(react@18.3.1) 5176 + '@swc/helpers': 0.5.17 5177 + '@types/react': 19.2.0 5178 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 7982 5179 react: 18.3.1 7983 5180 react-dom: 18.3.1(react@18.3.1) 7984 5181 transitivePeerDependencies: 7985 5182 - scheduler 7986 5183 7987 - "@fluentui/react-components@9.69.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5184 + '@fluentui/react-components@9.69.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 7988 5185 dependencies: 7989 - "@fluentui/react-accordion": 9.8.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7990 - "@fluentui/react-alert": 9.0.0-beta.124(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7991 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7992 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7993 - "@fluentui/react-badge": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7994 - "@fluentui/react-breadcrumb": 9.3.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7995 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7996 - "@fluentui/react-card": 9.5.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7997 - "@fluentui/react-carousel": 9.8.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7998 - "@fluentui/react-checkbox": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7999 - "@fluentui/react-color-picker": 9.2.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8000 - "@fluentui/react-combobox": 9.16.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8001 - "@fluentui/react-dialog": 9.15.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8002 - "@fluentui/react-divider": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8003 - "@fluentui/react-drawer": 9.10.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8004 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8005 - "@fluentui/react-image": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8006 - "@fluentui/react-infobutton": 9.0.0-beta.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8007 - "@fluentui/react-infolabel": 9.4.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8008 - "@fluentui/react-input": 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8009 - "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8010 - "@fluentui/react-link": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8011 - "@fluentui/react-list": 9.6.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8012 - "@fluentui/react-menu": 9.20.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8013 - "@fluentui/react-message-bar": 9.6.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8014 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8015 - "@fluentui/react-nav": 9.3.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8016 - "@fluentui/react-overflow": 9.6.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8017 - "@fluentui/react-persona": 9.5.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8018 - "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8019 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8020 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8021 - "@fluentui/react-progress": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8022 - "@fluentui/react-provider": 9.22.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8023 - "@fluentui/react-radio": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8024 - "@fluentui/react-rating": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8025 - "@fluentui/react-search": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8026 - "@fluentui/react-select": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8027 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8028 - "@fluentui/react-skeleton": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8029 - "@fluentui/react-slider": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8030 - "@fluentui/react-spinbutton": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8031 - "@fluentui/react-spinner": 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8032 - "@fluentui/react-swatch-picker": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8033 - "@fluentui/react-switch": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8034 - "@fluentui/react-table": 9.19.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8035 - "@fluentui/react-tabs": 9.10.2(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8036 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8037 - "@fluentui/react-tag-picker": 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8038 - "@fluentui/react-tags": 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8039 - "@fluentui/react-teaching-popover": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8040 - "@fluentui/react-text": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8041 - "@fluentui/react-textarea": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8042 - "@fluentui/react-theme": 9.2.0 8043 - "@fluentui/react-toast": 9.7.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8044 - "@fluentui/react-toolbar": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8045 - "@fluentui/react-tooltip": 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8046 - "@fluentui/react-tree": 9.14.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8047 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8048 - "@fluentui/react-virtualizer": 9.0.0-alpha.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8049 - "@griffel/react": 1.5.30(react@18.3.1) 8050 - "@swc/helpers": 0.5.17 8051 - "@types/react": 18.3.25 8052 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5186 + '@fluentui/react-accordion': 9.8.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5187 + '@fluentui/react-alert': 9.0.0-beta.124(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5188 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5189 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5190 + '@fluentui/react-badge': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5191 + '@fluentui/react-breadcrumb': 9.3.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5192 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5193 + '@fluentui/react-card': 9.5.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5194 + '@fluentui/react-carousel': 9.8.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5195 + '@fluentui/react-checkbox': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5196 + '@fluentui/react-color-picker': 9.2.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5197 + '@fluentui/react-combobox': 9.16.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5198 + '@fluentui/react-dialog': 9.15.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5199 + '@fluentui/react-divider': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5200 + '@fluentui/react-drawer': 9.10.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5201 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5202 + '@fluentui/react-image': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5203 + '@fluentui/react-infobutton': 9.0.0-beta.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5204 + '@fluentui/react-infolabel': 9.4.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5205 + '@fluentui/react-input': 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5206 + '@fluentui/react-label': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5207 + '@fluentui/react-link': 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5208 + '@fluentui/react-list': 9.6.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5209 + '@fluentui/react-menu': 9.20.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5210 + '@fluentui/react-message-bar': 9.6.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5211 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5212 + '@fluentui/react-nav': 9.3.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5213 + '@fluentui/react-overflow': 9.6.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5214 + '@fluentui/react-persona': 9.5.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5215 + '@fluentui/react-popover': 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5216 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5217 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5218 + '@fluentui/react-progress': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5219 + '@fluentui/react-provider': 9.22.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5220 + '@fluentui/react-radio': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5221 + '@fluentui/react-rating': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5222 + '@fluentui/react-search': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5223 + '@fluentui/react-select': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5224 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5225 + '@fluentui/react-skeleton': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5226 + '@fluentui/react-slider': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5227 + '@fluentui/react-spinbutton': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5228 + '@fluentui/react-spinner': 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5229 + '@fluentui/react-swatch-picker': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5230 + '@fluentui/react-switch': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5231 + '@fluentui/react-table': 9.19.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5232 + '@fluentui/react-tabs': 9.10.2(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5233 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5234 + '@fluentui/react-tag-picker': 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5235 + '@fluentui/react-tags': 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5236 + '@fluentui/react-teaching-popover': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5237 + '@fluentui/react-text': 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5238 + '@fluentui/react-textarea': 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5239 + '@fluentui/react-theme': 9.2.0 5240 + '@fluentui/react-toast': 9.7.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5241 + '@fluentui/react-toolbar': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5242 + '@fluentui/react-tooltip': 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5243 + '@fluentui/react-tree': 9.14.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5244 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5245 + '@fluentui/react-virtualizer': 9.0.0-alpha.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5246 + '@griffel/react': 1.5.30(react@18.3.1) 5247 + '@swc/helpers': 0.5.17 5248 + '@types/react': 18.3.25 5249 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8053 5250 react: 18.3.1 8054 5251 react-dom: 18.3.1(react@18.3.1) 8055 5252 transitivePeerDependencies: 8056 5253 - scheduler 8057 5254 8058 - "@fluentui/react-components@9.69.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5255 + '@fluentui/react-components@9.69.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8059 5256 dependencies: 8060 - "@fluentui/react-accordion": 9.8.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8061 - "@fluentui/react-alert": 9.0.0-beta.124(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8062 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8063 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8064 - "@fluentui/react-badge": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8065 - "@fluentui/react-breadcrumb": 9.3.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8066 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8067 - "@fluentui/react-card": 9.5.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8068 - "@fluentui/react-carousel": 9.8.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8069 - "@fluentui/react-checkbox": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8070 - "@fluentui/react-color-picker": 9.2.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8071 - "@fluentui/react-combobox": 9.16.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8072 - "@fluentui/react-dialog": 9.15.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8073 - "@fluentui/react-divider": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8074 - "@fluentui/react-drawer": 9.10.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8075 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8076 - "@fluentui/react-image": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8077 - "@fluentui/react-infobutton": 9.0.0-beta.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8078 - "@fluentui/react-infolabel": 9.4.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8079 - "@fluentui/react-input": 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8080 - "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8081 - "@fluentui/react-link": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8082 - "@fluentui/react-list": 9.6.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8083 - "@fluentui/react-menu": 9.20.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8084 - "@fluentui/react-message-bar": 9.6.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8085 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8086 - "@fluentui/react-nav": 9.3.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8087 - "@fluentui/react-overflow": 9.6.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8088 - "@fluentui/react-persona": 9.5.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8089 - "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8090 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8091 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8092 - "@fluentui/react-progress": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8093 - "@fluentui/react-provider": 9.22.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8094 - "@fluentui/react-radio": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8095 - "@fluentui/react-rating": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8096 - "@fluentui/react-search": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8097 - "@fluentui/react-select": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8098 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8099 - "@fluentui/react-skeleton": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8100 - "@fluentui/react-slider": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8101 - "@fluentui/react-spinbutton": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8102 - "@fluentui/react-spinner": 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8103 - "@fluentui/react-swatch-picker": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8104 - "@fluentui/react-switch": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8105 - "@fluentui/react-table": 9.19.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8106 - "@fluentui/react-tabs": 9.10.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8107 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8108 - "@fluentui/react-tag-picker": 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8109 - "@fluentui/react-tags": 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8110 - "@fluentui/react-teaching-popover": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8111 - "@fluentui/react-text": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8112 - "@fluentui/react-textarea": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8113 - "@fluentui/react-theme": 9.2.0 8114 - "@fluentui/react-toast": 9.7.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8115 - "@fluentui/react-toolbar": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8116 - "@fluentui/react-tooltip": 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8117 - "@fluentui/react-tree": 9.14.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8118 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8119 - "@fluentui/react-virtualizer": 9.0.0-alpha.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8120 - "@griffel/react": 1.5.30(react@18.3.1) 8121 - "@swc/helpers": 0.5.17 8122 - "@types/react": 19.2.0 8123 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5257 + '@fluentui/react-accordion': 9.8.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5258 + '@fluentui/react-alert': 9.0.0-beta.124(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5259 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5260 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5261 + '@fluentui/react-badge': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5262 + '@fluentui/react-breadcrumb': 9.3.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5263 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5264 + '@fluentui/react-card': 9.5.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5265 + '@fluentui/react-carousel': 9.8.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5266 + '@fluentui/react-checkbox': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5267 + '@fluentui/react-color-picker': 9.2.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5268 + '@fluentui/react-combobox': 9.16.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5269 + '@fluentui/react-dialog': 9.15.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5270 + '@fluentui/react-divider': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5271 + '@fluentui/react-drawer': 9.10.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5272 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5273 + '@fluentui/react-image': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5274 + '@fluentui/react-infobutton': 9.0.0-beta.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5275 + '@fluentui/react-infolabel': 9.4.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5276 + '@fluentui/react-input': 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5277 + '@fluentui/react-label': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5278 + '@fluentui/react-link': 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5279 + '@fluentui/react-list': 9.6.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5280 + '@fluentui/react-menu': 9.20.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5281 + '@fluentui/react-message-bar': 9.6.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5282 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5283 + '@fluentui/react-nav': 9.3.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5284 + '@fluentui/react-overflow': 9.6.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5285 + '@fluentui/react-persona': 9.5.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5286 + '@fluentui/react-popover': 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5287 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5288 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5289 + '@fluentui/react-progress': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5290 + '@fluentui/react-provider': 9.22.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5291 + '@fluentui/react-radio': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5292 + '@fluentui/react-rating': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5293 + '@fluentui/react-search': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5294 + '@fluentui/react-select': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5295 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5296 + '@fluentui/react-skeleton': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5297 + '@fluentui/react-slider': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5298 + '@fluentui/react-spinbutton': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5299 + '@fluentui/react-spinner': 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5300 + '@fluentui/react-swatch-picker': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5301 + '@fluentui/react-switch': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5302 + '@fluentui/react-table': 9.19.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5303 + '@fluentui/react-tabs': 9.10.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5304 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5305 + '@fluentui/react-tag-picker': 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5306 + '@fluentui/react-tags': 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5307 + '@fluentui/react-teaching-popover': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5308 + '@fluentui/react-text': 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5309 + '@fluentui/react-textarea': 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5310 + '@fluentui/react-theme': 9.2.0 5311 + '@fluentui/react-toast': 9.7.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5312 + '@fluentui/react-toolbar': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5313 + '@fluentui/react-tooltip': 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5314 + '@fluentui/react-tree': 9.14.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5315 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5316 + '@fluentui/react-virtualizer': 9.0.0-alpha.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5317 + '@griffel/react': 1.5.30(react@18.3.1) 5318 + '@swc/helpers': 0.5.17 5319 + '@types/react': 19.2.0 5320 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8124 5321 react: 18.3.1 8125 5322 react-dom: 18.3.1(react@18.3.1) 8126 5323 transitivePeerDependencies: 8127 5324 - scheduler 8128 5325 8129 - "@fluentui/react-context-selector@9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5326 + '@fluentui/react-context-selector@9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8130 5327 dependencies: 8131 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8132 - "@swc/helpers": 0.5.17 8133 - "@types/react": 18.3.25 8134 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5328 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5329 + '@swc/helpers': 0.5.17 5330 + '@types/react': 18.3.25 5331 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8135 5332 react: 18.3.1 8136 5333 react-dom: 18.3.1(react@18.3.1) 8137 5334 scheduler: 0.27.0 8138 5335 8139 - "@fluentui/react-context-selector@9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5336 + '@fluentui/react-context-selector@9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8140 5337 dependencies: 8141 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8142 - "@swc/helpers": 0.5.17 8143 - "@types/react": 19.2.0 8144 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5338 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5339 + '@swc/helpers': 0.5.17 5340 + '@types/react': 19.2.0 5341 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8145 5342 react: 18.3.1 8146 5343 react-dom: 18.3.1(react@18.3.1) 8147 5344 scheduler: 0.27.0 8148 5345 8149 - "@fluentui/react-dialog@9.15.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5346 + '@fluentui/react-dialog@9.15.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8150 5347 dependencies: 8151 - "@fluentui/keyboard-keys": 9.0.8 8152 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8153 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8154 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8155 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8156 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8157 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8158 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8159 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8160 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8161 - "@fluentui/react-theme": 9.2.0 8162 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8163 - "@griffel/react": 1.5.30(react@18.3.1) 8164 - "@swc/helpers": 0.5.17 8165 - "@types/react": 18.3.25 8166 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5348 + '@fluentui/keyboard-keys': 9.0.8 5349 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5350 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5351 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5352 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5353 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5354 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5355 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5356 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5357 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5358 + '@fluentui/react-theme': 9.2.0 5359 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5360 + '@griffel/react': 1.5.30(react@18.3.1) 5361 + '@swc/helpers': 0.5.17 5362 + '@types/react': 18.3.25 5363 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8167 5364 react: 18.3.1 8168 5365 react-dom: 18.3.1(react@18.3.1) 8169 5366 transitivePeerDependencies: 8170 5367 - scheduler 8171 5368 8172 - "@fluentui/react-dialog@9.15.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5369 + '@fluentui/react-dialog@9.15.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8173 5370 dependencies: 8174 - "@fluentui/keyboard-keys": 9.0.8 8175 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8176 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8177 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8178 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8179 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8180 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8181 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8182 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8183 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8184 - "@fluentui/react-theme": 9.2.0 8185 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8186 - "@griffel/react": 1.5.30(react@18.3.1) 8187 - "@swc/helpers": 0.5.17 8188 - "@types/react": 19.2.0 8189 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5371 + '@fluentui/keyboard-keys': 9.0.8 5372 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5373 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5374 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5375 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5376 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5377 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5378 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5379 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5380 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5381 + '@fluentui/react-theme': 9.2.0 5382 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5383 + '@griffel/react': 1.5.30(react@18.3.1) 5384 + '@swc/helpers': 0.5.17 5385 + '@types/react': 19.2.0 5386 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8190 5387 react: 18.3.1 8191 5388 react-dom: 18.3.1(react@18.3.1) 8192 5389 transitivePeerDependencies: 8193 5390 - scheduler 8194 5391 8195 - "@fluentui/react-divider@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5392 + '@fluentui/react-divider@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8196 5393 dependencies: 8197 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8198 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8199 - "@fluentui/react-theme": 9.2.0 8200 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8201 - "@griffel/react": 1.5.30(react@18.3.1) 8202 - "@swc/helpers": 0.5.17 8203 - "@types/react": 18.3.25 8204 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5394 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5395 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5396 + '@fluentui/react-theme': 9.2.0 5397 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5398 + '@griffel/react': 1.5.30(react@18.3.1) 5399 + '@swc/helpers': 0.5.17 5400 + '@types/react': 18.3.25 5401 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8205 5402 react: 18.3.1 8206 5403 react-dom: 18.3.1(react@18.3.1) 8207 5404 8208 - "@fluentui/react-divider@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5405 + '@fluentui/react-divider@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8209 5406 dependencies: 8210 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8211 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8212 - "@fluentui/react-theme": 9.2.0 8213 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8214 - "@griffel/react": 1.5.30(react@18.3.1) 8215 - "@swc/helpers": 0.5.17 8216 - "@types/react": 19.2.0 8217 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5407 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5408 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5409 + '@fluentui/react-theme': 9.2.0 5410 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5411 + '@griffel/react': 1.5.30(react@18.3.1) 5412 + '@swc/helpers': 0.5.17 5413 + '@types/react': 19.2.0 5414 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8218 5415 react: 18.3.1 8219 5416 react-dom: 18.3.1(react@18.3.1) 8220 5417 8221 - "@fluentui/react-drawer@9.10.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5418 + '@fluentui/react-drawer@9.10.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8222 5419 dependencies: 8223 - "@fluentui/react-dialog": 9.15.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8224 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8225 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8226 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8227 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8228 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8229 - "@fluentui/react-theme": 9.2.0 8230 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8231 - "@griffel/react": 1.5.30(react@18.3.1) 8232 - "@swc/helpers": 0.5.17 8233 - "@types/react": 18.3.25 8234 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5420 + '@fluentui/react-dialog': 9.15.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5421 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5422 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5423 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5424 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5425 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5426 + '@fluentui/react-theme': 9.2.0 5427 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5428 + '@griffel/react': 1.5.30(react@18.3.1) 5429 + '@swc/helpers': 0.5.17 5430 + '@types/react': 18.3.25 5431 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8235 5432 react: 18.3.1 8236 5433 react-dom: 18.3.1(react@18.3.1) 8237 5434 transitivePeerDependencies: 8238 5435 - scheduler 8239 5436 8240 - "@fluentui/react-drawer@9.10.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5437 + '@fluentui/react-drawer@9.10.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8241 5438 dependencies: 8242 - "@fluentui/react-dialog": 9.15.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8243 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8244 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8245 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8246 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8247 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8248 - "@fluentui/react-theme": 9.2.0 8249 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8250 - "@griffel/react": 1.5.30(react@18.3.1) 8251 - "@swc/helpers": 0.5.17 8252 - "@types/react": 19.2.0 8253 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5439 + '@fluentui/react-dialog': 9.15.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5440 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5441 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5442 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5443 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5444 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5445 + '@fluentui/react-theme': 9.2.0 5446 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5447 + '@griffel/react': 1.5.30(react@18.3.1) 5448 + '@swc/helpers': 0.5.17 5449 + '@types/react': 19.2.0 5450 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8254 5451 react: 18.3.1 8255 5452 react-dom: 18.3.1(react@18.3.1) 8256 5453 transitivePeerDependencies: 8257 5454 - scheduler 8258 5455 8259 - "@fluentui/react-field@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5456 + '@fluentui/react-field@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8260 5457 dependencies: 8261 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8262 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8263 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8264 - "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8265 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8266 - "@fluentui/react-theme": 9.2.0 8267 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8268 - "@griffel/react": 1.5.30(react@18.3.1) 8269 - "@swc/helpers": 0.5.17 8270 - "@types/react": 18.3.25 8271 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5458 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5459 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5460 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5461 + '@fluentui/react-label': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5462 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5463 + '@fluentui/react-theme': 9.2.0 5464 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5465 + '@griffel/react': 1.5.30(react@18.3.1) 5466 + '@swc/helpers': 0.5.17 5467 + '@types/react': 18.3.25 5468 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8272 5469 react: 18.3.1 8273 5470 react-dom: 18.3.1(react@18.3.1) 8274 5471 transitivePeerDependencies: 8275 5472 - scheduler 8276 5473 8277 - "@fluentui/react-field@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5474 + '@fluentui/react-field@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8278 5475 dependencies: 8279 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8280 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8281 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8282 - "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8283 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8284 - "@fluentui/react-theme": 9.2.0 8285 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8286 - "@griffel/react": 1.5.30(react@18.3.1) 8287 - "@swc/helpers": 0.5.17 8288 - "@types/react": 19.2.0 8289 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5476 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5477 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5478 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5479 + '@fluentui/react-label': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5480 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5481 + '@fluentui/react-theme': 9.2.0 5482 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5483 + '@griffel/react': 1.5.30(react@18.3.1) 5484 + '@swc/helpers': 0.5.17 5485 + '@types/react': 19.2.0 5486 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8290 5487 react: 18.3.1 8291 5488 react-dom: 18.3.1(react@18.3.1) 8292 5489 transitivePeerDependencies: 8293 5490 - scheduler 8294 5491 8295 - "@fluentui/react-icons@2.0.311(react@18.3.1)": 5492 + '@fluentui/react-icons@2.0.311(react@18.3.1)': 8296 5493 dependencies: 8297 - "@griffel/react": 1.5.30(react@18.3.1) 5494 + '@griffel/react': 1.5.30(react@18.3.1) 8298 5495 react: 18.3.1 8299 5496 tslib: 2.8.1 8300 5497 8301 - "@fluentui/react-image@9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5498 + '@fluentui/react-image@9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8302 5499 dependencies: 8303 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8304 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8305 - "@fluentui/react-theme": 9.2.0 8306 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8307 - "@griffel/react": 1.5.30(react@18.3.1) 8308 - "@swc/helpers": 0.5.17 8309 - "@types/react": 18.3.25 8310 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5500 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5501 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5502 + '@fluentui/react-theme': 9.2.0 5503 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5504 + '@griffel/react': 1.5.30(react@18.3.1) 5505 + '@swc/helpers': 0.5.17 5506 + '@types/react': 18.3.25 5507 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8311 5508 react: 18.3.1 8312 5509 react-dom: 18.3.1(react@18.3.1) 8313 5510 8314 - "@fluentui/react-image@9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5511 + '@fluentui/react-image@9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8315 5512 dependencies: 8316 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8317 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8318 - "@fluentui/react-theme": 9.2.0 8319 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8320 - "@griffel/react": 1.5.30(react@18.3.1) 8321 - "@swc/helpers": 0.5.17 8322 - "@types/react": 19.2.0 8323 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5513 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5514 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5515 + '@fluentui/react-theme': 9.2.0 5516 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5517 + '@griffel/react': 1.5.30(react@18.3.1) 5518 + '@swc/helpers': 0.5.17 5519 + '@types/react': 19.2.0 5520 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8324 5521 react: 18.3.1 8325 5522 react-dom: 18.3.1(react@18.3.1) 8326 5523 8327 - "@fluentui/react-infobutton@9.0.0-beta.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5524 + '@fluentui/react-infobutton@9.0.0-beta.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8328 5525 dependencies: 8329 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8330 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8331 - "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8332 - "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8333 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8334 - "@fluentui/react-theme": 9.2.0 8335 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8336 - "@griffel/react": 1.5.30(react@18.3.1) 8337 - "@swc/helpers": 0.5.17 8338 - "@types/react": 18.3.25 8339 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5526 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5527 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5528 + '@fluentui/react-label': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5529 + '@fluentui/react-popover': 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5530 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5531 + '@fluentui/react-theme': 9.2.0 5532 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5533 + '@griffel/react': 1.5.30(react@18.3.1) 5534 + '@swc/helpers': 0.5.17 5535 + '@types/react': 18.3.25 5536 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8340 5537 react: 18.3.1 8341 5538 react-dom: 18.3.1(react@18.3.1) 8342 5539 transitivePeerDependencies: 8343 5540 - scheduler 8344 5541 8345 - "@fluentui/react-infobutton@9.0.0-beta.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5542 + '@fluentui/react-infobutton@9.0.0-beta.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8346 5543 dependencies: 8347 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8348 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8349 - "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8350 - "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8351 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8352 - "@fluentui/react-theme": 9.2.0 8353 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8354 - "@griffel/react": 1.5.30(react@18.3.1) 8355 - "@swc/helpers": 0.5.17 8356 - "@types/react": 19.2.0 8357 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5544 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5545 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5546 + '@fluentui/react-label': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5547 + '@fluentui/react-popover': 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5548 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5549 + '@fluentui/react-theme': 9.2.0 5550 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5551 + '@griffel/react': 1.5.30(react@18.3.1) 5552 + '@swc/helpers': 0.5.17 5553 + '@types/react': 19.2.0 5554 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8358 5555 react: 18.3.1 8359 5556 react-dom: 18.3.1(react@18.3.1) 8360 5557 transitivePeerDependencies: 8361 5558 - scheduler 8362 5559 8363 - "@fluentui/react-infolabel@9.4.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5560 + '@fluentui/react-infolabel@9.4.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8364 5561 dependencies: 8365 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8366 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8367 - "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8368 - "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8369 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8370 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8371 - "@fluentui/react-theme": 9.2.0 8372 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8373 - "@griffel/react": 1.5.30(react@18.3.1) 8374 - "@swc/helpers": 0.5.17 8375 - "@types/react": 18.3.25 8376 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5562 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5563 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5564 + '@fluentui/react-label': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5565 + '@fluentui/react-popover': 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5566 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5567 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5568 + '@fluentui/react-theme': 9.2.0 5569 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5570 + '@griffel/react': 1.5.30(react@18.3.1) 5571 + '@swc/helpers': 0.5.17 5572 + '@types/react': 18.3.25 5573 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8377 5574 react: 18.3.1 8378 5575 react-dom: 18.3.1(react@18.3.1) 8379 5576 transitivePeerDependencies: 8380 5577 - scheduler 8381 5578 8382 - "@fluentui/react-infolabel@9.4.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5579 + '@fluentui/react-infolabel@9.4.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8383 5580 dependencies: 8384 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8385 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8386 - "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8387 - "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8388 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8389 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8390 - "@fluentui/react-theme": 9.2.0 8391 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8392 - "@griffel/react": 1.5.30(react@18.3.1) 8393 - "@swc/helpers": 0.5.17 8394 - "@types/react": 19.2.0 8395 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5581 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5582 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5583 + '@fluentui/react-label': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5584 + '@fluentui/react-popover': 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5585 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5586 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5587 + '@fluentui/react-theme': 9.2.0 5588 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5589 + '@griffel/react': 1.5.30(react@18.3.1) 5590 + '@swc/helpers': 0.5.17 5591 + '@types/react': 19.2.0 5592 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8396 5593 react: 18.3.1 8397 5594 react-dom: 18.3.1(react@18.3.1) 8398 5595 transitivePeerDependencies: 8399 5596 - scheduler 8400 5597 8401 - "@fluentui/react-input@9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5598 + '@fluentui/react-input@9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8402 5599 dependencies: 8403 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8404 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8405 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8406 - "@fluentui/react-theme": 9.2.0 8407 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8408 - "@griffel/react": 1.5.30(react@18.3.1) 8409 - "@swc/helpers": 0.5.17 8410 - "@types/react": 18.3.25 8411 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5600 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5601 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5602 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5603 + '@fluentui/react-theme': 9.2.0 5604 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5605 + '@griffel/react': 1.5.30(react@18.3.1) 5606 + '@swc/helpers': 0.5.17 5607 + '@types/react': 18.3.25 5608 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8412 5609 react: 18.3.1 8413 5610 react-dom: 18.3.1(react@18.3.1) 8414 5611 transitivePeerDependencies: 8415 5612 - scheduler 8416 5613 8417 - "@fluentui/react-input@9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5614 + '@fluentui/react-input@9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8418 5615 dependencies: 8419 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8420 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8421 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8422 - "@fluentui/react-theme": 9.2.0 8423 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8424 - "@griffel/react": 1.5.30(react@18.3.1) 8425 - "@swc/helpers": 0.5.17 8426 - "@types/react": 19.2.0 8427 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5616 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5617 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5618 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5619 + '@fluentui/react-theme': 9.2.0 5620 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5621 + '@griffel/react': 1.5.30(react@18.3.1) 5622 + '@swc/helpers': 0.5.17 5623 + '@types/react': 19.2.0 5624 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8428 5625 react: 18.3.1 8429 5626 react-dom: 18.3.1(react@18.3.1) 8430 5627 transitivePeerDependencies: 8431 5628 - scheduler 8432 5629 8433 - "@fluentui/react-jsx-runtime@9.2.1(@types/react@18.3.25)(react@18.3.1)": 5630 + '@fluentui/react-jsx-runtime@9.2.1(@types/react@18.3.25)(react@18.3.1)': 8434 5631 dependencies: 8435 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8436 - "@swc/helpers": 0.5.17 8437 - "@types/react": 18.3.25 5632 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5633 + '@swc/helpers': 0.5.17 5634 + '@types/react': 18.3.25 8438 5635 react: 18.3.1 8439 5636 react-is: 17.0.2 8440 5637 8441 - "@fluentui/react-jsx-runtime@9.2.1(@types/react@19.2.0)(react@18.3.1)": 5638 + '@fluentui/react-jsx-runtime@9.2.1(@types/react@19.2.0)(react@18.3.1)': 8442 5639 dependencies: 8443 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8444 - "@swc/helpers": 0.5.17 8445 - "@types/react": 19.2.0 5640 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5641 + '@swc/helpers': 0.5.17 5642 + '@types/react': 19.2.0 8446 5643 react: 18.3.1 8447 5644 react-is: 17.0.2 8448 5645 8449 - "@fluentui/react-label@9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5646 + '@fluentui/react-label@9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8450 5647 dependencies: 8451 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8452 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8453 - "@fluentui/react-theme": 9.2.0 8454 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8455 - "@griffel/react": 1.5.30(react@18.3.1) 8456 - "@swc/helpers": 0.5.17 8457 - "@types/react": 18.3.25 8458 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5648 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5649 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5650 + '@fluentui/react-theme': 9.2.0 5651 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5652 + '@griffel/react': 1.5.30(react@18.3.1) 5653 + '@swc/helpers': 0.5.17 5654 + '@types/react': 18.3.25 5655 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8459 5656 react: 18.3.1 8460 5657 react-dom: 18.3.1(react@18.3.1) 8461 5658 8462 - "@fluentui/react-label@9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5659 + '@fluentui/react-label@9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8463 5660 dependencies: 8464 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8465 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8466 - "@fluentui/react-theme": 9.2.0 8467 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8468 - "@griffel/react": 1.5.30(react@18.3.1) 8469 - "@swc/helpers": 0.5.17 8470 - "@types/react": 19.2.0 8471 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5661 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5662 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5663 + '@fluentui/react-theme': 9.2.0 5664 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5665 + '@griffel/react': 1.5.30(react@18.3.1) 5666 + '@swc/helpers': 0.5.17 5667 + '@types/react': 19.2.0 5668 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8472 5669 react: 18.3.1 8473 5670 react-dom: 18.3.1(react@18.3.1) 8474 5671 8475 - "@fluentui/react-link@9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5672 + '@fluentui/react-link@9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8476 5673 dependencies: 8477 - "@fluentui/keyboard-keys": 9.0.8 8478 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8479 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8480 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8481 - "@fluentui/react-theme": 9.2.0 8482 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8483 - "@griffel/react": 1.5.30(react@18.3.1) 8484 - "@swc/helpers": 0.5.17 8485 - "@types/react": 18.3.25 8486 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5674 + '@fluentui/keyboard-keys': 9.0.8 5675 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5676 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5677 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5678 + '@fluentui/react-theme': 9.2.0 5679 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5680 + '@griffel/react': 1.5.30(react@18.3.1) 5681 + '@swc/helpers': 0.5.17 5682 + '@types/react': 18.3.25 5683 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8487 5684 react: 18.3.1 8488 5685 react-dom: 18.3.1(react@18.3.1) 8489 5686 8490 - "@fluentui/react-link@9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5687 + '@fluentui/react-link@9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8491 5688 dependencies: 8492 - "@fluentui/keyboard-keys": 9.0.8 8493 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8494 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8495 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8496 - "@fluentui/react-theme": 9.2.0 8497 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8498 - "@griffel/react": 1.5.30(react@18.3.1) 8499 - "@swc/helpers": 0.5.17 8500 - "@types/react": 19.2.0 8501 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5689 + '@fluentui/keyboard-keys': 9.0.8 5690 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5691 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5692 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5693 + '@fluentui/react-theme': 9.2.0 5694 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5695 + '@griffel/react': 1.5.30(react@18.3.1) 5696 + '@swc/helpers': 0.5.17 5697 + '@types/react': 19.2.0 5698 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8502 5699 react: 18.3.1 8503 5700 react-dom: 18.3.1(react@18.3.1) 8504 5701 8505 - "@fluentui/react-list@9.6.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5702 + '@fluentui/react-list@9.6.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8506 5703 dependencies: 8507 - "@fluentui/keyboard-keys": 9.0.8 8508 - "@fluentui/react-checkbox": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8509 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8510 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8511 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8512 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8513 - "@fluentui/react-theme": 9.2.0 8514 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8515 - "@griffel/react": 1.5.30(react@18.3.1) 8516 - "@swc/helpers": 0.5.17 8517 - "@types/react": 18.3.25 8518 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5704 + '@fluentui/keyboard-keys': 9.0.8 5705 + '@fluentui/react-checkbox': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5706 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5707 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5708 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5709 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5710 + '@fluentui/react-theme': 9.2.0 5711 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5712 + '@griffel/react': 1.5.30(react@18.3.1) 5713 + '@swc/helpers': 0.5.17 5714 + '@types/react': 18.3.25 5715 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8519 5716 react: 18.3.1 8520 5717 react-dom: 18.3.1(react@18.3.1) 8521 5718 transitivePeerDependencies: 8522 5719 - scheduler 8523 5720 8524 - "@fluentui/react-list@9.6.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5721 + '@fluentui/react-list@9.6.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8525 5722 dependencies: 8526 - "@fluentui/keyboard-keys": 9.0.8 8527 - "@fluentui/react-checkbox": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8528 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8529 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8530 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8531 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8532 - "@fluentui/react-theme": 9.2.0 8533 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8534 - "@griffel/react": 1.5.30(react@18.3.1) 8535 - "@swc/helpers": 0.5.17 8536 - "@types/react": 19.2.0 8537 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5723 + '@fluentui/keyboard-keys': 9.0.8 5724 + '@fluentui/react-checkbox': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5725 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5726 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5727 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5728 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5729 + '@fluentui/react-theme': 9.2.0 5730 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5731 + '@griffel/react': 1.5.30(react@18.3.1) 5732 + '@swc/helpers': 0.5.17 5733 + '@types/react': 19.2.0 5734 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8538 5735 react: 18.3.1 8539 5736 react-dom: 18.3.1(react@18.3.1) 8540 5737 transitivePeerDependencies: 8541 5738 - scheduler 8542 5739 8543 - "@fluentui/react-menu@9.20.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5740 + '@fluentui/react-menu@9.20.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8544 5741 dependencies: 8545 - "@fluentui/keyboard-keys": 9.0.8 8546 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8547 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8548 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8549 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8550 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8551 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8552 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8553 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8554 - "@fluentui/react-theme": 9.2.0 8555 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8556 - "@griffel/react": 1.5.30(react@18.3.1) 8557 - "@swc/helpers": 0.5.17 8558 - "@types/react": 18.3.25 8559 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5742 + '@fluentui/keyboard-keys': 9.0.8 5743 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5744 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5745 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5746 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5747 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5748 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5749 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5750 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5751 + '@fluentui/react-theme': 9.2.0 5752 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5753 + '@griffel/react': 1.5.30(react@18.3.1) 5754 + '@swc/helpers': 0.5.17 5755 + '@types/react': 18.3.25 5756 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8560 5757 react: 18.3.1 8561 5758 react-dom: 18.3.1(react@18.3.1) 8562 5759 transitivePeerDependencies: 8563 5760 - scheduler 8564 5761 8565 - "@fluentui/react-menu@9.20.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5762 + '@fluentui/react-menu@9.20.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8566 5763 dependencies: 8567 - "@fluentui/keyboard-keys": 9.0.8 8568 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8569 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8570 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8571 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8572 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8573 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8574 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8575 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8576 - "@fluentui/react-theme": 9.2.0 8577 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8578 - "@griffel/react": 1.5.30(react@18.3.1) 8579 - "@swc/helpers": 0.5.17 8580 - "@types/react": 19.2.0 8581 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5764 + '@fluentui/keyboard-keys': 9.0.8 5765 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5766 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5767 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5768 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5769 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5770 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5771 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5772 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5773 + '@fluentui/react-theme': 9.2.0 5774 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5775 + '@griffel/react': 1.5.30(react@18.3.1) 5776 + '@swc/helpers': 0.5.17 5777 + '@types/react': 19.2.0 5778 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8582 5779 react: 18.3.1 8583 5780 react-dom: 18.3.1(react@18.3.1) 8584 5781 transitivePeerDependencies: 8585 5782 - scheduler 8586 5783 8587 - "@fluentui/react-message-bar@9.6.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5784 + '@fluentui/react-message-bar@9.6.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8588 5785 dependencies: 8589 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8590 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8591 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8592 - "@fluentui/react-link": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8593 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8594 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8595 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8596 - "@fluentui/react-theme": 9.2.0 8597 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8598 - "@griffel/react": 1.5.30(react@18.3.1) 8599 - "@swc/helpers": 0.5.17 8600 - "@types/react": 18.3.25 8601 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5786 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5787 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5788 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5789 + '@fluentui/react-link': 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5790 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5791 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5792 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5793 + '@fluentui/react-theme': 9.2.0 5794 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5795 + '@griffel/react': 1.5.30(react@18.3.1) 5796 + '@swc/helpers': 0.5.17 5797 + '@types/react': 18.3.25 5798 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8602 5799 react: 18.3.1 8603 5800 react-dom: 18.3.1(react@18.3.1) 8604 5801 8605 - "@fluentui/react-message-bar@9.6.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5802 + '@fluentui/react-message-bar@9.6.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8606 5803 dependencies: 8607 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8608 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8609 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8610 - "@fluentui/react-link": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8611 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8612 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8613 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8614 - "@fluentui/react-theme": 9.2.0 8615 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8616 - "@griffel/react": 1.5.30(react@18.3.1) 8617 - "@swc/helpers": 0.5.17 8618 - "@types/react": 19.2.0 8619 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5804 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5805 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5806 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5807 + '@fluentui/react-link': 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5808 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5809 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5810 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5811 + '@fluentui/react-theme': 9.2.0 5812 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5813 + '@griffel/react': 1.5.30(react@18.3.1) 5814 + '@swc/helpers': 0.5.17 5815 + '@types/react': 19.2.0 5816 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8620 5817 react: 18.3.1 8621 5818 react-dom: 18.3.1(react@18.3.1) 8622 5819 8623 - "@fluentui/react-motion-components-preview@0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5820 + '@fluentui/react-motion-components-preview@0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8624 5821 dependencies: 8625 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8626 - "@swc/helpers": 0.5.17 8627 - "@types/react": 18.3.25 8628 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5822 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5823 + '@swc/helpers': 0.5.17 5824 + '@types/react': 18.3.25 5825 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8629 5826 react: 18.3.1 8630 5827 react-dom: 18.3.1(react@18.3.1) 8631 5828 8632 - "@fluentui/react-motion-components-preview@0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5829 + '@fluentui/react-motion-components-preview@0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8633 5830 dependencies: 8634 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8635 - "@swc/helpers": 0.5.17 8636 - "@types/react": 19.2.0 8637 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5831 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5832 + '@swc/helpers': 0.5.17 5833 + '@types/react': 19.2.0 5834 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8638 5835 react: 18.3.1 8639 5836 react-dom: 18.3.1(react@18.3.1) 8640 5837 8641 - "@fluentui/react-motion@9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5838 + '@fluentui/react-motion@9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8642 5839 dependencies: 8643 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8644 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8645 - "@swc/helpers": 0.5.17 8646 - "@types/react": 18.3.25 8647 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5840 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5841 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5842 + '@swc/helpers': 0.5.17 5843 + '@types/react': 18.3.25 5844 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8648 5845 react: 18.3.1 8649 5846 react-dom: 18.3.1(react@18.3.1) 8650 5847 8651 - "@fluentui/react-motion@9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 5848 + '@fluentui/react-motion@9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8652 5849 dependencies: 8653 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8654 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8655 - "@swc/helpers": 0.5.17 8656 - "@types/react": 19.2.0 8657 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5850 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5851 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5852 + '@swc/helpers': 0.5.17 5853 + '@types/react': 19.2.0 5854 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8658 5855 react: 18.3.1 8659 5856 react-dom: 18.3.1(react@18.3.1) 8660 5857 8661 - "@fluentui/react-nav@9.3.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5858 + '@fluentui/react-nav@9.3.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8662 5859 dependencies: 8663 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8664 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8665 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8666 - "@fluentui/react-divider": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8667 - "@fluentui/react-drawer": 9.10.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8668 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8669 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8670 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8671 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8672 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8673 - "@fluentui/react-theme": 9.2.0 8674 - "@fluentui/react-tooltip": 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8675 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8676 - "@griffel/react": 1.5.30(react@18.3.1) 8677 - "@swc/helpers": 0.5.17 8678 - "@types/react": 18.3.25 8679 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5860 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5861 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5862 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5863 + '@fluentui/react-divider': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5864 + '@fluentui/react-drawer': 9.10.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5865 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5866 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5867 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5868 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5869 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5870 + '@fluentui/react-theme': 9.2.0 5871 + '@fluentui/react-tooltip': 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5872 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5873 + '@griffel/react': 1.5.30(react@18.3.1) 5874 + '@swc/helpers': 0.5.17 5875 + '@types/react': 18.3.25 5876 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8680 5877 react: 18.3.1 8681 5878 react-dom: 18.3.1(react@18.3.1) 8682 5879 transitivePeerDependencies: 8683 5880 - scheduler 8684 5881 8685 - "@fluentui/react-nav@9.3.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5882 + '@fluentui/react-nav@9.3.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8686 5883 dependencies: 8687 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8688 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8689 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8690 - "@fluentui/react-divider": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8691 - "@fluentui/react-drawer": 9.10.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8692 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8693 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8694 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8695 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8696 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8697 - "@fluentui/react-theme": 9.2.0 8698 - "@fluentui/react-tooltip": 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8699 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8700 - "@griffel/react": 1.5.30(react@18.3.1) 8701 - "@swc/helpers": 0.5.17 8702 - "@types/react": 19.2.0 8703 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5884 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5885 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5886 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5887 + '@fluentui/react-divider': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5888 + '@fluentui/react-drawer': 9.10.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5889 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 5890 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5891 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5892 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5893 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5894 + '@fluentui/react-theme': 9.2.0 5895 + '@fluentui/react-tooltip': 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5896 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5897 + '@griffel/react': 1.5.30(react@18.3.1) 5898 + '@swc/helpers': 0.5.17 5899 + '@types/react': 19.2.0 5900 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8704 5901 react: 18.3.1 8705 5902 react-dom: 18.3.1(react@18.3.1) 8706 5903 transitivePeerDependencies: 8707 5904 - scheduler 8708 5905 8709 - "@fluentui/react-overflow@9.6.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5906 + '@fluentui/react-overflow@9.6.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8710 5907 dependencies: 8711 - "@fluentui/priority-overflow": 9.2.0 8712 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8713 - "@fluentui/react-theme": 9.2.0 8714 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8715 - "@griffel/react": 1.5.30(react@18.3.1) 8716 - "@swc/helpers": 0.5.17 8717 - "@types/react": 18.3.25 8718 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5908 + '@fluentui/priority-overflow': 9.2.0 5909 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5910 + '@fluentui/react-theme': 9.2.0 5911 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5912 + '@griffel/react': 1.5.30(react@18.3.1) 5913 + '@swc/helpers': 0.5.17 5914 + '@types/react': 18.3.25 5915 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8719 5916 react: 18.3.1 8720 5917 react-dom: 18.3.1(react@18.3.1) 8721 5918 transitivePeerDependencies: 8722 5919 - scheduler 8723 5920 8724 - "@fluentui/react-overflow@9.6.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5921 + '@fluentui/react-overflow@9.6.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8725 5922 dependencies: 8726 - "@fluentui/priority-overflow": 9.2.0 8727 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8728 - "@fluentui/react-theme": 9.2.0 8729 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8730 - "@griffel/react": 1.5.30(react@18.3.1) 8731 - "@swc/helpers": 0.5.17 8732 - "@types/react": 19.2.0 8733 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5923 + '@fluentui/priority-overflow': 9.2.0 5924 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5925 + '@fluentui/react-theme': 9.2.0 5926 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5927 + '@griffel/react': 1.5.30(react@18.3.1) 5928 + '@swc/helpers': 0.5.17 5929 + '@types/react': 19.2.0 5930 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8734 5931 react: 18.3.1 8735 5932 react-dom: 18.3.1(react@18.3.1) 8736 5933 transitivePeerDependencies: 8737 5934 - scheduler 8738 5935 8739 - "@fluentui/react-persona@9.5.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5936 + '@fluentui/react-persona@9.5.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8740 5937 dependencies: 8741 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8742 - "@fluentui/react-badge": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8743 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8744 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8745 - "@fluentui/react-theme": 9.2.0 8746 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8747 - "@griffel/react": 1.5.30(react@18.3.1) 8748 - "@swc/helpers": 0.5.17 8749 - "@types/react": 18.3.25 8750 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5938 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5939 + '@fluentui/react-badge': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5940 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5941 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5942 + '@fluentui/react-theme': 9.2.0 5943 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5944 + '@griffel/react': 1.5.30(react@18.3.1) 5945 + '@swc/helpers': 0.5.17 5946 + '@types/react': 18.3.25 5947 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8751 5948 react: 18.3.1 8752 5949 react-dom: 18.3.1(react@18.3.1) 8753 5950 transitivePeerDependencies: 8754 5951 - scheduler 8755 5952 8756 - "@fluentui/react-persona@9.5.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5953 + '@fluentui/react-persona@9.5.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8757 5954 dependencies: 8758 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8759 - "@fluentui/react-badge": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8760 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8761 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8762 - "@fluentui/react-theme": 9.2.0 8763 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8764 - "@griffel/react": 1.5.30(react@18.3.1) 8765 - "@swc/helpers": 0.5.17 8766 - "@types/react": 19.2.0 8767 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5955 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5956 + '@fluentui/react-badge': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5957 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5958 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5959 + '@fluentui/react-theme': 9.2.0 5960 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5961 + '@griffel/react': 1.5.30(react@18.3.1) 5962 + '@swc/helpers': 0.5.17 5963 + '@types/react': 19.2.0 5964 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8768 5965 react: 18.3.1 8769 5966 react-dom: 18.3.1(react@18.3.1) 8770 5967 transitivePeerDependencies: 8771 5968 - scheduler 8772 5969 8773 - "@fluentui/react-popover@9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5970 + '@fluentui/react-popover@9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8774 5971 dependencies: 8775 - "@fluentui/keyboard-keys": 9.0.8 8776 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8777 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8778 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8779 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8780 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8781 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8782 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8783 - "@fluentui/react-theme": 9.2.0 8784 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8785 - "@griffel/react": 1.5.30(react@18.3.1) 8786 - "@swc/helpers": 0.5.17 8787 - "@types/react": 18.3.25 8788 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 5972 + '@fluentui/keyboard-keys': 9.0.8 5973 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5974 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5975 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5976 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5977 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5978 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5979 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5980 + '@fluentui/react-theme': 9.2.0 5981 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5982 + '@griffel/react': 1.5.30(react@18.3.1) 5983 + '@swc/helpers': 0.5.17 5984 + '@types/react': 18.3.25 5985 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8789 5986 react: 18.3.1 8790 5987 react-dom: 18.3.1(react@18.3.1) 8791 5988 transitivePeerDependencies: 8792 5989 - scheduler 8793 5990 8794 - "@fluentui/react-popover@9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 5991 + '@fluentui/react-popover@9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8795 5992 dependencies: 8796 - "@fluentui/keyboard-keys": 9.0.8 8797 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8798 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8799 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8800 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8801 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8802 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8803 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8804 - "@fluentui/react-theme": 9.2.0 8805 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8806 - "@griffel/react": 1.5.30(react@18.3.1) 8807 - "@swc/helpers": 0.5.17 8808 - "@types/react": 19.2.0 8809 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 5993 + '@fluentui/keyboard-keys': 9.0.8 5994 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5995 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 5996 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5997 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5998 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 5999 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6000 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6001 + '@fluentui/react-theme': 9.2.0 6002 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6003 + '@griffel/react': 1.5.30(react@18.3.1) 6004 + '@swc/helpers': 0.5.17 6005 + '@types/react': 19.2.0 6006 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8810 6007 react: 18.3.1 8811 6008 react-dom: 18.3.1(react@18.3.1) 8812 6009 transitivePeerDependencies: 8813 6010 - scheduler 8814 6011 8815 - "@fluentui/react-portal@9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6012 + '@fluentui/react-portal@9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8816 6013 dependencies: 8817 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8818 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8819 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8820 - "@griffel/react": 1.5.30(react@18.3.1) 8821 - "@swc/helpers": 0.5.17 8822 - "@types/react": 18.3.25 8823 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6014 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6015 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6016 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6017 + '@griffel/react': 1.5.30(react@18.3.1) 6018 + '@swc/helpers': 0.5.17 6019 + '@types/react': 18.3.25 6020 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8824 6021 react: 18.3.1 8825 6022 react-dom: 18.3.1(react@18.3.1) 8826 6023 8827 - "@fluentui/react-portal@9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6024 + '@fluentui/react-portal@9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8828 6025 dependencies: 8829 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8830 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8831 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8832 - "@griffel/react": 1.5.30(react@18.3.1) 8833 - "@swc/helpers": 0.5.17 8834 - "@types/react": 19.2.0 8835 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6026 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6027 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6028 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6029 + '@griffel/react': 1.5.30(react@18.3.1) 6030 + '@swc/helpers': 0.5.17 6031 + '@types/react': 19.2.0 6032 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8836 6033 react: 18.3.1 8837 6034 react-dom: 18.3.1(react@18.3.1) 8838 6035 8839 - "@fluentui/react-positioning@9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6036 + '@fluentui/react-positioning@9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8840 6037 dependencies: 8841 - "@floating-ui/devtools": 0.2.3(@floating-ui/dom@1.7.4) 8842 - "@floating-ui/dom": 1.7.4 8843 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8844 - "@fluentui/react-theme": 9.2.0 8845 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8846 - "@griffel/react": 1.5.30(react@18.3.1) 8847 - "@swc/helpers": 0.5.17 8848 - "@types/react": 18.3.25 8849 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6038 + '@floating-ui/devtools': 0.2.3(@floating-ui/dom@1.7.4) 6039 + '@floating-ui/dom': 1.7.4 6040 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6041 + '@fluentui/react-theme': 9.2.0 6042 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6043 + '@griffel/react': 1.5.30(react@18.3.1) 6044 + '@swc/helpers': 0.5.17 6045 + '@types/react': 18.3.25 6046 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8850 6047 react: 18.3.1 8851 6048 react-dom: 18.3.1(react@18.3.1) 8852 6049 use-sync-external-store: 1.6.0(react@18.3.1) 8853 6050 8854 - "@fluentui/react-positioning@9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6051 + '@fluentui/react-positioning@9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8855 6052 dependencies: 8856 - "@floating-ui/devtools": 0.2.3(@floating-ui/dom@1.7.4) 8857 - "@floating-ui/dom": 1.7.4 8858 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8859 - "@fluentui/react-theme": 9.2.0 8860 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8861 - "@griffel/react": 1.5.30(react@18.3.1) 8862 - "@swc/helpers": 0.5.17 8863 - "@types/react": 19.2.0 8864 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6053 + '@floating-ui/devtools': 0.2.3(@floating-ui/dom@1.7.4) 6054 + '@floating-ui/dom': 1.7.4 6055 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6056 + '@fluentui/react-theme': 9.2.0 6057 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6058 + '@griffel/react': 1.5.30(react@18.3.1) 6059 + '@swc/helpers': 0.5.17 6060 + '@types/react': 19.2.0 6061 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8865 6062 react: 18.3.1 8866 6063 react-dom: 18.3.1(react@18.3.1) 8867 6064 use-sync-external-store: 1.6.0(react@18.3.1) 8868 6065 8869 - "@fluentui/react-progress@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6066 + '@fluentui/react-progress@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8870 6067 dependencies: 8871 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8872 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8873 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8874 - "@fluentui/react-theme": 9.2.0 8875 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8876 - "@griffel/react": 1.5.30(react@18.3.1) 8877 - "@swc/helpers": 0.5.17 8878 - "@types/react": 18.3.25 8879 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6068 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6069 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6070 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6071 + '@fluentui/react-theme': 9.2.0 6072 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6073 + '@griffel/react': 1.5.30(react@18.3.1) 6074 + '@swc/helpers': 0.5.17 6075 + '@types/react': 18.3.25 6076 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8880 6077 react: 18.3.1 8881 6078 react-dom: 18.3.1(react@18.3.1) 8882 6079 transitivePeerDependencies: 8883 6080 - scheduler 8884 6081 8885 - "@fluentui/react-progress@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6082 + '@fluentui/react-progress@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8886 6083 dependencies: 8887 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8888 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8889 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8890 - "@fluentui/react-theme": 9.2.0 8891 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8892 - "@griffel/react": 1.5.30(react@18.3.1) 8893 - "@swc/helpers": 0.5.17 8894 - "@types/react": 19.2.0 8895 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6084 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6085 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6086 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6087 + '@fluentui/react-theme': 9.2.0 6088 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6089 + '@griffel/react': 1.5.30(react@18.3.1) 6090 + '@swc/helpers': 0.5.17 6091 + '@types/react': 19.2.0 6092 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8896 6093 react: 18.3.1 8897 6094 react-dom: 18.3.1(react@18.3.1) 8898 6095 transitivePeerDependencies: 8899 6096 - scheduler 8900 6097 8901 - "@fluentui/react-provider@9.22.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6098 + '@fluentui/react-provider@9.22.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8902 6099 dependencies: 8903 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8904 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8905 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8906 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8907 - "@fluentui/react-theme": 9.2.0 8908 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8909 - "@griffel/core": 1.19.2 8910 - "@griffel/react": 1.5.30(react@18.3.1) 8911 - "@swc/helpers": 0.5.17 8912 - "@types/react": 18.3.25 8913 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6100 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6101 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6102 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6103 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6104 + '@fluentui/react-theme': 9.2.0 6105 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6106 + '@griffel/core': 1.19.2 6107 + '@griffel/react': 1.5.30(react@18.3.1) 6108 + '@swc/helpers': 0.5.17 6109 + '@types/react': 18.3.25 6110 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8914 6111 react: 18.3.1 8915 6112 react-dom: 18.3.1(react@18.3.1) 8916 6113 8917 - "@fluentui/react-provider@9.22.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6114 + '@fluentui/react-provider@9.22.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8918 6115 dependencies: 8919 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8920 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8921 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8922 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8923 - "@fluentui/react-theme": 9.2.0 8924 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8925 - "@griffel/core": 1.19.2 8926 - "@griffel/react": 1.5.30(react@18.3.1) 8927 - "@swc/helpers": 0.5.17 8928 - "@types/react": 19.2.0 8929 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6116 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6117 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6118 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6119 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6120 + '@fluentui/react-theme': 9.2.0 6121 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6122 + '@griffel/core': 1.19.2 6123 + '@griffel/react': 1.5.30(react@18.3.1) 6124 + '@swc/helpers': 0.5.17 6125 + '@types/react': 19.2.0 6126 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8930 6127 react: 18.3.1 8931 6128 react-dom: 18.3.1(react@18.3.1) 8932 6129 8933 - "@fluentui/react-radio@9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6130 + '@fluentui/react-radio@9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8934 6131 dependencies: 8935 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8936 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8937 - "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8938 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8939 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8940 - "@fluentui/react-theme": 9.2.0 8941 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8942 - "@griffel/react": 1.5.30(react@18.3.1) 8943 - "@swc/helpers": 0.5.17 8944 - "@types/react": 18.3.25 8945 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6132 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6133 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6134 + '@fluentui/react-label': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6135 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6136 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6137 + '@fluentui/react-theme': 9.2.0 6138 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6139 + '@griffel/react': 1.5.30(react@18.3.1) 6140 + '@swc/helpers': 0.5.17 6141 + '@types/react': 18.3.25 6142 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8946 6143 react: 18.3.1 8947 6144 react-dom: 18.3.1(react@18.3.1) 8948 6145 transitivePeerDependencies: 8949 6146 - scheduler 8950 6147 8951 - "@fluentui/react-radio@9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6148 + '@fluentui/react-radio@9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 8952 6149 dependencies: 8953 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8954 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8955 - "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8956 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8957 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8958 - "@fluentui/react-theme": 9.2.0 8959 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8960 - "@griffel/react": 1.5.30(react@18.3.1) 8961 - "@swc/helpers": 0.5.17 8962 - "@types/react": 19.2.0 8963 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6150 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6151 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6152 + '@fluentui/react-label': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6153 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6154 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6155 + '@fluentui/react-theme': 9.2.0 6156 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6157 + '@griffel/react': 1.5.30(react@18.3.1) 6158 + '@swc/helpers': 0.5.17 6159 + '@types/react': 19.2.0 6160 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8964 6161 react: 18.3.1 8965 6162 react-dom: 18.3.1(react@18.3.1) 8966 6163 transitivePeerDependencies: 8967 6164 - scheduler 8968 6165 8969 - "@fluentui/react-rating@9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6166 + '@fluentui/react-rating@9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8970 6167 dependencies: 8971 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8972 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8973 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8974 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8975 - "@fluentui/react-theme": 9.2.0 8976 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8977 - "@griffel/react": 1.5.30(react@18.3.1) 8978 - "@swc/helpers": 0.5.17 8979 - "@types/react": 18.3.25 8980 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6168 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6169 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6170 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6171 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6172 + '@fluentui/react-theme': 9.2.0 6173 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6174 + '@griffel/react': 1.5.30(react@18.3.1) 6175 + '@swc/helpers': 0.5.17 6176 + '@types/react': 18.3.25 6177 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 8981 6178 react: 18.3.1 8982 6179 react-dom: 18.3.1(react@18.3.1) 8983 6180 8984 - "@fluentui/react-rating@9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6181 + '@fluentui/react-rating@9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 8985 6182 dependencies: 8986 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 8987 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8988 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8989 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8990 - "@fluentui/react-theme": 9.2.0 8991 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8992 - "@griffel/react": 1.5.30(react@18.3.1) 8993 - "@swc/helpers": 0.5.17 8994 - "@types/react": 19.2.0 8995 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6183 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6184 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6185 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6186 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6187 + '@fluentui/react-theme': 9.2.0 6188 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6189 + '@griffel/react': 1.5.30(react@18.3.1) 6190 + '@swc/helpers': 0.5.17 6191 + '@types/react': 19.2.0 6192 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 8996 6193 react: 18.3.1 8997 6194 react-dom: 18.3.1(react@18.3.1) 8998 6195 8999 - "@fluentui/react-search@9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6196 + '@fluentui/react-search@9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9000 6197 dependencies: 9001 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9002 - "@fluentui/react-input": 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9003 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9004 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9005 - "@fluentui/react-theme": 9.2.0 9006 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9007 - "@griffel/react": 1.5.30(react@18.3.1) 9008 - "@swc/helpers": 0.5.17 9009 - "@types/react": 18.3.25 9010 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6198 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6199 + '@fluentui/react-input': 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6200 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6201 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6202 + '@fluentui/react-theme': 9.2.0 6203 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6204 + '@griffel/react': 1.5.30(react@18.3.1) 6205 + '@swc/helpers': 0.5.17 6206 + '@types/react': 18.3.25 6207 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9011 6208 react: 18.3.1 9012 6209 react-dom: 18.3.1(react@18.3.1) 9013 6210 transitivePeerDependencies: 9014 6211 - scheduler 9015 6212 9016 - "@fluentui/react-search@9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6213 + '@fluentui/react-search@9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9017 6214 dependencies: 9018 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9019 - "@fluentui/react-input": 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9020 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9021 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9022 - "@fluentui/react-theme": 9.2.0 9023 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9024 - "@griffel/react": 1.5.30(react@18.3.1) 9025 - "@swc/helpers": 0.5.17 9026 - "@types/react": 19.2.0 9027 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6215 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6216 + '@fluentui/react-input': 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6217 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6218 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6219 + '@fluentui/react-theme': 9.2.0 6220 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6221 + '@griffel/react': 1.5.30(react@18.3.1) 6222 + '@swc/helpers': 0.5.17 6223 + '@types/react': 19.2.0 6224 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9028 6225 react: 18.3.1 9029 6226 react-dom: 18.3.1(react@18.3.1) 9030 6227 transitivePeerDependencies: 9031 6228 - scheduler 9032 6229 9033 - "@fluentui/react-select@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6230 + '@fluentui/react-select@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9034 6231 dependencies: 9035 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9036 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9037 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9038 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9039 - "@fluentui/react-theme": 9.2.0 9040 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9041 - "@griffel/react": 1.5.30(react@18.3.1) 9042 - "@swc/helpers": 0.5.17 9043 - "@types/react": 18.3.25 9044 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6232 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6233 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6234 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6235 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6236 + '@fluentui/react-theme': 9.2.0 6237 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6238 + '@griffel/react': 1.5.30(react@18.3.1) 6239 + '@swc/helpers': 0.5.17 6240 + '@types/react': 18.3.25 6241 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9045 6242 react: 18.3.1 9046 6243 react-dom: 18.3.1(react@18.3.1) 9047 6244 transitivePeerDependencies: 9048 6245 - scheduler 9049 6246 9050 - "@fluentui/react-select@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6247 + '@fluentui/react-select@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9051 6248 dependencies: 9052 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9053 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9054 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9055 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9056 - "@fluentui/react-theme": 9.2.0 9057 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9058 - "@griffel/react": 1.5.30(react@18.3.1) 9059 - "@swc/helpers": 0.5.17 9060 - "@types/react": 19.2.0 9061 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6249 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6250 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6251 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6252 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6253 + '@fluentui/react-theme': 9.2.0 6254 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6255 + '@griffel/react': 1.5.30(react@18.3.1) 6256 + '@swc/helpers': 0.5.17 6257 + '@types/react': 19.2.0 6258 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9062 6259 react: 18.3.1 9063 6260 react-dom: 18.3.1(react@18.3.1) 9064 6261 transitivePeerDependencies: 9065 6262 - scheduler 9066 6263 9067 - "@fluentui/react-shared-contexts@9.25.2(@types/react@18.3.25)(react@18.3.1)": 6264 + '@fluentui/react-shared-contexts@9.25.2(@types/react@18.3.25)(react@18.3.1)': 9068 6265 dependencies: 9069 - "@fluentui/react-theme": 9.2.0 9070 - "@swc/helpers": 0.5.17 9071 - "@types/react": 18.3.25 6266 + '@fluentui/react-theme': 9.2.0 6267 + '@swc/helpers': 0.5.17 6268 + '@types/react': 18.3.25 9072 6269 react: 18.3.1 9073 6270 9074 - "@fluentui/react-shared-contexts@9.25.2(@types/react@19.2.0)(react@18.3.1)": 6271 + '@fluentui/react-shared-contexts@9.25.2(@types/react@19.2.0)(react@18.3.1)': 9075 6272 dependencies: 9076 - "@fluentui/react-theme": 9.2.0 9077 - "@swc/helpers": 0.5.17 9078 - "@types/react": 19.2.0 6273 + '@fluentui/react-theme': 9.2.0 6274 + '@swc/helpers': 0.5.17 6275 + '@types/react': 19.2.0 9079 6276 react: 18.3.1 9080 6277 9081 - "@fluentui/react-skeleton@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6278 + '@fluentui/react-skeleton@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9082 6279 dependencies: 9083 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9084 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9085 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9086 - "@fluentui/react-theme": 9.2.0 9087 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9088 - "@griffel/react": 1.5.30(react@18.3.1) 9089 - "@swc/helpers": 0.5.17 9090 - "@types/react": 18.3.25 9091 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6280 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6281 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6282 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6283 + '@fluentui/react-theme': 9.2.0 6284 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6285 + '@griffel/react': 1.5.30(react@18.3.1) 6286 + '@swc/helpers': 0.5.17 6287 + '@types/react': 18.3.25 6288 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9092 6289 react: 18.3.1 9093 6290 react-dom: 18.3.1(react@18.3.1) 9094 6291 transitivePeerDependencies: 9095 6292 - scheduler 9096 6293 9097 - "@fluentui/react-skeleton@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6294 + '@fluentui/react-skeleton@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9098 6295 dependencies: 9099 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9100 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9101 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9102 - "@fluentui/react-theme": 9.2.0 9103 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9104 - "@griffel/react": 1.5.30(react@18.3.1) 9105 - "@swc/helpers": 0.5.17 9106 - "@types/react": 19.2.0 9107 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6296 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6297 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6298 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6299 + '@fluentui/react-theme': 9.2.0 6300 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6301 + '@griffel/react': 1.5.30(react@18.3.1) 6302 + '@swc/helpers': 0.5.17 6303 + '@types/react': 19.2.0 6304 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9108 6305 react: 18.3.1 9109 6306 react-dom: 18.3.1(react@18.3.1) 9110 6307 transitivePeerDependencies: 9111 6308 - scheduler 9112 6309 9113 - "@fluentui/react-slider@9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6310 + '@fluentui/react-slider@9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9114 6311 dependencies: 9115 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9116 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9117 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9118 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9119 - "@fluentui/react-theme": 9.2.0 9120 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9121 - "@griffel/react": 1.5.30(react@18.3.1) 9122 - "@swc/helpers": 0.5.17 9123 - "@types/react": 18.3.25 9124 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6312 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6313 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6314 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6315 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6316 + '@fluentui/react-theme': 9.2.0 6317 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6318 + '@griffel/react': 1.5.30(react@18.3.1) 6319 + '@swc/helpers': 0.5.17 6320 + '@types/react': 18.3.25 6321 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9125 6322 react: 18.3.1 9126 6323 react-dom: 18.3.1(react@18.3.1) 9127 6324 transitivePeerDependencies: 9128 6325 - scheduler 9129 6326 9130 - "@fluentui/react-slider@9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6327 + '@fluentui/react-slider@9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9131 6328 dependencies: 9132 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9133 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9134 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9135 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9136 - "@fluentui/react-theme": 9.2.0 9137 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9138 - "@griffel/react": 1.5.30(react@18.3.1) 9139 - "@swc/helpers": 0.5.17 9140 - "@types/react": 19.2.0 9141 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6329 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6330 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6331 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6332 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6333 + '@fluentui/react-theme': 9.2.0 6334 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6335 + '@griffel/react': 1.5.30(react@18.3.1) 6336 + '@swc/helpers': 0.5.17 6337 + '@types/react': 19.2.0 6338 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9142 6339 react: 18.3.1 9143 6340 react-dom: 18.3.1(react@18.3.1) 9144 6341 transitivePeerDependencies: 9145 6342 - scheduler 9146 6343 9147 - "@fluentui/react-spinbutton@9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6344 + '@fluentui/react-spinbutton@9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9148 6345 dependencies: 9149 - "@fluentui/keyboard-keys": 9.0.8 9150 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9151 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9152 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9153 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9154 - "@fluentui/react-theme": 9.2.0 9155 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9156 - "@griffel/react": 1.5.30(react@18.3.1) 9157 - "@swc/helpers": 0.5.17 9158 - "@types/react": 18.3.25 9159 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6346 + '@fluentui/keyboard-keys': 9.0.8 6347 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6348 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6349 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6350 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6351 + '@fluentui/react-theme': 9.2.0 6352 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6353 + '@griffel/react': 1.5.30(react@18.3.1) 6354 + '@swc/helpers': 0.5.17 6355 + '@types/react': 18.3.25 6356 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9160 6357 react: 18.3.1 9161 6358 react-dom: 18.3.1(react@18.3.1) 9162 6359 transitivePeerDependencies: 9163 6360 - scheduler 9164 6361 9165 - "@fluentui/react-spinbutton@9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6362 + '@fluentui/react-spinbutton@9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9166 6363 dependencies: 9167 - "@fluentui/keyboard-keys": 9.0.8 9168 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9169 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9170 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9171 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9172 - "@fluentui/react-theme": 9.2.0 9173 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9174 - "@griffel/react": 1.5.30(react@18.3.1) 9175 - "@swc/helpers": 0.5.17 9176 - "@types/react": 19.2.0 9177 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6364 + '@fluentui/keyboard-keys': 9.0.8 6365 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6366 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6367 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6368 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6369 + '@fluentui/react-theme': 9.2.0 6370 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6371 + '@griffel/react': 1.5.30(react@18.3.1) 6372 + '@swc/helpers': 0.5.17 6373 + '@types/react': 19.2.0 6374 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9178 6375 react: 18.3.1 9179 6376 react-dom: 18.3.1(react@18.3.1) 9180 6377 transitivePeerDependencies: 9181 6378 - scheduler 9182 6379 9183 - "@fluentui/react-spinner@9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6380 + '@fluentui/react-spinner@9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9184 6381 dependencies: 9185 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9186 - "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9187 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9188 - "@fluentui/react-theme": 9.2.0 9189 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9190 - "@griffel/react": 1.5.30(react@18.3.1) 9191 - "@swc/helpers": 0.5.17 9192 - "@types/react": 18.3.25 9193 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6382 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6383 + '@fluentui/react-label': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6384 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6385 + '@fluentui/react-theme': 9.2.0 6386 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6387 + '@griffel/react': 1.5.30(react@18.3.1) 6388 + '@swc/helpers': 0.5.17 6389 + '@types/react': 18.3.25 6390 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9194 6391 react: 18.3.1 9195 6392 react-dom: 18.3.1(react@18.3.1) 9196 6393 9197 - "@fluentui/react-spinner@9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6394 + '@fluentui/react-spinner@9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9198 6395 dependencies: 9199 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9200 - "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9201 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9202 - "@fluentui/react-theme": 9.2.0 9203 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9204 - "@griffel/react": 1.5.30(react@18.3.1) 9205 - "@swc/helpers": 0.5.17 9206 - "@types/react": 19.2.0 9207 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6396 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6397 + '@fluentui/react-label': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6398 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6399 + '@fluentui/react-theme': 9.2.0 6400 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6401 + '@griffel/react': 1.5.30(react@18.3.1) 6402 + '@swc/helpers': 0.5.17 6403 + '@types/react': 19.2.0 6404 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9208 6405 react: 18.3.1 9209 6406 react-dom: 18.3.1(react@18.3.1) 9210 6407 9211 - "@fluentui/react-swatch-picker@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6408 + '@fluentui/react-swatch-picker@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9212 6409 dependencies: 9213 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9214 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9215 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9216 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9217 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9218 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9219 - "@fluentui/react-theme": 9.2.0 9220 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9221 - "@griffel/react": 1.5.30(react@18.3.1) 9222 - "@swc/helpers": 0.5.17 9223 - "@types/react": 18.3.25 9224 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6410 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6411 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6412 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6413 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6414 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6415 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6416 + '@fluentui/react-theme': 9.2.0 6417 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6418 + '@griffel/react': 1.5.30(react@18.3.1) 6419 + '@swc/helpers': 0.5.17 6420 + '@types/react': 18.3.25 6421 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9225 6422 react: 18.3.1 9226 6423 react-dom: 18.3.1(react@18.3.1) 9227 6424 transitivePeerDependencies: 9228 6425 - scheduler 9229 6426 9230 - "@fluentui/react-swatch-picker@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6427 + '@fluentui/react-swatch-picker@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9231 6428 dependencies: 9232 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9233 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9234 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9235 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9236 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9237 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9238 - "@fluentui/react-theme": 9.2.0 9239 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9240 - "@griffel/react": 1.5.30(react@18.3.1) 9241 - "@swc/helpers": 0.5.17 9242 - "@types/react": 19.2.0 9243 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6429 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6430 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6431 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6432 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6433 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6434 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6435 + '@fluentui/react-theme': 9.2.0 6436 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6437 + '@griffel/react': 1.5.30(react@18.3.1) 6438 + '@swc/helpers': 0.5.17 6439 + '@types/react': 19.2.0 6440 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9244 6441 react: 18.3.1 9245 6442 react-dom: 18.3.1(react@18.3.1) 9246 6443 transitivePeerDependencies: 9247 6444 - scheduler 9248 6445 9249 - "@fluentui/react-switch@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6446 + '@fluentui/react-switch@9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9250 6447 dependencies: 9251 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9252 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9253 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9254 - "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9255 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9256 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9257 - "@fluentui/react-theme": 9.2.0 9258 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9259 - "@griffel/react": 1.5.30(react@18.3.1) 9260 - "@swc/helpers": 0.5.17 9261 - "@types/react": 18.3.25 9262 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6448 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6449 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6450 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6451 + '@fluentui/react-label': 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6452 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6453 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6454 + '@fluentui/react-theme': 9.2.0 6455 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6456 + '@griffel/react': 1.5.30(react@18.3.1) 6457 + '@swc/helpers': 0.5.17 6458 + '@types/react': 18.3.25 6459 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9263 6460 react: 18.3.1 9264 6461 react-dom: 18.3.1(react@18.3.1) 9265 6462 transitivePeerDependencies: 9266 6463 - scheduler 9267 6464 9268 - "@fluentui/react-switch@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6465 + '@fluentui/react-switch@9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9269 6466 dependencies: 9270 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9271 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9272 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9273 - "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9274 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9275 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9276 - "@fluentui/react-theme": 9.2.0 9277 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9278 - "@griffel/react": 1.5.30(react@18.3.1) 9279 - "@swc/helpers": 0.5.17 9280 - "@types/react": 19.2.0 9281 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6467 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6468 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6469 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6470 + '@fluentui/react-label': 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6471 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6472 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6473 + '@fluentui/react-theme': 9.2.0 6474 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6475 + '@griffel/react': 1.5.30(react@18.3.1) 6476 + '@swc/helpers': 0.5.17 6477 + '@types/react': 19.2.0 6478 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9282 6479 react: 18.3.1 9283 6480 react-dom: 18.3.1(react@18.3.1) 9284 6481 transitivePeerDependencies: 9285 6482 - scheduler 9286 6483 9287 - "@fluentui/react-table@9.19.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6484 + '@fluentui/react-table@9.19.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9288 6485 dependencies: 9289 - "@fluentui/keyboard-keys": 9.0.8 9290 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9291 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9292 - "@fluentui/react-checkbox": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9293 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9294 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9295 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9296 - "@fluentui/react-radio": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9297 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9298 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9299 - "@fluentui/react-theme": 9.2.0 9300 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9301 - "@griffel/react": 1.5.30(react@18.3.1) 9302 - "@swc/helpers": 0.5.17 9303 - "@types/react": 18.3.25 9304 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6486 + '@fluentui/keyboard-keys': 9.0.8 6487 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6488 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6489 + '@fluentui/react-checkbox': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6490 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6491 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6492 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6493 + '@fluentui/react-radio': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6494 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6495 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6496 + '@fluentui/react-theme': 9.2.0 6497 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6498 + '@griffel/react': 1.5.30(react@18.3.1) 6499 + '@swc/helpers': 0.5.17 6500 + '@types/react': 18.3.25 6501 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9305 6502 react: 18.3.1 9306 6503 react-dom: 18.3.1(react@18.3.1) 9307 6504 transitivePeerDependencies: 9308 6505 - scheduler 9309 6506 9310 - "@fluentui/react-table@9.19.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6507 + '@fluentui/react-table@9.19.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9311 6508 dependencies: 9312 - "@fluentui/keyboard-keys": 9.0.8 9313 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9314 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9315 - "@fluentui/react-checkbox": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9316 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9317 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9318 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9319 - "@fluentui/react-radio": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9320 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9321 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9322 - "@fluentui/react-theme": 9.2.0 9323 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9324 - "@griffel/react": 1.5.30(react@18.3.1) 9325 - "@swc/helpers": 0.5.17 9326 - "@types/react": 19.2.0 9327 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6509 + '@fluentui/keyboard-keys': 9.0.8 6510 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6511 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6512 + '@fluentui/react-checkbox': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6513 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6514 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6515 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6516 + '@fluentui/react-radio': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6517 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6518 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6519 + '@fluentui/react-theme': 9.2.0 6520 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6521 + '@griffel/react': 1.5.30(react@18.3.1) 6522 + '@swc/helpers': 0.5.17 6523 + '@types/react': 19.2.0 6524 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9328 6525 react: 18.3.1 9329 6526 react-dom: 18.3.1(react@18.3.1) 9330 6527 transitivePeerDependencies: 9331 6528 - scheduler 9332 6529 9333 - "@fluentui/react-tabs@9.10.2(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6530 + '@fluentui/react-tabs@9.10.2(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9334 6531 dependencies: 9335 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9336 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9337 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9338 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9339 - "@fluentui/react-theme": 9.2.0 9340 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9341 - "@griffel/react": 1.5.30(react@18.3.1) 9342 - "@swc/helpers": 0.5.17 9343 - "@types/react": 18.3.25 9344 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6532 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6533 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6534 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6535 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6536 + '@fluentui/react-theme': 9.2.0 6537 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6538 + '@griffel/react': 1.5.30(react@18.3.1) 6539 + '@swc/helpers': 0.5.17 6540 + '@types/react': 18.3.25 6541 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9345 6542 react: 18.3.1 9346 6543 react-dom: 18.3.1(react@18.3.1) 9347 6544 transitivePeerDependencies: 9348 6545 - scheduler 9349 6546 9350 - "@fluentui/react-tabs@9.10.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6547 + '@fluentui/react-tabs@9.10.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9351 6548 dependencies: 9352 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9353 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9354 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9355 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9356 - "@fluentui/react-theme": 9.2.0 9357 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9358 - "@griffel/react": 1.5.30(react@18.3.1) 9359 - "@swc/helpers": 0.5.17 9360 - "@types/react": 19.2.0 9361 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6549 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6550 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6551 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6552 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6553 + '@fluentui/react-theme': 9.2.0 6554 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6555 + '@griffel/react': 1.5.30(react@18.3.1) 6556 + '@swc/helpers': 0.5.17 6557 + '@types/react': 19.2.0 6558 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9362 6559 react: 18.3.1 9363 6560 react-dom: 18.3.1(react@18.3.1) 9364 6561 transitivePeerDependencies: 9365 6562 - scheduler 9366 6563 9367 - "@fluentui/react-tabster@9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6564 + '@fluentui/react-tabster@9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9368 6565 dependencies: 9369 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9370 - "@fluentui/react-theme": 9.2.0 9371 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9372 - "@griffel/react": 1.5.30(react@18.3.1) 9373 - "@swc/helpers": 0.5.17 9374 - "@types/react": 18.3.25 9375 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6566 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6567 + '@fluentui/react-theme': 9.2.0 6568 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6569 + '@griffel/react': 1.5.30(react@18.3.1) 6570 + '@swc/helpers': 0.5.17 6571 + '@types/react': 18.3.25 6572 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9376 6573 keyborg: 2.6.0 9377 6574 react: 18.3.1 9378 6575 react-dom: 18.3.1(react@18.3.1) 9379 6576 tabster: 8.5.6 9380 6577 9381 - "@fluentui/react-tabster@9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6578 + '@fluentui/react-tabster@9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9382 6579 dependencies: 9383 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9384 - "@fluentui/react-theme": 9.2.0 9385 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9386 - "@griffel/react": 1.5.30(react@18.3.1) 9387 - "@swc/helpers": 0.5.17 9388 - "@types/react": 19.2.0 9389 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6580 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6581 + '@fluentui/react-theme': 9.2.0 6582 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6583 + '@griffel/react': 1.5.30(react@18.3.1) 6584 + '@swc/helpers': 0.5.17 6585 + '@types/react': 19.2.0 6586 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9390 6587 keyborg: 2.6.0 9391 6588 react: 18.3.1 9392 6589 react-dom: 18.3.1(react@18.3.1) 9393 6590 tabster: 8.5.6 9394 6591 9395 - "@fluentui/react-tag-picker@9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6592 + '@fluentui/react-tag-picker@9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9396 6593 dependencies: 9397 - "@fluentui/keyboard-keys": 9.0.8 9398 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9399 - "@fluentui/react-combobox": 9.16.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9400 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9401 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9402 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9403 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9404 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9405 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9406 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9407 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9408 - "@fluentui/react-tags": 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9409 - "@fluentui/react-theme": 9.2.0 9410 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9411 - "@griffel/react": 1.5.30(react@18.3.1) 9412 - "@swc/helpers": 0.5.17 9413 - "@types/react": 18.3.25 9414 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6594 + '@fluentui/keyboard-keys': 9.0.8 6595 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6596 + '@fluentui/react-combobox': 9.16.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6597 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6598 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6599 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6600 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6601 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6602 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6603 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6604 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6605 + '@fluentui/react-tags': 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6606 + '@fluentui/react-theme': 9.2.0 6607 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6608 + '@griffel/react': 1.5.30(react@18.3.1) 6609 + '@swc/helpers': 0.5.17 6610 + '@types/react': 18.3.25 6611 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9415 6612 react: 18.3.1 9416 6613 react-dom: 18.3.1(react@18.3.1) 9417 6614 transitivePeerDependencies: 9418 6615 - scheduler 9419 6616 9420 - "@fluentui/react-tag-picker@9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6617 + '@fluentui/react-tag-picker@9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9421 6618 dependencies: 9422 - "@fluentui/keyboard-keys": 9.0.8 9423 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9424 - "@fluentui/react-combobox": 9.16.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9425 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9426 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9427 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9428 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9429 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9430 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9431 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9432 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9433 - "@fluentui/react-tags": 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9434 - "@fluentui/react-theme": 9.2.0 9435 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9436 - "@griffel/react": 1.5.30(react@18.3.1) 9437 - "@swc/helpers": 0.5.17 9438 - "@types/react": 19.2.0 9439 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6619 + '@fluentui/keyboard-keys': 9.0.8 6620 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6621 + '@fluentui/react-combobox': 9.16.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6622 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6623 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6624 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6625 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6626 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6627 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6628 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6629 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6630 + '@fluentui/react-tags': 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6631 + '@fluentui/react-theme': 9.2.0 6632 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6633 + '@griffel/react': 1.5.30(react@18.3.1) 6634 + '@swc/helpers': 0.5.17 6635 + '@types/react': 19.2.0 6636 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9440 6637 react: 18.3.1 9441 6638 react-dom: 18.3.1(react@18.3.1) 9442 6639 transitivePeerDependencies: 9443 6640 - scheduler 9444 6641 9445 - "@fluentui/react-tags@9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6642 + '@fluentui/react-tags@9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9446 6643 dependencies: 9447 - "@fluentui/keyboard-keys": 9.0.8 9448 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9449 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9450 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9451 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9452 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9453 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9454 - "@fluentui/react-theme": 9.2.0 9455 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9456 - "@griffel/react": 1.5.30(react@18.3.1) 9457 - "@swc/helpers": 0.5.17 9458 - "@types/react": 18.3.25 9459 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6644 + '@fluentui/keyboard-keys': 9.0.8 6645 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6646 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6647 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6648 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6649 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6650 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6651 + '@fluentui/react-theme': 9.2.0 6652 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6653 + '@griffel/react': 1.5.30(react@18.3.1) 6654 + '@swc/helpers': 0.5.17 6655 + '@types/react': 18.3.25 6656 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9460 6657 react: 18.3.1 9461 6658 react-dom: 18.3.1(react@18.3.1) 9462 6659 transitivePeerDependencies: 9463 6660 - scheduler 9464 6661 9465 - "@fluentui/react-tags@9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6662 + '@fluentui/react-tags@9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9466 6663 dependencies: 9467 - "@fluentui/keyboard-keys": 9.0.8 9468 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9469 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9470 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9471 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9472 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9473 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9474 - "@fluentui/react-theme": 9.2.0 9475 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9476 - "@griffel/react": 1.5.30(react@18.3.1) 9477 - "@swc/helpers": 0.5.17 9478 - "@types/react": 19.2.0 9479 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6664 + '@fluentui/keyboard-keys': 9.0.8 6665 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6666 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6667 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6668 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6669 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6670 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6671 + '@fluentui/react-theme': 9.2.0 6672 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6673 + '@griffel/react': 1.5.30(react@18.3.1) 6674 + '@swc/helpers': 0.5.17 6675 + '@types/react': 19.2.0 6676 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9480 6677 react: 18.3.1 9481 6678 react-dom: 18.3.1(react@18.3.1) 9482 6679 transitivePeerDependencies: 9483 6680 - scheduler 9484 6681 9485 - "@fluentui/react-teaching-popover@9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6682 + '@fluentui/react-teaching-popover@9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9486 6683 dependencies: 9487 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9488 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9489 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9490 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9491 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9492 - "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9493 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9494 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9495 - "@fluentui/react-theme": 9.2.0 9496 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9497 - "@griffel/react": 1.5.30(react@18.3.1) 9498 - "@swc/helpers": 0.5.17 9499 - "@types/react": 18.3.25 9500 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6684 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6685 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6686 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6687 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6688 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6689 + '@fluentui/react-popover': 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6690 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6691 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6692 + '@fluentui/react-theme': 9.2.0 6693 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6694 + '@griffel/react': 1.5.30(react@18.3.1) 6695 + '@swc/helpers': 0.5.17 6696 + '@types/react': 18.3.25 6697 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9501 6698 react: 18.3.1 9502 6699 react-dom: 18.3.1(react@18.3.1) 9503 6700 use-sync-external-store: 1.6.0(react@18.3.1) 9504 6701 transitivePeerDependencies: 9505 6702 - scheduler 9506 6703 9507 - "@fluentui/react-teaching-popover@9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6704 + '@fluentui/react-teaching-popover@9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9508 6705 dependencies: 9509 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9510 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9511 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9512 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9513 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9514 - "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9515 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9516 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9517 - "@fluentui/react-theme": 9.2.0 9518 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9519 - "@griffel/react": 1.5.30(react@18.3.1) 9520 - "@swc/helpers": 0.5.17 9521 - "@types/react": 19.2.0 9522 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6706 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6707 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6708 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6709 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6710 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6711 + '@fluentui/react-popover': 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6712 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6713 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6714 + '@fluentui/react-theme': 9.2.0 6715 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6716 + '@griffel/react': 1.5.30(react@18.3.1) 6717 + '@swc/helpers': 0.5.17 6718 + '@types/react': 19.2.0 6719 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9523 6720 react: 18.3.1 9524 6721 react-dom: 18.3.1(react@18.3.1) 9525 6722 use-sync-external-store: 1.6.0(react@18.3.1) 9526 6723 transitivePeerDependencies: 9527 6724 - scheduler 9528 6725 9529 - "@fluentui/react-text@9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6726 + '@fluentui/react-text@9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9530 6727 dependencies: 9531 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9532 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9533 - "@fluentui/react-theme": 9.2.0 9534 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9535 - "@griffel/react": 1.5.30(react@18.3.1) 9536 - "@swc/helpers": 0.5.17 9537 - "@types/react": 18.3.25 9538 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6728 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6729 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6730 + '@fluentui/react-theme': 9.2.0 6731 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6732 + '@griffel/react': 1.5.30(react@18.3.1) 6733 + '@swc/helpers': 0.5.17 6734 + '@types/react': 18.3.25 6735 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9539 6736 react: 18.3.1 9540 6737 react-dom: 18.3.1(react@18.3.1) 9541 6738 9542 - "@fluentui/react-text@9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6739 + '@fluentui/react-text@9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9543 6740 dependencies: 9544 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9545 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9546 - "@fluentui/react-theme": 9.2.0 9547 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9548 - "@griffel/react": 1.5.30(react@18.3.1) 9549 - "@swc/helpers": 0.5.17 9550 - "@types/react": 19.2.0 9551 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6741 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6742 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6743 + '@fluentui/react-theme': 9.2.0 6744 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6745 + '@griffel/react': 1.5.30(react@18.3.1) 6746 + '@swc/helpers': 0.5.17 6747 + '@types/react': 19.2.0 6748 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9552 6749 react: 18.3.1 9553 6750 react-dom: 18.3.1(react@18.3.1) 9554 6751 9555 - "@fluentui/react-textarea@9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6752 + '@fluentui/react-textarea@9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9556 6753 dependencies: 9557 - "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9558 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9559 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9560 - "@fluentui/react-theme": 9.2.0 9561 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9562 - "@griffel/react": 1.5.30(react@18.3.1) 9563 - "@swc/helpers": 0.5.17 9564 - "@types/react": 18.3.25 9565 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6754 + '@fluentui/react-field': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6755 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6756 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6757 + '@fluentui/react-theme': 9.2.0 6758 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6759 + '@griffel/react': 1.5.30(react@18.3.1) 6760 + '@swc/helpers': 0.5.17 6761 + '@types/react': 18.3.25 6762 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9566 6763 react: 18.3.1 9567 6764 react-dom: 18.3.1(react@18.3.1) 9568 6765 transitivePeerDependencies: 9569 6766 - scheduler 9570 6767 9571 - "@fluentui/react-textarea@9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6768 + '@fluentui/react-textarea@9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9572 6769 dependencies: 9573 - "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9574 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9575 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9576 - "@fluentui/react-theme": 9.2.0 9577 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9578 - "@griffel/react": 1.5.30(react@18.3.1) 9579 - "@swc/helpers": 0.5.17 9580 - "@types/react": 19.2.0 9581 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6770 + '@fluentui/react-field': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6771 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6772 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6773 + '@fluentui/react-theme': 9.2.0 6774 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6775 + '@griffel/react': 1.5.30(react@18.3.1) 6776 + '@swc/helpers': 0.5.17 6777 + '@types/react': 19.2.0 6778 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9582 6779 react: 18.3.1 9583 6780 react-dom: 18.3.1(react@18.3.1) 9584 6781 transitivePeerDependencies: 9585 6782 - scheduler 9586 6783 9587 - "@fluentui/react-theme@9.2.0": 6784 + '@fluentui/react-theme@9.2.0': 9588 6785 dependencies: 9589 - "@fluentui/tokens": 1.0.0-alpha.22 9590 - "@swc/helpers": 0.5.17 6786 + '@fluentui/tokens': 1.0.0-alpha.22 6787 + '@swc/helpers': 0.5.17 9591 6788 9592 - "@fluentui/react-toast@9.7.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6789 + '@fluentui/react-toast@9.7.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9593 6790 dependencies: 9594 - "@fluentui/keyboard-keys": 9.0.8 9595 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9596 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9597 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9598 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9599 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9600 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9601 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9602 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9603 - "@fluentui/react-theme": 9.2.0 9604 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9605 - "@griffel/react": 1.5.30(react@18.3.1) 9606 - "@swc/helpers": 0.5.17 9607 - "@types/react": 18.3.25 9608 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6791 + '@fluentui/keyboard-keys': 9.0.8 6792 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6793 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6794 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6795 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6796 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6797 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6798 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6799 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6800 + '@fluentui/react-theme': 9.2.0 6801 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6802 + '@griffel/react': 1.5.30(react@18.3.1) 6803 + '@swc/helpers': 0.5.17 6804 + '@types/react': 18.3.25 6805 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9609 6806 react: 18.3.1 9610 6807 react-dom: 18.3.1(react@18.3.1) 9611 6808 9612 - "@fluentui/react-toast@9.7.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6809 + '@fluentui/react-toast@9.7.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9613 6810 dependencies: 9614 - "@fluentui/keyboard-keys": 9.0.8 9615 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9616 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9617 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9618 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9619 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9620 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9621 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9622 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9623 - "@fluentui/react-theme": 9.2.0 9624 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9625 - "@griffel/react": 1.5.30(react@18.3.1) 9626 - "@swc/helpers": 0.5.17 9627 - "@types/react": 19.2.0 9628 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6811 + '@fluentui/keyboard-keys': 9.0.8 6812 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6813 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6814 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6815 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6816 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6817 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6818 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6819 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6820 + '@fluentui/react-theme': 9.2.0 6821 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6822 + '@griffel/react': 1.5.30(react@18.3.1) 6823 + '@swc/helpers': 0.5.17 6824 + '@types/react': 19.2.0 6825 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9629 6826 react: 18.3.1 9630 6827 react-dom: 18.3.1(react@18.3.1) 9631 6828 9632 - "@fluentui/react-toolbar@9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6829 + '@fluentui/react-toolbar@9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9633 6830 dependencies: 9634 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9635 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9636 - "@fluentui/react-divider": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9637 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9638 - "@fluentui/react-radio": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9639 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9640 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9641 - "@fluentui/react-theme": 9.2.0 9642 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9643 - "@griffel/react": 1.5.30(react@18.3.1) 9644 - "@swc/helpers": 0.5.17 9645 - "@types/react": 18.3.25 9646 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6831 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6832 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6833 + '@fluentui/react-divider': 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6834 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6835 + '@fluentui/react-radio': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6836 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6837 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6838 + '@fluentui/react-theme': 9.2.0 6839 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6840 + '@griffel/react': 1.5.30(react@18.3.1) 6841 + '@swc/helpers': 0.5.17 6842 + '@types/react': 18.3.25 6843 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9647 6844 react: 18.3.1 9648 6845 react-dom: 18.3.1(react@18.3.1) 9649 6846 transitivePeerDependencies: 9650 6847 - scheduler 9651 6848 9652 - "@fluentui/react-toolbar@9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6849 + '@fluentui/react-toolbar@9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9653 6850 dependencies: 9654 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9655 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9656 - "@fluentui/react-divider": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9657 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9658 - "@fluentui/react-radio": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9659 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9660 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9661 - "@fluentui/react-theme": 9.2.0 9662 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9663 - "@griffel/react": 1.5.30(react@18.3.1) 9664 - "@swc/helpers": 0.5.17 9665 - "@types/react": 19.2.0 9666 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6851 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6852 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6853 + '@fluentui/react-divider': 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6854 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6855 + '@fluentui/react-radio': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6856 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6857 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6858 + '@fluentui/react-theme': 9.2.0 6859 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6860 + '@griffel/react': 1.5.30(react@18.3.1) 6861 + '@swc/helpers': 0.5.17 6862 + '@types/react': 19.2.0 6863 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9667 6864 react: 18.3.1 9668 6865 react-dom: 18.3.1(react@18.3.1) 9669 6866 transitivePeerDependencies: 9670 6867 - scheduler 9671 6868 9672 - "@fluentui/react-tooltip@9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6869 + '@fluentui/react-tooltip@9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9673 6870 dependencies: 9674 - "@fluentui/keyboard-keys": 9.0.8 9675 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9676 - "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9677 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9678 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9679 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9680 - "@fluentui/react-theme": 9.2.0 9681 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9682 - "@griffel/react": 1.5.30(react@18.3.1) 9683 - "@swc/helpers": 0.5.17 9684 - "@types/react": 18.3.25 9685 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6871 + '@fluentui/keyboard-keys': 9.0.8 6872 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6873 + '@fluentui/react-portal': 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6874 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6875 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6876 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6877 + '@fluentui/react-theme': 9.2.0 6878 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6879 + '@griffel/react': 1.5.30(react@18.3.1) 6880 + '@swc/helpers': 0.5.17 6881 + '@types/react': 18.3.25 6882 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9686 6883 react: 18.3.1 9687 6884 react-dom: 18.3.1(react@18.3.1) 9688 6885 9689 - "@fluentui/react-tooltip@9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6886 + '@fluentui/react-tooltip@9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9690 6887 dependencies: 9691 - "@fluentui/keyboard-keys": 9.0.8 9692 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9693 - "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9694 - "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9695 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9696 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9697 - "@fluentui/react-theme": 9.2.0 9698 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9699 - "@griffel/react": 1.5.30(react@18.3.1) 9700 - "@swc/helpers": 0.5.17 9701 - "@types/react": 19.2.0 9702 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6888 + '@fluentui/keyboard-keys': 9.0.8 6889 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6890 + '@fluentui/react-portal': 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6891 + '@fluentui/react-positioning': 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6892 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6893 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6894 + '@fluentui/react-theme': 9.2.0 6895 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6896 + '@griffel/react': 1.5.30(react@18.3.1) 6897 + '@swc/helpers': 0.5.17 6898 + '@types/react': 19.2.0 6899 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9703 6900 react: 18.3.1 9704 6901 react-dom: 18.3.1(react@18.3.1) 9705 6902 9706 - "@fluentui/react-tree@9.14.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6903 + '@fluentui/react-tree@9.14.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9707 6904 dependencies: 9708 - "@fluentui/keyboard-keys": 9.0.8 9709 - "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9710 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9711 - "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9712 - "@fluentui/react-checkbox": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9713 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9714 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9715 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9716 - "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9717 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9718 - "@fluentui/react-radio": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9719 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9720 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9721 - "@fluentui/react-theme": 9.2.0 9722 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9723 - "@griffel/react": 1.5.30(react@18.3.1) 9724 - "@swc/helpers": 0.5.17 9725 - "@types/react": 18.3.25 9726 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6905 + '@fluentui/keyboard-keys': 9.0.8 6906 + '@fluentui/react-aria': 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6907 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6908 + '@fluentui/react-button': 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6909 + '@fluentui/react-checkbox': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6910 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6911 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6912 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6913 + '@fluentui/react-motion': 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6914 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6915 + '@fluentui/react-radio': 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6916 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6917 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6918 + '@fluentui/react-theme': 9.2.0 6919 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6920 + '@griffel/react': 1.5.30(react@18.3.1) 6921 + '@swc/helpers': 0.5.17 6922 + '@types/react': 18.3.25 6923 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9727 6924 react: 18.3.1 9728 6925 react-dom: 18.3.1(react@18.3.1) 9729 6926 transitivePeerDependencies: 9730 6927 - scheduler 9731 6928 9732 - "@fluentui/react-tree@9.14.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)": 6929 + '@fluentui/react-tree@9.14.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0)': 9733 6930 dependencies: 9734 - "@fluentui/keyboard-keys": 9.0.8 9735 - "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9736 - "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9737 - "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9738 - "@fluentui/react-checkbox": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9739 - "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9740 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 9741 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9742 - "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9743 - "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9744 - "@fluentui/react-radio": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9745 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9746 - "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9747 - "@fluentui/react-theme": 9.2.0 9748 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9749 - "@griffel/react": 1.5.30(react@18.3.1) 9750 - "@swc/helpers": 0.5.17 9751 - "@types/react": 19.2.0 9752 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6931 + '@fluentui/keyboard-keys': 9.0.8 6932 + '@fluentui/react-aria': 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6933 + '@fluentui/react-avatar': 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6934 + '@fluentui/react-button': 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6935 + '@fluentui/react-checkbox': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6936 + '@fluentui/react-context-selector': 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6937 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 6938 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6939 + '@fluentui/react-motion': 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6940 + '@fluentui/react-motion-components-preview': 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6941 + '@fluentui/react-radio': 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 6942 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6943 + '@fluentui/react-tabster': 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 6944 + '@fluentui/react-theme': 9.2.0 6945 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6946 + '@griffel/react': 1.5.30(react@18.3.1) 6947 + '@swc/helpers': 0.5.17 6948 + '@types/react': 19.2.0 6949 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9753 6950 react: 18.3.1 9754 6951 react-dom: 18.3.1(react@18.3.1) 9755 6952 transitivePeerDependencies: 9756 6953 - scheduler 9757 6954 9758 - "@fluentui/react-utilities@9.25.0(@types/react@18.3.25)(react@18.3.1)": 6955 + '@fluentui/react-utilities@9.25.0(@types/react@18.3.25)(react@18.3.1)': 9759 6956 dependencies: 9760 - "@fluentui/keyboard-keys": 9.0.8 9761 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9762 - "@swc/helpers": 0.5.17 9763 - "@types/react": 18.3.25 6957 + '@fluentui/keyboard-keys': 9.0.8 6958 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6959 + '@swc/helpers': 0.5.17 6960 + '@types/react': 18.3.25 9764 6961 react: 18.3.1 9765 6962 9766 - "@fluentui/react-utilities@9.25.0(@types/react@19.2.0)(react@18.3.1)": 6963 + '@fluentui/react-utilities@9.25.0(@types/react@19.2.0)(react@18.3.1)': 9767 6964 dependencies: 9768 - "@fluentui/keyboard-keys": 9.0.8 9769 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9770 - "@swc/helpers": 0.5.17 9771 - "@types/react": 19.2.0 6965 + '@fluentui/keyboard-keys': 9.0.8 6966 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6967 + '@swc/helpers': 0.5.17 6968 + '@types/react': 19.2.0 9772 6969 react: 18.3.1 9773 6970 9774 - "@fluentui/react-virtualizer@9.0.0-alpha.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6971 + '@fluentui/react-virtualizer@9.0.0-alpha.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9775 6972 dependencies: 9776 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9777 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9778 - "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9779 - "@griffel/react": 1.5.30(react@18.3.1) 9780 - "@swc/helpers": 0.5.17 9781 - "@types/react": 18.3.25 9782 - "@types/react-dom": 18.3.7(@types/react@18.3.25) 6973 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6974 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6975 + '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6976 + '@griffel/react': 1.5.30(react@18.3.1) 6977 + '@swc/helpers': 0.5.17 6978 + '@types/react': 18.3.25 6979 + '@types/react-dom': 18.3.7(@types/react@18.3.25) 9783 6980 react: 18.3.1 9784 6981 react-dom: 18.3.1(react@18.3.1) 9785 6982 9786 - "@fluentui/react-virtualizer@9.0.0-alpha.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)": 6983 + '@fluentui/react-virtualizer@9.0.0-alpha.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)': 9787 6984 dependencies: 9788 - "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9789 - "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9790 - "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9791 - "@griffel/react": 1.5.30(react@18.3.1) 9792 - "@swc/helpers": 0.5.17 9793 - "@types/react": 19.2.0 9794 - "@types/react-dom": 19.2.0(@types/react@19.2.0) 6985 + '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6986 + '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6987 + '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6988 + '@griffel/react': 1.5.30(react@18.3.1) 6989 + '@swc/helpers': 0.5.17 6990 + '@types/react': 19.2.0 6991 + '@types/react-dom': 19.2.0(@types/react@19.2.0) 9795 6992 react: 18.3.1 9796 6993 react-dom: 18.3.1(react@18.3.1) 9797 6994 9798 - "@fluentui/tokens@1.0.0-alpha.22": 6995 + '@fluentui/tokens@1.0.0-alpha.22': 9799 6996 dependencies: 9800 - "@swc/helpers": 0.5.17 6997 + '@swc/helpers': 0.5.17 9801 6998 9802 - "@griffel/core@1.19.2": 6999 + '@griffel/core@1.19.2': 9803 7000 dependencies: 9804 - "@emotion/hash": 0.9.2 9805 - "@griffel/style-types": 1.3.0 7001 + '@emotion/hash': 0.9.2 7002 + '@griffel/style-types': 1.3.0 9806 7003 csstype: 3.1.3 9807 7004 rtl-css-js: 1.16.1 9808 7005 stylis: 4.3.6 9809 7006 tslib: 2.8.1 9810 7007 9811 - "@griffel/react@1.5.30(react@18.3.1)": 7008 + '@griffel/react@1.5.30(react@18.3.1)': 9812 7009 dependencies: 9813 - "@griffel/core": 1.19.2 7010 + '@griffel/core': 1.19.2 9814 7011 react: 18.3.1 9815 7012 tslib: 2.8.1 9816 7013 9817 - "@griffel/style-types@1.3.0": 7014 + '@griffel/style-types@1.3.0': 9818 7015 dependencies: 9819 7016 csstype: 3.1.3 9820 7017 9821 - "@img/colour@1.0.0": 7018 + '@img/colour@1.0.0': 9822 7019 optional: true 9823 7020 9824 - "@img/sharp-darwin-arm64@0.34.4": 7021 + '@img/sharp-darwin-arm64@0.34.4': 9825 7022 optionalDependencies: 9826 - "@img/sharp-libvips-darwin-arm64": 1.2.3 7023 + '@img/sharp-libvips-darwin-arm64': 1.2.3 9827 7024 optional: true 9828 7025 9829 - "@img/sharp-darwin-x64@0.34.4": 7026 + '@img/sharp-darwin-x64@0.34.4': 9830 7027 optionalDependencies: 9831 - "@img/sharp-libvips-darwin-x64": 1.2.3 7028 + '@img/sharp-libvips-darwin-x64': 1.2.3 9832 7029 optional: true 9833 7030 9834 - "@img/sharp-libvips-darwin-arm64@1.2.3": 7031 + '@img/sharp-libvips-darwin-arm64@1.2.3': 9835 7032 optional: true 9836 7033 9837 - "@img/sharp-libvips-darwin-x64@1.2.3": 7034 + '@img/sharp-libvips-darwin-x64@1.2.3': 9838 7035 optional: true 9839 7036 9840 - "@img/sharp-libvips-linux-arm64@1.2.3": 7037 + '@img/sharp-libvips-linux-arm64@1.2.3': 9841 7038 optional: true 9842 7039 9843 - "@img/sharp-libvips-linux-arm@1.2.3": 7040 + '@img/sharp-libvips-linux-arm@1.2.3': 9844 7041 optional: true 9845 7042 9846 - "@img/sharp-libvips-linux-ppc64@1.2.3": 7043 + '@img/sharp-libvips-linux-ppc64@1.2.3': 9847 7044 optional: true 9848 7045 9849 - "@img/sharp-libvips-linux-s390x@1.2.3": 7046 + '@img/sharp-libvips-linux-s390x@1.2.3': 9850 7047 optional: true 9851 7048 9852 - "@img/sharp-libvips-linux-x64@1.2.3": 7049 + '@img/sharp-libvips-linux-x64@1.2.3': 9853 7050 optional: true 9854 7051 9855 - "@img/sharp-libvips-linuxmusl-arm64@1.2.3": 7052 + '@img/sharp-libvips-linuxmusl-arm64@1.2.3': 9856 7053 optional: true 9857 7054 9858 - "@img/sharp-libvips-linuxmusl-x64@1.2.3": 7055 + '@img/sharp-libvips-linuxmusl-x64@1.2.3': 9859 7056 optional: true 9860 7057 9861 - "@img/sharp-linux-arm64@0.34.4": 7058 + '@img/sharp-linux-arm64@0.34.4': 9862 7059 optionalDependencies: 9863 - "@img/sharp-libvips-linux-arm64": 1.2.3 7060 + '@img/sharp-libvips-linux-arm64': 1.2.3 9864 7061 optional: true 9865 7062 9866 - "@img/sharp-linux-arm@0.34.4": 7063 + '@img/sharp-linux-arm@0.34.4': 9867 7064 optionalDependencies: 9868 - "@img/sharp-libvips-linux-arm": 1.2.3 7065 + '@img/sharp-libvips-linux-arm': 1.2.3 9869 7066 optional: true 9870 7067 9871 - "@img/sharp-linux-ppc64@0.34.4": 7068 + '@img/sharp-linux-ppc64@0.34.4': 9872 7069 optionalDependencies: 9873 - "@img/sharp-libvips-linux-ppc64": 1.2.3 7070 + '@img/sharp-libvips-linux-ppc64': 1.2.3 9874 7071 optional: true 9875 7072 9876 - "@img/sharp-linux-s390x@0.34.4": 7073 + '@img/sharp-linux-s390x@0.34.4': 9877 7074 optionalDependencies: 9878 - "@img/sharp-libvips-linux-s390x": 1.2.3 7075 + '@img/sharp-libvips-linux-s390x': 1.2.3 9879 7076 optional: true 9880 7077 9881 - "@img/sharp-linux-x64@0.34.4": 7078 + '@img/sharp-linux-x64@0.34.4': 9882 7079 optionalDependencies: 9883 - "@img/sharp-libvips-linux-x64": 1.2.3 7080 + '@img/sharp-libvips-linux-x64': 1.2.3 9884 7081 optional: true 9885 7082 9886 - "@img/sharp-linuxmusl-arm64@0.34.4": 7083 + '@img/sharp-linuxmusl-arm64@0.34.4': 9887 7084 optionalDependencies: 9888 - "@img/sharp-libvips-linuxmusl-arm64": 1.2.3 7085 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 9889 7086 optional: true 9890 7087 9891 - "@img/sharp-linuxmusl-x64@0.34.4": 7088 + '@img/sharp-linuxmusl-x64@0.34.4': 9892 7089 optionalDependencies: 9893 - "@img/sharp-libvips-linuxmusl-x64": 1.2.3 7090 + '@img/sharp-libvips-linuxmusl-x64': 1.2.3 9894 7091 optional: true 9895 7092 9896 - "@img/sharp-wasm32@0.34.4": 7093 + '@img/sharp-wasm32@0.34.4': 9897 7094 dependencies: 9898 - "@emnapi/runtime": 1.5.0 7095 + '@emnapi/runtime': 1.5.0 9899 7096 optional: true 9900 7097 9901 - "@img/sharp-win32-arm64@0.34.4": 7098 + '@img/sharp-win32-arm64@0.34.4': 9902 7099 optional: true 9903 7100 9904 - "@img/sharp-win32-ia32@0.34.4": 7101 + '@img/sharp-win32-ia32@0.34.4': 9905 7102 optional: true 9906 7103 9907 - "@img/sharp-win32-x64@0.34.4": 7104 + '@img/sharp-win32-x64@0.34.4': 9908 7105 optional: true 9909 7106 9910 - "@inquirer/ansi@1.0.0": {} 7107 + '@inquirer/ansi@1.0.0': {} 9911 7108 9912 - "@inquirer/checkbox@4.2.4(@types/node@20.19.19)": 7109 + '@inquirer/checkbox@4.2.4(@types/node@20.19.19)': 9913 7110 dependencies: 9914 - "@inquirer/ansi": 1.0.0 9915 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 9916 - "@inquirer/figures": 1.0.13 9917 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7111 + '@inquirer/ansi': 1.0.0 7112 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7113 + '@inquirer/figures': 1.0.13 7114 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 9918 7115 yoctocolors-cjs: 2.1.3 9919 7116 optionalDependencies: 9920 - "@types/node": 20.19.19 7117 + '@types/node': 20.19.19 9921 7118 9922 - "@inquirer/confirm@5.1.18(@types/node@20.19.19)": 7119 + '@inquirer/confirm@5.1.18(@types/node@20.19.19)': 9923 7120 dependencies: 9924 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 9925 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7121 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7122 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 9926 7123 optionalDependencies: 9927 - "@types/node": 20.19.19 7124 + '@types/node': 20.19.19 9928 7125 9929 - "@inquirer/core@10.2.2(@types/node@20.19.19)": 7126 + '@inquirer/core@10.2.2(@types/node@20.19.19)': 9930 7127 dependencies: 9931 - "@inquirer/ansi": 1.0.0 9932 - "@inquirer/figures": 1.0.13 9933 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7128 + '@inquirer/ansi': 1.0.0 7129 + '@inquirer/figures': 1.0.13 7130 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 9934 7131 cli-width: 4.1.0 9935 7132 mute-stream: 2.0.0 9936 7133 signal-exit: 4.1.0 9937 7134 wrap-ansi: 6.2.0 9938 7135 yoctocolors-cjs: 2.1.3 9939 7136 optionalDependencies: 9940 - "@types/node": 20.19.19 7137 + '@types/node': 20.19.19 9941 7138 9942 - "@inquirer/editor@4.2.20(@types/node@20.19.19)": 7139 + '@inquirer/editor@4.2.20(@types/node@20.19.19)': 9943 7140 dependencies: 9944 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 9945 - "@inquirer/external-editor": 1.0.2(@types/node@20.19.19) 9946 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7141 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7142 + '@inquirer/external-editor': 1.0.2(@types/node@20.19.19) 7143 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 9947 7144 optionalDependencies: 9948 - "@types/node": 20.19.19 7145 + '@types/node': 20.19.19 9949 7146 9950 - "@inquirer/expand@4.0.20(@types/node@20.19.19)": 7147 + '@inquirer/expand@4.0.20(@types/node@20.19.19)': 9951 7148 dependencies: 9952 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 9953 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7149 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7150 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 9954 7151 yoctocolors-cjs: 2.1.3 9955 7152 optionalDependencies: 9956 - "@types/node": 20.19.19 7153 + '@types/node': 20.19.19 9957 7154 9958 - "@inquirer/external-editor@1.0.2(@types/node@20.19.19)": 7155 + '@inquirer/external-editor@1.0.2(@types/node@20.19.19)': 9959 7156 dependencies: 9960 7157 chardet: 2.1.0 9961 7158 iconv-lite: 0.7.0 9962 7159 optionalDependencies: 9963 - "@types/node": 20.19.19 7160 + '@types/node': 20.19.19 9964 7161 9965 - "@inquirer/figures@1.0.13": {} 7162 + '@inquirer/figures@1.0.13': {} 9966 7163 9967 - "@inquirer/input@4.2.4(@types/node@20.19.19)": 7164 + '@inquirer/input@4.2.4(@types/node@20.19.19)': 9968 7165 dependencies: 9969 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 9970 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7166 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7167 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 9971 7168 optionalDependencies: 9972 - "@types/node": 20.19.19 7169 + '@types/node': 20.19.19 9973 7170 9974 - "@inquirer/number@3.0.20(@types/node@20.19.19)": 7171 + '@inquirer/number@3.0.20(@types/node@20.19.19)': 9975 7172 dependencies: 9976 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 9977 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7173 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7174 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 9978 7175 optionalDependencies: 9979 - "@types/node": 20.19.19 7176 + '@types/node': 20.19.19 9980 7177 9981 - "@inquirer/password@4.0.20(@types/node@20.19.19)": 7178 + '@inquirer/password@4.0.20(@types/node@20.19.19)': 9982 7179 dependencies: 9983 - "@inquirer/ansi": 1.0.0 9984 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 9985 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7180 + '@inquirer/ansi': 1.0.0 7181 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7182 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 9986 7183 optionalDependencies: 9987 - "@types/node": 20.19.19 7184 + '@types/node': 20.19.19 9988 7185 9989 - "@inquirer/prompts@7.8.6(@types/node@20.19.19)": 7186 + '@inquirer/prompts@7.8.6(@types/node@20.19.19)': 9990 7187 dependencies: 9991 - "@inquirer/checkbox": 4.2.4(@types/node@20.19.19) 9992 - "@inquirer/confirm": 5.1.18(@types/node@20.19.19) 9993 - "@inquirer/editor": 4.2.20(@types/node@20.19.19) 9994 - "@inquirer/expand": 4.0.20(@types/node@20.19.19) 9995 - "@inquirer/input": 4.2.4(@types/node@20.19.19) 9996 - "@inquirer/number": 3.0.20(@types/node@20.19.19) 9997 - "@inquirer/password": 4.0.20(@types/node@20.19.19) 9998 - "@inquirer/rawlist": 4.1.8(@types/node@20.19.19) 9999 - "@inquirer/search": 3.1.3(@types/node@20.19.19) 10000 - "@inquirer/select": 4.3.4(@types/node@20.19.19) 7188 + '@inquirer/checkbox': 4.2.4(@types/node@20.19.19) 7189 + '@inquirer/confirm': 5.1.18(@types/node@20.19.19) 7190 + '@inquirer/editor': 4.2.20(@types/node@20.19.19) 7191 + '@inquirer/expand': 4.0.20(@types/node@20.19.19) 7192 + '@inquirer/input': 4.2.4(@types/node@20.19.19) 7193 + '@inquirer/number': 3.0.20(@types/node@20.19.19) 7194 + '@inquirer/password': 4.0.20(@types/node@20.19.19) 7195 + '@inquirer/rawlist': 4.1.8(@types/node@20.19.19) 7196 + '@inquirer/search': 3.1.3(@types/node@20.19.19) 7197 + '@inquirer/select': 4.3.4(@types/node@20.19.19) 10001 7198 optionalDependencies: 10002 - "@types/node": 20.19.19 7199 + '@types/node': 20.19.19 10003 7200 10004 - "@inquirer/rawlist@4.1.8(@types/node@20.19.19)": 7201 + '@inquirer/rawlist@4.1.8(@types/node@20.19.19)': 10005 7202 dependencies: 10006 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 10007 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7203 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7204 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 10008 7205 yoctocolors-cjs: 2.1.3 10009 7206 optionalDependencies: 10010 - "@types/node": 20.19.19 7207 + '@types/node': 20.19.19 10011 7208 10012 - "@inquirer/search@3.1.3(@types/node@20.19.19)": 7209 + '@inquirer/search@3.1.3(@types/node@20.19.19)': 10013 7210 dependencies: 10014 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 10015 - "@inquirer/figures": 1.0.13 10016 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7211 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7212 + '@inquirer/figures': 1.0.13 7213 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 10017 7214 yoctocolors-cjs: 2.1.3 10018 7215 optionalDependencies: 10019 - "@types/node": 20.19.19 7216 + '@types/node': 20.19.19 10020 7217 10021 - "@inquirer/select@4.3.4(@types/node@20.19.19)": 7218 + '@inquirer/select@4.3.4(@types/node@20.19.19)': 10022 7219 dependencies: 10023 - "@inquirer/ansi": 1.0.0 10024 - "@inquirer/core": 10.2.2(@types/node@20.19.19) 10025 - "@inquirer/figures": 1.0.13 10026 - "@inquirer/type": 3.0.8(@types/node@20.19.19) 7220 + '@inquirer/ansi': 1.0.0 7221 + '@inquirer/core': 10.2.2(@types/node@20.19.19) 7222 + '@inquirer/figures': 1.0.13 7223 + '@inquirer/type': 3.0.8(@types/node@20.19.19) 10027 7224 yoctocolors-cjs: 2.1.3 10028 7225 optionalDependencies: 10029 - "@types/node": 20.19.19 7226 + '@types/node': 20.19.19 10030 7227 10031 - "@inquirer/type@3.0.8(@types/node@20.19.19)": 7228 + '@inquirer/type@3.0.8(@types/node@20.19.19)': 10032 7229 optionalDependencies: 10033 - "@types/node": 20.19.19 7230 + '@types/node': 20.19.19 10034 7231 10035 - "@ipld/dag-cbor@7.0.3": 7232 + '@ipld/dag-cbor@7.0.3': 10036 7233 dependencies: 10037 7234 cborg: 1.10.2 10038 7235 multiformats: 9.9.0 10039 7236 10040 - "@isaacs/fs-minipass@4.0.1": 7237 + '@isaacs/fs-minipass@4.0.1': 10041 7238 dependencies: 10042 7239 minipass: 7.1.2 10043 7240 10044 - "@jest/schemas@29.6.3": 7241 + '@jest/schemas@29.6.3': 10045 7242 dependencies: 10046 - "@sinclair/typebox": 0.27.8 7243 + '@sinclair/typebox': 0.27.8 10047 7244 10048 - "@jridgewell/gen-mapping@0.3.13": 7245 + '@jridgewell/gen-mapping@0.3.13': 10049 7246 dependencies: 10050 - "@jridgewell/sourcemap-codec": 1.5.5 10051 - "@jridgewell/trace-mapping": 0.3.31 7247 + '@jridgewell/sourcemap-codec': 1.5.5 7248 + '@jridgewell/trace-mapping': 0.3.31 10052 7249 10053 - "@jridgewell/remapping@2.3.5": 7250 + '@jridgewell/remapping@2.3.5': 10054 7251 dependencies: 10055 - "@jridgewell/gen-mapping": 0.3.13 10056 - "@jridgewell/trace-mapping": 0.3.31 7252 + '@jridgewell/gen-mapping': 0.3.13 7253 + '@jridgewell/trace-mapping': 0.3.31 10057 7254 10058 - "@jridgewell/resolve-uri@3.1.2": {} 7255 + '@jridgewell/resolve-uri@3.1.2': {} 10059 7256 10060 - "@jridgewell/sourcemap-codec@1.5.5": {} 7257 + '@jridgewell/sourcemap-codec@1.5.5': {} 10061 7258 10062 - "@jridgewell/trace-mapping@0.3.31": 7259 + '@jridgewell/trace-mapping@0.3.31': 10063 7260 dependencies: 10064 - "@jridgewell/resolve-uri": 3.1.2 10065 - "@jridgewell/sourcemap-codec": 1.5.5 7261 + '@jridgewell/resolve-uri': 3.1.2 7262 + '@jridgewell/sourcemap-codec': 1.5.5 10066 7263 10067 - "@jspm/core@2.1.0": {} 7264 + '@jspm/core@2.1.0': {} 10068 7265 10069 - "@noble/curves@1.9.7": 7266 + '@noble/curves@1.9.7': 10070 7267 dependencies: 10071 - "@noble/hashes": 1.8.0 7268 + '@noble/hashes': 1.8.0 10072 7269 10073 - "@noble/hashes@1.8.0": {} 7270 + '@noble/hashes@1.8.0': {} 10074 7271 10075 - "@nodelib/fs.scandir@2.1.5": 7272 + '@nodelib/fs.scandir@2.1.5': 10076 7273 dependencies: 10077 - "@nodelib/fs.stat": 2.0.5 7274 + '@nodelib/fs.stat': 2.0.5 10078 7275 run-parallel: 1.2.0 10079 7276 10080 - "@nodelib/fs.stat@2.0.5": {} 7277 + '@nodelib/fs.stat@2.0.5': {} 10081 7278 10082 - "@nodelib/fs.walk@1.2.8": 7279 + '@nodelib/fs.walk@1.2.8': 10083 7280 dependencies: 10084 - "@nodelib/fs.scandir": 2.1.5 7281 + '@nodelib/fs.scandir': 2.1.5 10085 7282 fastq: 1.19.1 10086 7283 10087 - "@oslojs/encoding@1.1.0": {} 7284 + '@oslojs/encoding@1.1.0': {} 10088 7285 10089 - "@rolldown/pluginutils@1.0.0-beta.27": {} 7286 + '@rolldown/pluginutils@1.0.0-beta.27': {} 10090 7287 10091 - "@rollup/pluginutils@5.3.0(rollup@4.52.4)": 7288 + '@rollup/pluginutils@5.3.0(rollup@4.52.4)': 10092 7289 dependencies: 10093 - "@types/estree": 1.0.8 7290 + '@types/estree': 1.0.8 10094 7291 estree-walker: 2.0.2 10095 7292 picomatch: 4.0.3 10096 7293 optionalDependencies: 10097 7294 rollup: 4.52.4 10098 7295 10099 - "@rollup/rollup-android-arm-eabi@4.52.4": 7296 + '@rollup/rollup-android-arm-eabi@4.52.4': 10100 7297 optional: true 10101 7298 10102 - "@rollup/rollup-android-arm64@4.52.4": 7299 + '@rollup/rollup-android-arm64@4.52.4': 10103 7300 optional: true 10104 7301 10105 - "@rollup/rollup-darwin-arm64@4.52.4": 7302 + '@rollup/rollup-darwin-arm64@4.52.4': 10106 7303 optional: true 10107 7304 10108 - "@rollup/rollup-darwin-x64@4.52.4": 7305 + '@rollup/rollup-darwin-x64@4.52.4': 10109 7306 optional: true 10110 7307 10111 - "@rollup/rollup-freebsd-arm64@4.52.4": 7308 + '@rollup/rollup-freebsd-arm64@4.52.4': 10112 7309 optional: true 10113 7310 10114 - "@rollup/rollup-freebsd-x64@4.52.4": 7311 + '@rollup/rollup-freebsd-x64@4.52.4': 10115 7312 optional: true 10116 7313 10117 - "@rollup/rollup-linux-arm-gnueabihf@4.52.4": 7314 + '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 10118 7315 optional: true 10119 7316 10120 - "@rollup/rollup-linux-arm-musleabihf@4.52.4": 7317 + '@rollup/rollup-linux-arm-musleabihf@4.52.4': 10121 7318 optional: true 10122 7319 10123 - "@rollup/rollup-linux-arm64-gnu@4.52.4": 7320 + '@rollup/rollup-linux-arm64-gnu@4.52.4': 10124 7321 optional: true 10125 7322 10126 - "@rollup/rollup-linux-arm64-musl@4.52.4": 7323 + '@rollup/rollup-linux-arm64-musl@4.52.4': 10127 7324 optional: true 10128 7325 10129 - "@rollup/rollup-linux-loong64-gnu@4.52.4": 7326 + '@rollup/rollup-linux-loong64-gnu@4.52.4': 10130 7327 optional: true 10131 7328 10132 - "@rollup/rollup-linux-ppc64-gnu@4.52.4": 7329 + '@rollup/rollup-linux-ppc64-gnu@4.52.4': 10133 7330 optional: true 10134 7331 10135 - "@rollup/rollup-linux-riscv64-gnu@4.52.4": 7332 + '@rollup/rollup-linux-riscv64-gnu@4.52.4': 10136 7333 optional: true 10137 7334 10138 - "@rollup/rollup-linux-riscv64-musl@4.52.4": 7335 + '@rollup/rollup-linux-riscv64-musl@4.52.4': 10139 7336 optional: true 10140 7337 10141 - "@rollup/rollup-linux-s390x-gnu@4.52.4": 7338 + '@rollup/rollup-linux-s390x-gnu@4.52.4': 10142 7339 optional: true 10143 7340 10144 - "@rollup/rollup-linux-x64-gnu@4.40.0": 7341 + '@rollup/rollup-linux-x64-gnu@4.40.0': 10145 7342 optional: true 10146 7343 10147 - "@rollup/rollup-linux-x64-gnu@4.52.4": 7344 + '@rollup/rollup-linux-x64-gnu@4.52.4': 10148 7345 optional: true 10149 7346 10150 - "@rollup/rollup-linux-x64-musl@4.52.4": 7347 + '@rollup/rollup-linux-x64-musl@4.52.4': 10151 7348 optional: true 10152 7349 10153 - "@rollup/rollup-openharmony-arm64@4.52.4": 7350 + '@rollup/rollup-openharmony-arm64@4.52.4': 10154 7351 optional: true 10155 7352 10156 - "@rollup/rollup-win32-arm64-msvc@4.52.4": 7353 + '@rollup/rollup-win32-arm64-msvc@4.52.4': 10157 7354 optional: true 10158 7355 10159 - "@rollup/rollup-win32-ia32-msvc@4.52.4": 7356 + '@rollup/rollup-win32-ia32-msvc@4.52.4': 10160 7357 optional: true 10161 7358 10162 - "@rollup/rollup-win32-x64-gnu@4.52.4": 7359 + '@rollup/rollup-win32-x64-gnu@4.52.4': 10163 7360 optional: true 10164 7361 10165 - "@rollup/rollup-win32-x64-msvc@4.52.4": 7362 + '@rollup/rollup-win32-x64-msvc@4.52.4': 10166 7363 optional: true 10167 7364 10168 - "@scarf/scarf@1.4.0": {} 7365 + '@scarf/scarf@1.4.0': {} 10169 7366 10170 - "@shikijs/core@3.13.0": 7367 + '@shikijs/core@3.13.0': 10171 7368 dependencies: 10172 - "@shikijs/types": 3.13.0 10173 - "@shikijs/vscode-textmate": 10.0.2 10174 - "@types/hast": 3.0.4 7369 + '@shikijs/types': 3.13.0 7370 + '@shikijs/vscode-textmate': 10.0.2 7371 + '@types/hast': 3.0.4 10175 7372 hast-util-to-html: 9.0.5 10176 7373 10177 - "@shikijs/engine-javascript@3.13.0": 7374 + '@shikijs/engine-javascript@3.13.0': 10178 7375 dependencies: 10179 - "@shikijs/types": 3.13.0 10180 - "@shikijs/vscode-textmate": 10.0.2 7376 + '@shikijs/types': 3.13.0 7377 + '@shikijs/vscode-textmate': 10.0.2 10181 7378 oniguruma-to-es: 4.3.3 10182 7379 10183 - "@shikijs/engine-oniguruma@3.13.0": 7380 + '@shikijs/engine-oniguruma@3.13.0': 10184 7381 dependencies: 10185 - "@shikijs/types": 3.13.0 10186 - "@shikijs/vscode-textmate": 10.0.2 7382 + '@shikijs/types': 3.13.0 7383 + '@shikijs/vscode-textmate': 10.0.2 10187 7384 10188 - "@shikijs/langs@3.13.0": 7385 + '@shikijs/langs@3.13.0': 10189 7386 dependencies: 10190 - "@shikijs/types": 3.13.0 7387 + '@shikijs/types': 3.13.0 10191 7388 10192 - "@shikijs/themes@3.13.0": 7389 + '@shikijs/themes@3.13.0': 10193 7390 dependencies: 10194 - "@shikijs/types": 3.13.0 7391 + '@shikijs/types': 3.13.0 10195 7392 10196 - "@shikijs/types@3.13.0": 7393 + '@shikijs/types@3.13.0': 10197 7394 dependencies: 10198 - "@shikijs/vscode-textmate": 10.0.2 10199 - "@types/hast": 3.0.4 7395 + '@shikijs/vscode-textmate': 10.0.2 7396 + '@types/hast': 3.0.4 10200 7397 10201 - "@shikijs/vscode-textmate@10.0.2": {} 7398 + '@shikijs/vscode-textmate@10.0.2': {} 10202 7399 10203 - "@sinclair/typebox@0.27.8": {} 7400 + '@sinclair/typebox@0.27.8': {} 10204 7401 10205 - "@sindresorhus/merge-streams@2.3.0": {} 7402 + '@sindresorhus/merge-streams@2.3.0': {} 10206 7403 10207 - "@swc/helpers@0.5.17": 7404 + '@swc/helpers@0.5.17': 10208 7405 dependencies: 10209 7406 tslib: 2.8.1 10210 7407 10211 - "@ts-morph/common@0.25.0": 7408 + '@ts-morph/common@0.25.0': 10212 7409 dependencies: 10213 7410 minimatch: 9.0.5 10214 7411 path-browserify: 1.0.1 10215 7412 tinyglobby: 0.2.15 10216 7413 10217 - "@types/babel__core@7.20.5": 7414 + '@types/babel__core@7.20.5': 10218 7415 dependencies: 10219 - "@babel/parser": 7.28.4 10220 - "@babel/types": 7.28.4 10221 - "@types/babel__generator": 7.27.0 10222 - "@types/babel__template": 7.4.4 10223 - "@types/babel__traverse": 7.28.0 7416 + '@babel/parser': 7.28.4 7417 + '@babel/types': 7.28.4 7418 + '@types/babel__generator': 7.27.0 7419 + '@types/babel__template': 7.4.4 7420 + '@types/babel__traverse': 7.28.0 10224 7421 10225 - "@types/babel__generator@7.27.0": 7422 + '@types/babel__generator@7.27.0': 10226 7423 dependencies: 10227 - "@babel/types": 7.28.4 7424 + '@babel/types': 7.28.4 10228 7425 10229 - "@types/babel__template@7.4.4": 7426 + '@types/babel__template@7.4.4': 10230 7427 dependencies: 10231 - "@babel/parser": 7.28.4 10232 - "@babel/types": 7.28.4 7428 + '@babel/parser': 7.28.4 7429 + '@babel/types': 7.28.4 10233 7430 10234 - "@types/babel__traverse@7.28.0": 7431 + '@types/babel__traverse@7.28.0': 10235 7432 dependencies: 10236 - "@babel/types": 7.28.4 7433 + '@babel/types': 7.28.4 10237 7434 10238 - "@types/debug@4.1.12": 7435 + '@types/debug@4.1.12': 10239 7436 dependencies: 10240 - "@types/ms": 2.1.0 7437 + '@types/ms': 2.1.0 10241 7438 10242 - "@types/estree@1.0.8": {} 7439 + '@types/estree@1.0.8': {} 10243 7440 10244 - "@types/fontkit@2.0.8": 7441 + '@types/fontkit@2.0.8': 10245 7442 dependencies: 10246 - "@types/node": 20.19.19 7443 + '@types/node': 20.19.19 10247 7444 10248 - "@types/hast@3.0.4": 7445 + '@types/hast@3.0.4': 10249 7446 dependencies: 10250 - "@types/unist": 3.0.3 7447 + '@types/unist': 3.0.3 10251 7448 10252 - "@types/json-schema@7.0.15": {} 7449 + '@types/json-schema@7.0.15': {} 10253 7450 10254 - "@types/mdast@4.0.4": 7451 + '@types/mdast@4.0.4': 10255 7452 dependencies: 10256 - "@types/unist": 3.0.3 7453 + '@types/unist': 3.0.3 10257 7454 10258 - "@types/ms@2.1.0": {} 7455 + '@types/ms@2.1.0': {} 10259 7456 10260 - "@types/nlcst@2.0.3": 7457 + '@types/nlcst@2.0.3': 10261 7458 dependencies: 10262 - "@types/unist": 3.0.3 7459 + '@types/unist': 3.0.3 10263 7460 10264 - "@types/node@20.19.19": 7461 + '@types/node@20.19.19': 10265 7462 dependencies: 10266 7463 undici-types: 6.21.0 10267 7464 10268 - "@types/prop-types@15.7.15": {} 7465 + '@types/prop-types@15.7.15': {} 10269 7466 10270 - "@types/react-dom@18.3.7(@types/react@18.3.25)": 7467 + '@types/react-dom@18.3.7(@types/react@18.3.25)': 10271 7468 dependencies: 10272 - "@types/react": 18.3.25 7469 + '@types/react': 18.3.25 10273 7470 10274 - "@types/react-dom@19.2.0(@types/react@19.2.0)": 7471 + '@types/react-dom@19.2.0(@types/react@19.2.0)': 10275 7472 dependencies: 10276 - "@types/react": 19.2.0 7473 + '@types/react': 19.2.0 10277 7474 10278 - "@types/react@18.3.25": 7475 + '@types/react@18.3.25': 10279 7476 dependencies: 10280 - "@types/prop-types": 15.7.15 7477 + '@types/prop-types': 15.7.15 10281 7478 csstype: 3.1.3 10282 7479 10283 - "@types/react@19.2.0": 7480 + '@types/react@19.2.0': 10284 7481 dependencies: 10285 7482 csstype: 3.1.3 10286 7483 10287 - "@types/unist@3.0.3": {} 7484 + '@types/unist@3.0.3': {} 10288 7485 10289 - "@typespec/asset-emitter@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 7486 + '@typespec/asset-emitter@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 10290 7487 dependencies: 10291 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7488 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10292 7489 10293 - "@typespec/bundler@0.4.4(@types/node@20.19.19)": 7490 + '@typespec/bundler@0.4.4(@types/node@20.19.19)': 10294 7491 dependencies: 10295 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7492 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10296 7493 esbuild: 0.25.10 10297 7494 esbuild-plugins-node-modules-polyfill: 1.7.1(esbuild@0.25.10) 10298 7495 node-stdlib-browser: 1.3.1 10299 7496 picocolors: 1.1.1 10300 7497 yargs: 18.0.0 10301 7498 transitivePeerDependencies: 10302 - - "@types/node" 7499 + - '@types/node' 10303 7500 10304 - "@typespec/compiler@1.4.0(@types/node@20.19.19)": 7501 + '@typespec/compiler@1.4.0(@types/node@20.19.19)': 10305 7502 dependencies: 10306 - "@babel/code-frame": 7.27.1 10307 - "@inquirer/prompts": 7.8.6(@types/node@20.19.19) 7503 + '@babel/code-frame': 7.27.1 7504 + '@inquirer/prompts': 7.8.6(@types/node@20.19.19) 10308 7505 ajv: 8.17.1 10309 7506 change-case: 5.4.4 10310 7507 env-paths: 3.0.0 ··· 10321 7518 yaml: 2.8.1 10322 7519 yargs: 18.0.0 10323 7520 transitivePeerDependencies: 10324 - - "@types/node" 7521 + - '@types/node' 10325 7522 10326 - "@typespec/html-program-viewer@0.74.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0)": 7523 + '@typespec/html-program-viewer@0.74.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0)': 10327 7524 dependencies: 10328 - "@fluentui/react-components": 9.69.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10329 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 10330 - "@fluentui/react-list": 9.6.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10331 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7525 + '@fluentui/react-components': 9.69.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7526 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 7527 + '@fluentui/react-list': 9.6.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7528 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10332 7529 react: 18.3.1 10333 7530 react-dom: 18.3.1(react@18.3.1) 10334 7531 react-hotkeys-hook: 5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 10335 7532 transitivePeerDependencies: 10336 - - "@types/react" 10337 - - "@types/react-dom" 7533 + - '@types/react' 7534 + - '@types/react-dom' 10338 7535 - scheduler 10339 7536 10340 - "@typespec/html-program-viewer@0.74.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0)": 7537 + '@typespec/html-program-viewer@0.74.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0)': 10341 7538 dependencies: 10342 - "@fluentui/react-components": 9.69.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10343 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 10344 - "@fluentui/react-list": 9.6.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10345 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7539 + '@fluentui/react-components': 9.69.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7540 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 7541 + '@fluentui/react-list': 9.6.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7542 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10346 7543 react: 18.3.1 10347 7544 react-dom: 18.3.1(react@18.3.1) 10348 7545 react-hotkeys-hook: 5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 10349 7546 transitivePeerDependencies: 10350 - - "@types/react" 10351 - - "@types/react-dom" 7547 + - '@types/react' 7548 + - '@types/react-dom' 10352 7549 - scheduler 10353 7550 10354 - "@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 7551 + '@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 10355 7552 dependencies: 10356 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7553 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10357 7554 10358 - "@typespec/openapi3@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))(@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))))(@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))": 7555 + '@typespec/openapi3@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))(@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))))(@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))': 10359 7556 dependencies: 10360 - "@apidevtools/swagger-parser": 12.0.0(openapi-types@12.1.3) 10361 - "@typespec/asset-emitter": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10362 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10363 - "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10364 - "@typespec/openapi": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 7557 + '@apidevtools/swagger-parser': 12.0.0(openapi-types@12.1.3) 7558 + '@typespec/asset-emitter': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7559 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7560 + '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7561 + '@typespec/openapi': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10365 7562 openapi-types: 12.1.3 10366 7563 yaml: 2.8.1 10367 7564 optionalDependencies: 10368 - "@typespec/versioning": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7565 + '@typespec/versioning': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10369 7566 10370 - "@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))": 7567 + '@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))': 10371 7568 dependencies: 10372 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10373 - "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7569 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7570 + '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10374 7571 10375 - "@typespec/playground@0.11.0(@types/node@20.19.19)(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(scheduler@0.27.0)": 7572 + '@typespec/playground@0.11.0(@types/node@20.19.19)(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(scheduler@0.27.0)': 10376 7573 dependencies: 10377 - "@fluentui/react-components": 9.69.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10378 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 10379 - "@typespec/bundler": 0.4.4(@types/node@20.19.19) 10380 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10381 - "@typespec/html-program-viewer": 0.74.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0) 10382 - "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10383 - "@typespec/openapi": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10384 - "@typespec/openapi3": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))(@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))))(@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10385 - "@typespec/protobuf": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10386 - "@typespec/rest": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10387 - "@typespec/versioning": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7574 + '@fluentui/react-components': 9.69.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7575 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 7576 + '@typespec/bundler': 0.4.4(@types/node@20.19.19) 7577 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7578 + '@typespec/html-program-viewer': 0.74.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0) 7579 + '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7580 + '@typespec/openapi': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 7581 + '@typespec/openapi3': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))(@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))))(@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 7582 + '@typespec/protobuf': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7583 + '@typespec/rest': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 7584 + '@typespec/versioning': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10388 7585 clsx: 2.1.1 10389 7586 debounce: 2.2.0 10390 7587 lzutf8: 0.6.3 ··· 10396 7593 vscode-languageserver: 9.0.1 10397 7594 vscode-languageserver-textdocument: 1.0.12 10398 7595 transitivePeerDependencies: 10399 - - "@types/node" 10400 - - "@types/react" 10401 - - "@types/react-dom" 10402 - - "@typespec/json-schema" 10403 - - "@typespec/streams" 10404 - - "@typespec/xml" 7596 + - '@types/node' 7597 + - '@types/react' 7598 + - '@types/react-dom' 7599 + - '@typespec/json-schema' 7600 + - '@typespec/streams' 7601 + - '@typespec/xml' 10405 7602 - scheduler 10406 7603 10407 - "@typespec/playground@0.11.0(@types/node@20.19.19)(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(scheduler@0.27.0)": 7604 + '@typespec/playground@0.11.0(@types/node@20.19.19)(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(scheduler@0.27.0)': 10408 7605 dependencies: 10409 - "@fluentui/react-components": 9.69.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10410 - "@fluentui/react-icons": 2.0.311(react@18.3.1) 10411 - "@typespec/bundler": 0.4.4(@types/node@20.19.19) 10412 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10413 - "@typespec/html-program-viewer": 0.74.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0) 10414 - "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10415 - "@typespec/openapi": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10416 - "@typespec/openapi3": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))(@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))))(@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10417 - "@typespec/protobuf": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10418 - "@typespec/rest": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10419 - "@typespec/versioning": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7606 + '@fluentui/react-components': 9.69.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7607 + '@fluentui/react-icons': 2.0.311(react@18.3.1) 7608 + '@typespec/bundler': 0.4.4(@types/node@20.19.19) 7609 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7610 + '@typespec/html-program-viewer': 0.74.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0) 7611 + '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7612 + '@typespec/openapi': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 7613 + '@typespec/openapi3': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))(@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))))(@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 7614 + '@typespec/protobuf': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7615 + '@typespec/rest': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 7616 + '@typespec/versioning': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10420 7617 clsx: 2.1.1 10421 7618 debounce: 2.2.0 10422 7619 lzutf8: 0.6.3 ··· 10428 7625 vscode-languageserver: 9.0.1 10429 7626 vscode-languageserver-textdocument: 1.0.12 10430 7627 transitivePeerDependencies: 10431 - - "@types/node" 10432 - - "@types/react" 10433 - - "@types/react-dom" 10434 - - "@typespec/json-schema" 10435 - - "@typespec/streams" 10436 - - "@typespec/xml" 7628 + - '@types/node' 7629 + - '@types/react' 7630 + - '@types/react-dom' 7631 + - '@typespec/json-schema' 7632 + - '@typespec/streams' 7633 + - '@typespec/xml' 10437 7634 - scheduler 10438 7635 10439 - "@typespec/protobuf@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 7636 + '@typespec/protobuf@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 10440 7637 dependencies: 10441 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7638 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10442 7639 10443 - "@typespec/rest@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))": 7640 + '@typespec/rest@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))': 10444 7641 dependencies: 10445 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10446 - "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7642 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7643 + '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10447 7644 10448 - "@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 7645 + '@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 10449 7646 dependencies: 10450 - "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7647 + '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10451 7648 10452 - "@ungap/structured-clone@1.3.0": {} 7649 + '@ungap/structured-clone@1.3.0': {} 10453 7650 10454 - "@vitejs/plugin-react@4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1))": 7651 + '@vitejs/plugin-react@4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1))': 10455 7652 dependencies: 10456 - "@babel/core": 7.28.4 10457 - "@babel/plugin-transform-react-jsx-self": 7.27.1(@babel/core@7.28.4) 10458 - "@babel/plugin-transform-react-jsx-source": 7.27.1(@babel/core@7.28.4) 10459 - "@rolldown/pluginutils": 1.0.0-beta.27 10460 - "@types/babel__core": 7.20.5 7653 + '@babel/core': 7.28.4 7654 + '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) 7655 + '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4) 7656 + '@rolldown/pluginutils': 1.0.0-beta.27 7657 + '@types/babel__core': 7.20.5 10461 7658 react-refresh: 0.17.0 10462 7659 vite: 6.3.6(@types/node@20.19.19)(yaml@2.8.1) 10463 7660 transitivePeerDependencies: 10464 7661 - supports-color 10465 7662 10466 - "@vitest/expect@1.6.1": 7663 + '@vitest/expect@1.6.1': 10467 7664 dependencies: 10468 - "@vitest/spy": 1.6.1 10469 - "@vitest/utils": 1.6.1 7665 + '@vitest/spy': 1.6.1 7666 + '@vitest/utils': 1.6.1 10470 7667 chai: 4.5.0 10471 7668 10472 - "@vitest/runner@1.6.1": 7669 + '@vitest/runner@1.6.1': 10473 7670 dependencies: 10474 - "@vitest/utils": 1.6.1 7671 + '@vitest/utils': 1.6.1 10475 7672 p-limit: 5.0.0 10476 7673 pathe: 1.1.2 10477 7674 10478 - "@vitest/snapshot@1.6.1": 7675 + '@vitest/snapshot@1.6.1': 10479 7676 dependencies: 10480 7677 magic-string: 0.30.19 10481 7678 pathe: 1.1.2 10482 7679 pretty-format: 29.7.0 10483 7680 10484 - "@vitest/spy@1.6.1": 7681 + '@vitest/spy@1.6.1': 10485 7682 dependencies: 10486 7683 tinyspy: 2.2.1 10487 7684 10488 - "@vitest/utils@1.6.1": 7685 + '@vitest/utils@1.6.1': 10489 7686 dependencies: 10490 7687 diff-sequences: 29.6.3 10491 7688 estree-walker: 3.0.3 ··· 10565 7762 10566 7763 astro@5.14.1(@types/node@20.19.19)(rollup@4.52.4)(typescript@5.9.3)(yaml@2.8.1): 10567 7764 dependencies: 10568 - "@astrojs/compiler": 2.13.0 10569 - "@astrojs/internal-helpers": 0.7.3 10570 - "@astrojs/markdown-remark": 6.3.7 10571 - "@astrojs/telemetry": 3.3.0 10572 - "@capsizecss/unpack": 2.4.0 10573 - "@oslojs/encoding": 1.1.0 10574 - "@rollup/pluginutils": 5.3.0(rollup@4.52.4) 7765 + '@astrojs/compiler': 2.13.0 7766 + '@astrojs/internal-helpers': 0.7.3 7767 + '@astrojs/markdown-remark': 6.3.7 7768 + '@astrojs/telemetry': 3.3.0 7769 + '@capsizecss/unpack': 2.4.0 7770 + '@oslojs/encoding': 1.1.0 7771 + '@rollup/pluginutils': 5.3.0(rollup@4.52.4) 10575 7772 acorn: 8.15.0 10576 7773 aria-query: 5.3.2 10577 7774 axobject-query: 4.1.0 ··· 10630 7827 optionalDependencies: 10631 7828 sharp: 0.34.4 10632 7829 transitivePeerDependencies: 10633 - - "@azure/app-configuration" 10634 - - "@azure/cosmos" 10635 - - "@azure/data-tables" 10636 - - "@azure/identity" 10637 - - "@azure/keyvault-secrets" 10638 - - "@azure/storage-blob" 10639 - - "@capacitor/preferences" 10640 - - "@deno/kv" 10641 - - "@netlify/blobs" 10642 - - "@planetscale/database" 10643 - - "@types/node" 10644 - - "@upstash/redis" 10645 - - "@vercel/blob" 10646 - - "@vercel/functions" 10647 - - "@vercel/kv" 7830 + - '@azure/app-configuration' 7831 + - '@azure/cosmos' 7832 + - '@azure/data-tables' 7833 + - '@azure/identity' 7834 + - '@azure/keyvault-secrets' 7835 + - '@azure/storage-blob' 7836 + - '@capacitor/preferences' 7837 + - '@deno/kv' 7838 + - '@netlify/blobs' 7839 + - '@planetscale/database' 7840 + - '@types/node' 7841 + - '@upstash/redis' 7842 + - '@vercel/blob' 7843 + - '@vercel/functions' 7844 + - '@vercel/kv' 10648 7845 - aws4fetch 10649 7846 - db0 10650 7847 - encoding ··· 10832 8029 dependencies: 10833 8030 node-gyp-build-optional-packages: 5.1.1 10834 8031 optionalDependencies: 10835 - "@cbor-extract/cbor-extract-darwin-arm64": 2.2.0 10836 - "@cbor-extract/cbor-extract-darwin-x64": 2.2.0 10837 - "@cbor-extract/cbor-extract-linux-arm": 2.2.0 10838 - "@cbor-extract/cbor-extract-linux-arm64": 2.2.0 10839 - "@cbor-extract/cbor-extract-linux-x64": 2.2.0 10840 - "@cbor-extract/cbor-extract-win32-x64": 2.2.0 8032 + '@cbor-extract/cbor-extract-darwin-arm64': 2.2.0 8033 + '@cbor-extract/cbor-extract-darwin-x64': 2.2.0 8034 + '@cbor-extract/cbor-extract-linux-arm': 2.2.0 8035 + '@cbor-extract/cbor-extract-linux-arm64': 2.2.0 8036 + '@cbor-extract/cbor-extract-linux-x64': 2.2.0 8037 + '@cbor-extract/cbor-extract-win32-x64': 2.2.0 10841 8038 optional: true 10842 8039 10843 8040 cbor-x@1.6.0: ··· 11158 8355 11159 8356 esbuild-plugins-node-modules-polyfill@1.7.1(esbuild@0.25.10): 11160 8357 dependencies: 11161 - "@jspm/core": 2.1.0 8358 + '@jspm/core': 2.1.0 11162 8359 esbuild: 0.25.10 11163 8360 local-pkg: 1.1.2 11164 8361 resolve.exports: 2.0.3 11165 8362 11166 8363 esbuild@0.21.5: 11167 8364 optionalDependencies: 11168 - "@esbuild/aix-ppc64": 0.21.5 11169 - "@esbuild/android-arm": 0.21.5 11170 - "@esbuild/android-arm64": 0.21.5 11171 - "@esbuild/android-x64": 0.21.5 11172 - "@esbuild/darwin-arm64": 0.21.5 11173 - "@esbuild/darwin-x64": 0.21.5 11174 - "@esbuild/freebsd-arm64": 0.21.5 11175 - "@esbuild/freebsd-x64": 0.21.5 11176 - "@esbuild/linux-arm": 0.21.5 11177 - "@esbuild/linux-arm64": 0.21.5 11178 - "@esbuild/linux-ia32": 0.21.5 11179 - "@esbuild/linux-loong64": 0.21.5 11180 - "@esbuild/linux-mips64el": 0.21.5 11181 - "@esbuild/linux-ppc64": 0.21.5 11182 - "@esbuild/linux-riscv64": 0.21.5 11183 - "@esbuild/linux-s390x": 0.21.5 11184 - "@esbuild/linux-x64": 0.21.5 11185 - "@esbuild/netbsd-x64": 0.21.5 11186 - "@esbuild/openbsd-x64": 0.21.5 11187 - "@esbuild/sunos-x64": 0.21.5 11188 - "@esbuild/win32-arm64": 0.21.5 11189 - "@esbuild/win32-ia32": 0.21.5 11190 - "@esbuild/win32-x64": 0.21.5 8365 + '@esbuild/aix-ppc64': 0.21.5 8366 + '@esbuild/android-arm': 0.21.5 8367 + '@esbuild/android-arm64': 0.21.5 8368 + '@esbuild/android-x64': 0.21.5 8369 + '@esbuild/darwin-arm64': 0.21.5 8370 + '@esbuild/darwin-x64': 0.21.5 8371 + '@esbuild/freebsd-arm64': 0.21.5 8372 + '@esbuild/freebsd-x64': 0.21.5 8373 + '@esbuild/linux-arm': 0.21.5 8374 + '@esbuild/linux-arm64': 0.21.5 8375 + '@esbuild/linux-ia32': 0.21.5 8376 + '@esbuild/linux-loong64': 0.21.5 8377 + '@esbuild/linux-mips64el': 0.21.5 8378 + '@esbuild/linux-ppc64': 0.21.5 8379 + '@esbuild/linux-riscv64': 0.21.5 8380 + '@esbuild/linux-s390x': 0.21.5 8381 + '@esbuild/linux-x64': 0.21.5 8382 + '@esbuild/netbsd-x64': 0.21.5 8383 + '@esbuild/openbsd-x64': 0.21.5 8384 + '@esbuild/sunos-x64': 0.21.5 8385 + '@esbuild/win32-arm64': 0.21.5 8386 + '@esbuild/win32-ia32': 0.21.5 8387 + '@esbuild/win32-x64': 0.21.5 11191 8388 11192 8389 esbuild@0.25.10: 11193 8390 optionalDependencies: 11194 - "@esbuild/aix-ppc64": 0.25.10 11195 - "@esbuild/android-arm": 0.25.10 11196 - "@esbuild/android-arm64": 0.25.10 11197 - "@esbuild/android-x64": 0.25.10 11198 - "@esbuild/darwin-arm64": 0.25.10 11199 - "@esbuild/darwin-x64": 0.25.10 11200 - "@esbuild/freebsd-arm64": 0.25.10 11201 - "@esbuild/freebsd-x64": 0.25.10 11202 - "@esbuild/linux-arm": 0.25.10 11203 - "@esbuild/linux-arm64": 0.25.10 11204 - "@esbuild/linux-ia32": 0.25.10 11205 - "@esbuild/linux-loong64": 0.25.10 11206 - "@esbuild/linux-mips64el": 0.25.10 11207 - "@esbuild/linux-ppc64": 0.25.10 11208 - "@esbuild/linux-riscv64": 0.25.10 11209 - "@esbuild/linux-s390x": 0.25.10 11210 - "@esbuild/linux-x64": 0.25.10 11211 - "@esbuild/netbsd-arm64": 0.25.10 11212 - "@esbuild/netbsd-x64": 0.25.10 11213 - "@esbuild/openbsd-arm64": 0.25.10 11214 - "@esbuild/openbsd-x64": 0.25.10 11215 - "@esbuild/openharmony-arm64": 0.25.10 11216 - "@esbuild/sunos-x64": 0.25.10 11217 - "@esbuild/win32-arm64": 0.25.10 11218 - "@esbuild/win32-ia32": 0.25.10 11219 - "@esbuild/win32-x64": 0.25.10 8391 + '@esbuild/aix-ppc64': 0.25.10 8392 + '@esbuild/android-arm': 0.25.10 8393 + '@esbuild/android-arm64': 0.25.10 8394 + '@esbuild/android-x64': 0.25.10 8395 + '@esbuild/darwin-arm64': 0.25.10 8396 + '@esbuild/darwin-x64': 0.25.10 8397 + '@esbuild/freebsd-arm64': 0.25.10 8398 + '@esbuild/freebsd-x64': 0.25.10 8399 + '@esbuild/linux-arm': 0.25.10 8400 + '@esbuild/linux-arm64': 0.25.10 8401 + '@esbuild/linux-ia32': 0.25.10 8402 + '@esbuild/linux-loong64': 0.25.10 8403 + '@esbuild/linux-mips64el': 0.25.10 8404 + '@esbuild/linux-ppc64': 0.25.10 8405 + '@esbuild/linux-riscv64': 0.25.10 8406 + '@esbuild/linux-s390x': 0.25.10 8407 + '@esbuild/linux-x64': 0.25.10 8408 + '@esbuild/netbsd-arm64': 0.25.10 8409 + '@esbuild/netbsd-x64': 0.25.10 8410 + '@esbuild/openbsd-arm64': 0.25.10 8411 + '@esbuild/openbsd-x64': 0.25.10 8412 + '@esbuild/openharmony-arm64': 0.25.10 8413 + '@esbuild/sunos-x64': 0.25.10 8414 + '@esbuild/win32-arm64': 0.25.10 8415 + '@esbuild/win32-ia32': 0.25.10 8416 + '@esbuild/win32-x64': 0.25.10 11220 8417 11221 8418 escalade@3.2.0: {} 11222 8419 ··· 11228 8425 11229 8426 estree-walker@3.0.3: 11230 8427 dependencies: 11231 - "@types/estree": 1.0.8 8428 + '@types/estree': 1.0.8 11232 8429 11233 8430 etag@1.8.1: {} 11234 8431 ··· 11309 8506 11310 8507 fast-glob@3.3.3: 11311 8508 dependencies: 11312 - "@nodelib/fs.stat": 2.0.5 11313 - "@nodelib/fs.walk": 1.2.8 8509 + '@nodelib/fs.stat': 2.0.5 8510 + '@nodelib/fs.walk': 1.2.8 11314 8511 glob-parent: 5.1.2 11315 8512 merge2: 1.4.1 11316 8513 micromatch: 4.0.8 ··· 11352 8549 11353 8550 fontace@0.3.0: 11354 8551 dependencies: 11355 - "@types/fontkit": 2.0.8 8552 + '@types/fontkit': 2.0.8 11356 8553 fontkit: 2.0.4 11357 8554 11358 8555 fontkit@2.0.4: 11359 8556 dependencies: 11360 - "@swc/helpers": 0.5.17 8557 + '@swc/helpers': 0.5.17 11361 8558 brotli: 1.3.3 11362 8559 clone: 2.1.2 11363 8560 dfa: 1.2.0 ··· 11420 8617 11421 8618 globby@14.1.0: 11422 8619 dependencies: 11423 - "@sindresorhus/merge-streams": 2.3.0 8620 + '@sindresorhus/merge-streams': 2.3.0 11424 8621 fast-glob: 3.3.3 11425 8622 ignore: 7.0.5 11426 8623 path-type: 6.0.0 ··· 11478 8675 11479 8676 hast-util-from-html@2.0.3: 11480 8677 dependencies: 11481 - "@types/hast": 3.0.4 8678 + '@types/hast': 3.0.4 11482 8679 devlop: 1.1.0 11483 8680 hast-util-from-parse5: 8.0.3 11484 8681 parse5: 7.3.0 ··· 11487 8684 11488 8685 hast-util-from-parse5@8.0.3: 11489 8686 dependencies: 11490 - "@types/hast": 3.0.4 11491 - "@types/unist": 3.0.3 8687 + '@types/hast': 3.0.4 8688 + '@types/unist': 3.0.3 11492 8689 devlop: 1.1.0 11493 8690 hastscript: 9.0.1 11494 8691 property-information: 7.1.0 ··· 11498 8695 11499 8696 hast-util-is-element@3.0.0: 11500 8697 dependencies: 11501 - "@types/hast": 3.0.4 8698 + '@types/hast': 3.0.4 11502 8699 11503 8700 hast-util-parse-selector@4.0.0: 11504 8701 dependencies: 11505 - "@types/hast": 3.0.4 8702 + '@types/hast': 3.0.4 11506 8703 11507 8704 hast-util-raw@9.1.0: 11508 8705 dependencies: 11509 - "@types/hast": 3.0.4 11510 - "@types/unist": 3.0.3 11511 - "@ungap/structured-clone": 1.3.0 8706 + '@types/hast': 3.0.4 8707 + '@types/unist': 3.0.3 8708 + '@ungap/structured-clone': 1.3.0 11512 8709 hast-util-from-parse5: 8.0.3 11513 8710 hast-util-to-parse5: 8.0.0 11514 8711 html-void-elements: 3.0.0 ··· 11522 8719 11523 8720 hast-util-to-html@9.0.5: 11524 8721 dependencies: 11525 - "@types/hast": 3.0.4 11526 - "@types/unist": 3.0.3 8722 + '@types/hast': 3.0.4 8723 + '@types/unist': 3.0.3 11527 8724 ccount: 2.0.1 11528 8725 comma-separated-tokens: 2.0.3 11529 8726 hast-util-whitespace: 3.0.0 ··· 11536 8733 11537 8734 hast-util-to-parse5@8.0.0: 11538 8735 dependencies: 11539 - "@types/hast": 3.0.4 8736 + '@types/hast': 3.0.4 11540 8737 comma-separated-tokens: 2.0.3 11541 8738 devlop: 1.1.0 11542 8739 property-information: 6.5.0 ··· 11546 8743 11547 8744 hast-util-to-text@4.0.2: 11548 8745 dependencies: 11549 - "@types/hast": 3.0.4 11550 - "@types/unist": 3.0.3 8746 + '@types/hast': 3.0.4 8747 + '@types/unist': 3.0.3 11551 8748 hast-util-is-element: 3.0.0 11552 8749 unist-util-find-after: 5.0.0 11553 8750 11554 8751 hast-util-whitespace@3.0.0: 11555 8752 dependencies: 11556 - "@types/hast": 3.0.4 8753 + '@types/hast': 3.0.4 11557 8754 11558 8755 hastscript@9.0.1: 11559 8756 dependencies: 11560 - "@types/hast": 3.0.4 8757 + '@types/hast': 3.0.4 11561 8758 comma-separated-tokens: 2.0.3 11562 8759 hast-util-parse-selector: 4.0.0 11563 8760 property-information: 7.1.0 ··· 11737 8934 11738 8935 magic-string@0.30.19: 11739 8936 dependencies: 11740 - "@jridgewell/sourcemap-codec": 1.5.5 8937 + '@jridgewell/sourcemap-codec': 1.5.5 11741 8938 11742 8939 magicast@0.3.5: 11743 8940 dependencies: 11744 - "@babel/parser": 7.28.4 11745 - "@babel/types": 7.28.4 8941 + '@babel/parser': 7.28.4 8942 + '@babel/types': 7.28.4 11746 8943 source-map-js: 1.2.1 11747 8944 11748 8945 map-stream@0.1.0: {} ··· 11759 8956 11760 8957 mdast-util-definitions@6.0.0: 11761 8958 dependencies: 11762 - "@types/mdast": 4.0.4 11763 - "@types/unist": 3.0.3 8959 + '@types/mdast': 4.0.4 8960 + '@types/unist': 3.0.3 11764 8961 unist-util-visit: 5.0.0 11765 8962 11766 8963 mdast-util-find-and-replace@3.0.2: 11767 8964 dependencies: 11768 - "@types/mdast": 4.0.4 8965 + '@types/mdast': 4.0.4 11769 8966 escape-string-regexp: 5.0.0 11770 8967 unist-util-is: 6.0.0 11771 8968 unist-util-visit-parents: 6.0.1 11772 8969 11773 8970 mdast-util-from-markdown@2.0.2: 11774 8971 dependencies: 11775 - "@types/mdast": 4.0.4 11776 - "@types/unist": 3.0.3 8972 + '@types/mdast': 4.0.4 8973 + '@types/unist': 3.0.3 11777 8974 decode-named-character-reference: 1.2.0 11778 8975 devlop: 1.1.0 11779 8976 mdast-util-to-string: 4.0.0 ··· 11789 8986 11790 8987 mdast-util-gfm-autolink-literal@2.0.1: 11791 8988 dependencies: 11792 - "@types/mdast": 4.0.4 8989 + '@types/mdast': 4.0.4 11793 8990 ccount: 2.0.1 11794 8991 devlop: 1.1.0 11795 8992 mdast-util-find-and-replace: 3.0.2 ··· 11797 8994 11798 8995 mdast-util-gfm-footnote@2.1.0: 11799 8996 dependencies: 11800 - "@types/mdast": 4.0.4 8997 + '@types/mdast': 4.0.4 11801 8998 devlop: 1.1.0 11802 8999 mdast-util-from-markdown: 2.0.2 11803 9000 mdast-util-to-markdown: 2.1.2 ··· 11807 9004 11808 9005 mdast-util-gfm-strikethrough@2.0.0: 11809 9006 dependencies: 11810 - "@types/mdast": 4.0.4 9007 + '@types/mdast': 4.0.4 11811 9008 mdast-util-from-markdown: 2.0.2 11812 9009 mdast-util-to-markdown: 2.1.2 11813 9010 transitivePeerDependencies: ··· 11815 9012 11816 9013 mdast-util-gfm-table@2.0.0: 11817 9014 dependencies: 11818 - "@types/mdast": 4.0.4 9015 + '@types/mdast': 4.0.4 11819 9016 devlop: 1.1.0 11820 9017 markdown-table: 3.0.4 11821 9018 mdast-util-from-markdown: 2.0.2 ··· 11825 9022 11826 9023 mdast-util-gfm-task-list-item@2.0.0: 11827 9024 dependencies: 11828 - "@types/mdast": 4.0.4 9025 + '@types/mdast': 4.0.4 11829 9026 devlop: 1.1.0 11830 9027 mdast-util-from-markdown: 2.0.2 11831 9028 mdast-util-to-markdown: 2.1.2 ··· 11846 9043 11847 9044 mdast-util-phrasing@4.1.0: 11848 9045 dependencies: 11849 - "@types/mdast": 4.0.4 9046 + '@types/mdast': 4.0.4 11850 9047 unist-util-is: 6.0.0 11851 9048 11852 9049 mdast-util-to-hast@13.2.0: 11853 9050 dependencies: 11854 - "@types/hast": 3.0.4 11855 - "@types/mdast": 4.0.4 11856 - "@ungap/structured-clone": 1.3.0 9051 + '@types/hast': 3.0.4 9052 + '@types/mdast': 4.0.4 9053 + '@ungap/structured-clone': 1.3.0 11857 9054 devlop: 1.1.0 11858 9055 micromark-util-sanitize-uri: 2.0.1 11859 9056 trim-lines: 3.0.1 ··· 11863 9060 11864 9061 mdast-util-to-markdown@2.1.2: 11865 9062 dependencies: 11866 - "@types/mdast": 4.0.4 11867 - "@types/unist": 3.0.3 9063 + '@types/mdast': 4.0.4 9064 + '@types/unist': 3.0.3 11868 9065 longest-streak: 3.1.0 11869 9066 mdast-util-phrasing: 4.1.0 11870 9067 mdast-util-to-string: 4.0.0 ··· 11875 9072 11876 9073 mdast-util-to-string@4.0.0: 11877 9074 dependencies: 11878 - "@types/mdast": 4.0.4 9075 + '@types/mdast': 4.0.4 11879 9076 11880 9077 mdn-data@2.12.2: {} 11881 9078 ··· 12060 9257 12061 9258 micromark@4.0.2: 12062 9259 dependencies: 12063 - "@types/debug": 4.1.12 9260 + '@types/debug': 4.1.12 12064 9261 debug: 4.4.3 12065 9262 decode-named-character-reference: 1.2.0 12066 9263 devlop: 1.1.0 ··· 12143 9340 12144 9341 nlcst-to-string@4.0.0: 12145 9342 dependencies: 12146 - "@types/nlcst": 2.0.3 9343 + '@types/nlcst': 2.0.3 12147 9344 12148 9345 node-cleanup@2.1.2: {} 12149 9346 ··· 12285 9482 12286 9483 parse-latin@7.0.0: 12287 9484 dependencies: 12288 - "@types/nlcst": 2.0.3 12289 - "@types/unist": 3.0.3 9485 + '@types/nlcst': 2.0.3 9486 + '@types/unist': 3.0.3 12290 9487 nlcst-to-string: 4.0.0 12291 9488 unist-util-modify-children: 4.0.0 12292 9489 unist-util-visit-children: 3.0.0 ··· 12388 9585 12389 9586 pretty-format@29.7.0: 12390 9587 dependencies: 12391 - "@jest/schemas": 29.6.3 9588 + '@jest/schemas': 29.6.3 12392 9589 ansi-styles: 5.2.0 12393 9590 react-is: 18.3.1 12394 9591 ··· 12476 9673 12477 9674 react-error-boundary@6.0.0(react@18.3.1): 12478 9675 dependencies: 12479 - "@babel/runtime": 7.28.4 9676 + '@babel/runtime': 7.28.4 12480 9677 react: 18.3.1 12481 9678 12482 9679 react-hotkeys-hook@5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): ··· 12536 9733 12537 9734 rehype-parse@9.0.1: 12538 9735 dependencies: 12539 - "@types/hast": 3.0.4 9736 + '@types/hast': 3.0.4 12540 9737 hast-util-from-html: 2.0.3 12541 9738 unified: 11.0.5 12542 9739 12543 9740 rehype-raw@7.0.0: 12544 9741 dependencies: 12545 - "@types/hast": 3.0.4 9742 + '@types/hast': 3.0.4 12546 9743 hast-util-raw: 9.1.0 12547 9744 vfile: 6.0.3 12548 9745 12549 9746 rehype-stringify@10.0.1: 12550 9747 dependencies: 12551 - "@types/hast": 3.0.4 9748 + '@types/hast': 3.0.4 12552 9749 hast-util-to-html: 9.0.5 12553 9750 unified: 11.0.5 12554 9751 12555 9752 rehype@13.0.2: 12556 9753 dependencies: 12557 - "@types/hast": 3.0.4 9754 + '@types/hast': 3.0.4 12558 9755 rehype-parse: 9.0.1 12559 9756 rehype-stringify: 10.0.1 12560 9757 unified: 11.0.5 12561 9758 12562 9759 remark-gfm@4.0.1: 12563 9760 dependencies: 12564 - "@types/mdast": 4.0.4 9761 + '@types/mdast': 4.0.4 12565 9762 mdast-util-gfm: 3.1.0 12566 9763 micromark-extension-gfm: 3.0.0 12567 9764 remark-parse: 11.0.0 ··· 12572 9769 12573 9770 remark-parse@11.0.0: 12574 9771 dependencies: 12575 - "@types/mdast": 4.0.4 9772 + '@types/mdast': 4.0.4 12576 9773 mdast-util-from-markdown: 2.0.2 12577 9774 micromark-util-types: 2.0.2 12578 9775 unified: 11.0.5 ··· 12581 9778 12582 9779 remark-rehype@11.1.2: 12583 9780 dependencies: 12584 - "@types/hast": 3.0.4 12585 - "@types/mdast": 4.0.4 9781 + '@types/hast': 3.0.4 9782 + '@types/mdast': 4.0.4 12586 9783 mdast-util-to-hast: 13.2.0 12587 9784 unified: 11.0.5 12588 9785 vfile: 6.0.3 ··· 12596 9793 12597 9794 remark-stringify@11.0.0: 12598 9795 dependencies: 12599 - "@types/mdast": 4.0.4 9796 + '@types/mdast': 4.0.4 12600 9797 mdast-util-to-markdown: 2.1.2 12601 9798 unified: 11.0.5 12602 9799 ··· 12616 9813 12617 9814 retext-latin@4.0.0: 12618 9815 dependencies: 12619 - "@types/nlcst": 2.0.3 9816 + '@types/nlcst': 2.0.3 12620 9817 parse-latin: 7.0.0 12621 9818 unified: 11.0.5 12622 9819 12623 9820 retext-smartypants@6.2.0: 12624 9821 dependencies: 12625 - "@types/nlcst": 2.0.3 9822 + '@types/nlcst': 2.0.3 12626 9823 nlcst-to-string: 4.0.0 12627 9824 unist-util-visit: 5.0.0 12628 9825 12629 9826 retext-stringify@4.0.0: 12630 9827 dependencies: 12631 - "@types/nlcst": 2.0.3 9828 + '@types/nlcst': 2.0.3 12632 9829 nlcst-to-string: 4.0.0 12633 9830 unified: 11.0.5 12634 9831 12635 9832 retext@9.0.0: 12636 9833 dependencies: 12637 - "@types/nlcst": 2.0.3 9834 + '@types/nlcst': 2.0.3 12638 9835 retext-latin: 4.0.0 12639 9836 retext-stringify: 4.0.0 12640 9837 unified: 11.0.5 ··· 12648 9845 12649 9846 rollup@4.52.4: 12650 9847 dependencies: 12651 - "@types/estree": 1.0.8 9848 + '@types/estree': 1.0.8 12652 9849 optionalDependencies: 12653 - "@rollup/rollup-android-arm-eabi": 4.52.4 12654 - "@rollup/rollup-android-arm64": 4.52.4 12655 - "@rollup/rollup-darwin-arm64": 4.52.4 12656 - "@rollup/rollup-darwin-x64": 4.52.4 12657 - "@rollup/rollup-freebsd-arm64": 4.52.4 12658 - "@rollup/rollup-freebsd-x64": 4.52.4 12659 - "@rollup/rollup-linux-arm-gnueabihf": 4.52.4 12660 - "@rollup/rollup-linux-arm-musleabihf": 4.52.4 12661 - "@rollup/rollup-linux-arm64-gnu": 4.52.4 12662 - "@rollup/rollup-linux-arm64-musl": 4.52.4 12663 - "@rollup/rollup-linux-loong64-gnu": 4.52.4 12664 - "@rollup/rollup-linux-ppc64-gnu": 4.52.4 12665 - "@rollup/rollup-linux-riscv64-gnu": 4.52.4 12666 - "@rollup/rollup-linux-riscv64-musl": 4.52.4 12667 - "@rollup/rollup-linux-s390x-gnu": 4.52.4 12668 - "@rollup/rollup-linux-x64-gnu": 4.52.4 12669 - "@rollup/rollup-linux-x64-musl": 4.52.4 12670 - "@rollup/rollup-openharmony-arm64": 4.52.4 12671 - "@rollup/rollup-win32-arm64-msvc": 4.52.4 12672 - "@rollup/rollup-win32-ia32-msvc": 4.52.4 12673 - "@rollup/rollup-win32-x64-gnu": 4.52.4 12674 - "@rollup/rollup-win32-x64-msvc": 4.52.4 9850 + '@rollup/rollup-android-arm-eabi': 4.52.4 9851 + '@rollup/rollup-android-arm64': 4.52.4 9852 + '@rollup/rollup-darwin-arm64': 4.52.4 9853 + '@rollup/rollup-darwin-x64': 4.52.4 9854 + '@rollup/rollup-freebsd-arm64': 4.52.4 9855 + '@rollup/rollup-freebsd-x64': 4.52.4 9856 + '@rollup/rollup-linux-arm-gnueabihf': 4.52.4 9857 + '@rollup/rollup-linux-arm-musleabihf': 4.52.4 9858 + '@rollup/rollup-linux-arm64-gnu': 4.52.4 9859 + '@rollup/rollup-linux-arm64-musl': 4.52.4 9860 + '@rollup/rollup-linux-loong64-gnu': 4.52.4 9861 + '@rollup/rollup-linux-ppc64-gnu': 4.52.4 9862 + '@rollup/rollup-linux-riscv64-gnu': 4.52.4 9863 + '@rollup/rollup-linux-riscv64-musl': 4.52.4 9864 + '@rollup/rollup-linux-s390x-gnu': 4.52.4 9865 + '@rollup/rollup-linux-x64-gnu': 4.52.4 9866 + '@rollup/rollup-linux-x64-musl': 4.52.4 9867 + '@rollup/rollup-openharmony-arm64': 4.52.4 9868 + '@rollup/rollup-win32-arm64-msvc': 4.52.4 9869 + '@rollup/rollup-win32-ia32-msvc': 4.52.4 9870 + '@rollup/rollup-win32-x64-gnu': 4.52.4 9871 + '@rollup/rollup-win32-x64-msvc': 4.52.4 12675 9872 fsevents: 2.3.3 12676 9873 12677 9874 rtl-css-js@1.16.1: 12678 9875 dependencies: 12679 - "@babel/runtime": 7.28.4 9876 + '@babel/runtime': 7.28.4 12680 9877 12681 9878 run-parallel@1.2.0: 12682 9879 dependencies: ··· 12758 9955 12759 9956 sharp@0.34.4: 12760 9957 dependencies: 12761 - "@img/colour": 1.0.0 9958 + '@img/colour': 1.0.0 12762 9959 detect-libc: 2.1.1 12763 9960 semver: 7.7.2 12764 9961 optionalDependencies: 12765 - "@img/sharp-darwin-arm64": 0.34.4 12766 - "@img/sharp-darwin-x64": 0.34.4 12767 - "@img/sharp-libvips-darwin-arm64": 1.2.3 12768 - "@img/sharp-libvips-darwin-x64": 1.2.3 12769 - "@img/sharp-libvips-linux-arm": 1.2.3 12770 - "@img/sharp-libvips-linux-arm64": 1.2.3 12771 - "@img/sharp-libvips-linux-ppc64": 1.2.3 12772 - "@img/sharp-libvips-linux-s390x": 1.2.3 12773 - "@img/sharp-libvips-linux-x64": 1.2.3 12774 - "@img/sharp-libvips-linuxmusl-arm64": 1.2.3 12775 - "@img/sharp-libvips-linuxmusl-x64": 1.2.3 12776 - "@img/sharp-linux-arm": 0.34.4 12777 - "@img/sharp-linux-arm64": 0.34.4 12778 - "@img/sharp-linux-ppc64": 0.34.4 12779 - "@img/sharp-linux-s390x": 0.34.4 12780 - "@img/sharp-linux-x64": 0.34.4 12781 - "@img/sharp-linuxmusl-arm64": 0.34.4 12782 - "@img/sharp-linuxmusl-x64": 0.34.4 12783 - "@img/sharp-wasm32": 0.34.4 12784 - "@img/sharp-win32-arm64": 0.34.4 12785 - "@img/sharp-win32-ia32": 0.34.4 12786 - "@img/sharp-win32-x64": 0.34.4 9962 + '@img/sharp-darwin-arm64': 0.34.4 9963 + '@img/sharp-darwin-x64': 0.34.4 9964 + '@img/sharp-libvips-darwin-arm64': 1.2.3 9965 + '@img/sharp-libvips-darwin-x64': 1.2.3 9966 + '@img/sharp-libvips-linux-arm': 1.2.3 9967 + '@img/sharp-libvips-linux-arm64': 1.2.3 9968 + '@img/sharp-libvips-linux-ppc64': 1.2.3 9969 + '@img/sharp-libvips-linux-s390x': 1.2.3 9970 + '@img/sharp-libvips-linux-x64': 1.2.3 9971 + '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 9972 + '@img/sharp-libvips-linuxmusl-x64': 1.2.3 9973 + '@img/sharp-linux-arm': 0.34.4 9974 + '@img/sharp-linux-arm64': 0.34.4 9975 + '@img/sharp-linux-ppc64': 0.34.4 9976 + '@img/sharp-linux-s390x': 0.34.4 9977 + '@img/sharp-linux-x64': 0.34.4 9978 + '@img/sharp-linuxmusl-arm64': 0.34.4 9979 + '@img/sharp-linuxmusl-x64': 0.34.4 9980 + '@img/sharp-wasm32': 0.34.4 9981 + '@img/sharp-win32-arm64': 0.34.4 9982 + '@img/sharp-win32-ia32': 0.34.4 9983 + '@img/sharp-win32-x64': 0.34.4 12787 9984 optional: true 12788 9985 12789 9986 shebang-command@2.0.0: ··· 12796 9993 12797 9994 shiki@3.13.0: 12798 9995 dependencies: 12799 - "@shikijs/core": 3.13.0 12800 - "@shikijs/engine-javascript": 3.13.0 12801 - "@shikijs/engine-oniguruma": 3.13.0 12802 - "@shikijs/langs": 3.13.0 12803 - "@shikijs/themes": 3.13.0 12804 - "@shikijs/types": 3.13.0 12805 - "@shikijs/vscode-textmate": 10.0.2 12806 - "@types/hast": 3.0.4 9996 + '@shikijs/core': 3.13.0 9997 + '@shikijs/engine-javascript': 3.13.0 9998 + '@shikijs/engine-oniguruma': 3.13.0 9999 + '@shikijs/langs': 3.13.0 10000 + '@shikijs/themes': 3.13.0 10001 + '@shikijs/types': 3.13.0 10002 + '@shikijs/vscode-textmate': 10.0.2 10003 + '@types/hast': 3.0.4 12807 10004 12808 10005 side-channel-list@1.0.0: 12809 10006 dependencies: ··· 12934 10131 12935 10132 swagger-ui-dist@5.29.3: 12936 10133 dependencies: 12937 - "@scarf/scarf": 1.4.0 10134 + '@scarf/scarf': 1.4.0 12938 10135 12939 10136 tabster@8.5.6: 12940 10137 dependencies: 12941 10138 keyborg: 2.6.0 12942 10139 tslib: 2.8.1 12943 10140 optionalDependencies: 12944 - "@rollup/rollup-linux-x64-gnu": 4.40.0 10141 + '@rollup/rollup-linux-x64-gnu': 4.40.0 12945 10142 12946 10143 tar@7.5.1: 12947 10144 dependencies: 12948 - "@isaacs/fs-minipass": 4.0.1 10145 + '@isaacs/fs-minipass': 4.0.1 12949 10146 chownr: 3.0.0 12950 10147 minipass: 7.1.2 12951 10148 minizlib: 3.1.0 ··· 13004 10201 13005 10202 ts-morph@24.0.0: 13006 10203 dependencies: 13007 - "@ts-morph/common": 0.25.0 10204 + '@ts-morph/common': 0.25.0 13008 10205 code-block-writer: 13.0.3 13009 10206 13010 10207 tsc-watch@7.2.0(typescript@5.9.3): ··· 13066 10263 13067 10264 unified@11.0.5: 13068 10265 dependencies: 13069 - "@types/unist": 3.0.3 10266 + '@types/unist': 3.0.3 13070 10267 bail: 2.0.2 13071 10268 devlop: 1.1.0 13072 10269 extend: 3.0.2 ··· 13082 10279 13083 10280 unist-util-find-after@5.0.0: 13084 10281 dependencies: 13085 - "@types/unist": 3.0.3 10282 + '@types/unist': 3.0.3 13086 10283 unist-util-is: 6.0.0 13087 10284 13088 10285 unist-util-is@6.0.0: 13089 10286 dependencies: 13090 - "@types/unist": 3.0.3 10287 + '@types/unist': 3.0.3 13091 10288 13092 10289 unist-util-modify-children@4.0.0: 13093 10290 dependencies: 13094 - "@types/unist": 3.0.3 10291 + '@types/unist': 3.0.3 13095 10292 array-iterate: 2.0.1 13096 10293 13097 10294 unist-util-position@5.0.0: 13098 10295 dependencies: 13099 - "@types/unist": 3.0.3 10296 + '@types/unist': 3.0.3 13100 10297 13101 10298 unist-util-remove-position@5.0.0: 13102 10299 dependencies: 13103 - "@types/unist": 3.0.3 10300 + '@types/unist': 3.0.3 13104 10301 unist-util-visit: 5.0.0 13105 10302 13106 10303 unist-util-stringify-position@4.0.0: 13107 10304 dependencies: 13108 - "@types/unist": 3.0.3 10305 + '@types/unist': 3.0.3 13109 10306 13110 10307 unist-util-visit-children@3.0.0: 13111 10308 dependencies: 13112 - "@types/unist": 3.0.3 10309 + '@types/unist': 3.0.3 13113 10310 13114 10311 unist-util-visit-parents@6.0.1: 13115 10312 dependencies: 13116 - "@types/unist": 3.0.3 10313 + '@types/unist': 3.0.3 13117 10314 unist-util-is: 6.0.0 13118 10315 13119 10316 unist-util-visit@5.0.0: 13120 10317 dependencies: 13121 - "@types/unist": 3.0.3 10318 + '@types/unist': 3.0.3 13122 10319 unist-util-is: 6.0.0 13123 10320 unist-util-visit-parents: 6.0.1 13124 10321 ··· 13166 10363 13167 10364 vfile-location@5.0.3: 13168 10365 dependencies: 13169 - "@types/unist": 3.0.3 10366 + '@types/unist': 3.0.3 13170 10367 vfile: 6.0.3 13171 10368 13172 10369 vfile-message@4.0.3: 13173 10370 dependencies: 13174 - "@types/unist": 3.0.3 10371 + '@types/unist': 3.0.3 13175 10372 unist-util-stringify-position: 4.0.0 13176 10373 13177 10374 vfile@6.0.3: 13178 10375 dependencies: 13179 - "@types/unist": 3.0.3 10376 + '@types/unist': 3.0.3 13180 10377 vfile-message: 4.0.3 13181 10378 13182 10379 vite-node@1.6.1(@types/node@20.19.19): ··· 13187 10384 picocolors: 1.1.1 13188 10385 vite: 5.4.20(@types/node@20.19.19) 13189 10386 transitivePeerDependencies: 13190 - - "@types/node" 10387 + - '@types/node' 13191 10388 - less 13192 10389 - lightningcss 13193 10390 - sass ··· 13203 10400 postcss: 8.5.6 13204 10401 rollup: 4.52.4 13205 10402 optionalDependencies: 13206 - "@types/node": 20.19.19 10403 + '@types/node': 20.19.19 13207 10404 fsevents: 2.3.3 13208 10405 13209 10406 vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1): ··· 13215 10412 rollup: 4.52.4 13216 10413 tinyglobby: 0.2.15 13217 10414 optionalDependencies: 13218 - "@types/node": 20.19.19 10415 + '@types/node': 20.19.19 13219 10416 fsevents: 2.3.3 13220 10417 yaml: 2.8.1 13221 10418 ··· 13225 10422 13226 10423 vitest@1.6.1(@types/node@20.19.19): 13227 10424 dependencies: 13228 - "@vitest/expect": 1.6.1 13229 - "@vitest/runner": 1.6.1 13230 - "@vitest/snapshot": 1.6.1 13231 - "@vitest/spy": 1.6.1 13232 - "@vitest/utils": 1.6.1 10425 + '@vitest/expect': 1.6.1 10426 + '@vitest/runner': 1.6.1 10427 + '@vitest/snapshot': 1.6.1 10428 + '@vitest/spy': 1.6.1 10429 + '@vitest/utils': 1.6.1 13233 10430 acorn-walk: 8.3.4 13234 10431 chai: 4.5.0 13235 10432 debug: 4.4.3 ··· 13246 10443 vite-node: 1.6.1(@types/node@20.19.19) 13247 10444 why-is-node-running: 2.3.0 13248 10445 optionalDependencies: 13249 - "@types/node": 20.19.19 10446 + '@types/node': 20.19.19 13250 10447 transitivePeerDependencies: 13251 10448 - less 13252 10449 - lightningcss