An experimental TypeSpec syntax for Lexicon
0
fork

Configure Feed

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

insane

+7833 -4968
+1 -1
.husky/pre-commit
··· 2 2 . "$(dirname -- "$0")/_/husky.sh" 3 3 4 4 # Run tests before commit 5 - npm run test -w @tylex/emitter 5 + npm run test -w @typelex/emitter
+1 -1
CLAUDE.md
··· 1 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 2 3 - what i want you to do is to gradually keep adding features to tylex so that in the end it's possible to express all Lexicon code with that language. you have the following resources: 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 4 5 5 - read `SYNTAX.md`!!! it's the main guideline 6 6
+2 -2
DOCS.md
··· 1 1 # TypeSpec to Lexicon Reference 2 2 3 - This guide maps atproto Lexicon JSON syntax to TypeSpec (Tylex). It assumes you're familiar with Lexicon and want to understand how to express it in TypeSpec. 3 + This guide maps atproto Lexicon JSON syntax to TypeSpec (typelex). It assumes you're familiar with Lexicon and want to understand how to express it in TypeSpec. 4 4 5 5 ## Quick Start 6 6 7 7 Every TypeSpec file starts with an import and namespace: 8 8 9 9 ```typescript 10 - import "@tylex/emitter"; 10 + import "@typelex/emitter"; 11 11 12 12 /** Common definitions used by other lexicons */ 13 13 namespace com.example.defs {
+1 -1
LICENSE
··· 1 1 MIT License 2 2 3 - Copyright (c) 2024 tylex Contributors 3 + Copyright (c) 2024 typelex Contributors 4 4 5 5 Permission is hereby granted, free of charge, to any person obtaining a copy 6 6 of this software and associated documentation files (the "Software"), to deal
+10 -10
README.md
··· 1 - # tylex 1 + # typelex 2 2 3 3 > TypeSpec-based IDL for ATProto Lexicons 4 4 5 - tylex allows you to define [ATProto](https://atproto.com) lexicons using [TypeSpec](https://typespec.io), providing type safety, better tooling, and a more ergonomic syntax compared to writing raw JSON. 5 + typelex allows you to define [ATProto](https://atproto.com) lexicons using [TypeSpec](https://typespec.io), providing type safety, better tooling, and a more ergonomic syntax compared to writing raw JSON. 6 6 7 7 ## Features 8 8 ··· 17 17 # Install TypeSpec compiler 18 18 npm install -g @typespec/compiler 19 19 20 - # Install tylex emitter 21 - npm install --save-dev @tylex/emitter 20 + # Install typelex emitter 21 + npm install --save-dev @typelex/emitter 22 22 ``` 23 23 24 24 Create a `main.tsp` file: ··· 43 43 44 44 ```yaml 45 45 emit: 46 - - "@tylex/emitter" 46 + - "@typelex/emitter" 47 47 options: 48 - "@tylex/emitter": 48 + "@typelex/emitter": 49 49 output-dir: "./lexicons" 50 50 ``` 51 51 ··· 57 57 58 58 ## Output 59 59 60 - tylex generates standard ATProto lexicon files: 60 + typelex generates standard ATProto lexicon files: 61 61 62 62 ```json 63 63 { ··· 102 102 103 103 ```bash 104 104 # Clone the repository 105 - git clone https://github.com/yourusername/tylex.git 106 - cd tylex 105 + git clone https://github.com/yourusername/typelex.git 106 + cd typelex 107 107 108 108 # Build the emitter 109 109 pnpm install ··· 115 115 116 116 ## Current Status 117 117 118 - ⚠️ **Early Development** - tylex currently supports basic record types. Support for queries, procedures, and subscriptions is coming soon. 118 + ⚠️ **Early Development** - typelex currently supports basic record types. Support for queries, procedures, and subscriptions is coming soon. 119 119 120 120 ### Supported 121 121
+6 -6
package.json
··· 1 1 { 2 - "name": "tylex-monorepo", 2 + "name": "typelex-monorepo", 3 3 "version": "0.1.0", 4 4 "private": true, 5 5 "description": "TypeSpec-based IDL for ATProto Lexicons", 6 6 "scripts": { 7 7 "build": "pnpm -r build", 8 - "test": "pnpm --filter @tylex/emitter test", 9 - "test:watch": "pnpm --filter @tylex/emitter test:watch", 10 - "example": "pnpm --filter @tylex/example build", 11 - "playground": "pnpm --filter @tylex/playground dev", 8 + "test": "pnpm --filter @typelex/emitter test", 9 + "test:watch": "pnpm --filter @typelex/emitter test:watch", 10 + "example": "pnpm --filter @typelex/example build", 11 + "playground": "pnpm --filter @typelex/playground dev", 12 12 "validate": "pnpm build && pnpm run validate-lexicons && pnpm test", 13 13 "validate-lexicons": "node scripts/validate-lexicons.js" 14 14 }, 15 15 "repository": { 16 16 "type": "git", 17 - "url": "https://github.com/yourusername/tylex.git" 17 + "url": "https://github.com/yourusername/typelex.git" 18 18 }, 19 19 "keywords": [ 20 20 "typespec",
+4 -4
packages/emitter/README.md
··· 1 - # @tylex/emitter 1 + # @typelex/emitter 2 2 3 3 TypeSpec emitter for generating ATProto Lexicon definitions. 4 4 5 5 ## Installation 6 6 7 7 ```bash 8 - npm install @tylex/emitter 8 + npm install @typelex/emitter 9 9 ``` 10 10 11 11 ## Usage ··· 15 15 ```yaml 16 16 # tspconfig.yaml 17 17 emit: 18 - - "@tylex/emitter" 18 + - "@typelex/emitter" 19 19 options: 20 - "@tylex/emitter": 20 + "@typelex/emitter": 21 21 output-dir: "./lexicons" 22 22 ``` 23 23
+2 -2
packages/emitter/lib/private.decorators.tsp
··· 1 1 import "../dist/tsp-index.js"; 2 2 3 3 /** 4 - * Private decorators for internal use by the Tylex emitter. 4 + * Private decorators for internal use by the Typelex emitter. 5 5 * These are not intended for direct use in user code. 6 6 */ 7 - namespace Tylex.Private; 7 + namespace Typelex.Private;
+2 -2
packages/emitter/package-lock.json
··· 1 1 { 2 - "name": "@tylex/emitter", 2 + "name": "@typelex/emitter", 3 3 "version": "0.1.0", 4 4 "lockfileVersion": 3, 5 5 "requires": true, 6 6 "packages": { 7 7 "": { 8 - "name": "@tylex/emitter", 8 + "name": "@typelex/emitter", 9 9 "version": "0.1.0", 10 10 "license": "MIT", 11 11 "dependencies": {
+1 -1
packages/emitter/package.json
··· 1 1 { 2 - "name": "@tylex/emitter", 2 + "name": "@typelex/emitter", 3 3 "version": "0.1.0", 4 4 "description": "TypeSpec emitter for ATProto Lexicon definitions", 5 5 "main": "dist/index.js",
+1 -1
packages/emitter/src/emitter.ts
··· 90 90 atIdentifier: "at-identifier", 91 91 }; 92 92 93 - export class TylexEmitter { 93 + export class TypelexEmitter { 94 94 private lexicons = new Map<string, LexiconDoc>(); 95 95 private currentLexiconId: string | null = null; 96 96
+4 -4
packages/emitter/src/index.ts
··· 1 1 import type { EmitContext } from "@typespec/compiler"; 2 - import { TylexEmitter } from "./emitter.js"; 2 + import { TypelexEmitter } from "./emitter.js"; 3 3 4 - export interface TylexEmitterOptions { 4 + export interface TypelexEmitterOptions { 5 5 "output-dir"?: string; 6 6 } 7 7 8 - export async function $onEmit(context: EmitContext<TylexEmitterOptions>) { 8 + export async function $onEmit(context: EmitContext<TypelexEmitterOptions>) { 9 9 // Use custom output-dir from options if provided, otherwise use emitterOutputDir 10 10 const outputDir = context.options["output-dir"] || context.emitterOutputDir; 11 11 12 - const emitter = new TylexEmitter(context.program, { 12 + const emitter = new TypelexEmitter(context.program, { 13 13 outputDir, 14 14 }); 15 15
+11 -11
packages/emitter/test/integration.test.ts
··· 18 18 const pkgRoot = await findTestPackageRoot(import.meta.url); 19 19 const TESTS_DIR = resolvePath(pkgRoot, "test/integration"); 20 20 21 - const TylexTestLibrary: TypeSpecTestLibrary = { 22 - name: "@tylex/emitter", 21 + const TypelexTestLibrary: TypeSpecTestLibrary = { 22 + name: "@typelex/emitter", 23 23 packageRoot: await findTestPackageRoot(import.meta.url), 24 24 files: [ 25 25 { 26 26 realDir: "", 27 27 pattern: "package.json", 28 - virtualPath: "./node_modules/@tylex/emitter", 28 + virtualPath: "./node_modules/@typelex/emitter", 29 29 }, 30 30 { 31 31 realDir: "dist", 32 32 pattern: "**/*.js", 33 - virtualPath: "./node_modules/@tylex/emitter/dist", 33 + virtualPath: "./node_modules/@typelex/emitter/dist", 34 34 }, 35 35 { 36 36 realDir: "lib/", 37 37 pattern: "*.tsp", 38 - virtualPath: "./node_modules/@tylex/emitter/lib", 38 + virtualPath: "./node_modules/@typelex/emitter/lib", 39 39 }, 40 40 ], 41 41 }; ··· 63 63 if (tspFiles.length > 0) { 64 64 // Create a virtual main.tsp that imports all other files 65 65 const mainContent = 66 - 'import "@tylex/emitter";\n' + 66 + 'import "@typelex/emitter";\n' + 67 67 tspFiles.map((f) => `import "./${f}";`).join("\n"); 68 68 const filesWithMain = { ...inputFiles, "main.tsp": mainContent }; 69 69 emitResult = await doEmit(filesWithMain, "main.tsp"); ··· 124 124 const baseOutputPath = resolveVirtualPath("test-output/"); 125 125 126 126 const host = await createTestHost({ 127 - libraries: [TylexTestLibrary], 127 + libraries: [TypelexTestLibrary], 128 128 }); 129 129 130 130 for (const [fileName, content] of Object.entries(files)) { ··· 134 134 const [, diagnostics] = await host.compileAndDiagnose(entryPoint, { 135 135 outputDir: baseOutputPath, 136 136 noEmit: false, 137 - emit: ["@tylex/emitter"], 137 + emit: ["@typelex/emitter"], 138 138 }); 139 139 140 140 const outputFiles = Object.fromEntries( ··· 142 142 .filter(([name]) => name.startsWith(baseOutputPath)) 143 143 .map(([name, value]) => { 144 144 let relativePath = name.replace(baseOutputPath, ""); 145 - // Strip the @tylex/emitter/ prefix if present 146 - if (relativePath.startsWith("@tylex/emitter/")) { 147 - relativePath = relativePath.replace("@tylex/emitter/", ""); 145 + // Strip the @typelex/emitter/ prefix if present 146 + if (relativePath.startsWith("@typelex/emitter/")) { 147 + relativePath = relativePath.replace("@typelex/emitter/", ""); 148 148 } 149 149 return [relativePath, value]; 150 150 }),
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.defs { 4 4 model ProfileViewBasic {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/getPreferences.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.getPreferences { 4 4 @doc("Get private preferences attached to the current account. Expected use is synchronization between multiple devices, and import/export during account migration. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/getProfile.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.getProfile { 4 4 @doc("Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/getProfiles.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.getProfiles { 4 4 @doc("Get detailed profile views of multiple actors.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/getSuggestions.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.getSuggestions { 4 4 @doc("Get a list of suggested actors. Expected use is discovery of accounts to follow during new account onboarding.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/profile.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.profile { 4 4 @rec("literal:self")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/putPreferences.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.putPreferences { 4 4 @doc("Set the private preferences attached to the account.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/searchActors.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.searchActors { 4 4 @doc("Find actors (profiles) matching search criteria. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/searchActorsTypeahead.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.searchActorsTypeahead { 4 4 @doc("Find actor suggestions for a prefix search term. Expected use is for auto-completion during text field entry. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/status.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.actor.status { 4 4 @doc("A declaration of a Bluesky account status.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/bookmark/createBookmark.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.bookmark.createBookmark { 4 4 @doc("Creates a private bookmark for the specified record. Currently, only `app.bsky.feed.post` records are supported. Requires authentication.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/bookmark/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.bookmark.defs { 4 4 @doc("Object used to store bookmark data in stash.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/bookmark/deleteBookmark.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.bookmark.deleteBookmark { 4 4 @doc("Deletes a private bookmark for the specified record. Currently, only `app.bsky.feed.post` records are supported. Requires authentication.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/bookmark/getBookmarks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.bookmark.getBookmarks { 4 4 @doc("Gets views of records bookmarked by the authenticated user. Requires authentication.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.embed.defs { 4 4 // Description goes on the model for defs, unlike standalone lexicons where it goes at lexicon level
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/external.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.embed.external { 4 4 @doc("A representation of some externally linked content (eg, a URL and 'card'), embedded in a Bluesky record (eg, a post).")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/images.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A set of images embedded in a Bluesky record (eg, a post).") 4 4 namespace app.bsky.embed.images {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/record.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A representation of a record embedded in a Bluesky record (eg, a post). For example, a quote-post, or sharing a feed generator record.") 4 4 namespace app.bsky.embed.`record` {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/recordWithMedia.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A representation of a record embedded in a Bluesky record (eg, a post), alongside other compatible embeds. For example, a quote post and image, or a quote post and external URL card.") 4 4 namespace app.bsky.embed.recordWithMedia {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/video.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A video embedded in a Bluesky record (eg, a post).") 4 4 namespace app.bsky.embed.video {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.defs { 4 4 model PostView {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/describeFeedGenerator.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.describeFeedGenerator { 4 4 @doc("Get information about a feed generator, including policies and offered feed URIs. Does not require auth; implemented by Feed Generator services (not App View).")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/generator.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.generator { 4 4 @doc("Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getActorFeeds.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getActorFeeds { 4 4 @doc("Get a list of feeds (feed generator records) created by the actor (in the actor's repo).")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getActorLikes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getActorLikes { 4 4 model BlockedActor {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getAuthorFeed.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getAuthorFeed { 4 4 model BlockedActor {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getFeed.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getFeed { 4 4 model UnknownFeed {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getFeedGenerator.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getFeedGenerator { 4 4 @doc("Get information about a feed generator. Implemented by AppView.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getFeedGenerators.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getFeedGenerators { 4 4 @doc("Get information about a list of feed generators.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getFeedSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getFeedSkeleton { 4 4 model UnknownFeed {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getLikes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getLikes { 4 4 @doc("Get like records which reference a subject (by AT-URI and CID).")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getListFeed.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getListFeed { 4 4 model UnknownList {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getPostThread.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getPostThread { 4 4 model NotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getPosts.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getPosts { 4 4 @doc("Gets post views for a specified list of posts (by AT-URI). This is sometimes referred to as 'hydrating' a 'feed skeleton'.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getQuotes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getQuotes { 4 4 @doc("Get a list of quotes for a given post.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getRepostedBy.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getRepostedBy { 4 4 @doc("Get a list of reposts for a given post.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getSuggestedFeeds.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getSuggestedFeeds { 4 4 @doc("Get a list of suggested feeds (feed generators) for the requesting account.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getTimeline.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.getTimeline { 4 4 @doc("Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/like.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.like { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/post.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.post { 4 4 @doc("Record containing a Bluesky post.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/postgate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.postgate { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/repost.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.repost { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/searchPosts.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @maxLength(640) 4 4 @maxGraphemes(64)
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/sendInteractions.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.sendInteractions { 4 4 @doc("Send information about interactions with feed items back to the feed generator that served them.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/threadgate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.feed.threadgate { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/block.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.block { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.defs { 4 4 model ListViewBasic {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/follow.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.follow { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getActorStarterPacks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getActorStarterPacks { 4 4 @doc("Get a list of starter packs created by the actor.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getBlocks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getBlocks { 4 4 @doc("Enumerates which accounts the requesting account is currently blocking. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getFollowers.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getFollowers { 4 4 @doc("Enumerates accounts which follow a specified account (actor).")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getFollows.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getFollows { 4 4 @doc("Enumerates accounts which a specified account (actor) follows.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getKnownFollowers.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getKnownFollowers { 4 4 @doc("Enumerates accounts which follow a specified account (actor) and are followed by the viewer.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getList.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getList { 4 4 @doc("Gets a 'view' (with additional context) of a specified list.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getListBlocks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getListBlocks { 4 4 @doc("Get mod lists that the requesting account (actor) is blocking. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getListMutes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getListMutes { 4 4 @doc("Enumerates mod lists that the requesting account (actor) currently has muted. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getLists.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getLists { 4 4 @doc("Enumerates the lists created by a specified account (actor).")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getListsWithMembership.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getListsWithMembership { 4 4 @doc("Enumerates the lists created by the session user, and includes membership information about `actor` in those lists. Only supports curation and moderation lists (no reference lists, used in starter packs). Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getMutes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getMutes { 4 4 @doc("Enumerates accounts that the requesting account (actor) currently has muted. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getRelationships.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getRelationships { 4 4 @doc("Enumerates public relationships between one account, and a list of other accounts. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getStarterPack.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getStarterPack { 4 4 @doc("Gets a view of a starter pack.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getStarterPacks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getStarterPacks { 4 4 @doc("Get views for a list of starter packs.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getStarterPacksWithMembership.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getStarterPacksWithMembership { 4 4 @doc("Enumerates the starter packs created by the session user, and includes membership information about `actor` in those starter packs. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getSuggestedFollowsByActor.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.getSuggestedFollowsByActor { 4 4 @doc("Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/list.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.list { 4 4 @doc("Record representing a list of accounts (actors). Scope includes both moderation-oriented lists and curration-oriented lists.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/listblock.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.listblock { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/listitem.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.listitem { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/muteActor.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.muteActor { 4 4 @doc("Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/muteActorList.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.muteActorList { 4 4 @doc("Creates a mute relationship for the specified list of accounts. Mutes are private in Bluesky. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/muteThread.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.muteThread { 4 4 @doc("Mutes a thread preventing notifications from the thread and any of its children. Mutes are private in Bluesky. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/searchStarterPacks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.searchStarterPacks { 4 4 @doc("Find starter packs matching search criteria. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/starterpack.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.starterpack { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/unmuteActor.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.unmuteActor { 4 4 @doc("Unmutes the specified account. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/unmuteActorList.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.unmuteActorList { 4 4 @doc("Unmutes the specified list of accounts. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/unmuteThread.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.unmuteThread { 4 4 @doc("Unmutes the specified thread. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/verification.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.graph.verification { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/labeler/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.labeler.defs { 4 4 model LabelerView {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/labeler/getServices.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.labeler.getServices { 4 4 @doc("Get information about a list of labeler services.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/labeler/service.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.labeler.service { 4 4 @doc("A declaration of the existence of labeler service.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/declaration.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.declaration { 4 4 @rec("literal:self")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.defs { 4 4 model RecordDeleted {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/getPreferences.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.getPreferences { 4 4 @doc("Get notification-related preferences for an account. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/getUnreadCount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.getUnreadCount { 4 4 @doc("Count the number of unread notifications for the requesting account. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/listActivitySubscriptions.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.listActivitySubscriptions { 4 4 @doc("Enumerate all accounts to which the requesting account is subscribed to receive notifications for. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/listNotifications.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A reason that matches the reason property of #notification.") 4 4 scalar ReasonString extends string;
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/putActivitySubscription.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.putActivitySubscription { 4 4 @doc("Puts an activity subscription entry. The key should be omitted for creation and provided for updates. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/putPreferences.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.putPreferences { 4 4 @doc("Set notification-related preferences for an account. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/putPreferencesV2.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.putPreferencesV2 { 4 4 @doc("Set notification-related preferences for an account. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/registerPush.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.registerPush { 4 4 @doc("Register to receive push notifications, via a specified service, for the requesting account. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/unregisterPush.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.unregisterPush { 4 4 @doc("The inverse of registerPush - inform a specified service that push notifications should no longer be sent to the given token for the requesting account. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/updateSeen.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.notification.updateSeen { 4 4 @doc("Notify server that the requesting account has seen notifications. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/richtext/facet.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.richtext.facet { 4 4 @doc("Annotation of a sub-string within rich text.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.defs { 4 4 model SkeletonSearchPost {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getAgeAssuranceState.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getAgeAssuranceState { 4 4 @doc("Returns the current state of the age assurance process for an account. This is used to check if the user has completed age assurance or if further action is required.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getConfig.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getConfig { 4 4 @doc("Get miscellaneous runtime configuration.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getOnboardingSuggestedStarterPacks { 4 4 @doc("Get a list of suggested starterpacks for onboarding")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getOnboardingSuggestedStarterPacksSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton { 4 4 @doc("Get a skeleton of suggested starterpacks for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getOnboardingSuggestedStarterPacks")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getPopularFeedGenerators.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getPopularFeedGenerators { 4 4 @doc("An unspecced view of globally popular feed generators.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getPostThreadOtherV2.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getPostThreadOtherV2 { 4 4 @doc("(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of `unspecced` or your application WILL break) Get additional posts under a thread e.g. replies hidden by threadgate. Based on an anchor post at any depth of the tree, returns top-level replies below that anchor. It does not include ancestors nor the anchor itself. This should be called after exhausting `app.bsky.unspecced.getPostThreadV2`. Does not require auth, but additional metadata and filtering will be applied for authed requests.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getPostThreadV2.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getPostThreadV2 { 4 4 @doc("(NOTE: this endpoint is under development and WILL change without notice. Don't use it until it is moved out of `unspecced` or your application WILL break) Get posts in a thread. It is based in an anchor post at any depth of the tree, and returns posts above it (recursively resolving the parent, without further branching to their replies) and below it (recursive replies, with branching to their replies). Does not require auth, but additional metadata and filtering will be applied for authed requests.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getSuggestedFeeds.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getSuggestedFeeds { 4 4 @doc("Get a list of suggested feeds")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getSuggestedFeedsSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getSuggestedFeedsSkeleton { 4 4 @doc("Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getSuggestedStarterPacks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getSuggestedStarterPacks { 4 4 @doc("Get a list of suggested starterpacks")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getSuggestedStarterPacksSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getSuggestedStarterPacksSkeleton { 4 4 @doc("Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getSuggestedUsers.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getSuggestedUsers { 4 4 @doc("Get a list of suggested users")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getSuggestedUsersSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getSuggestedUsersSkeleton { 4 4 @doc("Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getSuggestionsSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getSuggestionsSkeleton { 4 4 @doc("Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getTaggedSuggestions.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getTaggedSuggestions { 4 4 @doc("Get a list of suggestions (feeds and users) tagged with categories")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getTrendingTopics.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getTrendingTopics { 4 4 @doc("Get a list of trending topics")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getTrends.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getTrends { 4 4 @doc("Get the current trends on the network")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getTrendsSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.getTrendsSkeleton { 4 4 @doc("Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/initAgeAssurance.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.initAgeAssurance { 4 4 model InvalidEmail {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/searchActorsSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.searchActorsSkeleton { 4 4 model BadQueryString {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/searchPostsSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @maxLength(640) 4 4 @maxGraphemes(64)
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/searchStarterPacksSkeleton.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.unspecced.searchStarterPacksSkeleton { 4 4 model BadQueryString {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/video/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.video.defs { 4 4 model JobStatus {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/video/getJobStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.video.getJobStatus { 4 4 @doc("Get status details for a video processing job.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/video/getUploadLimits.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.video.getUploadLimits { 4 4 @doc("Get video upload limits for the authenticated user.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/video/uploadVideo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace app.bsky.video.uploadVideo { 4 4 @doc("Upload a video to be processed then stored on the PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/actor/declaration.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.actor.declaration { 4 4 @rec("literal:self")
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/actor/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.actor.defs { 4 4 model ProfileViewBasic {
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/actor/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.actor.deleteAccount { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/actor/exportAccountData.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.actor.exportAccountData { 4 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/acceptConvo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.acceptConvo { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/addReaction.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.addReaction { 4 4 @doc("Indicates that the message has been deleted and reactions can no longer be added/removed.")
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.defs { 4 4 model MessageRef {
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/deleteMessageForSelf.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.deleteMessageForSelf { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getConvo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.getConvo { 4 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getConvoAvailability.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.getConvoAvailability { 4 4 @doc("Get whether the requester and the other members can chat. If an existing convo is found for these members, it is returned.")
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getConvoForMembers.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.getConvoForMembers { 4 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getLog.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.getLog { 4 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getMessages.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.getMessages { 4 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/leaveConvo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.leaveConvo { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/listConvos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.listConvos { 4 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/muteConvo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.muteConvo { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/removeReaction.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.removeReaction { 4 4 @doc("Indicates that the message has been deleted and reactions can no longer be added/removed.")
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/sendMessage.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.sendMessage { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/sendMessageBatch.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.sendMessageBatch { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/unmuteConvo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.unmuteConvo { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/updateAllRead.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.updateAllRead { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/updateRead.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.convo.updateRead { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/moderation/getActorMetadata.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.moderation.getActorMetadata { 4 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/moderation/getMessageContext.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.moderation.getMessageContext { 4 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/moderation/updateActorAccess.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace chat.bsky.moderation.updateActorAccess { 4 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.defs { 4 4 model StatusAttr {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.deleteAccount { 4 4 @doc("Delete a user account as an administrator.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/disableAccountInvites.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.disableAccountInvites { 4 4 @doc("Disable an account from receiving new invite codes, but does not invalidate existing codes.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/disableInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.disableInviteCodes { 4 4 @doc("Disable some set of codes and/or all codes associated with a set of users.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/enableAccountInvites.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.enableAccountInvites { 4 4 @doc("Re-enable an account's ability to receive invite codes.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/getAccountInfo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.getAccountInfo { 4 4 @doc("Get details about an account.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/getAccountInfos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.getAccountInfos { 4 4 @doc("Get details about some accounts.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/getInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.getInviteCodes { 4 4 @doc("Get an admin view of invite codes.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/getSubjectStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.getSubjectStatus { 4 4 @doc("Get the service-specific admin status of a subject (account, record, or blob).")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/searchAccounts.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.searchAccounts { 4 4 @doc("Get list of accounts that matches your search query.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/sendEmail.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.sendEmail { 4 4 @doc("Send email to a user's account email address.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/updateAccountEmail.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateAccountEmail { 4 4 @doc("Administrative action to update an account's email.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/updateAccountHandle.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateAccountHandle { 4 4 @doc("Administrative action to update an account's handle.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/updateAccountPassword.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateAccountPassword { 4 4 @doc("Update the password for a user account as an administrator.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/updateAccountSigningKey.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateAccountSigningKey { 4 4 @doc("Administrative action to update an account's signing key in their Did document.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/updateSubjectStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateSubjectStatus { 4 4 @doc("Update the service-specific admin status of a subject (account, record, or blob).")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.defs { 4 4 model IdentityInfo {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/getRecommendedDidCredentials.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.getRecommendedDidCredentials { 4 4 @doc("Describe the credentials that should be included in the DID doc of an account that is migrating to this service.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/refreshIdentity.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.refreshIdentity { 4 4 @doc("The resolution process confirmed that the handle does not resolve to any DID.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/requestPlcOperationSignature.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.requestPlcOperationSignature { 4 4 @doc("Request an email with a code to in order to request a signed PLC operation. Requires Auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/resolveDid.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.resolveDid { 4 4 @doc("Resolves DID to DID document. Does not bi-directionally verify handle.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/resolveHandle.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.resolveHandle { 4 4 @doc("Resolves an atproto handle (hostname) to a DID. Does not necessarily bi-directionally verify against the the DID document.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/resolveIdentity.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.resolveIdentity { 4 4 @doc("The resolution process confirmed that the handle does not resolve to any DID.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/signPlcOperation.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.signPlcOperation { 4 4 @doc("Signs a PLC operation to update some value(s) in the requesting DID's document.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/submitPlcOperation.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.submitPlcOperation { 4 4 @doc("Validates a PLC operation to ensure that it doesn't violate a service's constraints or get the identity into a bad state, then submits it to the PLC registry")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/updateHandle.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.updateHandle { 4 4 @doc("Updates the current account's handle. Verifies handle validity, and updates did:plc document if necessary. Implemented by PDS, and requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/label/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.label.defs { 4 4 @doc("Metadata tag on an atproto resource (eg, repo or record).")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/label/queryLabels.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.label.queryLabels { 4 4 @doc("Find labels relevant to the provided AT-URI patterns. Public endpoint for moderation services, though may return different or additional results with auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/label/subscribeLabels.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.label.subscribeLabels { 4 4 model FutureCursor {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/lexicon/schema.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.lexicon.schema { 4 4 @doc("Representation of Lexicon schemas themselves, when published as atproto records. Note that the schema language is not defined in Lexicon; this meta schema currently only includes a single version field ('lexicon'). See the atproto specifications for description of the other expected top-level fields ('id', 'defs', etc).")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/moderation/createReport.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.moderation.createReport { 4 4 @doc("Submit a moderation report regarding an atproto account or record. Implemented by moderation services (with PDS proxying), and requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/moderation/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.moderation.defs { 4 4 union ReasonType {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/applyWrites.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.applyWrites { 4 4 @doc("Indicates that the 'swapCommit' parameter did not match current commit.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/createRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.createRecord { 4 4 @doc("Create a single new repository record. Requires auth, implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.defs { 4 4 model CommitMeta {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/deleteRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.deleteRecord { 4 4 @doc("Delete a repository record, or ensure it doesn't exist. Requires auth, implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/describeRepo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.describeRepo { 4 4 @doc("Get information about an account and repository, including the list of collections. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/getRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.getRecord { 4 4 @doc("Get a single record from a repository. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/importRepo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.importRepo { 4 4 @doc("Import a repo in the form of a CAR file. Requires Content-Length HTTP header to be set.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/listMissingBlobs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.listMissingBlobs { 4 4 @doc("Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/listRecords.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.listRecords { 4 4 @doc("List a range of records in a repository, matching a specific collection. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/putRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.putRecord { 4 4 @doc("Write a repository record, creating or updating it as needed. Requires auth, implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/strongRef.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A URI with a content-hash fingerprint.") 4 4 namespace com.atproto.repo.strongRef {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/uploadBlob.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.uploadBlob { 4 4 @doc("Upload a new blob, to be referenced from a repository record. The blob will be deleted if it is not referenced within a time window (eg, minutes). Blob restrictions (mimetype, size, etc) are enforced when the reference is created. Requires auth, implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/activateAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.activateAccount { 4 4 @doc("Activates a currently deactivated account. Used to finalize account migration after the account's repo is imported and identity is setup.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/checkAccountStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.checkAccountStatus { 4 4 @doc("Returns the status of an account, especially as pertaining to import or recovery. Can be called many times over the course of an account migration. Requires auth and can only be called pertaining to oneself.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/confirmEmail.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.confirmEmail { 4 4 model AccountNotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createAccount { 4 4 model InvalidHandle {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createAppPassword.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createAppPassword { 4 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createInviteCode.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createInviteCode { 4 4 @doc("Create an invite code.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createInviteCodes { 4 4 model AccountCodes {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createSession.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createSession { 4 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/deactivateAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.deactivateAccount { 4 4 @doc("Deactivates a currently active account. Stops serving of repo, and future writes to repo until reactivated. Used to finalize account migration with the old host after the account has been activated on the new host.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.defs { 4 4 model InviteCode {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.deleteAccount { 4 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/deleteSession.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.deleteSession { 4 4 @doc("Delete the current session. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/describeServer.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.describeServer { 4 4 @doc("Describes the server's account creation requirements and capabilities. Implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/getAccountInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.getAccountInviteCodes { 4 4 model DuplicateCreate {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/getServiceAuth.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.getServiceAuth { 4 4 @doc("Indicates that the requested expiration date is not a valid. May be in the past or may be reliant on the requested scopes.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/getSession.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.getSession { 4 4 @doc("Get information about the current auth session. Requires auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/listAppPasswords.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.listAppPasswords { 4 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/refreshSession.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.refreshSession { 4 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/requestAccountDelete.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.requestAccountDelete { 4 4 @doc("Initiate a user account deletion via email.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/requestEmailConfirmation.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.requestEmailConfirmation { 4 4 @doc("Request an email with a code to confirm ownership of email.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/requestEmailUpdate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.requestEmailUpdate { 4 4 @doc("Request a token in order to update email.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/requestPasswordReset.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.requestPasswordReset { 4 4 @doc("Initiate a user account password reset via email.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/reserveSigningKey.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.reserveSigningKey { 4 4 @doc("Reserve a repo signing key, for use with account creation. Necessary so that a DID PLC update operation can be constructed during an account migraiton. Public and does not require auth; implemented by PDS. NOTE: this endpoint may change when full account migration is implemented.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/resetPassword.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.resetPassword { 4 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/revokeAppPassword.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.revokeAppPassword { 4 4 @doc("Revoke an App Password by name.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/updateEmail.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.updateEmail { 4 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.defs { 4 4 union HostStatus {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getBlob.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getBlob { 4 4 @doc("Get a blob associated with a given account. Returns the full blob as originally uploaded. Does not require auth; implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getBlocks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getBlocks { 4 4 @doc("Get data blocks from a given repo, by CID. For example, intermediate MST nodes, or records. Does not require auth; implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getCheckout.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getCheckout { 4 4 @doc("DEPRECATED - please use com.atproto.sync.getRepo instead")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getHead.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getHead { 4 4 @doc("DEPRECATED - please use com.atproto.sync.getLatestCommit instead")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getHostStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getHostStatus { 4 4 @doc("Returns information about a specified upstream host, as consumed by the server. Implemented by relays.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getLatestCommit.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getLatestCommit { 4 4 @doc("Get the current commit CID & revision of the specified repo. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getRecord { 4 4 @doc("Get data blocks needed to prove the existence or non-existence of record in the current version of repo. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getRepo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getRepo { 4 4 @doc("Download a repository export as CAR file. Optionally only a 'diff' since a previous revision. Does not require auth; implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getRepoStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getRepoStatus { 4 4 @doc("Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/listBlobs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.listBlobs { 4 4 @doc("List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/listHosts.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.listHosts { 4 4 @doc("Enumerates upstream hosts (eg, PDS or relay instances) that this service consumes from. Implemented by relays.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/listRepos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.listRepos { 4 4 @doc("Enumerates all the DID, rev, and commit CID for all repos hosted by this service. Does not require auth; implemented by PDS and Relay.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/listReposByCollection.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.listReposByCollection { 4 4 @doc("Enumerates all the DIDs which have records with the given collection NSID.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/notifyOfUpdate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.notifyOfUpdate { 4 4 @doc("Notify a crawling service of a recent update, and that crawling should resume. Intended use is after a gap between repo stream events caused the crawling service to disconnect. Does not require auth; implemented by Relay. DEPRECATED: just use com.atproto.sync.requestCrawl")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/requestCrawl.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.requestCrawl { 4 4 @doc("Request a service to persistently crawl hosted repos. Expected use is new PDS instances declaring their existence to Relays. Does not require auth.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/subscribeRepos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.subscribeRepos { 4 4 @subscription
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/addReservedHandle.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.addReservedHandle { 4 4 @doc("Add a handle to the set of reserved handles.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/checkHandleAvailability.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.checkHandleAvailability { 4 4 @doc("An invalid email was provided.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/checkSignupQueue.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.checkSignupQueue { 4 4 @doc("Check accounts location in signup queue.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/dereferenceScope.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.dereferenceScope { 4 4 @doc("An invalid scope reference was provided.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/fetchLabels.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.fetchLabels { 4 4 @doc("DEPRECATED: use queryLabels or subscribeLabels instead -- Fetch all labels from a labeler created after a certain date.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/requestPhoneVerification.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.requestPhoneVerification { 4 4 @doc("Request a verification code to be sent to the supplied phone number")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/revokeAccountCredentials.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.revokeAccountCredentials { 4 4 @doc("Revoke sessions, password, and app passwords associated with account. May be resolved by a password reset.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/communication/createTemplate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.communication.createTemplate { 4 4 model DuplicateTemplateName {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/communication/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.communication.defs { 4 4 model TemplateView {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/communication/deleteTemplate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.communication.deleteTemplate { 4 4 @doc("Delete a communication template.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/communication/listTemplates.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.communication.listTemplates { 4 4 @doc("Get list of all communication templates.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/communication/updateTemplate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.communication.updateTemplate { 4 4 model DuplicateTemplateName {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/hosting/getAccountHistory.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.hosting.getAccountHistory { 4 4 @doc("Get account history, e.g. log of updated email addresses or other identity information.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.defs { 4 4 model ModEventView {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/emitEvent.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.emitEvent { 4 4 model SubjectHasAction {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getAccountTimeline.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.getAccountTimeline { 4 4 model RepoNotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getEvent.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.getEvent { 4 4 @doc("Get details about a moderation event.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.getRecord { 4 4 model RecordNotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getRecords.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.getRecords { 4 4 @doc("Get details about some records.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getRepo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.getRepo { 4 4 model RepoNotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getReporterStats.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.getReporterStats { 4 4 @doc("Get reporter stats for a list of users.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getRepos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.getRepos { 4 4 @doc("Get details about some repositories.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getSubjects.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.getSubjects { 4 4 @doc("Get details about subjects.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/queryEvents.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.queryEvents { 4 4 @closed
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/queryStatuses.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.queryStatuses { 4 4 @closed
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/searchRepos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.moderation.searchRepos { 4 4 @doc("Find repositories based on a search term.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/report/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.report.defs { 4 4 union ReasonType {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/addRule.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.safelink.addRule { 4 4 @doc("The provided URL is invalid")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.safelink.defs { 4 4 @doc("An event for URL safety decisions")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/queryEvents.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.safelink.queryEvents { 4 4 @doc("Query URL safety audit events")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/queryRules.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.safelink.queryRules { 4 4 @doc("Query URL safety rules")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/removeRule.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.safelink.removeRule { 4 4 @doc("No active rule found for this URL/domain")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/updateRule.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.safelink.updateRule { 4 4 @doc("No active rule found for this URL/domain")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/server/getConfig.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.server.getConfig { 4 4 @doc("Get details about ozone's server configuration.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/addValues.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.set.addValues { 4 4 @doc("Add values to a specific set. Attempting to add values to a set that does not exist will result in an error.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.set.defs { 4 4 model Set {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/deleteSet.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.set.deleteSet { 4 4 @doc("set with the given name does not exist")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/deleteValues.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.set.deleteValues { 4 4 @doc("set with the given name does not exist")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/getValues.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.set.getValues { 4 4 @doc("set with the given name does not exist")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/querySets.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.set.querySets { 4 4 @closed
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/upsertSet.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.set.upsertSet { 4 4 @doc("Create or update set metadata")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/setting/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.setting.defs { 4 4 model Option {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/setting/listOptions.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.setting.listOptions { 4 4 @doc("List settings with optional filtering")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/setting/removeOptions.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.setting.removeOptions { 4 4 @doc("Delete settings by key")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/setting/upsertOption.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.setting.upsertOption { 4 4 @doc("Create or update setting option")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/signature/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.signature.defs { 4 4 model SigDetail {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/signature/findCorrelation.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.signature.findCorrelation { 4 4 @doc("Find all correlated threat signatures between 2 or more accounts.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/signature/findRelatedAccounts.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.signature.findRelatedAccounts { 4 4 @doc("Get accounts that share some matching threat signatures with the root account.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/signature/searchAccounts.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.signature.searchAccounts { 4 4 @doc("Search for accounts that match one or more threat signature values.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/team/addMember.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.team.addMember { 4 4 @doc("Member already exists in the team.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/team/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.team.defs { 4 4 model Member {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/team/deleteMember.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.team.deleteMember { 4 4 @doc("The member being deleted does not exist")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/team/listMembers.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.team.listMembers { 4 4 @doc("List all members with access to the ozone service.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/team/updateMember.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.team.updateMember { 4 4 @doc("The member being updated does not exist in the team")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/verification/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.verification.defs { 4 4 @doc("Verification data for the associated subject.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/verification/grantVerifications.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.verification.grantVerifications { 4 4 @doc("Grant verifications to multiple subjects. Allows batch processing of up to 100 verifications at once.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/verification/listVerifications.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.verification.listVerifications { 4 4 @closed
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/verification/revokeVerifications.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace tools.ozone.verification.revokeVerifications { 4 4 @doc("Revoke previously granted verifications in batches of up to 100.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.defs { 4 4 model StatusAttr {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.deleteAccount { 4 4 @doc("Delete a user account as an administrator.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/disableAccountInvites.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.disableAccountInvites { 4 4 @doc("Disable an account from receiving new invite codes, but does not invalidate existing codes.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/disableInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.disableInviteCodes { 4 4 @doc("Disable some set of codes and/or all codes associated with a set of users.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/enableAccountInvites.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.enableAccountInvites { 4 4 @doc("Re-enable an account's ability to receive invite codes.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/getAccountInfo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.getAccountInfo { 4 4 @doc("Get details about an account.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/getAccountInfos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.getAccountInfos { 4 4 @doc("Get details about some accounts.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/getInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.getInviteCodes { 4 4 @doc("Get an admin view of invite codes.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/getSubjectStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.getSubjectStatus { 4 4 @doc("Get the service-specific admin status of a subject (account, record, or blob).")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/searchAccounts.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.searchAccounts { 4 4 @doc("Get list of accounts that matches your search query.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/sendEmail.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.sendEmail { 4 4 @doc("Send email to a user's account email address.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/updateAccountEmail.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateAccountEmail { 4 4 @doc("Administrative action to update an account's email.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/updateAccountHandle.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateAccountHandle { 4 4 @doc("Administrative action to update an account's handle.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/updateAccountPassword.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateAccountPassword { 4 4 @doc("Update the password for a user account as an administrator.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/updateAccountSigningKey.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateAccountSigningKey { 4 4 @doc("Administrative action to update an account's signing key in their Did document.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/updateSubjectStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.admin.updateSubjectStatus { 4 4 @doc("Update the service-specific admin status of a subject (account, record, or blob).")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.defs { 4 4 model IdentityInfo {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/getRecommendedDidCredentials.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.getRecommendedDidCredentials { 4 4 @doc("Describe the credentials that should be included in the DID doc of an account that is migrating to this service.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/refreshIdentity.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.refreshIdentity { 4 4 @doc("The resolution process confirmed that the handle does not resolve to any DID.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/requestPlcOperationSignature.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.requestPlcOperationSignature { 4 4 @doc("Request an email with a code to in order to request a signed PLC operation. Requires Auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/resolveDid.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.resolveDid { 4 4 @doc("Resolves DID to DID document. Does not bi-directionally verify handle.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/resolveHandle.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.resolveHandle { 4 4 @doc("Resolves an atproto handle (hostname) to a DID. Does not necessarily bi-directionally verify against the the DID document.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/resolveIdentity.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.resolveIdentity { 4 4 @doc("The resolution process confirmed that the handle does not resolve to any DID.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/signPlcOperation.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.signPlcOperation { 4 4 @doc("Signs a PLC operation to update some value(s) in the requesting DID's document.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/submitPlcOperation.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.submitPlcOperation { 4 4 @doc("Validates a PLC operation to ensure that it doesn't violate a service's constraints or get the identity into a bad state, then submits it to the PLC registry")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/updateHandle.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.identity.updateHandle { 4 4 @doc("Updates the current account's handle. Verifies handle validity, and updates did:plc document if necessary. Implemented by PDS, and requires auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/label/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.label.defs { 4 4 @doc("Metadata tag on an atproto resource (eg, repo or record).")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/label/queryLabels.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.label.queryLabels { 4 4 @doc("Find labels relevant to the provided AT-URI patterns. Public endpoint for moderation services, though may return different or additional results with auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/label/subscribeLabels.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.label.subscribeLabels { 4 4 model FutureCursor {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/lexicon/schema.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.lexicon.schema { 4 4 @doc("Representation of Lexicon schemas themselves, when published as atproto records. Note that the schema language is not defined in Lexicon; this meta schema currently only includes a single version field ('lexicon'). See the atproto specifications for description of the other expected top-level fields ('id', 'defs', etc).")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/moderation/createReport.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.moderation.createReport { 4 4 @doc("Submit a moderation report regarding an atproto account or record. Implemented by moderation services (with PDS proxying), and requires auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/moderation/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.moderation.defs { 4 4 union ReasonType {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/applyWrites.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.applyWrites { 4 4 @doc("Indicates that the 'swapCommit' parameter did not match current commit.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/createRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.createRecord { 4 4 @doc("Create a single new repository record. Requires auth, implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.defs { 4 4 model CommitMeta {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/deleteRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.deleteRecord { 4 4 @doc("Delete a repository record, or ensure it doesn't exist. Requires auth, implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/describeRepo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.describeRepo { 4 4 @doc("Get information about an account and repository, including the list of collections. Does not require auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/getRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.getRecord { 4 4 @doc("Get a single record from a repository. Does not require auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/importRepo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.importRepo { 4 4 @doc("Import a repo in the form of a CAR file. Requires Content-Length HTTP header to be set.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/listMissingBlobs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.listMissingBlobs { 4 4 @doc("Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/listRecords.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.listRecords { 4 4 @doc("List a range of records in a repository, matching a specific collection. Does not require auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/putRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.putRecord { 4 4 @doc("Write a repository record, creating or updating it as needed. Requires auth, implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/strongRef.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A URI with a content-hash fingerprint.") 4 4 namespace com.atproto.repo.strongRef {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/uploadBlob.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.repo.uploadBlob { 4 4 @doc("Upload a new blob, to be referenced from a repository record. The blob will be deleted if it is not referenced within a time window (eg, minutes). Blob restrictions (mimetype, size, etc) are enforced when the reference is created. Requires auth, implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/activateAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.activateAccount { 4 4 @doc("Activates a currently deactivated account. Used to finalize account migration after the account's repo is imported and identity is setup.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/checkAccountStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.checkAccountStatus { 4 4 @doc("Returns the status of an account, especially as pertaining to import or recovery. Can be called many times over the course of an account migration. Requires auth and can only be called pertaining to oneself.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/confirmEmail.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.confirmEmail { 4 4 model AccountNotFound {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createAccount { 4 4 model InvalidHandle {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createAppPassword.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createAppPassword { 4 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createInviteCode.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createInviteCode { 4 4 @doc("Create an invite code.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createInviteCodes { 4 4 model AccountCodes {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createSession.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.createSession { 4 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/deactivateAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.deactivateAccount { 4 4 @doc("Deactivates a currently active account. Stops serving of repo, and future writes to repo until reactivated. Used to finalize account migration with the old host after the account has been activated on the new host.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.defs { 4 4 model InviteCode {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.deleteAccount { 4 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/deleteSession.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.deleteSession { 4 4 @doc("Delete the current session. Requires auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/describeServer.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.describeServer { 4 4 @doc("Describes the server's account creation requirements and capabilities. Implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/getAccountInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.getAccountInviteCodes { 4 4 model DuplicateCreate {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/getServiceAuth.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.getServiceAuth { 4 4 @doc("Indicates that the requested expiration date is not a valid. May be in the past or may be reliant on the requested scopes.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/getSession.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.getSession { 4 4 @doc("Get information about the current auth session. Requires auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/listAppPasswords.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.listAppPasswords { 4 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/refreshSession.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.refreshSession { 4 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/requestAccountDelete.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.requestAccountDelete { 4 4 @doc("Initiate a user account deletion via email.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/requestEmailConfirmation.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.requestEmailConfirmation { 4 4 @doc("Request an email with a code to confirm ownership of email.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/requestEmailUpdate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.requestEmailUpdate { 4 4 @doc("Request a token in order to update email.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/requestPasswordReset.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.requestPasswordReset { 4 4 @doc("Initiate a user account password reset via email.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/reserveSigningKey.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.reserveSigningKey { 4 4 @doc("Reserve a repo signing key, for use with account creation. Necessary so that a DID PLC update operation can be constructed during an account migraiton. Public and does not require auth; implemented by PDS. NOTE: this endpoint may change when full account migration is implemented.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/resetPassword.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.resetPassword { 4 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/revokeAppPassword.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.revokeAppPassword { 4 4 @doc("Revoke an App Password by name.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/updateEmail.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.server.updateEmail { 4 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.defs { 4 4 union HostStatus {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getBlob.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getBlob { 4 4 @doc("Get a blob associated with a given account. Returns the full blob as originally uploaded. Does not require auth; implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getBlocks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getBlocks { 4 4 @doc("Get data blocks from a given repo, by CID. For example, intermediate MST nodes, or records. Does not require auth; implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getCheckout.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getCheckout { 4 4 @doc("DEPRECATED - please use com.atproto.sync.getRepo instead")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getHead.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getHead { 4 4 @doc("DEPRECATED - please use com.atproto.sync.getLatestCommit instead")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getHostStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getHostStatus { 4 4 @doc("Returns information about a specified upstream host, as consumed by the server. Implemented by relays.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getLatestCommit.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getLatestCommit { 4 4 @doc("Get the current commit CID & revision of the specified repo. Does not require auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getRecord { 4 4 @doc("Get data blocks needed to prove the existence or non-existence of record in the current version of repo. Does not require auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getRepo.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getRepo { 4 4 @doc("Download a repository export as CAR file. Optionally only a 'diff' since a previous revision. Does not require auth; implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getRepoStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.getRepoStatus { 4 4 @doc("Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/listBlobs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.listBlobs { 4 4 @doc("List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/listHosts.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.listHosts { 4 4 @doc("Enumerates upstream hosts (eg, PDS or relay instances) that this service consumes from. Implemented by relays.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/listRepos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.listRepos { 4 4 @doc("Enumerates all the DID, rev, and commit CID for all repos hosted by this service. Does not require auth; implemented by PDS and Relay.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/listReposByCollection.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.listReposByCollection { 4 4 @doc("Enumerates all the DIDs which have records with the given collection NSID.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/notifyOfUpdate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.notifyOfUpdate { 4 4 @doc("Notify a crawling service of a recent update, and that crawling should resume. Intended use is after a gap between repo stream events caused the crawling service to disconnect. Does not require auth; implemented by Relay. DEPRECATED: just use com.atproto.sync.requestCrawl")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/requestCrawl.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.requestCrawl { 4 4 @doc("Request a service to persistently crawl hosted repos. Expected use is new PDS instances declaring their existence to Relays. Does not require auth.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/subscribeRepos.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.sync.subscribeRepos { 4 4 @subscription
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/temp/addReservedHandle.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.addReservedHandle { 4 4 @doc("Add a handle to the set of reserved handles.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/temp/checkHandleAvailability.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.checkHandleAvailability { 4 4 @doc("An invalid email was provided.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/temp/checkSignupQueue.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.checkSignupQueue { 4 4 @doc("Check accounts location in signup queue.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/temp/dereferenceScope.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.dereferenceScope { 4 4 @doc("An invalid scope reference was provided.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/temp/fetchLabels.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.fetchLabels { 4 4 @doc("DEPRECATED: use queryLabels or subscribeLabels instead -- Fetch all labels from a labeler created after a certain date.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/temp/requestPhoneVerification.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.requestPhoneVerification { 4 4 @doc("Request a verification code to be sent to the supplied phone number")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/temp/revokeAccountCredentials.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.atproto.temp.revokeAccountCredentials { 4 4 @doc("Revoke sessions, password, and app passwords associated with account. May be resolved by a password reset.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/blockquote.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.blockquote { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/bskyPost.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.bskyPost { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/code.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.code { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/header.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.header { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/horizontalRule.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.horizontalRule { 4 4 model Main {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/iframe.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.iframe { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/image.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.image { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/math.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.math { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/text.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.text { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/unorderedList.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.unorderedList { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/website.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.blocks.website { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/comment.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A lexicon for comments on documents") 4 4 namespace `pub`.leaflet.comment {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/document.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("A lexicon for long form rich media documents") 4 4 namespace `pub`.leaflet.document {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/graph/subscription.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.graph.subscription { 4 4 @doc("Record declaring a subscription to a publication")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/pages/linearDocument.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.pages.linearDocument { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/publication.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.publication { 4 4 @doc("Record declaring a publication")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/richtext/facet.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.richtext.facet { 4 4 @doc("Annotation of a sub-string within rich text.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/theme/backgroundImage.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.theme.backgroundImage { 4 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/theme/color.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace `pub`.leaflet.theme.color { 4 4 // Dummy Main to satisfy namespace requirements - actual defs are Rgba and Rgb
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/actor/profile.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.actor.profile { 4 4 @doc("A declaration of a Tangled account profile.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/feed/reaction.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.feed.reaction { 4 4 @closed
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/feed/star.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.feed.star { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/git/refUpdate.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.git.refUpdate { 4 4 @doc("An update to a git repository, emitted by knots.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/graph/follow.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.graph.follow { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/knot.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.knot { 4 4 @rec("any")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/knot/listKeys.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.knot.listKeys { 4 4 @doc("List all public keys stored in the knot server")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/knot/member.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.knot.member { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/knot/version.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.knot.version { 4 4 @doc("Get the version of a knot")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/label.op.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.label.`op` { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/label/definition.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.label.definition { 4 4 @rec("any")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/owner.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.owner { 4 4 @doc("Get the owner of a service")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/pipeline.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.pipeline { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/pipeline/status.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.pipeline.status { 4 4 @closed
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/publicKey.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.publicKey { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/comment.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.issue.comment { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/issue.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.issue { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/state.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.issue.state { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/state/closed.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.issue.state.closed { 4 4 @doc("closed issue")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/state/open.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.issue.state.open { 4 4 @doc("open issue")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/comment.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.pull.comment { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/pull.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.pull { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/status.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.pull.status { 4 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/status/closed.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.pull.status.closed { 4 4 @doc("closed pull request")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/status/merged.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.pull.status.merged { 4 4 @doc("merged pull request")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/status/open.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace sh.tangled.repo.pull.status.open { 4 4 @doc("open pull request")
+11 -11
packages/emitter/test/spec.test.ts
··· 18 18 const pkgRoot = await findTestPackageRoot(import.meta.url); 19 19 const TESTS_DIR = resolvePath(pkgRoot, "test/spec"); 20 20 21 - const TylexTestLibrary: TypeSpecTestLibrary = { 22 - name: "@tylex/emitter", 21 + const TypelexTestLibrary: TypeSpecTestLibrary = { 22 + name: "@typelex/emitter", 23 23 packageRoot: await findTestPackageRoot(import.meta.url), 24 24 files: [ 25 25 { 26 26 realDir: "", 27 27 pattern: "package.json", 28 - virtualPath: "./node_modules/@tylex/emitter", 28 + virtualPath: "./node_modules/@typelex/emitter", 29 29 }, 30 30 { 31 31 realDir: "dist", 32 32 pattern: "**/*.js", 33 - virtualPath: "./node_modules/@tylex/emitter/dist", 33 + virtualPath: "./node_modules/@typelex/emitter/dist", 34 34 }, 35 35 { 36 36 realDir: "lib/", 37 37 pattern: "*.tsp", 38 - virtualPath: "./node_modules/@tylex/emitter/lib", 38 + virtualPath: "./node_modules/@typelex/emitter/lib", 39 39 }, 40 40 ], 41 41 }; ··· 63 63 if (tspFiles.length > 0) { 64 64 // Create a virtual main.tsp that imports all other files 65 65 const mainContent = 66 - 'import "@tylex/emitter";\n' + 66 + 'import "@typelex/emitter";\n' + 67 67 tspFiles.map((f) => `import "./${f}";`).join("\n"); 68 68 const filesWithMain = { ...inputFiles, "main.tsp": mainContent }; 69 69 emitResult = await doEmit(filesWithMain, "main.tsp"); ··· 124 124 const baseOutputPath = resolveVirtualPath("test-output/"); 125 125 126 126 const host = await createTestHost({ 127 - libraries: [TylexTestLibrary], 127 + libraries: [TypelexTestLibrary], 128 128 }); 129 129 130 130 for (const [fileName, content] of Object.entries(files)) { ··· 134 134 const [, diagnostics] = await host.compileAndDiagnose(entryPoint, { 135 135 outputDir: baseOutputPath, 136 136 noEmit: false, 137 - emit: ["@tylex/emitter"], 137 + emit: ["@typelex/emitter"], 138 138 }); 139 139 140 140 const outputFiles = Object.fromEntries( ··· 142 142 .filter(([name]) => name.startsWith(baseOutputPath)) 143 143 .map(([name, value]) => { 144 144 let relativePath = name.replace(baseOutputPath, ""); 145 - // Strip the @tylex/emitter/ prefix if present 146 - if (relativePath.startsWith("@tylex/emitter/")) { 147 - relativePath = relativePath.replace("@tylex/emitter/", ""); 145 + // Strip the @typelex/emitter/ prefix if present 146 + if (relativePath.startsWith("@typelex/emitter/")) { 147 + relativePath = relativePath.replace("@typelex/emitter/", ""); 148 148 } 149 149 return [relativePath, value]; 150 150 }),
+1 -1
packages/emitter/test/spec/basic/input/com/example/allOptionalFields.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.allOptionalFields { 4 4 @doc("Object with all optional fields (no required)")
+1 -1
packages/emitter/test/spec/basic/input/com/example/arrayOfUnions.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.arrayOfUnions { 4 4 model Main {
+1 -1
packages/emitter/test/spec/basic/input/com/example/arrays.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.arrays { 4 4 @doc("Array container types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/blobs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.blobs { 4 4 @doc("Blob type examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/booleanConstraints.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.booleanConstraints { 4 4 @doc("Boolean field constraints")
+1 -1
packages/emitter/test/spec/basic/input/com/example/bytesConstraints.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.bytesConstraints { 4 4 @doc("Bytes field constraints")
+1 -1
packages/emitter/test/spec/basic/input/com/example/cidLinks.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.cidLinks { 4 4 @doc("CID link examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/constValues.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.constValues { 4 4 @doc("Tests const values on all supported types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/createRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.createRecord { 4 4 @doc("The provided text is invalid")
+1 -1
packages/emitter/test/spec/basic/input/com/example/datetimeExamples.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.datetimeExamples { 4 4 @doc("Datetime format usage examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/deeplyNested.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.deeplyNested { 4 4 @doc("Tests deeply nested object structures")
+1 -1
packages/emitter/test/spec/basic/input/com/example/defs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 @doc("Common definitions used by other lexicons") 4 4 namespace com.example.defs {
+1 -1
packages/emitter/test/spec/basic/input/com/example/deleteRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.deleteRecord { 4 4 @doc("Delete a record (no output)")
+1 -1
packages/emitter/test/spec/basic/input/com/example/eventStream.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.eventStream { 4 4 @doc("Cursor is in the future")
+1 -1
packages/emitter/test/spec/basic/input/com/example/flexibleRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.flexibleRecord { 4 4 @rec("any")
+1 -1
packages/emitter/test/spec/basic/input/com/example/getRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.getRecord { 4 4 @doc("Retrieve a record by ID")
+1 -1
packages/emitter/test/spec/basic/input/com/example/getStatus.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.getStatus { 4 4 @doc("Get system status (no parameters)")
+1 -1
packages/emitter/test/spec/basic/input/com/example/identifierExamples.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.identifierExamples { 4 4 @doc("Identifier format examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/integerConstraints.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.integerConstraints { 4 4 @closed
+1 -1
packages/emitter/test/spec/basic/input/com/example/nestedUnions.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.nestedUnions { 4 4 @doc("Tests unions nested within objects and arrays")
+1 -1
packages/emitter/test/spec/basic/input/com/example/nullType.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.nullType { 4 4 @doc("Demonstrates the null primitive type")
+1 -1
packages/emitter/test/spec/basic/input/com/example/nullableFields.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.nullableFields { 4 4 @doc("Demonstrates nullable field semantics")
+1 -1
packages/emitter/test/spec/basic/input/com/example/objects.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.objects { 4 4 @doc("Object with various property configurations")
+1 -1
packages/emitter/test/spec/basic/input/com/example/other.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.other { 4 4 model Main {}
+1 -1
packages/emitter/test/spec/basic/input/com/example/outputWithoutSchema.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.outputWithoutSchema { 4 4 @query
+1 -1
packages/emitter/test/spec/basic/input/com/example/paramsWithArrays.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.paramsWithArrays { 4 4 @doc("Tests query parameters with array types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/primitives.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.primitives { 4 4 @doc("All primitive field types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/procedureWithBoth.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.procedureWithBoth { 4 4 @doc("Procedure with both input body and query parameters")
+1 -1
packages/emitter/test/spec/basic/input/com/example/profile.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.profile { 4 4 @rec("literal:self")
+1 -1
packages/emitter/test/spec/basic/input/com/example/queryParams.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.queryParams { 4 4 @doc("Query with various parameter types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/record.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.`record` { 4 4 @rec("tid")
+1 -1
packages/emitter/test/spec/basic/input/com/example/recordWithNsidKey.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.recordWithNsidKey { 4 4 @rec("nsid")
+1 -1
packages/emitter/test/spec/basic/input/com/example/refInOutput.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.refInOutput { 4 4 @doc("Procedure with ref in output schema")
+1 -1
packages/emitter/test/spec/basic/input/com/example/refs.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.refs { 4 4 @doc("Reference examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/stringConstraints.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.stringConstraints { 4 4 @closed
+1 -1
packages/emitter/test/spec/basic/input/com/example/stringFormats.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.stringFormats { 4 4 @doc("All string format types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/subscribeRecords.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.subscribeRecords { 4 4 @doc("Subscribe to record updates")
+1 -1
packages/emitter/test/spec/basic/input/com/example/subscriptionWithErrors.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.subscriptionWithErrors { 4 4 @doc("Subscription with error definitions")
+1 -1
packages/emitter/test/spec/basic/input/com/example/tidRecord.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.tidRecord { 4 4 @rec("tid")
+1 -1
packages/emitter/test/spec/basic/input/com/example/tokens.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.tokens { 4 4 @doc("Token usage example")
+1 -1
packages/emitter/test/spec/basic/input/com/example/unionClosed.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.unionClosed { 4 4 @closed
+1 -1
packages/emitter/test/spec/basic/input/com/example/unionEmpty.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.unionEmpty { 4 4 @doc("Empty open union (similar to unknown but requires $type)")
+1 -1
packages/emitter/test/spec/basic/input/com/example/unionOpen.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.unionOpen { 4 4 @doc("Open union example (default)")
+1 -1
packages/emitter/test/spec/basic/input/com/example/unionWithTokens.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.unionWithTokens { 4 4 @doc("Tests union with token references")
+1 -1
packages/emitter/test/spec/basic/input/com/example/unknown.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 using TypeSpec.Reflection; 4 4
+1 -1
packages/emitter/test/spec/basic/input/com/example/uriExamples.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.uriExamples { 4 4 @doc("Various URI format examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/withErrors.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 3 namespace com.example.withErrors { 4 4 @doc("The provided value is invalid")
+4 -4
packages/example/package.json
··· 1 1 { 2 - "name": "@tylex/example", 2 + "name": "@typelex/example", 3 3 "version": "0.1.0", 4 4 "private": true, 5 5 "type": "module", 6 6 "scripts": { 7 - "build": "pnpm run build:tylex && pnpm run build:codegen", 8 - "build:tylex": "tsp compile tylex/main.tsp", 7 + "build": "pnpm run build:typelex && pnpm run build:codegen", 8 + "build:typelex": "tsp compile typelex/main.tsp", 9 9 "build:codegen": "lex gen-server --yes ./src lexicon/app/example/*.json" 10 10 }, 11 11 "dependencies": { 12 12 "@atproto/lex-cli": "^0.9.5", 13 13 "@atproto/xrpc-server": "^0.9.5", 14 14 "@typespec/compiler": "^1.4.0", 15 - "@tylex/emitter": "workspace:*" 15 + "@typelex/emitter": "workspace:*" 16 16 }, 17 17 "devDependencies": { 18 18 "typescript": "^5.0.0"
+2 -2
packages/example/tspconfig.yaml
··· 1 1 emit: 2 - - "@tylex/emitter" 2 + - "@typelex/emitter" 3 3 options: 4 - "@tylex/emitter": 4 + "@typelex/emitter": 5 5 output-dir: "./lexicon"
+2 -2
packages/example/tylex/main.tsp packages/example/typelex/main.tsp
··· 1 - import "@tylex/emitter"; 1 + import "@typelex/emitter"; 2 2 3 - // Example showing tylex as source of truth for atproto lexicons 3 + // Example showing typelex as source of truth for atproto lexicons 4 4 5 5 // ============ Common Types ============ 6 6
+2 -2
packages/playground/README.md
··· 1 - # Tylex Playground 1 + # Typelex Playground 2 2 3 - An interactive playground for the Tylex TypeSpec emitter. 3 + An interactive playground for the Typelex TypeSpec emitter. 4 4 5 5 ## Development 6 6
+2 -2
packages/playground/index.html
··· 1 - <!DOCTYPE html> 1 + <!doctype html> 2 2 <html lang="en"> 3 3 <head> 4 4 <meta charset="utf-8" /> 5 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 - <title>Tylex Playground</title> 6 + <title>Typelex Playground</title> 7 7 </head> 8 8 <body> 9 9 <div id="root"></div>
+2 -2
packages/playground/package.json
··· 1 1 { 2 - "name": "@tylex/playground", 2 + "name": "@typelex/playground", 3 3 "version": "0.1.0", 4 4 "private": true, 5 5 "type": "module", ··· 12 12 "dependencies": { 13 13 "@typespec/compiler": "^1.4.0", 14 14 "@typespec/playground": "^0.11.0", 15 - "@tylex/emitter": "workspace:*", 15 + "@typelex/emitter": "workspace:*", 16 16 "react": "^18.3.1", 17 17 "react-dom": "^18.3.1" 18 18 },
+20 -1
packages/playground/samples/build.js
··· 13 13 // Write each bundled lexicon to disk 14 14 const samplesList = {}; 15 15 16 + // Add the default sample first 17 + const defaultSample = "app.bsky.feed.like"; 18 + if (lexicons.has(defaultSample)) { 19 + const lexicon = lexicons.get(defaultSample); 20 + const bundled = bundleLexicon(defaultSample); 21 + const filename = `${defaultSample}.tsp`; 22 + const filepath = join(outputDir, filename); 23 + 24 + writeFileSync(filepath, bundled); 25 + 26 + samplesList[defaultSample] = { 27 + filename: `samples/dist/${filename}`, 28 + preferredEmitter: "@typelex/emitter", 29 + }; 30 + } 31 + 32 + // Add the rest 16 33 for (const [namespace, lexicon] of lexicons) { 34 + if (namespace === defaultSample) continue; // Already added 35 + 17 36 const bundled = bundleLexicon(namespace); 18 37 const filename = `${namespace}.tsp`; 19 38 const filepath = join(outputDir, filename); ··· 22 41 23 42 samplesList[namespace] = { 24 43 filename: `samples/dist/${filename}`, 25 - preferredEmitter: "@tylex/emitter", 44 + preferredEmitter: "@typelex/emitter", 26 45 }; 27 46 } 28 47
+31 -14
packages/playground/samples/index.js
··· 16 16 17 17 if (stat.isDirectory()) { 18 18 files.push(...getAllTspFiles(fullPath, baseDir)); 19 - } else if (entry.endsWith('.tsp')) { 19 + } else if (entry.endsWith(".tsp")) { 20 20 files.push(relative(baseDir, fullPath)); 21 21 } 22 22 } ··· 29 29 const deps = new Set(); 30 30 // Match namespace references like "com.atproto.label.defs.Label" or "com.atproto.repo.strongRef.Main" 31 31 // Pattern: word.word.word... followed by dot and identifier starting with capital letter 32 - const pattern = /\b([a-z]+(?:\.[a-z]+)+(?:\.[a-z][a-zA-Z]*)*)\.[A-Z][a-zA-Z]*/g; 33 - const withoutDeclaration = content.replace(/namespace\s+[a-z.]+\s*\{/, ''); 32 + const pattern = 33 + /\b([a-z]+(?:\.[a-z]+)+(?:\.[a-z][a-zA-Z]*)*)\.[A-Z][a-zA-Z]*/g; 34 + const withoutDeclaration = content.replace(/namespace\s+[a-z.]+\s*\{/, ""); 34 35 35 36 const matches = withoutDeclaration.matchAll(pattern); 36 37 for (const match of matches) { ··· 40 41 return Array.from(deps); 41 42 } 42 43 43 - const atprotoInputDir = join(__dirname, "../../emitter/test/integration/atproto/input"); 44 - const lexiconExamplesDir = join(__dirname, "../../emitter/test/integration/lexicon-examples/input"); 44 + const atprotoInputDir = join( 45 + __dirname, 46 + "../../emitter/test/integration/atproto/input", 47 + ); 48 + const lexiconExamplesDir = join( 49 + __dirname, 50 + "../../emitter/test/integration/lexicon-examples/input", 51 + ); 45 52 46 53 const atprotoFiles = getAllTspFiles(atprotoInputDir); 47 54 const lexiconExampleFiles = getAllTspFiles(lexiconExamplesDir); ··· 52 59 // Process atproto files 53 60 for (const file of atprotoFiles) { 54 61 const fullPath = join(atprotoInputDir, file); 55 - const content = readFileSync(fullPath, 'utf-8'); 56 - const namespace = file.replace(/\.tsp$/, '').replace(/\//g, '.'); 62 + const content = readFileSync(fullPath, "utf-8"); 63 + const namespace = file.replace(/\.tsp$/, "").replace(/\//g, "."); 57 64 const deps = extractDependencies(content); 58 65 59 66 lexicons.set(namespace, { file: `atproto/${file}`, content, deps }); ··· 62 69 // Process lexicon-examples files 63 70 for (const file of lexiconExampleFiles) { 64 71 const fullPath = join(lexiconExamplesDir, file); 65 - const content = readFileSync(fullPath, 'utf-8'); 66 - const namespace = file.replace(/\.tsp$/, '').replace(/\//g, '.'); 72 + const content = readFileSync(fullPath, "utf-8"); 73 + const namespace = file.replace(/\.tsp$/, "").replace(/\//g, "."); 67 74 const deps = extractDependencies(content); 68 75 69 76 lexicons.set(namespace, { file: `examples/${file}`, content, deps }); 70 77 } 71 78 72 79 // Recursively collect all dependencies (topological sort) 73 - function collectDependencies(namespace, collected = new Set(), visiting = new Set()) { 80 + function collectDependencies( 81 + namespace, 82 + collected = new Set(), 83 + visiting = new Set(), 84 + ) { 74 85 if (collected.has(namespace)) return; 75 86 if (visiting.has(namespace)) return; // circular dependency 76 87 ··· 95 106 96 107 // Put the main lexicon FIRST, then its dependencies 97 108 const mainLexicon = lexicons.get(namespace); 98 - const deps = Array.from(collected).filter(ns => ns !== namespace); 109 + const deps = Array.from(collected).filter((ns) => ns !== namespace); 99 110 100 - let bundled = 'import "@tylex/emitter";\n\n'; 111 + let bundled = 'import "@typelex/emitter";\n\n'; 101 112 102 113 // Main lexicon first (so it shows in the playground) 103 114 if (mainLexicon) { 104 - const contentWithoutImport = mainLexicon.content.replace(/^import "@tylex\/emitter";\s*\n/, ''); 115 + const contentWithoutImport = mainLexicon.content.replace( 116 + /^import "@typelex\/emitter";\s*\n/, 117 + "", 118 + ); 105 119 bundled += `// ${mainLexicon.file}\n${contentWithoutImport}\n`; 106 120 } 107 121 ··· 110 124 const lexicon = lexicons.get(ns); 111 125 if (!lexicon) continue; 112 126 113 - const contentWithoutImport = lexicon.content.replace(/^import "@tylex\/emitter";\s*\n/, ''); 127 + const contentWithoutImport = lexicon.content.replace( 128 + /^import "@typelex\/emitter";\s*\n/, 129 + "", 130 + ); 114 131 bundled += `// ${lexicon.file}\n${contentWithoutImport}\n`; 115 132 } 116 133
+5
packages/playground/src/main.tsx
··· 4 4 import "@typespec/playground/styles.css"; 5 5 import "./style.css"; 6 6 7 + // Redirect to default sample if no query params 8 + if (!window.location.search) { 9 + window.location.search = "?sample=app.bsky.feed.like"; 10 + } 11 + 7 12 registerMonacoDefaultWorkersForVite(); 8 13 9 14 await renderReactPlayground({
+2 -2
packages/playground/src/style.css
··· 1 1 /* Hide the emitter dropdown since we only have one emitter */ 2 - .sample-dropdown { 3 - /*display: none !important;*/ 2 + :has(> select[aria-label="Select an emitter"]) { 3 + display: none !important; 4 4 }
+6 -9
packages/playground/vite.config.ts
··· 3 3 import samples from "./samples/dist/samples.js"; 4 4 5 5 const playgroundConfig = definePlaygroundViteConfig({ 6 - defaultEmitter: "@tylex/emitter", 7 - libraries: ["@typespec/compiler", "@tylex/emitter"], 8 - emitterOptions: { 9 - "@tylex/emitter": { 10 - "emitter-output-dir": "{project-root}/tsp-output", 11 - }, 12 - }, 6 + defaultEmitter: "@typelex/emitter", 7 + libraries: ["@typespec/compiler", "@typelex/emitter"], 13 8 samples, 14 9 links: { 15 10 documentationUrl: "https://tangled.org/@danabra.mov/typlex", 16 11 }, 17 - enableSwaggerUI: false, 18 12 }); 19 13 20 14 export default defineConfig({ 21 15 ...playgroundConfig, 22 16 optimizeDeps: { 23 17 ...playgroundConfig.optimizeDeps, 24 - exclude: [...(playgroundConfig.optimizeDeps?.exclude || []), "monaco-editor"], 18 + exclude: [ 19 + ...(playgroundConfig.optimizeDeps?.exclude || []), 20 + "monaco-editor", 21 + ], 25 22 esbuildOptions: { 26 23 target: "esnext", 27 24 },
+3 -3
packages/website/README.md
··· 1 - # Tylex Website 1 + # Typelex Website 2 2 3 - Landing page for tylex - TypeSpec for AT Protocol Lexicons. 3 + Landing page for typelex - TypeSpec for AT Protocol Lexicons. 4 4 5 5 ## Features 6 6 7 7 - **Live Examples**: TypeSpec examples are compiled during build to show real Lexicon JSON output 8 8 - **Syntax Highlighting**: Using Shiki for beautiful code highlighting 9 - - **Interactive Playground**: Try tylex in the browser (coming soon) 9 + - **Interactive Playground**: Try typelex in the browser (coming soon) 10 10 11 11 ## Development 12 12
+2 -2
packages/website/package.json
··· 10 10 }, 11 11 "dependencies": { 12 12 "@astrojs/react": "^4.4.0", 13 - "@tylex/emitter": "workspace:*", 13 + "@typelex/emitter": "workspace:*", 14 14 "@typespec/bundler": "^0.4.4", 15 15 "@typespec/playground": "^0.11.0", 16 16 "astro": "^5.14.1", ··· 24 24 "@types/react-dom": "^19.2.0", 25 25 "@typespec/compiler": "^1.4.0" 26 26 } 27 - } 27 + }
+44 -26
packages/website/src/components/Playground.tsx
··· 1 1 export default function Playground() { 2 2 return ( 3 - <div style={{ 4 - background: 'white', 5 - borderRadius: '12px', 6 - boxShadow: '0 4px 6px rgba(0, 0, 0, 0.05)', 7 - overflow: 'hidden', 8 - minHeight: '500px', 9 - display: 'flex', 10 - alignItems: 'center', 11 - justifyContent: 'center', 12 - padding: '2rem', 13 - color: '#64748b', 14 - fontFamily: 'system-ui, sans-serif', 15 - }}> 16 - <div style={{ textAlign: 'center', maxWidth: '600px' }}> 17 - <h3 style={{ fontSize: '1.5rem', marginBottom: '1rem', color: '#1e293b', fontWeight: 700 }}> 3 + <div 4 + style={{ 5 + background: "white", 6 + borderRadius: "12px", 7 + boxShadow: "0 4px 6px rgba(0, 0, 0, 0.05)", 8 + overflow: "hidden", 9 + minHeight: "500px", 10 + display: "flex", 11 + alignItems: "center", 12 + justifyContent: "center", 13 + padding: "2rem", 14 + color: "#64748b", 15 + fontFamily: "system-ui, sans-serif", 16 + }} 17 + > 18 + <div style={{ textAlign: "center", maxWidth: "600px" }}> 19 + <h3 20 + style={{ 21 + fontSize: "1.5rem", 22 + marginBottom: "1rem", 23 + color: "#1e293b", 24 + fontWeight: 700, 25 + }} 26 + > 18 27 Try it in the Playground 19 28 </h3> 20 - <p style={{ fontSize: '1.125rem', marginBottom: '2rem', lineHeight: '1.6' }}> 21 - Experience tylex with syntax highlighting, live compilation, and instant Lexicon output. 29 + <p 30 + style={{ 31 + fontSize: "1.125rem", 32 + marginBottom: "2rem", 33 + lineHeight: "1.6", 34 + }} 35 + > 36 + Experience typelex with syntax highlighting, live compilation, and 37 + instant Lexicon output. 22 38 </p> 23 39 <a 24 40 href="http://localhost:5174" 25 41 target="_blank" 26 42 rel="noopener noreferrer" 27 43 style={{ 28 - display: 'inline-block', 29 - padding: '0.875rem 2rem', 30 - background: 'linear-gradient(135deg, #7a8ef7 0%, #9483f7 70%, #b87ed8 100%)', 31 - color: 'white', 32 - textDecoration: 'none', 33 - borderRadius: '8px', 44 + display: "inline-block", 45 + padding: "0.875rem 2rem", 46 + background: 47 + "linear-gradient(135deg, #7a8ef7 0%, #9483f7 70%, #b87ed8 100%)", 48 + color: "white", 49 + textDecoration: "none", 50 + borderRadius: "8px", 34 51 fontWeight: 700, 35 - fontSize: '1.125rem', 36 - boxShadow: '0 2px 4px rgba(122, 142, 247, 0.35), 0 3px 6px rgba(0, 0, 0, 0.1)', 37 - transition: 'all 0.2s', 52 + fontSize: "1.125rem", 53 + boxShadow: 54 + "0 2px 4px rgba(122, 142, 247, 0.35), 0 3px 6px rgba(0, 0, 0, 0.1)", 55 + transition: "all 0.2s", 38 56 }} 39 57 > 40 58 Open Playground →
+13 -13
packages/website/src/pages/index.astro
··· 11 11 const examples = [ 12 12 { 13 13 title: "Records and properties", 14 - tylex: `import "@tylex/emitter"; 14 + typelex: `import "@typelex/emitter"; 15 15 16 16 namespace fm.teal.alpha.feed.play { 17 17 @rec("tid") ··· 31 31 }, 32 32 { 33 33 title: "Refs and unions", 34 - tylex: `import "@tylex/emitter"; 34 + typelex: `import "@typelex/emitter"; 35 35 36 36 namespace app.bsky.feed.post { 37 37 @rec("tid") ··· 66 66 }, 67 67 { 68 68 title: "Queries and params", 69 - tylex: `import "@tylex/emitter"; 69 + typelex: `import "@typelex/emitter"; 70 70 71 71 namespace com.atproto.repo.listRecords { 72 72 @query ··· 103 103 const highlighted = await Promise.all( 104 104 examples.map(async (ex) => { 105 105 // Create temporary file for compilation 106 - const tmpDir = mkdtempSync(join(tmpdir(), 'tylex-')); 106 + const tmpDir = mkdtempSync(join(tmpdir(), 'typelex-')); 107 107 const tmpFile = join(tmpDir, 'example.tsp'); 108 - writeFileSync(tmpFile, ex.tylex); 108 + writeFileSync(tmpFile, ex.typelex); 109 109 110 110 try { 111 111 const lexiconJson = await compileToJson(tmpFile); ··· 113 113 114 114 return { 115 115 ...ex, 116 - tylexHtml: await highlightCode(ex.tylex, 'typespec'), 116 + typelexHtml: await highlightCode(ex.typelex, 'typespec'), 117 117 lexiconHtml: await highlightCode(lexicon, 'json'), 118 118 }; 119 119 } finally { ··· 130 130 <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 131 131 <meta name="viewport" content="width=device-width" /> 132 132 <meta name="generator" content={Astro.generator} /> 133 - <title>tylex – TypeSpec for AT protocol Lexicons</title> 133 + <title>typelex – TypeSpec for AT protocol Lexicons</title> 134 134 </head> 135 135 <body> 136 136 <div class="container"> ··· 144 144 <h3 class="hero-header"> 145 145 Typelex 146 146 </h3> 147 - <div class="hero-code" set:html={await highlightCode(`import "@tylex/emitter"; 147 + <div class="hero-code" set:html={await highlightCode(`import "@typelex/emitter"; 148 148 149 149 namespace app.bsky.actor.profile { 150 150 @rec("self") ··· 207 207 208 208 <div class="separator"></div> 209 209 210 - {highlighted.map(({ title, tylexHtml, lexiconHtml }) => ( 210 + {highlighted.map(({ title, typelexHtml, lexiconHtml }) => ( 211 211 <section> 212 212 <h2>{title}</h2> 213 213 <div class="comparison"> ··· 216 216 <h3 class="code-header"> 217 217 Typelex 218 218 </h3> 219 - <div class="code-block" set:html={tylexHtml} /> 219 + <div class="code-block" set:html={typelexHtml} /> 220 220 </div> 221 221 <div class="code-panel"> 222 222 <h3 class="code-header"> ··· 252 252 <div class="step-number">1</div> 253 253 <div class="step-content"> 254 254 <h3>Install packages</h3> 255 - <div class="install-box" set:html={await highlightCode('npm install -D @typespec/compiler @tylex/emitter', 'bash')} /> 255 + <div class="install-box" set:html={await highlightCode('npm install -D @typespec/compiler @typelex/emitter', 'bash')} /> 256 256 </div> 257 257 </div> 258 258 ··· 261 261 <div class="step-content"> 262 262 <h3>Add <a href="https://typespec.io/docs/handbook/configuration/configuration/" target="_blank" rel="noopener noreferrer">tspconfig.yaml</a></h3> 263 263 <div class="install-box" set:html={await highlightCode(`emit: 264 - - "@tylex/emitter" 264 + - "@typelex/emitter" 265 265 options: 266 - "@tylex/emitter": 266 + "@typelex/emitter": 267 267 output-dir: "./lexicon"`, 'yaml')} /> 268 268 </div> 269 269 </div>
+14 -11
packages/website/src/utils/compile.ts
··· 12 12 // Get the emitter package root 13 13 const emitterRoot = resolve(__dirname, "../../../emitter"); 14 14 15 - const TylexTestLibrary: TypeSpecTestLibrary = { 16 - name: "@tylex/emitter", 15 + const TypelexTestLibrary: TypeSpecTestLibrary = { 16 + name: "@typelex/emitter", 17 17 packageRoot: emitterRoot, 18 18 files: [ 19 19 { 20 20 realDir: "", 21 21 pattern: "package.json", 22 - virtualPath: "./node_modules/@tylex/emitter", 22 + virtualPath: "./node_modules/@typelex/emitter", 23 23 }, 24 24 { 25 25 realDir: "dist", 26 26 pattern: "**/*.js", 27 - virtualPath: "./node_modules/@tylex/emitter/dist", 27 + virtualPath: "./node_modules/@typelex/emitter/dist", 28 28 }, 29 29 { 30 30 realDir: "lib/", 31 31 pattern: "*.tsp", 32 - virtualPath: "./node_modules/@tylex/emitter/lib", 32 + virtualPath: "./node_modules/@typelex/emitter/lib", 33 33 }, 34 34 ], 35 35 }; ··· 39 39 40 40 // Create test host 41 41 const host = await createTestHost({ 42 - libraries: [TylexTestLibrary], 42 + libraries: [TypelexTestLibrary], 43 43 }); 44 44 45 45 // Read the TypeSpec file ··· 53 53 const [, diagnostics] = await host.compileAndDiagnose(fileName, { 54 54 outputDir: baseOutputPath, 55 55 noEmit: false, 56 - emit: ["@tylex/emitter"], 56 + emit: ["@typelex/emitter"], 57 57 }); 58 58 59 59 // Check for errors 60 - const errors = diagnostics.filter(d => d.severity === "error"); 60 + const errors = diagnostics.filter((d) => d.severity === "error"); 61 61 if (errors.length > 0) { 62 - throw new Error(`TypeSpec compilation failed: ${errors.map(e => e.message).join(", ")}`); 62 + throw new Error( 63 + `TypeSpec compilation failed: ${errors.map((e) => e.message).join(", ")}`, 64 + ); 63 65 } 64 66 65 67 // Extract the generated JSON from the virtual filesystem 66 - const outputEntries = [...host.fs.entries()] 67 - .filter(([name]) => name.startsWith(baseOutputPath) && name.endsWith('.json')); 68 + const outputEntries = [...host.fs.entries()].filter( 69 + ([name]) => name.startsWith(baseOutputPath) && name.endsWith(".json"), 70 + ); 68 71 69 72 if (outputEntries.length === 0) { 70 73 throw new Error("No JSON output found from TypeSpec compilation");
+7147 -4341
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 - 9 8 .: 10 9 devDependencies: 11 10 typescript: ··· 14 13 15 14 packages/emitter: 16 15 dependencies: 17 - '@typespec/compiler': 16 + "@typespec/compiler": 18 17 specifier: ^1.4.0 19 18 version: 1.4.0(@types/node@20.19.19) 20 19 devDependencies: 21 - '@types/node': 20 + "@types/node": 22 21 specifier: ^20.0.0 23 22 version: 20.19.19 24 - '@typespec/http': 23 + "@typespec/http": 25 24 specifier: ^1.4.0 26 25 version: 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 27 - '@typespec/openapi': 26 + "@typespec/openapi": 28 27 specifier: ^1.4.0 29 28 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))) 30 29 concurrently: ··· 42 41 43 42 packages/example: 44 43 dependencies: 45 - '@atproto/lex-cli': 44 + "@atproto/lex-cli": 46 45 specifier: ^0.9.5 47 46 version: 0.9.5 48 - '@atproto/xrpc-server': 47 + "@atproto/xrpc-server": 49 48 specifier: ^0.9.5 50 49 version: 0.9.5 51 - '@tylex/emitter': 50 + "@typelex/emitter": 52 51 specifier: workspace:* 53 52 version: link:../emitter 54 - '@typespec/compiler': 53 + "@typespec/compiler": 55 54 specifier: ^1.4.0 56 55 version: 1.4.0(@types/node@20.19.19) 57 56 devDependencies: ··· 61 60 62 61 packages/playground: 63 62 dependencies: 64 - '@tylex/emitter': 63 + "@typelex/emitter": 65 64 specifier: workspace:* 66 65 version: link:../emitter 67 - '@typespec/compiler': 66 + "@typespec/compiler": 68 67 specifier: ^1.4.0 69 68 version: 1.4.0(@types/node@20.19.19) 70 - '@typespec/playground': 69 + "@typespec/playground": 71 70 specifier: ^0.11.0 72 71 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) 73 72 react: ··· 77 76 specifier: ^18.3.1 78 77 version: 18.3.1(react@18.3.1) 79 78 devDependencies: 80 - '@types/react': 79 + "@types/react": 81 80 specifier: ^18.3.12 82 81 version: 18.3.25 83 - '@types/react-dom': 82 + "@types/react-dom": 84 83 specifier: ^18.3.1 85 84 version: 18.3.7(@types/react@18.3.25) 86 85 vite: ··· 89 88 90 89 packages/website: 91 90 dependencies: 92 - '@astrojs/react': 91 + "@astrojs/react": 93 92 specifier: ^4.4.0 94 93 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) 95 - '@tylex/emitter': 94 + "@typelex/emitter": 96 95 specifier: workspace:* 97 96 version: link:../emitter 98 - '@typespec/bundler': 97 + "@typespec/bundler": 99 98 specifier: ^0.4.4 100 99 version: 0.4.4(@types/node@20.19.19) 101 - '@typespec/playground': 100 + "@typespec/playground": 102 101 specifier: ^0.11.0 103 102 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) 104 103 astro: ··· 117 116 specifier: ^3.13.0 118 117 version: 3.13.0 119 118 devDependencies: 120 - '@types/react': 119 + "@types/react": 121 120 specifier: ^19.2.0 122 121 version: 19.2.0 123 - '@types/react-dom': 122 + "@types/react-dom": 124 123 specifier: ^19.2.0 125 124 version: 19.2.0(@types/react@19.2.0) 126 - '@typespec/compiler': 125 + "@typespec/compiler": 127 126 specifier: ^1.4.0 128 127 version: 1.4.0(@types/node@20.19.19) 129 128 130 129 packages: 131 - 132 - '@apidevtools/json-schema-ref-parser@14.0.1': 133 - resolution: {integrity: sha512-Oc96zvmxx1fqoSEdUmfmvvb59/KDOnUoJ7s2t7bISyAn0XEz57LCCw8k2Y4Pf3mwKaZLMciESALORLgfe2frCw==} 134 - engines: {node: '>= 16'} 130 + "@apidevtools/json-schema-ref-parser@14.0.1": 131 + resolution: 132 + { 133 + integrity: sha512-Oc96zvmxx1fqoSEdUmfmvvb59/KDOnUoJ7s2t7bISyAn0XEz57LCCw8k2Y4Pf3mwKaZLMciESALORLgfe2frCw==, 134 + } 135 + engines: { node: ">= 16" } 135 136 136 - '@apidevtools/openapi-schemas@2.1.0': 137 - resolution: {integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==} 138 - engines: {node: '>=10'} 137 + "@apidevtools/openapi-schemas@2.1.0": 138 + resolution: 139 + { 140 + integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==, 141 + } 142 + engines: { node: ">=10" } 139 143 140 - '@apidevtools/swagger-methods@3.0.2': 141 - resolution: {integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==} 144 + "@apidevtools/swagger-methods@3.0.2": 145 + resolution: 146 + { 147 + integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==, 148 + } 142 149 143 - '@apidevtools/swagger-parser@12.0.0': 144 - resolution: {integrity: sha512-WLJIWcfOXrSKlZEM+yhA2Xzatgl488qr1FoOxixYmtWapBzwSC0gVGq4WObr4hHClMIiFFdOBdixNkvWqkWIWA==} 150 + "@apidevtools/swagger-parser@12.0.0": 151 + resolution: 152 + { 153 + integrity: sha512-WLJIWcfOXrSKlZEM+yhA2Xzatgl488qr1FoOxixYmtWapBzwSC0gVGq4WObr4hHClMIiFFdOBdixNkvWqkWIWA==, 154 + } 145 155 peerDependencies: 146 - openapi-types: '>=7' 156 + openapi-types: ">=7" 147 157 148 - '@astrojs/compiler@2.13.0': 149 - resolution: {integrity: sha512-mqVORhUJViA28fwHYaWmsXSzLO9osbdZ5ImUfxBarqsYdMlPbqAqGJCxsNzvppp1BEzc1mJNjOVvQqeDN8Vspw==} 158 + "@astrojs/compiler@2.13.0": 159 + resolution: 160 + { 161 + integrity: sha512-mqVORhUJViA28fwHYaWmsXSzLO9osbdZ5ImUfxBarqsYdMlPbqAqGJCxsNzvppp1BEzc1mJNjOVvQqeDN8Vspw==, 162 + } 150 163 151 - '@astrojs/internal-helpers@0.7.3': 152 - resolution: {integrity: sha512-6Pl0bQEIChuW5wqN7jdKrzWfCscW2rG/Cz+fzt4PhSQX2ivBpnhXgFUCs0M3DCYvjYHnPVG2W36X5rmFjZ62sw==} 164 + "@astrojs/internal-helpers@0.7.3": 165 + resolution: 166 + { 167 + integrity: sha512-6Pl0bQEIChuW5wqN7jdKrzWfCscW2rG/Cz+fzt4PhSQX2ivBpnhXgFUCs0M3DCYvjYHnPVG2W36X5rmFjZ62sw==, 168 + } 153 169 154 - '@astrojs/markdown-remark@6.3.7': 155 - resolution: {integrity: sha512-KXGdq6/BC18doBCYXp08alHlWChH0hdD2B1qv9wIyOHbvwI5K6I7FhSta8dq1hBQNdun8YkKPR013D/Hm8xd0g==} 170 + "@astrojs/markdown-remark@6.3.7": 171 + resolution: 172 + { 173 + integrity: sha512-KXGdq6/BC18doBCYXp08alHlWChH0hdD2B1qv9wIyOHbvwI5K6I7FhSta8dq1hBQNdun8YkKPR013D/Hm8xd0g==, 174 + } 156 175 157 - '@astrojs/prism@3.3.0': 158 - resolution: {integrity: sha512-q8VwfU/fDZNoDOf+r7jUnMC2//H2l0TuQ6FkGJL8vD8nw/q5KiL3DS1KKBI3QhI9UQhpJ5dc7AtqfbXWuOgLCQ==} 159 - engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 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 182 161 - '@astrojs/react@4.4.0': 162 - resolution: {integrity: sha512-RzblkVImAFdV1C0AWsSWzS70Z0FMtW2p0XXkNYu3QePfyVJta3JIy8m8jY8271etaCZtpFjsE2UaiHGZIBm6nw==} 163 - engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 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 189 peerDependencies: 165 - '@types/react': ^17.0.50 || ^18.0.21 || ^19.0.0 166 - '@types/react-dom': ^17.0.17 || ^18.0.6 || ^19.0.0 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 167 192 react: ^17.0.2 || ^18.0.0 || ^19.0.0 168 193 react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0 169 194 170 - '@astrojs/telemetry@3.3.0': 171 - resolution: {integrity: sha512-UFBgfeldP06qu6khs/yY+q1cDAaArM2/7AEIqQ9Cuvf7B1hNLq0xDrZkct+QoIGyjq56y8IaE2I3CTvG99mlhQ==} 172 - engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 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 201 174 - '@atproto/common-web@0.4.3': 175 - resolution: {integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==} 202 + "@atproto/common-web@0.4.3": 203 + resolution: 204 + { 205 + integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==, 206 + } 176 207 177 - '@atproto/common@0.4.12': 178 - resolution: {integrity: sha512-NC+TULLQiqs6MvNymhQS5WDms3SlbIKGLf4n33tpftRJcalh507rI+snbcUb7TLIkKw7VO17qMqxEXtIdd5auQ==} 179 - engines: {node: '>=18.7.0'} 208 + "@atproto/common@0.4.12": 209 + resolution: 210 + { 211 + integrity: sha512-NC+TULLQiqs6MvNymhQS5WDms3SlbIKGLf4n33tpftRJcalh507rI+snbcUb7TLIkKw7VO17qMqxEXtIdd5auQ==, 212 + } 213 + engines: { node: ">=18.7.0" } 180 214 181 - '@atproto/crypto@0.4.4': 182 - resolution: {integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==} 183 - engines: {node: '>=18.7.0'} 215 + "@atproto/crypto@0.4.4": 216 + resolution: 217 + { 218 + integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==, 219 + } 220 + engines: { node: ">=18.7.0" } 184 221 185 - '@atproto/lex-cli@0.9.5': 186 - resolution: {integrity: sha512-zun4jhD1dbjD7IHtLIjh/1UsMx+6E8+OyOT2GXYAKIj9N6wmLKM/v2OeQBKxcyqUmtRi57lxWnGikWjjU7pplQ==} 187 - engines: {node: '>=18.7.0'} 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 228 hasBin: true 189 229 190 - '@atproto/lexicon@0.5.1': 191 - resolution: {integrity: sha512-y8AEtYmfgVl4fqFxqXAeGvhesiGkxiy3CWoJIfsFDDdTlZUC8DFnZrYhcqkIop3OlCkkljvpSJi1hbeC1tbi8A==} 230 + "@atproto/lexicon@0.5.1": 231 + resolution: 232 + { 233 + integrity: sha512-y8AEtYmfgVl4fqFxqXAeGvhesiGkxiy3CWoJIfsFDDdTlZUC8DFnZrYhcqkIop3OlCkkljvpSJi1hbeC1tbi8A==, 234 + } 192 235 193 - '@atproto/syntax@0.4.1': 194 - resolution: {integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==} 236 + "@atproto/syntax@0.4.1": 237 + resolution: 238 + { 239 + integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==, 240 + } 195 241 196 - '@atproto/xrpc-server@0.9.5': 197 - resolution: {integrity: sha512-V0srjUgy6mQ5yf9+MSNBLs457m4qclEaWZsnqIE7RfYywvntexTAbMoo7J7ONfTNwdmA9Gw4oLak2z2cDAET4w==} 198 - engines: {node: '>=18.7.0'} 242 + "@atproto/xrpc-server@0.9.5": 243 + resolution: 244 + { 245 + integrity: sha512-V0srjUgy6mQ5yf9+MSNBLs457m4qclEaWZsnqIE7RfYywvntexTAbMoo7J7ONfTNwdmA9Gw4oLak2z2cDAET4w==, 246 + } 247 + engines: { node: ">=18.7.0" } 199 248 200 - '@atproto/xrpc@0.7.5': 201 - resolution: {integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==} 249 + "@atproto/xrpc@0.7.5": 250 + resolution: 251 + { 252 + integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==, 253 + } 202 254 203 - '@babel/code-frame@7.27.1': 204 - resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 205 - engines: {node: '>=6.9.0'} 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 261 207 - '@babel/compat-data@7.28.4': 208 - resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} 209 - engines: {node: '>=6.9.0'} 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 268 211 - '@babel/core@7.28.4': 212 - resolution: {integrity: sha512-2BCOP7TN8M+gVDj7/ht3hsaO/B/n5oDbiAyyvnRlNOs+u1o+JWNYTQrmpuNp1/Wq2gcFrI01JAW+paEKDMx/CA==} 213 - engines: {node: '>=6.9.0'} 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 275 215 - '@babel/generator@7.28.3': 216 - resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} 217 - engines: {node: '>=6.9.0'} 276 + "@babel/generator@7.28.3": 277 + resolution: 278 + { 279 + integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==, 280 + } 281 + engines: { node: ">=6.9.0" } 218 282 219 - '@babel/helper-compilation-targets@7.27.2': 220 - resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} 221 - engines: {node: '>=6.9.0'} 283 + "@babel/helper-compilation-targets@7.27.2": 284 + resolution: 285 + { 286 + integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==, 287 + } 288 + engines: { node: ">=6.9.0" } 222 289 223 - '@babel/helper-globals@7.28.0': 224 - resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} 225 - engines: {node: '>=6.9.0'} 290 + "@babel/helper-globals@7.28.0": 291 + resolution: 292 + { 293 + integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==, 294 + } 295 + engines: { node: ">=6.9.0" } 226 296 227 - '@babel/helper-module-imports@7.27.1': 228 - resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} 229 - engines: {node: '>=6.9.0'} 297 + "@babel/helper-module-imports@7.27.1": 298 + resolution: 299 + { 300 + integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==, 301 + } 302 + engines: { node: ">=6.9.0" } 230 303 231 - '@babel/helper-module-transforms@7.28.3': 232 - resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} 233 - engines: {node: '>=6.9.0'} 304 + "@babel/helper-module-transforms@7.28.3": 305 + resolution: 306 + { 307 + integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==, 308 + } 309 + engines: { node: ">=6.9.0" } 234 310 peerDependencies: 235 - '@babel/core': ^7.0.0 311 + "@babel/core": ^7.0.0 236 312 237 - '@babel/helper-plugin-utils@7.27.1': 238 - resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} 239 - engines: {node: '>=6.9.0'} 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 319 241 - '@babel/helper-string-parser@7.27.1': 242 - resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 243 - engines: {node: '>=6.9.0'} 320 + "@babel/helper-string-parser@7.27.1": 321 + resolution: 322 + { 323 + integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==, 324 + } 325 + engines: { node: ">=6.9.0" } 244 326 245 - '@babel/helper-validator-identifier@7.27.1': 246 - resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 247 - engines: {node: '>=6.9.0'} 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 333 249 - '@babel/helper-validator-option@7.27.1': 250 - resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 251 - engines: {node: '>=6.9.0'} 334 + "@babel/helper-validator-option@7.27.1": 335 + resolution: 336 + { 337 + integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==, 338 + } 339 + engines: { node: ">=6.9.0" } 252 340 253 - '@babel/helpers@7.28.4': 254 - resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} 255 - engines: {node: '>=6.9.0'} 341 + "@babel/helpers@7.28.4": 342 + resolution: 343 + { 344 + integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==, 345 + } 346 + engines: { node: ">=6.9.0" } 256 347 257 - '@babel/parser@7.28.4': 258 - resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} 259 - engines: {node: '>=6.0.0'} 348 + "@babel/parser@7.28.4": 349 + resolution: 350 + { 351 + integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==, 352 + } 353 + engines: { node: ">=6.0.0" } 260 354 hasBin: true 261 355 262 - '@babel/plugin-transform-react-jsx-self@7.27.1': 263 - resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} 264 - engines: {node: '>=6.9.0'} 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 362 peerDependencies: 266 - '@babel/core': ^7.0.0-0 363 + "@babel/core": ^7.0.0-0 267 364 268 - '@babel/plugin-transform-react-jsx-source@7.27.1': 269 - resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} 270 - engines: {node: '>=6.9.0'} 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 371 peerDependencies: 272 - '@babel/core': ^7.0.0-0 372 + "@babel/core": ^7.0.0-0 273 373 274 - '@babel/runtime@7.28.4': 275 - resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} 276 - engines: {node: '>=6.9.0'} 374 + "@babel/runtime@7.28.4": 375 + resolution: 376 + { 377 + integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==, 378 + } 379 + engines: { node: ">=6.9.0" } 277 380 278 - '@babel/template@7.27.2': 279 - resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} 280 - engines: {node: '>=6.9.0'} 381 + "@babel/template@7.27.2": 382 + resolution: 383 + { 384 + integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==, 385 + } 386 + engines: { node: ">=6.9.0" } 281 387 282 - '@babel/traverse@7.28.4': 283 - resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} 284 - engines: {node: '>=6.9.0'} 388 + "@babel/traverse@7.28.4": 389 + resolution: 390 + { 391 + integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==, 392 + } 393 + engines: { node: ">=6.9.0" } 285 394 286 - '@babel/types@7.28.4': 287 - resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} 288 - engines: {node: '>=6.9.0'} 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 401 290 - '@capsizecss/unpack@2.4.0': 291 - resolution: {integrity: sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==} 402 + "@capsizecss/unpack@2.4.0": 403 + resolution: 404 + { 405 + integrity: sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==, 406 + } 292 407 293 - '@cbor-extract/cbor-extract-darwin-arm64@2.2.0': 294 - resolution: {integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==} 408 + "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": 409 + resolution: 410 + { 411 + integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==, 412 + } 295 413 cpu: [arm64] 296 414 os: [darwin] 297 415 298 - '@cbor-extract/cbor-extract-darwin-x64@2.2.0': 299 - resolution: {integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==} 416 + "@cbor-extract/cbor-extract-darwin-x64@2.2.0": 417 + resolution: 418 + { 419 + integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==, 420 + } 300 421 cpu: [x64] 301 422 os: [darwin] 302 423 303 - '@cbor-extract/cbor-extract-linux-arm64@2.2.0': 304 - resolution: {integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==} 424 + "@cbor-extract/cbor-extract-linux-arm64@2.2.0": 425 + resolution: 426 + { 427 + integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==, 428 + } 305 429 cpu: [arm64] 306 430 os: [linux] 307 431 308 - '@cbor-extract/cbor-extract-linux-arm@2.2.0': 309 - resolution: {integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==} 432 + "@cbor-extract/cbor-extract-linux-arm@2.2.0": 433 + resolution: 434 + { 435 + integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==, 436 + } 310 437 cpu: [arm] 311 438 os: [linux] 312 439 313 - '@cbor-extract/cbor-extract-linux-x64@2.2.0': 314 - resolution: {integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==} 440 + "@cbor-extract/cbor-extract-linux-x64@2.2.0": 441 + resolution: 442 + { 443 + integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==, 444 + } 315 445 cpu: [x64] 316 446 os: [linux] 317 447 318 - '@cbor-extract/cbor-extract-win32-x64@2.2.0': 319 - resolution: {integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==} 448 + "@cbor-extract/cbor-extract-win32-x64@2.2.0": 449 + resolution: 450 + { 451 + integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==, 452 + } 320 453 cpu: [x64] 321 454 os: [win32] 322 455 323 - '@ctrl/tinycolor@3.6.1': 324 - resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} 325 - engines: {node: '>=10'} 456 + "@ctrl/tinycolor@3.6.1": 457 + resolution: 458 + { 459 + integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==, 460 + } 461 + engines: { node: ">=10" } 326 462 327 - '@emnapi/runtime@1.5.0': 328 - resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==} 463 + "@emnapi/runtime@1.5.0": 464 + resolution: 465 + { 466 + integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==, 467 + } 329 468 330 - '@emotion/hash@0.9.2': 331 - resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} 469 + "@emotion/hash@0.9.2": 470 + resolution: 471 + { 472 + integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==, 473 + } 332 474 333 - '@esbuild/aix-ppc64@0.21.5': 334 - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 335 - engines: {node: '>=12'} 475 + "@esbuild/aix-ppc64@0.21.5": 476 + resolution: 477 + { 478 + integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==, 479 + } 480 + engines: { node: ">=12" } 336 481 cpu: [ppc64] 337 482 os: [aix] 338 483 339 - '@esbuild/aix-ppc64@0.25.10': 340 - resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} 341 - engines: {node: '>=18'} 484 + "@esbuild/aix-ppc64@0.25.10": 485 + resolution: 486 + { 487 + integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==, 488 + } 489 + engines: { node: ">=18" } 342 490 cpu: [ppc64] 343 491 os: [aix] 344 492 345 - '@esbuild/android-arm64@0.21.5': 346 - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 347 - engines: {node: '>=12'} 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 499 cpu: [arm64] 349 500 os: [android] 350 501 351 - '@esbuild/android-arm64@0.25.10': 352 - resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} 353 - engines: {node: '>=18'} 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 508 cpu: [arm64] 355 509 os: [android] 356 510 357 - '@esbuild/android-arm@0.21.5': 358 - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 359 - engines: {node: '>=12'} 511 + "@esbuild/android-arm@0.21.5": 512 + resolution: 513 + { 514 + integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==, 515 + } 516 + engines: { node: ">=12" } 360 517 cpu: [arm] 361 518 os: [android] 362 519 363 - '@esbuild/android-arm@0.25.10': 364 - resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} 365 - engines: {node: '>=18'} 520 + "@esbuild/android-arm@0.25.10": 521 + resolution: 522 + { 523 + integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==, 524 + } 525 + engines: { node: ">=18" } 366 526 cpu: [arm] 367 527 os: [android] 368 528 369 - '@esbuild/android-x64@0.21.5': 370 - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 371 - engines: {node: '>=12'} 529 + "@esbuild/android-x64@0.21.5": 530 + resolution: 531 + { 532 + integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==, 533 + } 534 + engines: { node: ">=12" } 372 535 cpu: [x64] 373 536 os: [android] 374 537 375 - '@esbuild/android-x64@0.25.10': 376 - resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} 377 - engines: {node: '>=18'} 538 + "@esbuild/android-x64@0.25.10": 539 + resolution: 540 + { 541 + integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==, 542 + } 543 + engines: { node: ">=18" } 378 544 cpu: [x64] 379 545 os: [android] 380 546 381 - '@esbuild/darwin-arm64@0.21.5': 382 - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 383 - engines: {node: '>=12'} 547 + "@esbuild/darwin-arm64@0.21.5": 548 + resolution: 549 + { 550 + integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==, 551 + } 552 + engines: { node: ">=12" } 384 553 cpu: [arm64] 385 554 os: [darwin] 386 555 387 - '@esbuild/darwin-arm64@0.25.10': 388 - resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} 389 - engines: {node: '>=18'} 556 + "@esbuild/darwin-arm64@0.25.10": 557 + resolution: 558 + { 559 + integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==, 560 + } 561 + engines: { node: ">=18" } 390 562 cpu: [arm64] 391 563 os: [darwin] 392 564 393 - '@esbuild/darwin-x64@0.21.5': 394 - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 395 - engines: {node: '>=12'} 565 + "@esbuild/darwin-x64@0.21.5": 566 + resolution: 567 + { 568 + integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==, 569 + } 570 + engines: { node: ">=12" } 396 571 cpu: [x64] 397 572 os: [darwin] 398 573 399 - '@esbuild/darwin-x64@0.25.10': 400 - resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} 401 - engines: {node: '>=18'} 574 + "@esbuild/darwin-x64@0.25.10": 575 + resolution: 576 + { 577 + integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==, 578 + } 579 + engines: { node: ">=18" } 402 580 cpu: [x64] 403 581 os: [darwin] 404 582 405 - '@esbuild/freebsd-arm64@0.21.5': 406 - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 407 - engines: {node: '>=12'} 583 + "@esbuild/freebsd-arm64@0.21.5": 584 + resolution: 585 + { 586 + integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==, 587 + } 588 + engines: { node: ">=12" } 408 589 cpu: [arm64] 409 590 os: [freebsd] 410 591 411 - '@esbuild/freebsd-arm64@0.25.10': 412 - resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} 413 - engines: {node: '>=18'} 592 + "@esbuild/freebsd-arm64@0.25.10": 593 + resolution: 594 + { 595 + integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==, 596 + } 597 + engines: { node: ">=18" } 414 598 cpu: [arm64] 415 599 os: [freebsd] 416 600 417 - '@esbuild/freebsd-x64@0.21.5': 418 - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 419 - engines: {node: '>=12'} 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 607 cpu: [x64] 421 608 os: [freebsd] 422 609 423 - '@esbuild/freebsd-x64@0.25.10': 424 - resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} 425 - engines: {node: '>=18'} 610 + "@esbuild/freebsd-x64@0.25.10": 611 + resolution: 612 + { 613 + integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==, 614 + } 615 + engines: { node: ">=18" } 426 616 cpu: [x64] 427 617 os: [freebsd] 428 618 429 - '@esbuild/linux-arm64@0.21.5': 430 - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 431 - engines: {node: '>=12'} 619 + "@esbuild/linux-arm64@0.21.5": 620 + resolution: 621 + { 622 + integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==, 623 + } 624 + engines: { node: ">=12" } 432 625 cpu: [arm64] 433 626 os: [linux] 434 627 435 - '@esbuild/linux-arm64@0.25.10': 436 - resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} 437 - engines: {node: '>=18'} 628 + "@esbuild/linux-arm64@0.25.10": 629 + resolution: 630 + { 631 + integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==, 632 + } 633 + engines: { node: ">=18" } 438 634 cpu: [arm64] 439 635 os: [linux] 440 636 441 - '@esbuild/linux-arm@0.21.5': 442 - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 443 - engines: {node: '>=12'} 637 + "@esbuild/linux-arm@0.21.5": 638 + resolution: 639 + { 640 + integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==, 641 + } 642 + engines: { node: ">=12" } 444 643 cpu: [arm] 445 644 os: [linux] 446 645 447 - '@esbuild/linux-arm@0.25.10': 448 - resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} 449 - engines: {node: '>=18'} 646 + "@esbuild/linux-arm@0.25.10": 647 + resolution: 648 + { 649 + integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==, 650 + } 651 + engines: { node: ">=18" } 450 652 cpu: [arm] 451 653 os: [linux] 452 654 453 - '@esbuild/linux-ia32@0.21.5': 454 - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 455 - engines: {node: '>=12'} 655 + "@esbuild/linux-ia32@0.21.5": 656 + resolution: 657 + { 658 + integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==, 659 + } 660 + engines: { node: ">=12" } 456 661 cpu: [ia32] 457 662 os: [linux] 458 663 459 - '@esbuild/linux-ia32@0.25.10': 460 - resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} 461 - engines: {node: '>=18'} 664 + "@esbuild/linux-ia32@0.25.10": 665 + resolution: 666 + { 667 + integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==, 668 + } 669 + engines: { node: ">=18" } 462 670 cpu: [ia32] 463 671 os: [linux] 464 672 465 - '@esbuild/linux-loong64@0.21.5': 466 - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 467 - engines: {node: '>=12'} 673 + "@esbuild/linux-loong64@0.21.5": 674 + resolution: 675 + { 676 + integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==, 677 + } 678 + engines: { node: ">=12" } 468 679 cpu: [loong64] 469 680 os: [linux] 470 681 471 - '@esbuild/linux-loong64@0.25.10': 472 - resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} 473 - engines: {node: '>=18'} 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 688 cpu: [loong64] 475 689 os: [linux] 476 690 477 - '@esbuild/linux-mips64el@0.21.5': 478 - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 479 - engines: {node: '>=12'} 691 + "@esbuild/linux-mips64el@0.21.5": 692 + resolution: 693 + { 694 + integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==, 695 + } 696 + engines: { node: ">=12" } 480 697 cpu: [mips64el] 481 698 os: [linux] 482 699 483 - '@esbuild/linux-mips64el@0.25.10': 484 - resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} 485 - engines: {node: '>=18'} 700 + "@esbuild/linux-mips64el@0.25.10": 701 + resolution: 702 + { 703 + integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==, 704 + } 705 + engines: { node: ">=18" } 486 706 cpu: [mips64el] 487 707 os: [linux] 488 708 489 - '@esbuild/linux-ppc64@0.21.5': 490 - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 491 - engines: {node: '>=12'} 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 715 cpu: [ppc64] 493 716 os: [linux] 494 717 495 - '@esbuild/linux-ppc64@0.25.10': 496 - resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} 497 - engines: {node: '>=18'} 718 + "@esbuild/linux-ppc64@0.25.10": 719 + resolution: 720 + { 721 + integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==, 722 + } 723 + engines: { node: ">=18" } 498 724 cpu: [ppc64] 499 725 os: [linux] 500 726 501 - '@esbuild/linux-riscv64@0.21.5': 502 - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 503 - engines: {node: '>=12'} 727 + "@esbuild/linux-riscv64@0.21.5": 728 + resolution: 729 + { 730 + integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==, 731 + } 732 + engines: { node: ">=12" } 504 733 cpu: [riscv64] 505 734 os: [linux] 506 735 507 - '@esbuild/linux-riscv64@0.25.10': 508 - resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} 509 - engines: {node: '>=18'} 736 + "@esbuild/linux-riscv64@0.25.10": 737 + resolution: 738 + { 739 + integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==, 740 + } 741 + engines: { node: ">=18" } 510 742 cpu: [riscv64] 511 743 os: [linux] 512 744 513 - '@esbuild/linux-s390x@0.21.5': 514 - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 515 - engines: {node: '>=12'} 745 + "@esbuild/linux-s390x@0.21.5": 746 + resolution: 747 + { 748 + integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==, 749 + } 750 + engines: { node: ">=12" } 516 751 cpu: [s390x] 517 752 os: [linux] 518 753 519 - '@esbuild/linux-s390x@0.25.10': 520 - resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} 521 - engines: {node: '>=18'} 754 + "@esbuild/linux-s390x@0.25.10": 755 + resolution: 756 + { 757 + integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==, 758 + } 759 + engines: { node: ">=18" } 522 760 cpu: [s390x] 523 761 os: [linux] 524 762 525 - '@esbuild/linux-x64@0.21.5': 526 - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 527 - engines: {node: '>=12'} 763 + "@esbuild/linux-x64@0.21.5": 764 + resolution: 765 + { 766 + integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==, 767 + } 768 + engines: { node: ">=12" } 528 769 cpu: [x64] 529 770 os: [linux] 530 771 531 - '@esbuild/linux-x64@0.25.10': 532 - resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} 533 - engines: {node: '>=18'} 772 + "@esbuild/linux-x64@0.25.10": 773 + resolution: 774 + { 775 + integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==, 776 + } 777 + engines: { node: ">=18" } 534 778 cpu: [x64] 535 779 os: [linux] 536 780 537 - '@esbuild/netbsd-arm64@0.25.10': 538 - resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} 539 - engines: {node: '>=18'} 781 + "@esbuild/netbsd-arm64@0.25.10": 782 + resolution: 783 + { 784 + integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==, 785 + } 786 + engines: { node: ">=18" } 540 787 cpu: [arm64] 541 788 os: [netbsd] 542 789 543 - '@esbuild/netbsd-x64@0.21.5': 544 - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 545 - engines: {node: '>=12'} 790 + "@esbuild/netbsd-x64@0.21.5": 791 + resolution: 792 + { 793 + integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==, 794 + } 795 + engines: { node: ">=12" } 546 796 cpu: [x64] 547 797 os: [netbsd] 548 798 549 - '@esbuild/netbsd-x64@0.25.10': 550 - resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} 551 - engines: {node: '>=18'} 799 + "@esbuild/netbsd-x64@0.25.10": 800 + resolution: 801 + { 802 + integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==, 803 + } 804 + engines: { node: ">=18" } 552 805 cpu: [x64] 553 806 os: [netbsd] 554 807 555 - '@esbuild/openbsd-arm64@0.25.10': 556 - resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} 557 - engines: {node: '>=18'} 808 + "@esbuild/openbsd-arm64@0.25.10": 809 + resolution: 810 + { 811 + integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==, 812 + } 813 + engines: { node: ">=18" } 558 814 cpu: [arm64] 559 815 os: [openbsd] 560 816 561 - '@esbuild/openbsd-x64@0.21.5': 562 - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 563 - engines: {node: '>=12'} 817 + "@esbuild/openbsd-x64@0.21.5": 818 + resolution: 819 + { 820 + integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==, 821 + } 822 + engines: { node: ">=12" } 564 823 cpu: [x64] 565 824 os: [openbsd] 566 825 567 - '@esbuild/openbsd-x64@0.25.10': 568 - resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} 569 - engines: {node: '>=18'} 826 + "@esbuild/openbsd-x64@0.25.10": 827 + resolution: 828 + { 829 + integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==, 830 + } 831 + engines: { node: ">=18" } 570 832 cpu: [x64] 571 833 os: [openbsd] 572 834 573 - '@esbuild/openharmony-arm64@0.25.10': 574 - resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} 575 - engines: {node: '>=18'} 835 + "@esbuild/openharmony-arm64@0.25.10": 836 + resolution: 837 + { 838 + integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==, 839 + } 840 + engines: { node: ">=18" } 576 841 cpu: [arm64] 577 842 os: [openharmony] 578 843 579 - '@esbuild/sunos-x64@0.21.5': 580 - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 581 - engines: {node: '>=12'} 844 + "@esbuild/sunos-x64@0.21.5": 845 + resolution: 846 + { 847 + integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==, 848 + } 849 + engines: { node: ">=12" } 582 850 cpu: [x64] 583 851 os: [sunos] 584 852 585 - '@esbuild/sunos-x64@0.25.10': 586 - resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} 587 - engines: {node: '>=18'} 853 + "@esbuild/sunos-x64@0.25.10": 854 + resolution: 855 + { 856 + integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==, 857 + } 858 + engines: { node: ">=18" } 588 859 cpu: [x64] 589 860 os: [sunos] 590 861 591 - '@esbuild/win32-arm64@0.21.5': 592 - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 593 - engines: {node: '>=12'} 862 + "@esbuild/win32-arm64@0.21.5": 863 + resolution: 864 + { 865 + integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==, 866 + } 867 + engines: { node: ">=12" } 594 868 cpu: [arm64] 595 869 os: [win32] 596 870 597 - '@esbuild/win32-arm64@0.25.10': 598 - resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} 599 - engines: {node: '>=18'} 871 + "@esbuild/win32-arm64@0.25.10": 872 + resolution: 873 + { 874 + integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==, 875 + } 876 + engines: { node: ">=18" } 600 877 cpu: [arm64] 601 878 os: [win32] 602 879 603 - '@esbuild/win32-ia32@0.21.5': 604 - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 605 - engines: {node: '>=12'} 880 + "@esbuild/win32-ia32@0.21.5": 881 + resolution: 882 + { 883 + integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==, 884 + } 885 + engines: { node: ">=12" } 606 886 cpu: [ia32] 607 887 os: [win32] 608 888 609 - '@esbuild/win32-ia32@0.25.10': 610 - resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} 611 - engines: {node: '>=18'} 889 + "@esbuild/win32-ia32@0.25.10": 890 + resolution: 891 + { 892 + integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==, 893 + } 894 + engines: { node: ">=18" } 612 895 cpu: [ia32] 613 896 os: [win32] 614 897 615 - '@esbuild/win32-x64@0.21.5': 616 - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 617 - engines: {node: '>=12'} 898 + "@esbuild/win32-x64@0.21.5": 899 + resolution: 900 + { 901 + integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==, 902 + } 903 + engines: { node: ">=12" } 618 904 cpu: [x64] 619 905 os: [win32] 620 906 621 - '@esbuild/win32-x64@0.25.10': 622 - resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} 623 - engines: {node: '>=18'} 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 913 cpu: [x64] 625 914 os: [win32] 626 915 627 - '@floating-ui/core@1.7.3': 628 - resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==} 916 + "@floating-ui/core@1.7.3": 917 + resolution: 918 + { 919 + integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==, 920 + } 629 921 630 - '@floating-ui/devtools@0.2.3': 631 - resolution: {integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==} 922 + "@floating-ui/devtools@0.2.3": 923 + resolution: 924 + { 925 + integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==, 926 + } 632 927 peerDependencies: 633 - '@floating-ui/dom': ^1.0.0 928 + "@floating-ui/dom": ^1.0.0 634 929 635 - '@floating-ui/dom@1.7.4': 636 - resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==} 930 + "@floating-ui/dom@1.7.4": 931 + resolution: 932 + { 933 + integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==, 934 + } 637 935 638 - '@floating-ui/utils@0.2.10': 639 - resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} 936 + "@floating-ui/utils@0.2.10": 937 + resolution: 938 + { 939 + integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==, 940 + } 640 941 641 - '@fluentui/keyboard-keys@9.0.8': 642 - resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==} 942 + "@fluentui/keyboard-keys@9.0.8": 943 + resolution: 944 + { 945 + integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==, 946 + } 643 947 644 - '@fluentui/priority-overflow@9.2.0': 645 - resolution: {integrity: sha512-uwB5drtNGeEdLO3CEzM/VolyzkywIgpNhuOzFrLbKFxq20kCqteRDkUJIySgYu/+rK+Cyl8xiKmLzey49nlocg==} 948 + "@fluentui/priority-overflow@9.2.0": 949 + resolution: 950 + { 951 + integrity: sha512-uwB5drtNGeEdLO3CEzM/VolyzkywIgpNhuOzFrLbKFxq20kCqteRDkUJIySgYu/+rK+Cyl8xiKmLzey49nlocg==, 952 + } 646 953 647 - '@fluentui/react-accordion@9.8.8': 648 - resolution: {integrity: sha512-jicuHHlFK7Tsh0gx1FWKpgZixaZMBU1Nw751cGerL7XGF1OODBXCPqbmvZBSe/xLzfKj250EfDQ3V/5EGt6tcg==} 954 + "@fluentui/react-accordion@9.8.8": 955 + resolution: 956 + { 957 + integrity: sha512-jicuHHlFK7Tsh0gx1FWKpgZixaZMBU1Nw751cGerL7XGF1OODBXCPqbmvZBSe/xLzfKj250EfDQ3V/5EGt6tcg==, 958 + } 649 959 peerDependencies: 650 - '@types/react': '>=16.14.0 <20.0.0' 651 - '@types/react-dom': '>=16.9.0 <20.0.0' 652 - react: '>=16.14.0 <20.0.0' 653 - react-dom: '>=16.14.0 <20.0.0' 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" 654 964 655 - '@fluentui/react-alert@9.0.0-beta.124': 656 - resolution: {integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==} 965 + "@fluentui/react-alert@9.0.0-beta.124": 966 + resolution: 967 + { 968 + integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==, 969 + } 657 970 peerDependencies: 658 - '@types/react': '>=16.14.0 <19.0.0' 659 - '@types/react-dom': '>=16.9.0 <19.0.0' 660 - react: '>=16.14.0 <19.0.0' 661 - react-dom: '>=16.14.0 <19.0.0' 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" 662 975 663 - '@fluentui/react-aria@9.17.1': 664 - resolution: {integrity: sha512-OmHqfHpVQZV6M8pZpl7QYmEoQuKbrDMboLWUzvAH9FxCjYQljNfgYyUKy5aP+gPJIKsO90mUUIbGY1LRH4e3fQ==} 976 + "@fluentui/react-aria@9.17.1": 977 + resolution: 978 + { 979 + integrity: sha512-OmHqfHpVQZV6M8pZpl7QYmEoQuKbrDMboLWUzvAH9FxCjYQljNfgYyUKy5aP+gPJIKsO90mUUIbGY1LRH4e3fQ==, 980 + } 665 981 peerDependencies: 666 - '@types/react': '>=16.14.0 <20.0.0' 667 - '@types/react-dom': '>=16.9.0 <20.0.0' 668 - react: '>=16.14.0 <20.0.0' 669 - react-dom: '>=16.14.0 <20.0.0' 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" 670 986 671 - '@fluentui/react-avatar@9.9.7': 672 - resolution: {integrity: sha512-T5zZGXta1sWbnxG5Dr+DzV9oxbab5Diws9V4ztcBWsBCowViPh8sZ6y/dSd/dnML3uWhMwNeW6dwPubA94pdAQ==} 987 + "@fluentui/react-avatar@9.9.7": 988 + resolution: 989 + { 990 + integrity: sha512-T5zZGXta1sWbnxG5Dr+DzV9oxbab5Diws9V4ztcBWsBCowViPh8sZ6y/dSd/dnML3uWhMwNeW6dwPubA94pdAQ==, 991 + } 673 992 peerDependencies: 674 - '@types/react': '>=16.14.0 <20.0.0' 675 - '@types/react-dom': '>=16.9.0 <20.0.0' 676 - react: '>=16.14.0 <20.0.0' 677 - react-dom: '>=16.14.0 <20.0.0' 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" 678 997 679 - '@fluentui/react-badge@9.4.6': 680 - resolution: {integrity: sha512-WxmUMcw5VthyeZrNAaSPLaMp+0F5g+Z9KZXH2ENAh0xM+BoWQjfruWUlTuMVT4rlmQcUEd7rz4rXjyflMoFzIQ==} 998 + "@fluentui/react-badge@9.4.6": 999 + resolution: 1000 + { 1001 + integrity: sha512-WxmUMcw5VthyeZrNAaSPLaMp+0F5g+Z9KZXH2ENAh0xM+BoWQjfruWUlTuMVT4rlmQcUEd7rz4rXjyflMoFzIQ==, 1002 + } 681 1003 peerDependencies: 682 - '@types/react': '>=16.14.0 <20.0.0' 683 - '@types/react-dom': '>=16.9.0 <20.0.0' 684 - react: '>=16.14.0 <20.0.0' 685 - react-dom: '>=16.14.0 <20.0.0' 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" 686 1008 687 - '@fluentui/react-breadcrumb@9.3.7': 688 - resolution: {integrity: sha512-NbSHxHpEKvTC0IeLIZg+NM8Kf6sL0VeMd8DgId1Py+XnUI4PpI7glJ1JovhSenMWL3kPNX7qPeFcxbtHn3BowA==} 1009 + "@fluentui/react-breadcrumb@9.3.7": 1010 + resolution: 1011 + { 1012 + integrity: sha512-NbSHxHpEKvTC0IeLIZg+NM8Kf6sL0VeMd8DgId1Py+XnUI4PpI7glJ1JovhSenMWL3kPNX7qPeFcxbtHn3BowA==, 1013 + } 689 1014 peerDependencies: 690 - '@types/react': '>=16.14.0 <20.0.0' 691 - '@types/react-dom': '>=16.9.0 <20.0.0' 692 - react: '>=16.14.0 <20.0.0' 693 - 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" 694 1019 695 - '@fluentui/react-button@9.6.7': 696 - resolution: {integrity: sha512-les2Fwej/nCOpf+jZigqX/+cspdwZLZgKuGbbOQ/70f8bOOBB+pXft795wpFKcjncRIGLa+ABjZbc4eTbUYuJQ==} 1020 + "@fluentui/react-button@9.6.7": 1021 + resolution: 1022 + { 1023 + integrity: sha512-les2Fwej/nCOpf+jZigqX/+cspdwZLZgKuGbbOQ/70f8bOOBB+pXft795wpFKcjncRIGLa+ABjZbc4eTbUYuJQ==, 1024 + } 697 1025 peerDependencies: 698 - '@types/react': '>=16.14.0 <20.0.0' 699 - '@types/react-dom': '>=16.9.0 <20.0.0' 700 - react: '>=16.14.0 <20.0.0' 701 - react-dom: '>=16.14.0 <20.0.0' 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" 702 1030 703 - '@fluentui/react-card@9.5.1': 704 - resolution: {integrity: sha512-ZaNkQFjsmaDFKD+EsOwpCcLWOt+ZHZ2AWRkW4OK3cUzPSpqa/7Wa6eMUpsvOeSfritLnwTv9XFfrpmFSgXV8PQ==} 1031 + "@fluentui/react-card@9.5.1": 1032 + resolution: 1033 + { 1034 + integrity: sha512-ZaNkQFjsmaDFKD+EsOwpCcLWOt+ZHZ2AWRkW4OK3cUzPSpqa/7Wa6eMUpsvOeSfritLnwTv9XFfrpmFSgXV8PQ==, 1035 + } 705 1036 peerDependencies: 706 - '@types/react': '>=16.14.0 <20.0.0' 707 - '@types/react-dom': '>=16.9.0 <20.0.0' 708 - react: '>=16.14.0 <20.0.0' 709 - react-dom: '>=16.14.0 <20.0.0' 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" 710 1041 711 - '@fluentui/react-carousel@9.8.7': 712 - resolution: {integrity: sha512-Bdw0yAA4U7X+nzhjgtTeL/Xmupu4uYurO38VmZiC7jmKLq1jqE8YjA+u5eFuyEG/Nc9auThFkES6vhDcPnezDw==} 1042 + "@fluentui/react-carousel@9.8.7": 1043 + resolution: 1044 + { 1045 + integrity: sha512-Bdw0yAA4U7X+nzhjgtTeL/Xmupu4uYurO38VmZiC7jmKLq1jqE8YjA+u5eFuyEG/Nc9auThFkES6vhDcPnezDw==, 1046 + } 713 1047 peerDependencies: 714 - '@types/react': '>=16.14.0 <20.0.0' 715 - '@types/react-dom': '>=16.9.0 <20.0.0' 716 - react: '>=16.14.0 <20.0.0' 717 - react-dom: '>=16.14.0 <20.0.0' 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" 718 1052 719 - '@fluentui/react-checkbox@9.5.6': 720 - resolution: {integrity: sha512-nUOnn0MMrIZAEFkB664qYdXzUG7G6pA4IWCd1KtS5/jn01s29+nDLDuwgNXVD6jGZ+VLGo0ZEJ8+SJowsddFCA==} 1053 + "@fluentui/react-checkbox@9.5.6": 1054 + resolution: 1055 + { 1056 + integrity: sha512-nUOnn0MMrIZAEFkB664qYdXzUG7G6pA4IWCd1KtS5/jn01s29+nDLDuwgNXVD6jGZ+VLGo0ZEJ8+SJowsddFCA==, 1057 + } 721 1058 peerDependencies: 722 - '@types/react': '>=16.14.0 <20.0.0' 723 - '@types/react-dom': '>=16.9.0 <20.0.0' 724 - react: '>=16.14.0 <20.0.0' 725 - react-dom: '>=16.14.0 <20.0.0' 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" 726 1063 727 - '@fluentui/react-color-picker@9.2.6': 728 - resolution: {integrity: sha512-CYgSbG8yTTEW1Jf2LVJS6dvFN8NQFB24HazmU42+ZmnSJX/qAYMAmxOA0F3apV2ziOitnjrdUYeRqHPMsaAdqA==} 1064 + "@fluentui/react-color-picker@9.2.6": 1065 + resolution: 1066 + { 1067 + integrity: sha512-CYgSbG8yTTEW1Jf2LVJS6dvFN8NQFB24HazmU42+ZmnSJX/qAYMAmxOA0F3apV2ziOitnjrdUYeRqHPMsaAdqA==, 1068 + } 729 1069 peerDependencies: 730 - '@types/react': '>=16.14.0 <20.0.0' 731 - '@types/react-dom': '>=16.9.0 <20.0.0' 732 - react: '>=16.14.0 <20.0.0' 733 - react-dom: '>=16.14.0 <20.0.0' 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" 734 1074 735 - '@fluentui/react-combobox@9.16.7': 736 - resolution: {integrity: sha512-n3Y+bqD1c9fCUY8kbdsteMJT8VMuwr3pn0JvdCXsDiRxL7z9W1j/vFn+9gIAVC6okRhhwLwoi4wXoXDnPD907g==} 1075 + "@fluentui/react-combobox@9.16.7": 1076 + resolution: 1077 + { 1078 + integrity: sha512-n3Y+bqD1c9fCUY8kbdsteMJT8VMuwr3pn0JvdCXsDiRxL7z9W1j/vFn+9gIAVC6okRhhwLwoi4wXoXDnPD907g==, 1079 + } 737 1080 peerDependencies: 738 - '@types/react': '>=16.14.0 <20.0.0' 739 - '@types/react-dom': '>=16.9.0 <20.0.0' 740 - react: '>=16.14.0 <20.0.0' 741 - react-dom: '>=16.14.0 <20.0.0' 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" 742 1085 743 - '@fluentui/react-components@9.69.0': 744 - resolution: {integrity: sha512-iw6gZVdAMPgPLbAwwAcA+2wRfeHdV27tRMPfrNYnFlXMAYfcXQvWjxeD8XTL5j2PYfOhRJjnWvjL0srJjjMcfA==} 1086 + "@fluentui/react-components@9.69.0": 1087 + resolution: 1088 + { 1089 + integrity: sha512-iw6gZVdAMPgPLbAwwAcA+2wRfeHdV27tRMPfrNYnFlXMAYfcXQvWjxeD8XTL5j2PYfOhRJjnWvjL0srJjjMcfA==, 1090 + } 745 1091 peerDependencies: 746 - '@types/react': '>=16.14.0 <19.0.0' 747 - '@types/react-dom': '>=16.9.0 <19.0.0' 748 - react: '>=16.14.0 <19.0.0' 749 - react-dom: '>=16.14.0 <19.0.0' 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" 750 1096 751 - '@fluentui/react-context-selector@9.2.8': 752 - resolution: {integrity: sha512-mh7Phvz6S4LQGuoRLCtqoAOP66JrbHyzrUynSK5yR4V+WRhBH0QNC/eOeivocV8wSQWV9YlCmRYm9hNEvOqi1Q==} 1097 + "@fluentui/react-context-selector@9.2.8": 1098 + resolution: 1099 + { 1100 + integrity: sha512-mh7Phvz6S4LQGuoRLCtqoAOP66JrbHyzrUynSK5yR4V+WRhBH0QNC/eOeivocV8wSQWV9YlCmRYm9hNEvOqi1Q==, 1101 + } 753 1102 peerDependencies: 754 - '@types/react': '>=16.14.0 <20.0.0' 755 - '@types/react-dom': '>=16.9.0 <20.0.0' 756 - react: '>=16.14.0 <20.0.0' 757 - react-dom: '>=16.14.0 <20.0.0' 758 - scheduler: '>=0.19.0 <=0.23.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" 1107 + scheduler: ">=0.19.0 <=0.23.0" 759 1108 760 - '@fluentui/react-dialog@9.15.3': 761 - resolution: {integrity: sha512-GtGUXVoNttsI7NuHMkhtLbJpjUw5ovIWKH3CMpdlgmnispdd4jYYYyTVDapG+9VJvYesHXI00yOoBM1ymtVrJA==} 1109 + "@fluentui/react-dialog@9.15.3": 1110 + resolution: 1111 + { 1112 + integrity: sha512-GtGUXVoNttsI7NuHMkhtLbJpjUw5ovIWKH3CMpdlgmnispdd4jYYYyTVDapG+9VJvYesHXI00yOoBM1ymtVrJA==, 1113 + } 762 1114 peerDependencies: 763 - '@types/react': '>=16.14.0 <20.0.0' 764 - '@types/react-dom': '>=16.9.0 <20.0.0' 765 - react: '>=16.14.0 <20.0.0' 766 - react-dom: '>=16.14.0 <20.0.0' 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" 767 1119 768 - '@fluentui/react-divider@9.4.6': 769 - resolution: {integrity: sha512-pIk5mvkXQRR+rZkOg62vn2rWS//eikvm+jLn3E4e+qy59BQhXufI1aGw2gcZG3WTpeHHtRMbDD/xauEkMdrg7A==} 1120 + "@fluentui/react-divider@9.4.6": 1121 + resolution: 1122 + { 1123 + integrity: sha512-pIk5mvkXQRR+rZkOg62vn2rWS//eikvm+jLn3E4e+qy59BQhXufI1aGw2gcZG3WTpeHHtRMbDD/xauEkMdrg7A==, 1124 + } 770 1125 peerDependencies: 771 - '@types/react': '>=16.14.0 <20.0.0' 772 - '@types/react-dom': '>=16.9.0 <20.0.0' 773 - react: '>=16.14.0 <20.0.0' 774 - react-dom: '>=16.14.0 <20.0.0' 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" 775 1130 776 - '@fluentui/react-drawer@9.10.3': 777 - resolution: {integrity: sha512-HLr41jlQ1QFgk1iD0u/Cu+2uoQl2lMaMj7/CERina0SIneof+skt61WQdUtntEKidM0fyHfU41PUDySWXYKLtg==} 1131 + "@fluentui/react-drawer@9.10.3": 1132 + resolution: 1133 + { 1134 + integrity: sha512-HLr41jlQ1QFgk1iD0u/Cu+2uoQl2lMaMj7/CERina0SIneof+skt61WQdUtntEKidM0fyHfU41PUDySWXYKLtg==, 1135 + } 778 1136 peerDependencies: 779 - '@types/react': '>=16.14.0 <20.0.0' 780 - '@types/react-dom': '>=16.9.0 <20.0.0' 781 - react: '>=16.14.0 <20.0.0' 782 - react-dom: '>=16.14.0 <20.0.0' 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" 783 1141 784 - '@fluentui/react-field@9.4.6': 785 - resolution: {integrity: sha512-Xk/bNYhL2bLMO/mdoZrGX05Ga51QQVVC0wyqvcv5yv4l3s3oLcxb9pZCVgexzQOOUNUAaxz5QDOBHRjv7KT2xg==} 1142 + "@fluentui/react-field@9.4.6": 1143 + resolution: 1144 + { 1145 + integrity: sha512-Xk/bNYhL2bLMO/mdoZrGX05Ga51QQVVC0wyqvcv5yv4l3s3oLcxb9pZCVgexzQOOUNUAaxz5QDOBHRjv7KT2xg==, 1146 + } 786 1147 peerDependencies: 787 - '@types/react': '>=16.14.0 <20.0.0' 788 - '@types/react-dom': '>=16.9.0 <20.0.0' 789 - react: '>=16.14.0 <20.0.0' 790 - react-dom: '>=16.14.0 <20.0.0' 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" 791 1152 792 - '@fluentui/react-icons@2.0.311': 793 - resolution: {integrity: sha512-njTCiHki4gxtB0ebFFIy8jC+9xFqIbnqzFGO+3mixSjUIn/wl0NKUVzXiXcaYUx6d0okEAiYgciuT7eQjJhW8Q==} 1153 + "@fluentui/react-icons@2.0.311": 1154 + resolution: 1155 + { 1156 + integrity: sha512-njTCiHki4gxtB0ebFFIy8jC+9xFqIbnqzFGO+3mixSjUIn/wl0NKUVzXiXcaYUx6d0okEAiYgciuT7eQjJhW8Q==, 1157 + } 794 1158 peerDependencies: 795 - react: '>=16.8.0 <20.0.0' 1159 + react: ">=16.8.0 <20.0.0" 796 1160 797 - '@fluentui/react-image@9.3.6': 798 - resolution: {integrity: sha512-khdxM+h+A+d5fcFZG+mZinTGy6x38QBkjxvhly4TFJHIVziuF+mbB3vpf4J0TwynZOMiza3D174kvrK3x5yyvw==} 1161 + "@fluentui/react-image@9.3.6": 1162 + resolution: 1163 + { 1164 + integrity: sha512-khdxM+h+A+d5fcFZG+mZinTGy6x38QBkjxvhly4TFJHIVziuF+mbB3vpf4J0TwynZOMiza3D174kvrK3x5yyvw==, 1165 + } 799 1166 peerDependencies: 800 - '@types/react': '>=16.14.0 <20.0.0' 801 - '@types/react-dom': '>=16.9.0 <20.0.0' 802 - react: '>=16.14.0 <20.0.0' 803 - react-dom: '>=16.14.0 <20.0.0' 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" 804 1171 805 - '@fluentui/react-infobutton@9.0.0-beta.102': 806 - resolution: {integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==} 1172 + "@fluentui/react-infobutton@9.0.0-beta.102": 1173 + resolution: 1174 + { 1175 + integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==, 1176 + } 807 1177 peerDependencies: 808 - '@types/react': '>=16.14.0 <19.0.0' 809 - '@types/react-dom': '>=16.9.0 <19.0.0' 810 - react: '>=16.14.0 <19.0.0' 811 - react-dom: '>=16.14.0 <19.0.0' 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" 812 1182 813 - '@fluentui/react-infolabel@9.4.7': 814 - resolution: {integrity: sha512-JHhIML6Wv+X0w+qyRYDx9GH8tUU0dCN3lAodI/02w+3do2a6ychRjoEa/7Aa9gA2wYxAuz7TC6hzfdcI4ec//Q==} 1183 + "@fluentui/react-infolabel@9.4.7": 1184 + resolution: 1185 + { 1186 + integrity: sha512-JHhIML6Wv+X0w+qyRYDx9GH8tUU0dCN3lAodI/02w+3do2a6ychRjoEa/7Aa9gA2wYxAuz7TC6hzfdcI4ec//Q==, 1187 + } 815 1188 peerDependencies: 816 - '@types/react': '>=16.8.0 <20.0.0' 817 - '@types/react-dom': '>=16.8.0 <20.0.0' 818 - react: '>=16.14.0 <20.0.0' 819 - react-dom: '>=16.8.0 <20.0.0' 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" 820 1193 821 - '@fluentui/react-input@9.7.6': 822 - resolution: {integrity: sha512-s+f5kznbm2McheAAz868Lre1+xzCinVJm4eNiuKXJzTSCiLsdlE27xWjv2+Lzh1du4HLC+arUkdZ+HCLg5Kvug==} 1194 + "@fluentui/react-input@9.7.6": 1195 + resolution: 1196 + { 1197 + integrity: sha512-s+f5kznbm2McheAAz868Lre1+xzCinVJm4eNiuKXJzTSCiLsdlE27xWjv2+Lzh1du4HLC+arUkdZ+HCLg5Kvug==, 1198 + } 823 1199 peerDependencies: 824 - '@types/react': '>=16.14.0 <20.0.0' 825 - '@types/react-dom': '>=16.9.0 <20.0.0' 826 - react: '>=16.14.0 <20.0.0' 827 - react-dom: '>=16.14.0 <20.0.0' 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" 828 1204 829 - '@fluentui/react-jsx-runtime@9.2.1': 830 - resolution: {integrity: sha512-qfkqqYqKbqMEXk+yxnQ+L88yEi9CWzCmYHyZQ5Xhk6wfKyNAWYv/otConKLzbWJWnbpEq0zgysqqeJT/LYAoDg==} 1205 + "@fluentui/react-jsx-runtime@9.2.1": 1206 + resolution: 1207 + { 1208 + integrity: sha512-qfkqqYqKbqMEXk+yxnQ+L88yEi9CWzCmYHyZQ5Xhk6wfKyNAWYv/otConKLzbWJWnbpEq0zgysqqeJT/LYAoDg==, 1209 + } 831 1210 peerDependencies: 832 - '@types/react': '>=16.14.0 <20.0.0' 833 - react: '>=16.14.0 <20.0.0' 1211 + "@types/react": ">=16.14.0 <20.0.0" 1212 + react: ">=16.14.0 <20.0.0" 834 1213 835 - '@fluentui/react-label@9.3.6': 836 - resolution: {integrity: sha512-3mnDaoZrPuMTeJdXUQkNBMvhrq/qYw3UFKO6lfqu4701FCggLk2kdqcUqx5ViKEgEtRELrDjbilOYapagZvpag==} 1214 + "@fluentui/react-label@9.3.6": 1215 + resolution: 1216 + { 1217 + integrity: sha512-3mnDaoZrPuMTeJdXUQkNBMvhrq/qYw3UFKO6lfqu4701FCggLk2kdqcUqx5ViKEgEtRELrDjbilOYapagZvpag==, 1218 + } 837 1219 peerDependencies: 838 - '@types/react': '>=16.14.0 <20.0.0' 839 - '@types/react-dom': '>=16.9.0 <20.0.0' 840 - react: '>=16.14.0 <20.0.0' 841 - react-dom: '>=16.14.0 <20.0.0' 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" 842 1224 843 - '@fluentui/react-link@9.6.6': 844 - resolution: {integrity: sha512-b6hQLNK7L/HJ85XneVszKmnEhxf20DQImcRlMUcdHediJTFuCjoat3DHE6mFNjZEZSfQJTbDsH7rqwA0TOiuvg==} 1225 + "@fluentui/react-link@9.6.6": 1226 + resolution: 1227 + { 1228 + integrity: sha512-b6hQLNK7L/HJ85XneVszKmnEhxf20DQImcRlMUcdHediJTFuCjoat3DHE6mFNjZEZSfQJTbDsH7rqwA0TOiuvg==, 1229 + } 845 1230 peerDependencies: 846 - '@types/react': '>=16.14.0 <20.0.0' 847 - '@types/react-dom': '>=16.9.0 <20.0.0' 848 - react: '>=16.14.0 <20.0.0' 849 - react-dom: '>=16.14.0 <20.0.0' 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" 850 1235 851 - '@fluentui/react-list@9.6.1': 852 - resolution: {integrity: sha512-eoYupnsGDGKfpfcOfXhyCHuXz9jiIRmEYZXcrk1fCK+9KYEaSZ3gAqPFY/FWq5xDLs0+exyECfDPAstb7R1fxg==} 1236 + "@fluentui/react-list@9.6.1": 1237 + resolution: 1238 + { 1239 + integrity: sha512-eoYupnsGDGKfpfcOfXhyCHuXz9jiIRmEYZXcrk1fCK+9KYEaSZ3gAqPFY/FWq5xDLs0+exyECfDPAstb7R1fxg==, 1240 + } 853 1241 peerDependencies: 854 - '@types/react': '>=16.8.0 <20.0.0' 855 - '@types/react-dom': '>=16.8.0 <20.0.0' 856 - react: '>=16.14.0 <20.0.0' 857 - react-dom: '>=16.8.0 <20.0.0' 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" 858 1246 859 - '@fluentui/react-menu@9.20.0': 860 - resolution: {integrity: sha512-zKgavux8mhd+H6544hACS+OYG8fi53ndZtocJqTF85ebBA/ndHY2GFZcHLemifRKctjKQsYKNAekg2Bxu4QmgA==} 1247 + "@fluentui/react-menu@9.20.0": 1248 + resolution: 1249 + { 1250 + integrity: sha512-zKgavux8mhd+H6544hACS+OYG8fi53ndZtocJqTF85ebBA/ndHY2GFZcHLemifRKctjKQsYKNAekg2Bxu4QmgA==, 1251 + } 861 1252 peerDependencies: 862 - '@types/react': '>=16.14.0 <20.0.0' 863 - '@types/react-dom': '>=16.9.0 <20.0.0' 864 - react: '>=16.14.0 <20.0.0' 865 - react-dom: '>=16.14.0 <20.0.0' 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" 866 1257 867 - '@fluentui/react-message-bar@9.6.8': 868 - resolution: {integrity: sha512-XSPOSLtXzW7xXqA5I1gJa88xyV+kwOPhgadmYfPEfTAOeqYYzCqnJnI5ZSnMgjDQuCotzgvLT/hGxTGIhb9MFw==} 1258 + "@fluentui/react-message-bar@9.6.8": 1259 + resolution: 1260 + { 1261 + integrity: sha512-XSPOSLtXzW7xXqA5I1gJa88xyV+kwOPhgadmYfPEfTAOeqYYzCqnJnI5ZSnMgjDQuCotzgvLT/hGxTGIhb9MFw==, 1262 + } 869 1263 peerDependencies: 870 - '@types/react': '>=16.8.0 <20.0.0' 871 - '@types/react-dom': '>=16.8.0 <20.0.0' 872 - react: '>=16.14.0 <20.0.0' 873 - react-dom: '>=16.8.0 <20.0.0' 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" 874 1268 875 - '@fluentui/react-motion-components-preview@0.11.0': 876 - resolution: {integrity: sha512-IIG3FI31AUaiyp56+4g9gx1J4W2UqUj0s6vpMB9zkIZ+KCFEq1x47H7b0kARHdGUc0voMY2OGPQQeewFcukUaw==} 1269 + "@fluentui/react-motion-components-preview@0.11.0": 1270 + resolution: 1271 + { 1272 + integrity: sha512-IIG3FI31AUaiyp56+4g9gx1J4W2UqUj0s6vpMB9zkIZ+KCFEq1x47H7b0kARHdGUc0voMY2OGPQQeewFcukUaw==, 1273 + } 877 1274 peerDependencies: 878 - '@types/react': '>=16.14.0 <20.0.0' 879 - '@types/react-dom': '>=16.9.0 <20.0.0' 880 - react: '>=16.14.0 <20.0.0' 881 - react-dom: '>=16.14.0 <20.0.0' 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" 882 1279 883 - '@fluentui/react-motion@9.11.0': 884 - resolution: {integrity: sha512-X6MAw4zXsV9RwpE9WCVjz3Uwkjgl7A+q2lT+hy0wKSprASQ1g3HZJwTtS6cCuBNijUKge2wIhIquUuk0WCcWqA==} 1280 + "@fluentui/react-motion@9.11.0": 1281 + resolution: 1282 + { 1283 + integrity: sha512-X6MAw4zXsV9RwpE9WCVjz3Uwkjgl7A+q2lT+hy0wKSprASQ1g3HZJwTtS6cCuBNijUKge2wIhIquUuk0WCcWqA==, 1284 + } 885 1285 peerDependencies: 886 - '@types/react': '>=16.8.0 <20.0.0' 887 - '@types/react-dom': '>=16.8.0 <20.0.0' 888 - react: '>=16.14.0 <20.0.0' 889 - react-dom: '>=16.8.0 <20.0.0' 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" 890 1290 891 - '@fluentui/react-nav@9.3.8': 892 - resolution: {integrity: sha512-UwFxa5qlBJLS7nNXLBVo9bhbxjIbIOSe2shAEJcOFK1ziPfOTUIBFalYvmSZGK1bNAq2lvuSY2lVMkiMHS7Y2Q==} 1291 + "@fluentui/react-nav@9.3.8": 1292 + resolution: 1293 + { 1294 + integrity: sha512-UwFxa5qlBJLS7nNXLBVo9bhbxjIbIOSe2shAEJcOFK1ziPfOTUIBFalYvmSZGK1bNAq2lvuSY2lVMkiMHS7Y2Q==, 1295 + } 893 1296 peerDependencies: 894 - '@types/react': '>=16.14.0 <20.0.0' 895 - '@types/react-dom': '>=16.9.0 <20.0.0' 896 - react: '>=16.14.0 <20.0.0' 897 - react-dom: '>=16.14.0 <20.0.0' 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" 898 1301 899 - '@fluentui/react-overflow@9.6.0': 900 - resolution: {integrity: sha512-ZzjBuNQXHEp84lGPzJOeZjPcsStugUEzzDiDp/0v9LdF3EZoBmq8/4Z7nZfqoTU+oHXOy2mGkhpCKTrXgawXOw==} 1302 + "@fluentui/react-overflow@9.6.0": 1303 + resolution: 1304 + { 1305 + integrity: sha512-ZzjBuNQXHEp84lGPzJOeZjPcsStugUEzzDiDp/0v9LdF3EZoBmq8/4Z7nZfqoTU+oHXOy2mGkhpCKTrXgawXOw==, 1306 + } 901 1307 peerDependencies: 902 - '@types/react': '>=16.14.0 <20.0.0' 903 - '@types/react-dom': '>=16.9.0 <20.0.0' 904 - react: '>=16.14.0 <20.0.0' 905 - react-dom: '>=16.14.0 <20.0.0' 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" 906 1312 907 - '@fluentui/react-persona@9.5.7': 908 - resolution: {integrity: sha512-4dPcmnE4jX8IUgOxZu+aWQ+XhqTcJ5ISK1VwDxujH3JQbjOK/4aQjUBTwQWfRej0/lfT74ktD/CorcdB7Wz6CA==} 1313 + "@fluentui/react-persona@9.5.7": 1314 + resolution: 1315 + { 1316 + integrity: sha512-4dPcmnE4jX8IUgOxZu+aWQ+XhqTcJ5ISK1VwDxujH3JQbjOK/4aQjUBTwQWfRej0/lfT74ktD/CorcdB7Wz6CA==, 1317 + } 909 1318 peerDependencies: 910 - '@types/react': '>=16.14.0 <20.0.0' 911 - '@types/react-dom': '>=16.9.0 <20.0.0' 912 - react: '>=16.14.0 <20.0.0' 913 - react-dom: '>=16.14.0 <20.0.0' 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" 914 1323 915 - '@fluentui/react-popover@9.12.7': 916 - resolution: {integrity: sha512-AkbtGCEG6OwpeXQ4RjorOw56Qnlh7ndf5Lb7P8x/2jmXyi2BusJy0qAJ9cqpt3n5Y31dt1dJ2e+DNk7A1tu23w==} 1324 + "@fluentui/react-popover@9.12.7": 1325 + resolution: 1326 + { 1327 + integrity: sha512-AkbtGCEG6OwpeXQ4RjorOw56Qnlh7ndf5Lb7P8x/2jmXyi2BusJy0qAJ9cqpt3n5Y31dt1dJ2e+DNk7A1tu23w==, 1328 + } 917 1329 peerDependencies: 918 - '@types/react': '>=16.14.0 <20.0.0' 919 - '@types/react-dom': '>=16.9.0 <20.0.0' 920 - react: '>=16.14.0 <20.0.0' 921 - react-dom: '>=16.14.0 <20.0.0' 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" 922 1334 923 - '@fluentui/react-portal@9.8.3': 924 - resolution: {integrity: sha512-+i2TW9pQ/Oz7PAKxssbonStD4kcgkzsaKZrhTfK9rynSpy3YR4DpyHPzd/5ioJgSKFlqTnoBBCu5zVFohXI6gw==} 1335 + "@fluentui/react-portal@9.8.3": 1336 + resolution: 1337 + { 1338 + integrity: sha512-+i2TW9pQ/Oz7PAKxssbonStD4kcgkzsaKZrhTfK9rynSpy3YR4DpyHPzd/5ioJgSKFlqTnoBBCu5zVFohXI6gw==, 1339 + } 925 1340 peerDependencies: 926 - '@types/react': '>=16.14.0 <20.0.0' 927 - '@types/react-dom': '>=16.9.0 <20.0.0' 928 - react: '>=16.14.0 <20.0.0' 929 - react-dom: '>=16.14.0 <20.0.0' 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" 930 1345 931 - '@fluentui/react-positioning@9.20.6': 932 - resolution: {integrity: sha512-g4/XRftuW/MztCC2pYVvlfHExmWRqOqgwQu9MoWglTuZFz9rSTTonCNSKJLIsZQYV9BpqFXDHUe8v+pqyDNZ2g==} 1346 + "@fluentui/react-positioning@9.20.6": 1347 + resolution: 1348 + { 1349 + integrity: sha512-g4/XRftuW/MztCC2pYVvlfHExmWRqOqgwQu9MoWglTuZFz9rSTTonCNSKJLIsZQYV9BpqFXDHUe8v+pqyDNZ2g==, 1350 + } 933 1351 peerDependencies: 934 - '@types/react': '>=16.14.0 <20.0.0' 935 - '@types/react-dom': '>=16.9.0 <20.0.0' 936 - react: '>=16.14.0 <20.0.0' 937 - react-dom: '>=16.14.0 <20.0.0' 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" 938 1356 939 - '@fluentui/react-progress@9.4.6': 940 - resolution: {integrity: sha512-zDmSmsTGaM9rPk9lQ6wKcG8kkM9UHtzJdsXPfvPKj8K7gP1Oyha7yb5hIlX45q0YeWG+3nweQYz9WNnoAAAsQQ==} 1357 + "@fluentui/react-progress@9.4.6": 1358 + resolution: 1359 + { 1360 + integrity: sha512-zDmSmsTGaM9rPk9lQ6wKcG8kkM9UHtzJdsXPfvPKj8K7gP1Oyha7yb5hIlX45q0YeWG+3nweQYz9WNnoAAAsQQ==, 1361 + } 941 1362 peerDependencies: 942 - '@types/react': '>=16.14.0 <20.0.0' 943 - '@types/react-dom': '>=16.9.0 <20.0.0' 944 - react: '>=16.14.0 <20.0.0' 945 - react-dom: '>=16.14.0 <20.0.0' 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" 946 1367 947 - '@fluentui/react-provider@9.22.6': 948 - resolution: {integrity: sha512-vHShKHYeZptf+Jc6O+ZVGTjU0fo0OzqrzSpcEeQ9iuRF2XPvhTldE0Q67KYeCe5eQJsiDH7wYM6Hjt7UihNmOA==} 1368 + "@fluentui/react-provider@9.22.6": 1369 + resolution: 1370 + { 1371 + integrity: sha512-vHShKHYeZptf+Jc6O+ZVGTjU0fo0OzqrzSpcEeQ9iuRF2XPvhTldE0Q67KYeCe5eQJsiDH7wYM6Hjt7UihNmOA==, 1372 + } 949 1373 peerDependencies: 950 - '@types/react': '>=16.14.0 <20.0.0' 951 - '@types/react-dom': '>=16.9.0 <20.0.0' 952 - react: '>=16.14.0 <20.0.0' 953 - react-dom: '>=16.14.0 <20.0.0' 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" 954 1378 955 - '@fluentui/react-radio@9.5.6': 956 - resolution: {integrity: sha512-MT6AFJ3GuL5JgZ22xSbHlxO0RUVaJJUW5eq96zy2kqSSzyJxDLLhuNxkoMI/nnlEGlzkSipM5WOxutYfOhJTwQ==} 1379 + "@fluentui/react-radio@9.5.6": 1380 + resolution: 1381 + { 1382 + integrity: sha512-MT6AFJ3GuL5JgZ22xSbHlxO0RUVaJJUW5eq96zy2kqSSzyJxDLLhuNxkoMI/nnlEGlzkSipM5WOxutYfOhJTwQ==, 1383 + } 957 1384 peerDependencies: 958 - '@types/react': '>=16.14.0 <20.0.0' 959 - '@types/react-dom': '>=16.9.0 <20.0.0' 960 - react: '>=16.14.0 <20.0.0' 961 - react-dom: '>=16.14.0 <20.0.0' 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" 962 1389 963 - '@fluentui/react-rating@9.3.6': 964 - resolution: {integrity: sha512-0mvmcyDDnUUrFOIrM15K1Ie+UTBF3iFL/FDaiTTelL3xlAHSOUksVKStkj4pFsvXb8xNgFjoACvM+COV7DRSLg==} 1390 + "@fluentui/react-rating@9.3.6": 1391 + resolution: 1392 + { 1393 + integrity: sha512-0mvmcyDDnUUrFOIrM15K1Ie+UTBF3iFL/FDaiTTelL3xlAHSOUksVKStkj4pFsvXb8xNgFjoACvM+COV7DRSLg==, 1394 + } 965 1395 peerDependencies: 966 - '@types/react': '>=16.8.0 <20.0.0' 967 - '@types/react-dom': '>=16.8.0 <20.0.0' 968 - react: '>=16.14.0 <20.0.0' 969 - react-dom: '>=16.8.0 <20.0.0' 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" 970 1400 971 - '@fluentui/react-search@9.3.6': 972 - resolution: {integrity: sha512-pvmzcBOqvrQaLiw0gk+Yg0YxFX/qGod3NhoZrXXAI7YrHItMbkqEcECZbtiyoPG+WV+IiSzTGzFw2BlTJq7FCg==} 1401 + "@fluentui/react-search@9.3.6": 1402 + resolution: 1403 + { 1404 + integrity: sha512-pvmzcBOqvrQaLiw0gk+Yg0YxFX/qGod3NhoZrXXAI7YrHItMbkqEcECZbtiyoPG+WV+IiSzTGzFw2BlTJq7FCg==, 1405 + } 973 1406 peerDependencies: 974 - '@types/react': '>=16.14.0 <20.0.0' 975 - '@types/react-dom': '>=16.9.0 <20.0.0' 976 - react: '>=16.14.0 <20.0.0' 977 - react-dom: '>=16.14.0 <20.0.0' 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" 978 1411 979 - '@fluentui/react-select@9.4.6': 980 - resolution: {integrity: sha512-LJ0cl7w6TDsDK6TKQDij3O1TI8mwt3nzuoTcsMlgSQRJZMC/n4nSGRUmX0GHbLCtcWxfFJ3Vy+1e/9NydxLJqA==} 1412 + "@fluentui/react-select@9.4.6": 1413 + resolution: 1414 + { 1415 + integrity: sha512-LJ0cl7w6TDsDK6TKQDij3O1TI8mwt3nzuoTcsMlgSQRJZMC/n4nSGRUmX0GHbLCtcWxfFJ3Vy+1e/9NydxLJqA==, 1416 + } 981 1417 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' 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" 986 1422 987 - '@fluentui/react-shared-contexts@9.25.2': 988 - resolution: {integrity: sha512-PxDVy6RPps3gqee/RESIMXzOlrlVOQ/uQffFMeVniqjW0IPwCs/d2TwJT1Sfh9DCFgnI9onD0GGlBelszzRjmA==} 1423 + "@fluentui/react-shared-contexts@9.25.2": 1424 + resolution: 1425 + { 1426 + integrity: sha512-PxDVy6RPps3gqee/RESIMXzOlrlVOQ/uQffFMeVniqjW0IPwCs/d2TwJT1Sfh9DCFgnI9onD0GGlBelszzRjmA==, 1427 + } 989 1428 peerDependencies: 990 - '@types/react': '>=16.14.0 <20.0.0' 991 - react: '>=16.14.0 <20.0.0' 1429 + "@types/react": ">=16.14.0 <20.0.0" 1430 + react: ">=16.14.0 <20.0.0" 992 1431 993 - '@fluentui/react-skeleton@9.4.6': 994 - resolution: {integrity: sha512-AnGvW28A4equQ0j2uxZHDpwrOrqeE8ZqELhI7pIyRgSwQaIjaxjb0C3tlqQS9jl6456g8NE1hpoanb41ojtqNw==} 1432 + "@fluentui/react-skeleton@9.4.6": 1433 + resolution: 1434 + { 1435 + integrity: sha512-AnGvW28A4equQ0j2uxZHDpwrOrqeE8ZqELhI7pIyRgSwQaIjaxjb0C3tlqQS9jl6456g8NE1hpoanb41ojtqNw==, 1436 + } 995 1437 peerDependencies: 996 - '@types/react': '>=16.14.0 <20.0.0' 997 - '@types/react-dom': '>=16.9.0 <20.0.0' 998 - react: '>=16.14.0 <20.0.0' 999 - react-dom: '>=16.14.0 <20.0.0' 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" 1000 1442 1001 - '@fluentui/react-slider@9.5.6': 1002 - resolution: {integrity: sha512-JoIDXA1GHB9n99EvxOxcxwy6nUVk/p2GYoQ9sWoAvf5QOEQjOsD2QHymtDoVoNWWUKfBE51A8XGnJ80uk0qAcA==} 1443 + "@fluentui/react-slider@9.5.6": 1444 + resolution: 1445 + { 1446 + integrity: sha512-JoIDXA1GHB9n99EvxOxcxwy6nUVk/p2GYoQ9sWoAvf5QOEQjOsD2QHymtDoVoNWWUKfBE51A8XGnJ80uk0qAcA==, 1447 + } 1003 1448 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' 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" 1008 1453 1009 - '@fluentui/react-spinbutton@9.5.6': 1010 - resolution: {integrity: sha512-D+cDKaZjVh+3P/u+G9mcZSKO3riyYYr/D6n7zVhWaFxC2dZxHQpvtCG+8cj1Jgt8FjhZWby4wXKoQfEeja2Yzw==} 1454 + "@fluentui/react-spinbutton@9.5.6": 1455 + resolution: 1456 + { 1457 + integrity: sha512-D+cDKaZjVh+3P/u+G9mcZSKO3riyYYr/D6n7zVhWaFxC2dZxHQpvtCG+8cj1Jgt8FjhZWby4wXKoQfEeja2Yzw==, 1458 + } 1011 1459 peerDependencies: 1012 - '@types/react': '>=16.14.0 <20.0.0' 1013 - '@types/react-dom': '>=16.9.0 <20.0.0' 1014 - react: '>=16.14.0 <20.0.0' 1015 - react-dom: '>=16.14.0 <20.0.0' 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" 1016 1464 1017 - '@fluentui/react-spinner@9.7.6': 1018 - resolution: {integrity: sha512-vOJIXA3GI75n2hoVCWm10ZzqmCqKR5ZQV4naSd3koJ4cb/6AMYHGVzfy41KTuybTUtkPbN1RRfjFcwv9HGncew==} 1465 + "@fluentui/react-spinner@9.7.6": 1466 + resolution: 1467 + { 1468 + integrity: sha512-vOJIXA3GI75n2hoVCWm10ZzqmCqKR5ZQV4naSd3koJ4cb/6AMYHGVzfy41KTuybTUtkPbN1RRfjFcwv9HGncew==, 1469 + } 1019 1470 peerDependencies: 1020 - '@types/react': '>=16.14.0 <20.0.0' 1021 - '@types/react-dom': '>=16.9.0 <20.0.0' 1022 - react: '>=16.14.0 <20.0.0' 1023 - react-dom: '>=16.14.0 <20.0.0' 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" 1024 1475 1025 - '@fluentui/react-swatch-picker@9.4.6': 1026 - resolution: {integrity: sha512-c1ZJqjcpb+PjzqkHh9G3N3iXUq9t31b7HXdNwQJ2gKzi8kiGL8LFgmGCzhbUeGsZNmV0rkQAxfp6nzKGXSSr7g==} 1476 + "@fluentui/react-swatch-picker@9.4.6": 1477 + resolution: 1478 + { 1479 + integrity: sha512-c1ZJqjcpb+PjzqkHh9G3N3iXUq9t31b7HXdNwQJ2gKzi8kiGL8LFgmGCzhbUeGsZNmV0rkQAxfp6nzKGXSSr7g==, 1480 + } 1027 1481 peerDependencies: 1028 - '@types/react': '>=16.8.0 <20.0.0' 1029 - '@types/react-dom': '>=16.8.0 <20.0.0' 1030 - react: '>=16.14.0 <20.0.0' 1031 - react-dom: '>=16.8.0 <20.0.0' 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" 1032 1486 1033 - '@fluentui/react-switch@9.4.6': 1034 - resolution: {integrity: sha512-FNMWwHbD7GxwtOZJArSc2wRo2Dg4l2VUjHTYBL5yeS4cmDnVjCaChMCDPHxocv86upw3Uom1VSWLssUzXRNN1w==} 1487 + "@fluentui/react-switch@9.4.6": 1488 + resolution: 1489 + { 1490 + integrity: sha512-FNMWwHbD7GxwtOZJArSc2wRo2Dg4l2VUjHTYBL5yeS4cmDnVjCaChMCDPHxocv86upw3Uom1VSWLssUzXRNN1w==, 1491 + } 1035 1492 peerDependencies: 1036 - '@types/react': '>=16.14.0 <20.0.0' 1037 - '@types/react-dom': '>=16.9.0 <20.0.0' 1038 - react: '>=16.14.0 <20.0.0' 1039 - react-dom: '>=16.14.0 <20.0.0' 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" 1040 1497 1041 - '@fluentui/react-table@9.19.0': 1042 - resolution: {integrity: sha512-4XR2XNp5iq4sY3MtkEnuUBLu7BZ4xhGnyrnZ3eFb23TP3ERZTXx0oewpyURscERSv05czV3fwFjvT2gsQPy4Pw==} 1498 + "@fluentui/react-table@9.19.0": 1499 + resolution: 1500 + { 1501 + integrity: sha512-4XR2XNp5iq4sY3MtkEnuUBLu7BZ4xhGnyrnZ3eFb23TP3ERZTXx0oewpyURscERSv05czV3fwFjvT2gsQPy4Pw==, 1502 + } 1043 1503 peerDependencies: 1044 - '@types/react': '>=16.14.0 <20.0.0' 1045 - '@types/react-dom': '>=16.9.0 <20.0.0' 1046 - react: '>=16.14.0 <20.0.0' 1047 - react-dom: '>=16.14.0 <20.0.0' 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" 1048 1508 1049 - '@fluentui/react-tabs@9.10.2': 1050 - resolution: {integrity: sha512-aK4QVtCN3LQ40MR2/5LGb/reyBsCPsPnEjkifSQn8YrhJbkt0XRFMyIgJJ+EOOUadvQxEXEDDbz/PNpZFWoQCQ==} 1509 + "@fluentui/react-tabs@9.10.2": 1510 + resolution: 1511 + { 1512 + integrity: sha512-aK4QVtCN3LQ40MR2/5LGb/reyBsCPsPnEjkifSQn8YrhJbkt0XRFMyIgJJ+EOOUadvQxEXEDDbz/PNpZFWoQCQ==, 1513 + } 1051 1514 peerDependencies: 1052 - '@types/react': '>=16.14.0 <20.0.0' 1053 - '@types/react-dom': '>=16.9.0 <20.0.0' 1054 - react: '>=16.14.0 <20.0.0' 1055 - react-dom: '>=16.14.0 <20.0.0' 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" 1056 1519 1057 - '@fluentui/react-tabster@9.26.6': 1058 - resolution: {integrity: sha512-4uk8O7S3qEkixjP2PnB4FvXxNqFKMVRetS3bCsc0T7MLufWtFYMqIfxSrdqyxvtLKMPdMohWmdeOu7E4X+ef6Q==} 1520 + "@fluentui/react-tabster@9.26.6": 1521 + resolution: 1522 + { 1523 + integrity: sha512-4uk8O7S3qEkixjP2PnB4FvXxNqFKMVRetS3bCsc0T7MLufWtFYMqIfxSrdqyxvtLKMPdMohWmdeOu7E4X+ef6Q==, 1524 + } 1059 1525 peerDependencies: 1060 - '@types/react': '>=16.14.0 <20.0.0' 1061 - '@types/react-dom': '>=16.9.0 <20.0.0' 1062 - react: '>=16.14.0 <20.0.0' 1063 - react-dom: '>=16.14.0 <20.0.0' 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" 1064 1530 1065 - '@fluentui/react-tag-picker@9.7.7': 1066 - resolution: {integrity: sha512-yN8x01vvEt4C9SZHtF4OyUmIP2wFjjAcEqWY1ofwyICKsI9Xc23OANsIWBR9QdvM6jISJ7slwcwcgfP8JmyOSA==} 1531 + "@fluentui/react-tag-picker@9.7.7": 1532 + resolution: 1533 + { 1534 + integrity: sha512-yN8x01vvEt4C9SZHtF4OyUmIP2wFjjAcEqWY1ofwyICKsI9Xc23OANsIWBR9QdvM6jISJ7slwcwcgfP8JmyOSA==, 1535 + } 1067 1536 peerDependencies: 1068 - '@types/react': '>=16.14.0 <20.0.0' 1069 - '@types/react-dom': '>=16.9.0 <20.0.0' 1070 - react: '>=16.14.0 <20.0.0' 1071 - react-dom: '>=16.14.0 <20.0.0' 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" 1072 1541 1073 - '@fluentui/react-tags@9.7.7': 1074 - resolution: {integrity: sha512-TZ9Cc73hdCFzOBDvL3pQthndlVnGByn+l3vKyAu5kT6pWzrC7gfiWXHsUVUDzLQ8XyFDq1G4vCYfq+949OYyAg==} 1542 + "@fluentui/react-tags@9.7.7": 1543 + resolution: 1544 + { 1545 + integrity: sha512-TZ9Cc73hdCFzOBDvL3pQthndlVnGByn+l3vKyAu5kT6pWzrC7gfiWXHsUVUDzLQ8XyFDq1G4vCYfq+949OYyAg==, 1546 + } 1075 1547 peerDependencies: 1076 - '@types/react': '>=16.14.0 <20.0.0' 1077 - '@types/react-dom': '>=16.9.0 <20.0.0' 1078 - react: '>=16.14.0 <20.0.0' 1079 - react-dom: '>=16.14.0 <20.0.0' 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" 1080 1552 1081 - '@fluentui/react-teaching-popover@9.6.7': 1082 - resolution: {integrity: sha512-SIXQLP4NKhv5E6hUCR2eMgg+MBehfuHWSygvf8yEZKaoGjgN/4bg/4Rn64Ld6cELcXcHpg7/0tFmDxgxycSU4w==} 1553 + "@fluentui/react-teaching-popover@9.6.7": 1554 + resolution: 1555 + { 1556 + integrity: sha512-SIXQLP4NKhv5E6hUCR2eMgg+MBehfuHWSygvf8yEZKaoGjgN/4bg/4Rn64Ld6cELcXcHpg7/0tFmDxgxycSU4w==, 1557 + } 1083 1558 peerDependencies: 1084 - '@types/react': '>=16.8.0 <20.0.0' 1085 - '@types/react-dom': '>=16.8.0 <20.0.0' 1086 - react: '>=16.14.0 <20.0.0' 1087 - react-dom: '>=16.8.0 <20.0.0' 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" 1088 1563 1089 - '@fluentui/react-text@9.6.6': 1090 - resolution: {integrity: sha512-WfxzfE3LnGLAy+7w1elVkUwcnCgoVtGVysfYNbQYqs7eEDp7c7asRkVn++nWYGFALu2S0OCthYj98JT5VZlccA==} 1564 + "@fluentui/react-text@9.6.6": 1565 + resolution: 1566 + { 1567 + integrity: sha512-WfxzfE3LnGLAy+7w1elVkUwcnCgoVtGVysfYNbQYqs7eEDp7c7asRkVn++nWYGFALu2S0OCthYj98JT5VZlccA==, 1568 + } 1091 1569 peerDependencies: 1092 - '@types/react': '>=16.14.0 <20.0.0' 1093 - '@types/react-dom': '>=16.9.0 <20.0.0' 1094 - react: '>=16.14.0 <20.0.0' 1095 - react-dom: '>=16.14.0 <20.0.0' 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" 1096 1574 1097 - '@fluentui/react-textarea@9.6.6': 1098 - resolution: {integrity: sha512-opxqQg+6IexnjW4XJrrueaU66dznDq7h5zjg6KoVR6RscYaqWpythrW2ragZujXQifouUHcrkw+BnwmnAuollw==} 1575 + "@fluentui/react-textarea@9.6.6": 1576 + resolution: 1577 + { 1578 + integrity: sha512-opxqQg+6IexnjW4XJrrueaU66dznDq7h5zjg6KoVR6RscYaqWpythrW2ragZujXQifouUHcrkw+BnwmnAuollw==, 1579 + } 1099 1580 peerDependencies: 1100 - '@types/react': '>=16.14.0 <20.0.0' 1101 - '@types/react-dom': '>=16.9.0 <20.0.0' 1102 - react: '>=16.14.0 <20.0.0' 1103 - react-dom: '>=16.14.0 <20.0.0' 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" 1104 1585 1105 - '@fluentui/react-theme@9.2.0': 1106 - resolution: {integrity: sha512-Q0zp/MY1m5RjlkcwMcjn/PQRT2T+q3bgxuxWbhgaD07V+tLzBhGROvuqbsdg4YWF/IK21zPfLhmGyifhEu0DnQ==} 1586 + "@fluentui/react-theme@9.2.0": 1587 + resolution: 1588 + { 1589 + integrity: sha512-Q0zp/MY1m5RjlkcwMcjn/PQRT2T+q3bgxuxWbhgaD07V+tLzBhGROvuqbsdg4YWF/IK21zPfLhmGyifhEu0DnQ==, 1590 + } 1107 1591 1108 - '@fluentui/react-toast@9.7.3': 1109 - resolution: {integrity: sha512-JuuOwvzCT+RK3X6IuZGLS3267cg3/DWQ9hlmP3ZThkHKabO/MYyFYTvry+Id5IDBBzFfyoV5M3L7T8MVwAbhYg==} 1592 + "@fluentui/react-toast@9.7.3": 1593 + resolution: 1594 + { 1595 + integrity: sha512-JuuOwvzCT+RK3X6IuZGLS3267cg3/DWQ9hlmP3ZThkHKabO/MYyFYTvry+Id5IDBBzFfyoV5M3L7T8MVwAbhYg==, 1596 + } 1110 1597 peerDependencies: 1111 - '@types/react': '>=16.14.0 <20.0.0' 1112 - '@types/react-dom': '>=16.9.0 <20.0.0' 1113 - react: '>=16.14.0 <20.0.0' 1114 - react-dom: '>=16.14.0 <20.0.0' 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" 1115 1602 1116 - '@fluentui/react-toolbar@9.6.7': 1117 - resolution: {integrity: sha512-EaBT312aP3WXCwc9vUP/6diNdGUEtFSBbPupolkvM7l3Hqt2NaEgN86RMPubykCbwV4SoJvOQCTxgtsYKCK0gg==} 1603 + "@fluentui/react-toolbar@9.6.7": 1604 + resolution: 1605 + { 1606 + integrity: sha512-EaBT312aP3WXCwc9vUP/6diNdGUEtFSBbPupolkvM7l3Hqt2NaEgN86RMPubykCbwV4SoJvOQCTxgtsYKCK0gg==, 1607 + } 1118 1608 peerDependencies: 1119 - '@types/react': '>=16.14.0 <20.0.0' 1120 - '@types/react-dom': '>=16.9.0 <20.0.0' 1121 - react: '>=16.14.0 <20.0.0' 1122 - react-dom: '>=16.14.0 <20.0.0' 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" 1123 1613 1124 - '@fluentui/react-tooltip@9.8.6': 1125 - resolution: {integrity: sha512-ue72LCnpTyLUvTNA+KWao0zt8T2BQsQdigY1rXwXUu6PQi4X8TKdZsOMaXCe/pzBDKWk9Du0ClZq7JWw3/mKig==} 1614 + "@fluentui/react-tooltip@9.8.6": 1615 + resolution: 1616 + { 1617 + integrity: sha512-ue72LCnpTyLUvTNA+KWao0zt8T2BQsQdigY1rXwXUu6PQi4X8TKdZsOMaXCe/pzBDKWk9Du0ClZq7JWw3/mKig==, 1618 + } 1126 1619 peerDependencies: 1127 - '@types/react': '>=16.14.0 <20.0.0' 1128 - '@types/react-dom': '>=16.9.0 <20.0.0' 1129 - react: '>=16.14.0 <20.0.0' 1130 - react-dom: '>=16.14.0 <20.0.0' 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" 1131 1624 1132 - '@fluentui/react-tree@9.14.1': 1133 - resolution: {integrity: sha512-SEo96G127Zkd8lsy84vgZNwI92B2B54C7dSOttYihIv9EjVTjcEY8NzwYLacblc6HZX+l+5e1n6rY6iaZq67rg==} 1625 + "@fluentui/react-tree@9.14.1": 1626 + resolution: 1627 + { 1628 + integrity: sha512-SEo96G127Zkd8lsy84vgZNwI92B2B54C7dSOttYihIv9EjVTjcEY8NzwYLacblc6HZX+l+5e1n6rY6iaZq67rg==, 1629 + } 1134 1630 peerDependencies: 1135 - '@types/react': '>=16.14.0 <20.0.0' 1136 - '@types/react-dom': '>=16.9.0 <20.0.0' 1137 - react: '>=16.14.0 <20.0.0' 1138 - react-dom: '>=16.14.0 <20.0.0' 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" 1139 1635 1140 - '@fluentui/react-utilities@9.25.0': 1141 - resolution: {integrity: sha512-ZuQ1jjNZ9DKxnnwPnQFTnjgt7qEWHttgaNdAoJlbqk1MG9zZYcuglEMLzj0wajPdkVuOOuS9LhSbbdCoW1aSsA==} 1636 + "@fluentui/react-utilities@9.25.0": 1637 + resolution: 1638 + { 1639 + integrity: sha512-ZuQ1jjNZ9DKxnnwPnQFTnjgt7qEWHttgaNdAoJlbqk1MG9zZYcuglEMLzj0wajPdkVuOOuS9LhSbbdCoW1aSsA==, 1640 + } 1142 1641 peerDependencies: 1143 - '@types/react': '>=16.14.0 <20.0.0' 1144 - react: '>=16.14.0 <20.0.0' 1642 + "@types/react": ">=16.14.0 <20.0.0" 1643 + react: ">=16.14.0 <20.0.0" 1145 1644 1146 - '@fluentui/react-virtualizer@9.0.0-alpha.102': 1147 - resolution: {integrity: sha512-kt/kuAMTKTTY/00ToUlgUwUCty2HGj4Tnr+fxKRmr7Ziy5VWhi1YoNJ8vcgmxog5J90t4tS29LB0LP0KztQUVg==} 1645 + "@fluentui/react-virtualizer@9.0.0-alpha.102": 1646 + resolution: 1647 + { 1648 + integrity: sha512-kt/kuAMTKTTY/00ToUlgUwUCty2HGj4Tnr+fxKRmr7Ziy5VWhi1YoNJ8vcgmxog5J90t4tS29LB0LP0KztQUVg==, 1649 + } 1148 1650 peerDependencies: 1149 - '@types/react': '>=16.14.0 <19.0.0' 1150 - '@types/react-dom': '>=16.9.0 <19.0.0' 1151 - react: '>=16.14.0 <19.0.0' 1152 - react-dom: '>=16.14.0 <19.0.0' 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" 1153 1655 1154 - '@fluentui/tokens@1.0.0-alpha.22': 1155 - resolution: {integrity: sha512-i9fgYyyCWFRdUi+vQwnV6hp7wpLGK4p09B+O/f2u71GBXzPuniubPYvrIJYtl444DD6shLjYToJhQ1S6XTFwLg==} 1656 + "@fluentui/tokens@1.0.0-alpha.22": 1657 + resolution: 1658 + { 1659 + integrity: sha512-i9fgYyyCWFRdUi+vQwnV6hp7wpLGK4p09B+O/f2u71GBXzPuniubPYvrIJYtl444DD6shLjYToJhQ1S6XTFwLg==, 1660 + } 1156 1661 1157 - '@griffel/core@1.19.2': 1158 - resolution: {integrity: sha512-WkB/QQkjy9dE4vrNYGhQvRRUHFkYVOuaznVOMNTDT4pS9aTJ9XPrMTXXlkpcwaf0D3vNKoerj4zAwnU2lBzbOg==} 1662 + "@griffel/core@1.19.2": 1663 + resolution: 1664 + { 1665 + integrity: sha512-WkB/QQkjy9dE4vrNYGhQvRRUHFkYVOuaznVOMNTDT4pS9aTJ9XPrMTXXlkpcwaf0D3vNKoerj4zAwnU2lBzbOg==, 1666 + } 1159 1667 1160 - '@griffel/react@1.5.30': 1161 - resolution: {integrity: sha512-1q4ojbEVFY5YA0j1NamP0WWF4BKh+GHsVugltDYeEgEaVbH3odJ7tJabuhQgY+7Nhka0pyEFWSiHJev0K3FSew==} 1668 + "@griffel/react@1.5.30": 1669 + resolution: 1670 + { 1671 + integrity: sha512-1q4ojbEVFY5YA0j1NamP0WWF4BKh+GHsVugltDYeEgEaVbH3odJ7tJabuhQgY+7Nhka0pyEFWSiHJev0K3FSew==, 1672 + } 1162 1673 peerDependencies: 1163 - react: '>=16.8.0 <20.0.0' 1674 + react: ">=16.8.0 <20.0.0" 1164 1675 1165 - '@griffel/style-types@1.3.0': 1166 - resolution: {integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==} 1676 + "@griffel/style-types@1.3.0": 1677 + resolution: 1678 + { 1679 + integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==, 1680 + } 1167 1681 1168 - '@img/colour@1.0.0': 1169 - resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} 1170 - engines: {node: '>=18'} 1682 + "@img/colour@1.0.0": 1683 + resolution: 1684 + { 1685 + integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==, 1686 + } 1687 + engines: { node: ">=18" } 1171 1688 1172 - '@img/sharp-darwin-arm64@0.34.4': 1173 - resolution: {integrity: sha512-sitdlPzDVyvmINUdJle3TNHl+AG9QcwiAMsXmccqsCOMZNIdW2/7S26w0LyU8euiLVzFBL3dXPwVCq/ODnf2vA==} 1174 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1695 cpu: [arm64] 1176 1696 os: [darwin] 1177 1697 1178 - '@img/sharp-darwin-x64@0.34.4': 1179 - resolution: {integrity: sha512-rZheupWIoa3+SOdF/IcUe1ah4ZDpKBGWcsPX6MT0lYniH9micvIU7HQkYTfrx5Xi8u+YqwLtxC/3vl8TQN6rMg==} 1180 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1704 cpu: [x64] 1182 1705 os: [darwin] 1183 1706 1184 - '@img/sharp-libvips-darwin-arm64@1.2.3': 1185 - resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==} 1707 + "@img/sharp-libvips-darwin-arm64@1.2.3": 1708 + resolution: 1709 + { 1710 + integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==, 1711 + } 1186 1712 cpu: [arm64] 1187 1713 os: [darwin] 1188 1714 1189 - '@img/sharp-libvips-darwin-x64@1.2.3': 1190 - resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==} 1715 + "@img/sharp-libvips-darwin-x64@1.2.3": 1716 + resolution: 1717 + { 1718 + integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==, 1719 + } 1191 1720 cpu: [x64] 1192 1721 os: [darwin] 1193 1722 1194 - '@img/sharp-libvips-linux-arm64@1.2.3': 1195 - resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==} 1723 + "@img/sharp-libvips-linux-arm64@1.2.3": 1724 + resolution: 1725 + { 1726 + integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==, 1727 + } 1196 1728 cpu: [arm64] 1197 1729 os: [linux] 1198 1730 1199 - '@img/sharp-libvips-linux-arm@1.2.3': 1200 - resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==} 1731 + "@img/sharp-libvips-linux-arm@1.2.3": 1732 + resolution: 1733 + { 1734 + integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==, 1735 + } 1201 1736 cpu: [arm] 1202 1737 os: [linux] 1203 1738 1204 - '@img/sharp-libvips-linux-ppc64@1.2.3': 1205 - resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==} 1739 + "@img/sharp-libvips-linux-ppc64@1.2.3": 1740 + resolution: 1741 + { 1742 + integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==, 1743 + } 1206 1744 cpu: [ppc64] 1207 1745 os: [linux] 1208 1746 1209 - '@img/sharp-libvips-linux-s390x@1.2.3': 1210 - resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==} 1747 + "@img/sharp-libvips-linux-s390x@1.2.3": 1748 + resolution: 1749 + { 1750 + integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==, 1751 + } 1211 1752 cpu: [s390x] 1212 1753 os: [linux] 1213 1754 1214 - '@img/sharp-libvips-linux-x64@1.2.3': 1215 - resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==} 1755 + "@img/sharp-libvips-linux-x64@1.2.3": 1756 + resolution: 1757 + { 1758 + integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==, 1759 + } 1216 1760 cpu: [x64] 1217 1761 os: [linux] 1218 1762 1219 - '@img/sharp-libvips-linuxmusl-arm64@1.2.3': 1220 - resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==} 1763 + "@img/sharp-libvips-linuxmusl-arm64@1.2.3": 1764 + resolution: 1765 + { 1766 + integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==, 1767 + } 1221 1768 cpu: [arm64] 1222 1769 os: [linux] 1223 1770 1224 - '@img/sharp-libvips-linuxmusl-x64@1.2.3': 1225 - resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==} 1771 + "@img/sharp-libvips-linuxmusl-x64@1.2.3": 1772 + resolution: 1773 + { 1774 + integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==, 1775 + } 1226 1776 cpu: [x64] 1227 1777 os: [linux] 1228 1778 1229 - '@img/sharp-linux-arm64@0.34.4': 1230 - resolution: {integrity: sha512-YXU1F/mN/Wu786tl72CyJjP/Ngl8mGHN1hST4BGl+hiW5jhCnV2uRVTNOcaYPs73NeT/H8Upm3y9582JVuZHrQ==} 1231 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1785 cpu: [arm64] 1233 1786 os: [linux] 1234 1787 1235 - '@img/sharp-linux-arm@0.34.4': 1236 - resolution: {integrity: sha512-Xyam4mlqM0KkTHYVSuc6wXRmM7LGN0P12li03jAnZ3EJWZqj83+hi8Y9UxZUbxsgsK1qOEwg7O0Bc0LjqQVtxA==} 1237 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1794 cpu: [arm] 1239 1795 os: [linux] 1240 1796 1241 - '@img/sharp-linux-ppc64@0.34.4': 1242 - resolution: {integrity: sha512-F4PDtF4Cy8L8hXA2p3TO6s4aDt93v+LKmpcYFLAVdkkD3hSxZzee0rh6/+94FpAynsuMpLX5h+LRsSG3rIciUQ==} 1243 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1803 cpu: [ppc64] 1245 1804 os: [linux] 1246 1805 1247 - '@img/sharp-linux-s390x@0.34.4': 1248 - resolution: {integrity: sha512-qVrZKE9Bsnzy+myf7lFKvng6bQzhNUAYcVORq2P7bDlvmF6u2sCmK2KyEQEBdYk+u3T01pVsPrkj943T1aJAsw==} 1249 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1812 cpu: [s390x] 1251 1813 os: [linux] 1252 1814 1253 - '@img/sharp-linux-x64@0.34.4': 1254 - resolution: {integrity: sha512-ZfGtcp2xS51iG79c6Vhw9CWqQC8l2Ot8dygxoDoIQPTat/Ov3qAa8qpxSrtAEAJW+UjTXc4yxCjNfxm4h6Xm2A==} 1255 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1821 cpu: [x64] 1257 1822 os: [linux] 1258 1823 1259 - '@img/sharp-linuxmusl-arm64@0.34.4': 1260 - resolution: {integrity: sha512-8hDVvW9eu4yHWnjaOOR8kHVrew1iIX+MUgwxSuH2XyYeNRtLUe4VNioSqbNkB7ZYQJj9rUTT4PyRscyk2PXFKA==} 1261 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1830 cpu: [arm64] 1263 1831 os: [linux] 1264 1832 1265 - '@img/sharp-linuxmusl-x64@0.34.4': 1266 - resolution: {integrity: sha512-lU0aA5L8QTlfKjpDCEFOZsTYGn3AEiO6db8W5aQDxj0nQkVrZWmN3ZP9sYKWJdtq3PWPhUNlqehWyXpYDcI9Sg==} 1267 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1839 cpu: [x64] 1269 1840 os: [linux] 1270 1841 1271 - '@img/sharp-wasm32@0.34.4': 1272 - resolution: {integrity: sha512-33QL6ZO/qpRyG7woB/HUALz28WnTMI2W1jgX3Nu2bypqLIKx/QKMILLJzJjI+SIbvXdG9fUnmrxR7vbi1sTBeA==} 1273 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1848 cpu: [wasm32] 1275 1849 1276 - '@img/sharp-win32-arm64@0.34.4': 1277 - resolution: {integrity: sha512-2Q250do/5WXTwxW3zjsEuMSv5sUU4Tq9VThWKlU2EYLm4MB7ZeMwF+SFJutldYODXF6jzc6YEOC+VfX0SZQPqA==} 1278 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1856 cpu: [arm64] 1280 1857 os: [win32] 1281 1858 1282 - '@img/sharp-win32-ia32@0.34.4': 1283 - resolution: {integrity: sha512-3ZeLue5V82dT92CNL6rsal6I2weKw1cYu+rGKm8fOCCtJTR2gYeUfY3FqUnIJsMUPIH68oS5jmZ0NiJ508YpEw==} 1284 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1865 cpu: [ia32] 1286 1866 os: [win32] 1287 1867 1288 - '@img/sharp-win32-x64@0.34.4': 1289 - resolution: {integrity: sha512-xIyj4wpYs8J18sVN3mSQjwrw7fKUqRw+Z5rnHNCy5fYTxigBz81u5mOMPmFumwjcn8+ld1ppptMBCLic1nz6ig==} 1290 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 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 1874 cpu: [x64] 1292 1875 os: [win32] 1293 1876 1294 - '@inquirer/ansi@1.0.0': 1295 - resolution: {integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==} 1296 - engines: {node: '>=18'} 1877 + "@inquirer/ansi@1.0.0": 1878 + resolution: 1879 + { 1880 + integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==, 1881 + } 1882 + engines: { node: ">=18" } 1297 1883 1298 - '@inquirer/checkbox@4.2.4': 1299 - resolution: {integrity: sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==} 1300 - engines: {node: '>=18'} 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 1890 peerDependencies: 1302 - '@types/node': '>=18' 1891 + "@types/node": ">=18" 1303 1892 peerDependenciesMeta: 1304 - '@types/node': 1893 + "@types/node": 1305 1894 optional: true 1306 1895 1307 - '@inquirer/confirm@5.1.18': 1308 - resolution: {integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==} 1309 - engines: {node: '>=18'} 1896 + "@inquirer/confirm@5.1.18": 1897 + resolution: 1898 + { 1899 + integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==, 1900 + } 1901 + engines: { node: ">=18" } 1310 1902 peerDependencies: 1311 - '@types/node': '>=18' 1903 + "@types/node": ">=18" 1312 1904 peerDependenciesMeta: 1313 - '@types/node': 1905 + "@types/node": 1314 1906 optional: true 1315 1907 1316 - '@inquirer/core@10.2.2': 1317 - resolution: {integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==} 1318 - engines: {node: '>=18'} 1908 + "@inquirer/core@10.2.2": 1909 + resolution: 1910 + { 1911 + integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==, 1912 + } 1913 + engines: { node: ">=18" } 1319 1914 peerDependencies: 1320 - '@types/node': '>=18' 1915 + "@types/node": ">=18" 1321 1916 peerDependenciesMeta: 1322 - '@types/node': 1917 + "@types/node": 1323 1918 optional: true 1324 1919 1325 - '@inquirer/editor@4.2.20': 1326 - resolution: {integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==} 1327 - engines: {node: '>=18'} 1920 + "@inquirer/editor@4.2.20": 1921 + resolution: 1922 + { 1923 + integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==, 1924 + } 1925 + engines: { node: ">=18" } 1328 1926 peerDependencies: 1329 - '@types/node': '>=18' 1927 + "@types/node": ">=18" 1330 1928 peerDependenciesMeta: 1331 - '@types/node': 1929 + "@types/node": 1332 1930 optional: true 1333 1931 1334 - '@inquirer/expand@4.0.20': 1335 - resolution: {integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==} 1336 - engines: {node: '>=18'} 1932 + "@inquirer/expand@4.0.20": 1933 + resolution: 1934 + { 1935 + integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==, 1936 + } 1937 + engines: { node: ">=18" } 1337 1938 peerDependencies: 1338 - '@types/node': '>=18' 1939 + "@types/node": ">=18" 1339 1940 peerDependenciesMeta: 1340 - '@types/node': 1941 + "@types/node": 1341 1942 optional: true 1342 1943 1343 - '@inquirer/external-editor@1.0.2': 1344 - resolution: {integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==} 1345 - engines: {node: '>=18'} 1944 + "@inquirer/external-editor@1.0.2": 1945 + resolution: 1946 + { 1947 + integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==, 1948 + } 1949 + engines: { node: ">=18" } 1346 1950 peerDependencies: 1347 - '@types/node': '>=18' 1951 + "@types/node": ">=18" 1348 1952 peerDependenciesMeta: 1349 - '@types/node': 1953 + "@types/node": 1350 1954 optional: true 1351 1955 1352 - '@inquirer/figures@1.0.13': 1353 - resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==} 1354 - engines: {node: '>=18'} 1956 + "@inquirer/figures@1.0.13": 1957 + resolution: 1958 + { 1959 + integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==, 1960 + } 1961 + engines: { node: ">=18" } 1355 1962 1356 - '@inquirer/input@4.2.4': 1357 - resolution: {integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==} 1358 - engines: {node: '>=18'} 1963 + "@inquirer/input@4.2.4": 1964 + resolution: 1965 + { 1966 + integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==, 1967 + } 1968 + engines: { node: ">=18" } 1359 1969 peerDependencies: 1360 - '@types/node': '>=18' 1970 + "@types/node": ">=18" 1361 1971 peerDependenciesMeta: 1362 - '@types/node': 1972 + "@types/node": 1363 1973 optional: true 1364 1974 1365 - '@inquirer/number@3.0.20': 1366 - resolution: {integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==} 1367 - engines: {node: '>=18'} 1975 + "@inquirer/number@3.0.20": 1976 + resolution: 1977 + { 1978 + integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==, 1979 + } 1980 + engines: { node: ">=18" } 1368 1981 peerDependencies: 1369 - '@types/node': '>=18' 1982 + "@types/node": ">=18" 1370 1983 peerDependenciesMeta: 1371 - '@types/node': 1984 + "@types/node": 1372 1985 optional: true 1373 1986 1374 - '@inquirer/password@4.0.20': 1375 - resolution: {integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==} 1376 - engines: {node: '>=18'} 1987 + "@inquirer/password@4.0.20": 1988 + resolution: 1989 + { 1990 + integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==, 1991 + } 1992 + engines: { node: ">=18" } 1377 1993 peerDependencies: 1378 - '@types/node': '>=18' 1994 + "@types/node": ">=18" 1379 1995 peerDependenciesMeta: 1380 - '@types/node': 1996 + "@types/node": 1381 1997 optional: true 1382 1998 1383 - '@inquirer/prompts@7.8.6': 1384 - resolution: {integrity: sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==} 1385 - engines: {node: '>=18'} 1999 + "@inquirer/prompts@7.8.6": 2000 + resolution: 2001 + { 2002 + integrity: sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==, 2003 + } 2004 + engines: { node: ">=18" } 1386 2005 peerDependencies: 1387 - '@types/node': '>=18' 2006 + "@types/node": ">=18" 1388 2007 peerDependenciesMeta: 1389 - '@types/node': 2008 + "@types/node": 1390 2009 optional: true 1391 2010 1392 - '@inquirer/rawlist@4.1.8': 1393 - resolution: {integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==} 1394 - engines: {node: '>=18'} 2011 + "@inquirer/rawlist@4.1.8": 2012 + resolution: 2013 + { 2014 + integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==, 2015 + } 2016 + engines: { node: ">=18" } 1395 2017 peerDependencies: 1396 - '@types/node': '>=18' 2018 + "@types/node": ">=18" 1397 2019 peerDependenciesMeta: 1398 - '@types/node': 2020 + "@types/node": 1399 2021 optional: true 1400 2022 1401 - '@inquirer/search@3.1.3': 1402 - resolution: {integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==} 1403 - engines: {node: '>=18'} 2023 + "@inquirer/search@3.1.3": 2024 + resolution: 2025 + { 2026 + integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==, 2027 + } 2028 + engines: { node: ">=18" } 1404 2029 peerDependencies: 1405 - '@types/node': '>=18' 2030 + "@types/node": ">=18" 1406 2031 peerDependenciesMeta: 1407 - '@types/node': 2032 + "@types/node": 1408 2033 optional: true 1409 2034 1410 - '@inquirer/select@4.3.4': 1411 - resolution: {integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==} 1412 - engines: {node: '>=18'} 2035 + "@inquirer/select@4.3.4": 2036 + resolution: 2037 + { 2038 + integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==, 2039 + } 2040 + engines: { node: ">=18" } 1413 2041 peerDependencies: 1414 - '@types/node': '>=18' 2042 + "@types/node": ">=18" 1415 2043 peerDependenciesMeta: 1416 - '@types/node': 2044 + "@types/node": 1417 2045 optional: true 1418 2046 1419 - '@inquirer/type@3.0.8': 1420 - resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==} 1421 - engines: {node: '>=18'} 2047 + "@inquirer/type@3.0.8": 2048 + resolution: 2049 + { 2050 + integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==, 2051 + } 2052 + engines: { node: ">=18" } 1422 2053 peerDependencies: 1423 - '@types/node': '>=18' 2054 + "@types/node": ">=18" 1424 2055 peerDependenciesMeta: 1425 - '@types/node': 2056 + "@types/node": 1426 2057 optional: true 1427 2058 1428 - '@ipld/dag-cbor@7.0.3': 1429 - resolution: {integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==} 2059 + "@ipld/dag-cbor@7.0.3": 2060 + resolution: 2061 + { 2062 + integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==, 2063 + } 1430 2064 1431 - '@isaacs/fs-minipass@4.0.1': 1432 - resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} 1433 - engines: {node: '>=18.0.0'} 2065 + "@isaacs/fs-minipass@4.0.1": 2066 + resolution: 2067 + { 2068 + integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==, 2069 + } 2070 + engines: { node: ">=18.0.0" } 1434 2071 1435 - '@jest/schemas@29.6.3': 1436 - resolution: {integrity: sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==} 1437 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 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 2078 1439 - '@jridgewell/gen-mapping@0.3.13': 1440 - resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 2079 + "@jridgewell/gen-mapping@0.3.13": 2080 + resolution: 2081 + { 2082 + integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==, 2083 + } 1441 2084 1442 - '@jridgewell/remapping@2.3.5': 1443 - resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 2085 + "@jridgewell/remapping@2.3.5": 2086 + resolution: 2087 + { 2088 + integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==, 2089 + } 1444 2090 1445 - '@jridgewell/resolve-uri@3.1.2': 1446 - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 1447 - engines: {node: '>=6.0.0'} 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 2097 1449 - '@jridgewell/sourcemap-codec@1.5.5': 1450 - resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 2098 + "@jridgewell/sourcemap-codec@1.5.5": 2099 + resolution: 2100 + { 2101 + integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==, 2102 + } 1451 2103 1452 - '@jridgewell/trace-mapping@0.3.31': 1453 - resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 2104 + "@jridgewell/trace-mapping@0.3.31": 2105 + resolution: 2106 + { 2107 + integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==, 2108 + } 1454 2109 1455 - '@jspm/core@2.1.0': 1456 - resolution: {integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==} 2110 + "@jspm/core@2.1.0": 2111 + resolution: 2112 + { 2113 + integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==, 2114 + } 1457 2115 1458 - '@noble/curves@1.9.7': 1459 - resolution: {integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==} 1460 - engines: {node: ^14.21.3 || >=16} 2116 + "@noble/curves@1.9.7": 2117 + resolution: 2118 + { 2119 + integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==, 2120 + } 2121 + engines: { node: ^14.21.3 || >=16 } 1461 2122 1462 - '@noble/hashes@1.8.0': 1463 - resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} 1464 - engines: {node: ^14.21.3 || >=16} 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 2129 1466 - '@nodelib/fs.scandir@2.1.5': 1467 - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 1468 - engines: {node: '>= 8'} 2130 + "@nodelib/fs.scandir@2.1.5": 2131 + resolution: 2132 + { 2133 + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, 2134 + } 2135 + engines: { node: ">= 8" } 1469 2136 1470 - '@nodelib/fs.stat@2.0.5': 1471 - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 1472 - engines: {node: '>= 8'} 2137 + "@nodelib/fs.stat@2.0.5": 2138 + resolution: 2139 + { 2140 + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, 2141 + } 2142 + engines: { node: ">= 8" } 1473 2143 1474 - '@nodelib/fs.walk@1.2.8': 1475 - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1476 - engines: {node: '>= 8'} 2144 + "@nodelib/fs.walk@1.2.8": 2145 + resolution: 2146 + { 2147 + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, 2148 + } 2149 + engines: { node: ">= 8" } 1477 2150 1478 - '@oslojs/encoding@1.1.0': 1479 - resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} 2151 + "@oslojs/encoding@1.1.0": 2152 + resolution: 2153 + { 2154 + integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==, 2155 + } 1480 2156 1481 - '@rolldown/pluginutils@1.0.0-beta.27': 1482 - resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} 2157 + "@rolldown/pluginutils@1.0.0-beta.27": 2158 + resolution: 2159 + { 2160 + integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==, 2161 + } 1483 2162 1484 - '@rollup/pluginutils@5.3.0': 1485 - resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} 1486 - engines: {node: '>=14.0.0'} 2163 + "@rollup/pluginutils@5.3.0": 2164 + resolution: 2165 + { 2166 + integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==, 2167 + } 2168 + engines: { node: ">=14.0.0" } 1487 2169 peerDependencies: 1488 2170 rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 1489 2171 peerDependenciesMeta: 1490 2172 rollup: 1491 2173 optional: true 1492 2174 1493 - '@rollup/rollup-android-arm-eabi@4.52.4': 1494 - resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==} 2175 + "@rollup/rollup-android-arm-eabi@4.52.4": 2176 + resolution: 2177 + { 2178 + integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==, 2179 + } 1495 2180 cpu: [arm] 1496 2181 os: [android] 1497 2182 1498 - '@rollup/rollup-android-arm64@4.52.4': 1499 - resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==} 2183 + "@rollup/rollup-android-arm64@4.52.4": 2184 + resolution: 2185 + { 2186 + integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==, 2187 + } 1500 2188 cpu: [arm64] 1501 2189 os: [android] 1502 2190 1503 - '@rollup/rollup-darwin-arm64@4.52.4': 1504 - resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==} 2191 + "@rollup/rollup-darwin-arm64@4.52.4": 2192 + resolution: 2193 + { 2194 + integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==, 2195 + } 1505 2196 cpu: [arm64] 1506 2197 os: [darwin] 1507 2198 1508 - '@rollup/rollup-darwin-x64@4.52.4': 1509 - resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==} 2199 + "@rollup/rollup-darwin-x64@4.52.4": 2200 + resolution: 2201 + { 2202 + integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==, 2203 + } 1510 2204 cpu: [x64] 1511 2205 os: [darwin] 1512 2206 1513 - '@rollup/rollup-freebsd-arm64@4.52.4': 1514 - resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==} 2207 + "@rollup/rollup-freebsd-arm64@4.52.4": 2208 + resolution: 2209 + { 2210 + integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==, 2211 + } 1515 2212 cpu: [arm64] 1516 2213 os: [freebsd] 1517 2214 1518 - '@rollup/rollup-freebsd-x64@4.52.4': 1519 - resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==} 2215 + "@rollup/rollup-freebsd-x64@4.52.4": 2216 + resolution: 2217 + { 2218 + integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==, 2219 + } 1520 2220 cpu: [x64] 1521 2221 os: [freebsd] 1522 2222 1523 - '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 1524 - resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==} 2223 + "@rollup/rollup-linux-arm-gnueabihf@4.52.4": 2224 + resolution: 2225 + { 2226 + integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==, 2227 + } 1525 2228 cpu: [arm] 1526 2229 os: [linux] 1527 2230 1528 - '@rollup/rollup-linux-arm-musleabihf@4.52.4': 1529 - resolution: {integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==} 2231 + "@rollup/rollup-linux-arm-musleabihf@4.52.4": 2232 + resolution: 2233 + { 2234 + integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==, 2235 + } 1530 2236 cpu: [arm] 1531 2237 os: [linux] 1532 2238 1533 - '@rollup/rollup-linux-arm64-gnu@4.52.4': 1534 - resolution: {integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==} 2239 + "@rollup/rollup-linux-arm64-gnu@4.52.4": 2240 + resolution: 2241 + { 2242 + integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==, 2243 + } 1535 2244 cpu: [arm64] 1536 2245 os: [linux] 1537 2246 1538 - '@rollup/rollup-linux-arm64-musl@4.52.4': 1539 - resolution: {integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==} 2247 + "@rollup/rollup-linux-arm64-musl@4.52.4": 2248 + resolution: 2249 + { 2250 + integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==, 2251 + } 1540 2252 cpu: [arm64] 1541 2253 os: [linux] 1542 2254 1543 - '@rollup/rollup-linux-loong64-gnu@4.52.4': 1544 - resolution: {integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==} 2255 + "@rollup/rollup-linux-loong64-gnu@4.52.4": 2256 + resolution: 2257 + { 2258 + integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==, 2259 + } 1545 2260 cpu: [loong64] 1546 2261 os: [linux] 1547 2262 1548 - '@rollup/rollup-linux-ppc64-gnu@4.52.4': 1549 - resolution: {integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==} 2263 + "@rollup/rollup-linux-ppc64-gnu@4.52.4": 2264 + resolution: 2265 + { 2266 + integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==, 2267 + } 1550 2268 cpu: [ppc64] 1551 2269 os: [linux] 1552 2270 1553 - '@rollup/rollup-linux-riscv64-gnu@4.52.4': 1554 - resolution: {integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==} 2271 + "@rollup/rollup-linux-riscv64-gnu@4.52.4": 2272 + resolution: 2273 + { 2274 + integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==, 2275 + } 1555 2276 cpu: [riscv64] 1556 2277 os: [linux] 1557 2278 1558 - '@rollup/rollup-linux-riscv64-musl@4.52.4': 1559 - resolution: {integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==} 2279 + "@rollup/rollup-linux-riscv64-musl@4.52.4": 2280 + resolution: 2281 + { 2282 + integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==, 2283 + } 1560 2284 cpu: [riscv64] 1561 2285 os: [linux] 1562 2286 1563 - '@rollup/rollup-linux-s390x-gnu@4.52.4': 1564 - resolution: {integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==} 2287 + "@rollup/rollup-linux-s390x-gnu@4.52.4": 2288 + resolution: 2289 + { 2290 + integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==, 2291 + } 1565 2292 cpu: [s390x] 1566 2293 os: [linux] 1567 2294 1568 - '@rollup/rollup-linux-x64-gnu@4.40.0': 1569 - resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==} 2295 + "@rollup/rollup-linux-x64-gnu@4.40.0": 2296 + resolution: 2297 + { 2298 + integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==, 2299 + } 1570 2300 cpu: [x64] 1571 2301 os: [linux] 1572 2302 1573 - '@rollup/rollup-linux-x64-gnu@4.52.4': 1574 - resolution: {integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==} 2303 + "@rollup/rollup-linux-x64-gnu@4.52.4": 2304 + resolution: 2305 + { 2306 + integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==, 2307 + } 1575 2308 cpu: [x64] 1576 2309 os: [linux] 1577 2310 1578 - '@rollup/rollup-linux-x64-musl@4.52.4': 1579 - resolution: {integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==} 2311 + "@rollup/rollup-linux-x64-musl@4.52.4": 2312 + resolution: 2313 + { 2314 + integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==, 2315 + } 1580 2316 cpu: [x64] 1581 2317 os: [linux] 1582 2318 1583 - '@rollup/rollup-openharmony-arm64@4.52.4': 1584 - resolution: {integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==} 2319 + "@rollup/rollup-openharmony-arm64@4.52.4": 2320 + resolution: 2321 + { 2322 + integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==, 2323 + } 1585 2324 cpu: [arm64] 1586 2325 os: [openharmony] 1587 2326 1588 - '@rollup/rollup-win32-arm64-msvc@4.52.4': 1589 - resolution: {integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==} 2327 + "@rollup/rollup-win32-arm64-msvc@4.52.4": 2328 + resolution: 2329 + { 2330 + integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==, 2331 + } 1590 2332 cpu: [arm64] 1591 2333 os: [win32] 1592 2334 1593 - '@rollup/rollup-win32-ia32-msvc@4.52.4': 1594 - resolution: {integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==} 2335 + "@rollup/rollup-win32-ia32-msvc@4.52.4": 2336 + resolution: 2337 + { 2338 + integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==, 2339 + } 1595 2340 cpu: [ia32] 1596 2341 os: [win32] 1597 2342 1598 - '@rollup/rollup-win32-x64-gnu@4.52.4': 1599 - resolution: {integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==} 2343 + "@rollup/rollup-win32-x64-gnu@4.52.4": 2344 + resolution: 2345 + { 2346 + integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==, 2347 + } 1600 2348 cpu: [x64] 1601 2349 os: [win32] 1602 2350 1603 - '@rollup/rollup-win32-x64-msvc@4.52.4': 1604 - resolution: {integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==} 2351 + "@rollup/rollup-win32-x64-msvc@4.52.4": 2352 + resolution: 2353 + { 2354 + integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==, 2355 + } 1605 2356 cpu: [x64] 1606 2357 os: [win32] 1607 2358 1608 - '@scarf/scarf@1.4.0': 1609 - resolution: {integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==} 2359 + "@scarf/scarf@1.4.0": 2360 + resolution: 2361 + { 2362 + integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==, 2363 + } 1610 2364 1611 - '@shikijs/core@3.13.0': 1612 - resolution: {integrity: sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==} 2365 + "@shikijs/core@3.13.0": 2366 + resolution: 2367 + { 2368 + integrity: sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==, 2369 + } 1613 2370 1614 - '@shikijs/engine-javascript@3.13.0': 1615 - resolution: {integrity: sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==} 2371 + "@shikijs/engine-javascript@3.13.0": 2372 + resolution: 2373 + { 2374 + integrity: sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==, 2375 + } 1616 2376 1617 - '@shikijs/engine-oniguruma@3.13.0': 1618 - resolution: {integrity: sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==} 2377 + "@shikijs/engine-oniguruma@3.13.0": 2378 + resolution: 2379 + { 2380 + integrity: sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==, 2381 + } 1619 2382 1620 - '@shikijs/langs@3.13.0': 1621 - resolution: {integrity: sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==} 2383 + "@shikijs/langs@3.13.0": 2384 + resolution: 2385 + { 2386 + integrity: sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==, 2387 + } 1622 2388 1623 - '@shikijs/themes@3.13.0': 1624 - resolution: {integrity: sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==} 2389 + "@shikijs/themes@3.13.0": 2390 + resolution: 2391 + { 2392 + integrity: sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==, 2393 + } 1625 2394 1626 - '@shikijs/types@3.13.0': 1627 - resolution: {integrity: sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==} 2395 + "@shikijs/types@3.13.0": 2396 + resolution: 2397 + { 2398 + integrity: sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==, 2399 + } 1628 2400 1629 - '@shikijs/vscode-textmate@10.0.2': 1630 - resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} 2401 + "@shikijs/vscode-textmate@10.0.2": 2402 + resolution: 2403 + { 2404 + integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==, 2405 + } 1631 2406 1632 - '@sinclair/typebox@0.27.8': 1633 - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} 2407 + "@sinclair/typebox@0.27.8": 2408 + resolution: 2409 + { 2410 + integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, 2411 + } 1634 2412 1635 - '@sindresorhus/merge-streams@2.3.0': 1636 - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} 1637 - engines: {node: '>=18'} 2413 + "@sindresorhus/merge-streams@2.3.0": 2414 + resolution: 2415 + { 2416 + integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==, 2417 + } 2418 + engines: { node: ">=18" } 1638 2419 1639 - '@swc/helpers@0.5.17': 1640 - resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} 2420 + "@swc/helpers@0.5.17": 2421 + resolution: 2422 + { 2423 + integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==, 2424 + } 1641 2425 1642 - '@ts-morph/common@0.25.0': 1643 - resolution: {integrity: sha512-kMnZz+vGGHi4GoHnLmMhGNjm44kGtKUXGnOvrKmMwAuvNjM/PgKVGfUnL7IDvK7Jb2QQ82jq3Zmp04Gy+r3Dkg==} 2426 + "@ts-morph/common@0.25.0": 2427 + resolution: 2428 + { 2429 + integrity: sha512-kMnZz+vGGHi4GoHnLmMhGNjm44kGtKUXGnOvrKmMwAuvNjM/PgKVGfUnL7IDvK7Jb2QQ82jq3Zmp04Gy+r3Dkg==, 2430 + } 1644 2431 1645 - '@types/babel__core@7.20.5': 1646 - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 2432 + "@types/babel__core@7.20.5": 2433 + resolution: 2434 + { 2435 + integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==, 2436 + } 1647 2437 1648 - '@types/babel__generator@7.27.0': 1649 - resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} 2438 + "@types/babel__generator@7.27.0": 2439 + resolution: 2440 + { 2441 + integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==, 2442 + } 1650 2443 1651 - '@types/babel__template@7.4.4': 1652 - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 2444 + "@types/babel__template@7.4.4": 2445 + resolution: 2446 + { 2447 + integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==, 2448 + } 1653 2449 1654 - '@types/babel__traverse@7.28.0': 1655 - resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} 2450 + "@types/babel__traverse@7.28.0": 2451 + resolution: 2452 + { 2453 + integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==, 2454 + } 1656 2455 1657 - '@types/debug@4.1.12': 1658 - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 2456 + "@types/debug@4.1.12": 2457 + resolution: 2458 + { 2459 + integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, 2460 + } 1659 2461 1660 - '@types/estree@1.0.8': 1661 - resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 2462 + "@types/estree@1.0.8": 2463 + resolution: 2464 + { 2465 + integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==, 2466 + } 1662 2467 1663 - '@types/fontkit@2.0.8': 1664 - resolution: {integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==} 2468 + "@types/fontkit@2.0.8": 2469 + resolution: 2470 + { 2471 + integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==, 2472 + } 1665 2473 1666 - '@types/hast@3.0.4': 1667 - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 2474 + "@types/hast@3.0.4": 2475 + resolution: 2476 + { 2477 + integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, 2478 + } 1668 2479 1669 - '@types/json-schema@7.0.15': 1670 - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 2480 + "@types/json-schema@7.0.15": 2481 + resolution: 2482 + { 2483 + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, 2484 + } 1671 2485 1672 - '@types/mdast@4.0.4': 1673 - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 2486 + "@types/mdast@4.0.4": 2487 + resolution: 2488 + { 2489 + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, 2490 + } 1674 2491 1675 - '@types/ms@2.1.0': 1676 - resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 2492 + "@types/ms@2.1.0": 2493 + resolution: 2494 + { 2495 + integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==, 2496 + } 1677 2497 1678 - '@types/nlcst@2.0.3': 1679 - resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} 2498 + "@types/nlcst@2.0.3": 2499 + resolution: 2500 + { 2501 + integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==, 2502 + } 1680 2503 1681 - '@types/node@20.19.19': 1682 - resolution: {integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==} 2504 + "@types/node@20.19.19": 2505 + resolution: 2506 + { 2507 + integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==, 2508 + } 1683 2509 1684 - '@types/prop-types@15.7.15': 1685 - resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} 2510 + "@types/prop-types@15.7.15": 2511 + resolution: 2512 + { 2513 + integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==, 2514 + } 1686 2515 1687 - '@types/react-dom@18.3.7': 1688 - resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} 2516 + "@types/react-dom@18.3.7": 2517 + resolution: 2518 + { 2519 + integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==, 2520 + } 1689 2521 peerDependencies: 1690 - '@types/react': ^18.0.0 2522 + "@types/react": ^18.0.0 1691 2523 1692 - '@types/react-dom@19.2.0': 1693 - resolution: {integrity: sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==} 2524 + "@types/react-dom@19.2.0": 2525 + resolution: 2526 + { 2527 + integrity: sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==, 2528 + } 1694 2529 peerDependencies: 1695 - '@types/react': ^19.2.0 2530 + "@types/react": ^19.2.0 1696 2531 1697 - '@types/react@18.3.25': 1698 - resolution: {integrity: sha512-oSVZmGtDPmRZtVDqvdKUi/qgCsWp5IDY29wp8na8Bj4B3cc99hfNzvNhlMkVVxctkAOGUA3Km7MMpBHAnWfcIA==} 2532 + "@types/react@18.3.25": 2533 + resolution: 2534 + { 2535 + integrity: sha512-oSVZmGtDPmRZtVDqvdKUi/qgCsWp5IDY29wp8na8Bj4B3cc99hfNzvNhlMkVVxctkAOGUA3Km7MMpBHAnWfcIA==, 2536 + } 1699 2537 1700 - '@types/react@19.2.0': 1701 - resolution: {integrity: sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==} 2538 + "@types/react@19.2.0": 2539 + resolution: 2540 + { 2541 + integrity: sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==, 2542 + } 1702 2543 1703 - '@types/unist@3.0.3': 1704 - resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 2544 + "@types/unist@3.0.3": 2545 + resolution: 2546 + { 2547 + integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==, 2548 + } 1705 2549 1706 - '@typespec/asset-emitter@0.74.0': 1707 - resolution: {integrity: sha512-DWIdlSNhRgBeZ8exfqubfUn0H6mRg4gr0s7zLTdBMUEDHL3Yh0ljnRPkd8AXTZhoW3maTFT69loWTrqx09T5oQ==} 1708 - engines: {node: '>=20.0.0'} 2550 + "@typespec/asset-emitter@0.74.0": 2551 + resolution: 2552 + { 2553 + integrity: sha512-DWIdlSNhRgBeZ8exfqubfUn0H6mRg4gr0s7zLTdBMUEDHL3Yh0ljnRPkd8AXTZhoW3maTFT69loWTrqx09T5oQ==, 2554 + } 2555 + engines: { node: ">=20.0.0" } 1709 2556 peerDependencies: 1710 - '@typespec/compiler': ^1.4.0 2557 + "@typespec/compiler": ^1.4.0 1711 2558 1712 - '@typespec/bundler@0.4.4': 1713 - resolution: {integrity: sha512-yj6X2gTktZ3NmiksdKfEmuYX+oo3yLTvfE+IYPWkveoKGqP4HpGM5OctY9d4y2iqPZ2acG4LemR6064pQ0SIVA==} 1714 - engines: {node: '>=20.0.0'} 2559 + "@typespec/bundler@0.4.4": 2560 + resolution: 2561 + { 2562 + integrity: sha512-yj6X2gTktZ3NmiksdKfEmuYX+oo3yLTvfE+IYPWkveoKGqP4HpGM5OctY9d4y2iqPZ2acG4LemR6064pQ0SIVA==, 2563 + } 2564 + engines: { node: ">=20.0.0" } 1715 2565 1716 - '@typespec/compiler@1.4.0': 1717 - resolution: {integrity: sha512-/AFiU3ImuhH/vHKzSGv7I2peewdJ7YLhgMCfFDNk6Ae0a5Ylrc8R1GOATVilisEPBFG9lnjHn3uUcyaZs5VWRw==} 1718 - engines: {node: '>=20.0.0'} 2566 + "@typespec/compiler@1.4.0": 2567 + resolution: 2568 + { 2569 + integrity: sha512-/AFiU3ImuhH/vHKzSGv7I2peewdJ7YLhgMCfFDNk6Ae0a5Ylrc8R1GOATVilisEPBFG9lnjHn3uUcyaZs5VWRw==, 2570 + } 2571 + engines: { node: ">=20.0.0" } 1719 2572 hasBin: true 1720 2573 1721 - '@typespec/html-program-viewer@0.74.0': 1722 - resolution: {integrity: sha512-VJdVe4z4h367bJkTwx7KpOl1Mm9hbF2Yy0EHHYvTVg/gOIqDRfLOgoHSMITWQgxK/AqzX/xPAA44eWc7eeXGQQ==} 1723 - engines: {node: '>=14.0.0'} 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 2580 peerDependencies: 1725 - '@typespec/compiler': ^1.4.0 2581 + "@typespec/compiler": ^1.4.0 1726 2582 1727 - '@typespec/http@1.4.0': 1728 - resolution: {integrity: sha512-Y0PDDtBu+oZnwivfhbL0lN6Mk3QiCxZ66DgB5kFjcgKNpnXf0u440PPyaL42a8lbchzz5lVwz+cinyIMI89FIQ==} 1729 - engines: {node: '>=20.0.0'} 2583 + "@typespec/http@1.4.0": 2584 + resolution: 2585 + { 2586 + integrity: sha512-Y0PDDtBu+oZnwivfhbL0lN6Mk3QiCxZ66DgB5kFjcgKNpnXf0u440PPyaL42a8lbchzz5lVwz+cinyIMI89FIQ==, 2587 + } 2588 + engines: { node: ">=20.0.0" } 1730 2589 peerDependencies: 1731 - '@typespec/compiler': ^1.4.0 1732 - '@typespec/streams': ^0.74.0 2590 + "@typespec/compiler": ^1.4.0 2591 + "@typespec/streams": ^0.74.0 1733 2592 peerDependenciesMeta: 1734 - '@typespec/streams': 2593 + "@typespec/streams": 1735 2594 optional: true 1736 2595 1737 - '@typespec/openapi3@1.4.0': 1738 - resolution: {integrity: sha512-krMSBe23NU42qXiLTmkr7T2NRfsIVv70pp3w/+uyWbrxdwdLEdb8PpbHeYV417D/YU+JLj00fQ7uYzEQGZX82w==} 1739 - engines: {node: '>=20.0.0'} 2596 + "@typespec/openapi3@1.4.0": 2597 + resolution: 2598 + { 2599 + integrity: sha512-krMSBe23NU42qXiLTmkr7T2NRfsIVv70pp3w/+uyWbrxdwdLEdb8PpbHeYV417D/YU+JLj00fQ7uYzEQGZX82w==, 2600 + } 2601 + engines: { node: ">=20.0.0" } 1740 2602 hasBin: true 1741 2603 peerDependencies: 1742 - '@typespec/compiler': ^1.4.0 1743 - '@typespec/http': ^1.4.0 1744 - '@typespec/json-schema': ^1.4.0 1745 - '@typespec/openapi': ^1.4.0 1746 - '@typespec/versioning': ^0.74.0 1747 - '@typespec/xml': '*' 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": "*" 1748 2610 peerDependenciesMeta: 1749 - '@typespec/json-schema': 2611 + "@typespec/json-schema": 1750 2612 optional: true 1751 - '@typespec/versioning': 2613 + "@typespec/versioning": 1752 2614 optional: true 1753 - '@typespec/xml': 2615 + "@typespec/xml": 1754 2616 optional: true 1755 2617 1756 - '@typespec/openapi@1.4.0': 1757 - resolution: {integrity: sha512-ZfrCsmZG/Zt1laLaWC0pKvnZr4jqrm/YS/YuZe/gVrSYKBxGLopXle7H0wrSSMYkIVCNCLiC68/HqRxV6XTfoA==} 1758 - engines: {node: '>=20.0.0'} 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 2624 peerDependencies: 1760 - '@typespec/compiler': ^1.4.0 1761 - '@typespec/http': ^1.4.0 2625 + "@typespec/compiler": ^1.4.0 2626 + "@typespec/http": ^1.4.0 1762 2627 1763 - '@typespec/playground@0.11.0': 1764 - resolution: {integrity: sha512-rtKK/GprMyBEupXRrvtrKqgT+qp8McZy+V/CLx+mhZN8F5Yh4FuLtppAGwSflzsSMPx2rD4YZveeNakaZAO70A==} 1765 - engines: {node: '>=20.0.0'} 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 2634 1767 - '@typespec/protobuf@0.74.0': 1768 - resolution: {integrity: sha512-9Mn/gGgrrPrFG46t7DyUztUwLDOfjrksC3q2KjkSqGK5xw744/76OsqY51iAnd4DMKUg7twMqNFrKrTr6AqH2g==} 2635 + "@typespec/protobuf@0.74.0": 2636 + resolution: 2637 + { 2638 + integrity: sha512-9Mn/gGgrrPrFG46t7DyUztUwLDOfjrksC3q2KjkSqGK5xw744/76OsqY51iAnd4DMKUg7twMqNFrKrTr6AqH2g==, 2639 + } 1769 2640 peerDependencies: 1770 - '@typespec/compiler': ^1.4.0 2641 + "@typespec/compiler": ^1.4.0 1771 2642 1772 - '@typespec/rest@0.74.0': 1773 - resolution: {integrity: sha512-dE+Xmv01AQ7m8jUvEbGsUQLSVo3sLzMpnHRbQEOnJX42oDqtIsz/2GEOXKQpNm1AKBISK66E2FFB5boz999Ziw==} 1774 - engines: {node: '>=20.0.0'} 2643 + "@typespec/rest@0.74.0": 2644 + resolution: 2645 + { 2646 + integrity: sha512-dE+Xmv01AQ7m8jUvEbGsUQLSVo3sLzMpnHRbQEOnJX42oDqtIsz/2GEOXKQpNm1AKBISK66E2FFB5boz999Ziw==, 2647 + } 2648 + engines: { node: ">=20.0.0" } 1775 2649 peerDependencies: 1776 - '@typespec/compiler': ^1.4.0 1777 - '@typespec/http': ^1.4.0 2650 + "@typespec/compiler": ^1.4.0 2651 + "@typespec/http": ^1.4.0 1778 2652 1779 - '@typespec/versioning@0.74.0': 1780 - resolution: {integrity: sha512-eFIa23tycWJgv3Lxyu6jUlRi02dhtQE4Jjx3Ui5vEbwHW8pMEzuyF7ALt1c+V9HOLkfDkS4dJkiOVIoikZHPvQ==} 1781 - engines: {node: '>=20.0.0'} 2653 + "@typespec/versioning@0.74.0": 2654 + resolution: 2655 + { 2656 + integrity: sha512-eFIa23tycWJgv3Lxyu6jUlRi02dhtQE4Jjx3Ui5vEbwHW8pMEzuyF7ALt1c+V9HOLkfDkS4dJkiOVIoikZHPvQ==, 2657 + } 2658 + engines: { node: ">=20.0.0" } 1782 2659 peerDependencies: 1783 - '@typespec/compiler': ^1.4.0 2660 + "@typespec/compiler": ^1.4.0 1784 2661 1785 - '@ungap/structured-clone@1.3.0': 1786 - resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 2662 + "@ungap/structured-clone@1.3.0": 2663 + resolution: 2664 + { 2665 + integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==, 2666 + } 1787 2667 1788 - '@vitejs/plugin-react@4.7.0': 1789 - resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} 1790 - engines: {node: ^14.18.0 || >=16.0.0} 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 2674 peerDependencies: 1792 2675 vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 1793 2676 1794 - '@vitest/expect@1.6.1': 1795 - resolution: {integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==} 2677 + "@vitest/expect@1.6.1": 2678 + resolution: 2679 + { 2680 + integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==, 2681 + } 1796 2682 1797 - '@vitest/runner@1.6.1': 1798 - resolution: {integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==} 2683 + "@vitest/runner@1.6.1": 2684 + resolution: 2685 + { 2686 + integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==, 2687 + } 1799 2688 1800 - '@vitest/snapshot@1.6.1': 1801 - resolution: {integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==} 2689 + "@vitest/snapshot@1.6.1": 2690 + resolution: 2691 + { 2692 + integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==, 2693 + } 1802 2694 1803 - '@vitest/spy@1.6.1': 1804 - resolution: {integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==} 2695 + "@vitest/spy@1.6.1": 2696 + resolution: 2697 + { 2698 + integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==, 2699 + } 1805 2700 1806 - '@vitest/utils@1.6.1': 1807 - resolution: {integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==} 2701 + "@vitest/utils@1.6.1": 2702 + resolution: 2703 + { 2704 + integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==, 2705 + } 1808 2706 1809 2707 abort-controller@3.0.0: 1810 - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 1811 - engines: {node: '>=6.5'} 2708 + resolution: 2709 + { 2710 + integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, 2711 + } 2712 + engines: { node: ">=6.5" } 1812 2713 1813 2714 accepts@1.3.8: 1814 - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} 1815 - engines: {node: '>= 0.6'} 2715 + resolution: 2716 + { 2717 + integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, 2718 + } 2719 + engines: { node: ">= 0.6" } 1816 2720 1817 2721 acorn-walk@8.3.4: 1818 - resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} 1819 - engines: {node: '>=0.4.0'} 2722 + resolution: 2723 + { 2724 + integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==, 2725 + } 2726 + engines: { node: ">=0.4.0" } 1820 2727 1821 2728 acorn@8.15.0: 1822 - resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} 1823 - engines: {node: '>=0.4.0'} 2729 + resolution: 2730 + { 2731 + integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==, 2732 + } 2733 + engines: { node: ">=0.4.0" } 1824 2734 hasBin: true 1825 2735 1826 2736 ajv-draft-04@1.0.0: 1827 - resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==} 2737 + resolution: 2738 + { 2739 + integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==, 2740 + } 1828 2741 peerDependencies: 1829 2742 ajv: ^8.5.0 1830 2743 peerDependenciesMeta: ··· 1832 2745 optional: true 1833 2746 1834 2747 ajv@8.17.1: 1835 - resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} 2748 + resolution: 2749 + { 2750 + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, 2751 + } 1836 2752 1837 2753 ansi-align@3.0.1: 1838 - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 2754 + resolution: 2755 + { 2756 + integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, 2757 + } 1839 2758 1840 2759 ansi-regex@5.0.1: 1841 - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1842 - engines: {node: '>=8'} 2760 + resolution: 2761 + { 2762 + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, 2763 + } 2764 + engines: { node: ">=8" } 1843 2765 1844 2766 ansi-regex@6.2.2: 1845 - resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} 1846 - engines: {node: '>=12'} 2767 + resolution: 2768 + { 2769 + integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==, 2770 + } 2771 + engines: { node: ">=12" } 1847 2772 1848 2773 ansi-styles@4.3.0: 1849 - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1850 - engines: {node: '>=8'} 2774 + resolution: 2775 + { 2776 + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, 2777 + } 2778 + engines: { node: ">=8" } 1851 2779 1852 2780 ansi-styles@5.2.0: 1853 - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 1854 - engines: {node: '>=10'} 2781 + resolution: 2782 + { 2783 + integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, 2784 + } 2785 + engines: { node: ">=10" } 1855 2786 1856 2787 ansi-styles@6.2.3: 1857 - resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} 1858 - engines: {node: '>=12'} 2788 + resolution: 2789 + { 2790 + integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==, 2791 + } 2792 + engines: { node: ">=12" } 1859 2793 1860 2794 anymatch@3.1.3: 1861 - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1862 - engines: {node: '>= 8'} 2795 + resolution: 2796 + { 2797 + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, 2798 + } 2799 + engines: { node: ">= 8" } 1863 2800 1864 2801 argparse@2.0.1: 1865 - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 2802 + resolution: 2803 + { 2804 + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, 2805 + } 1866 2806 1867 2807 aria-query@5.3.2: 1868 - resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 1869 - engines: {node: '>= 0.4'} 2808 + resolution: 2809 + { 2810 + integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==, 2811 + } 2812 + engines: { node: ">= 0.4" } 1870 2813 1871 2814 array-flatten@1.1.1: 1872 - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} 2815 + resolution: 2816 + { 2817 + integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==, 2818 + } 1873 2819 1874 2820 array-iterate@2.0.1: 1875 - resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} 2821 + resolution: 2822 + { 2823 + integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==, 2824 + } 1876 2825 1877 2826 asn1.js@4.10.1: 1878 - resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} 2827 + resolution: 2828 + { 2829 + integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==, 2830 + } 1879 2831 1880 2832 assert@2.1.0: 1881 - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} 2833 + resolution: 2834 + { 2835 + integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==, 2836 + } 1882 2837 1883 2838 assertion-error@1.1.0: 1884 - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} 2839 + resolution: 2840 + { 2841 + integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, 2842 + } 1885 2843 1886 2844 astro@5.14.1: 1887 - resolution: {integrity: sha512-gPa8NY7/lP8j8g81iy8UwANF3+aukKRWS68IlthZQNgykpg80ne6lbHOp6FErYycxQ1TUhgEfkXVDQZAoJx8Bg==} 1888 - engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: '>=9.6.5', pnpm: '>=7.1.0'} 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" } 1889 2851 hasBin: true 1890 2852 1891 2853 atomic-sleep@1.0.0: 1892 - resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} 1893 - engines: {node: '>=8.0.0'} 2854 + resolution: 2855 + { 2856 + integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==, 2857 + } 2858 + engines: { node: ">=8.0.0" } 1894 2859 1895 2860 available-typed-arrays@1.0.7: 1896 - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 1897 - engines: {node: '>= 0.4'} 2861 + resolution: 2862 + { 2863 + integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, 2864 + } 2865 + engines: { node: ">= 0.4" } 1898 2866 1899 2867 axobject-query@4.1.0: 1900 - resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 1901 - engines: {node: '>= 0.4'} 2868 + resolution: 2869 + { 2870 + integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==, 2871 + } 2872 + engines: { node: ">= 0.4" } 1902 2873 1903 2874 bail@2.0.2: 1904 - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 2875 + resolution: 2876 + { 2877 + integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, 2878 + } 1905 2879 1906 2880 balanced-match@1.0.2: 1907 - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 2881 + resolution: 2882 + { 2883 + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, 2884 + } 1908 2885 1909 2886 base-64@1.0.0: 1910 - resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} 2887 + resolution: 2888 + { 2889 + integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==, 2890 + } 1911 2891 1912 2892 base64-js@1.5.1: 1913 - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 2893 + resolution: 2894 + { 2895 + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, 2896 + } 1914 2897 1915 2898 baseline-browser-mapping@2.8.12: 1916 - resolution: {integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==} 2899 + resolution: 2900 + { 2901 + integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==, 2902 + } 1917 2903 hasBin: true 1918 2904 1919 2905 blob-to-buffer@1.2.9: 1920 - resolution: {integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==} 2906 + resolution: 2907 + { 2908 + integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==, 2909 + } 1921 2910 1922 2911 bn.js@4.12.2: 1923 - resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==} 2912 + resolution: 2913 + { 2914 + integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==, 2915 + } 1924 2916 1925 2917 bn.js@5.2.2: 1926 - resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==} 2918 + resolution: 2919 + { 2920 + integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==, 2921 + } 1927 2922 1928 2923 body-parser@1.20.3: 1929 - resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==} 1930 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 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 } 1931 2929 1932 2930 boxen@8.0.1: 1933 - resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} 1934 - engines: {node: '>=18'} 2931 + resolution: 2932 + { 2933 + integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==, 2934 + } 2935 + engines: { node: ">=18" } 1935 2936 1936 2937 brace-expansion@2.0.2: 1937 - resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} 2938 + resolution: 2939 + { 2940 + integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==, 2941 + } 1938 2942 1939 2943 braces@3.0.3: 1940 - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 1941 - engines: {node: '>=8'} 2944 + resolution: 2945 + { 2946 + integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, 2947 + } 2948 + engines: { node: ">=8" } 1942 2949 1943 2950 brorand@1.1.0: 1944 - resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} 2951 + resolution: 2952 + { 2953 + integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==, 2954 + } 1945 2955 1946 2956 brotli@1.3.3: 1947 - resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==} 2957 + resolution: 2958 + { 2959 + integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==, 2960 + } 1948 2961 1949 2962 browser-resolve@2.0.0: 1950 - resolution: {integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==} 2963 + resolution: 2964 + { 2965 + integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==, 2966 + } 1951 2967 1952 2968 browserify-aes@1.2.0: 1953 - resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} 2969 + resolution: 2970 + { 2971 + integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==, 2972 + } 1954 2973 1955 2974 browserify-cipher@1.0.1: 1956 - resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} 2975 + resolution: 2976 + { 2977 + integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==, 2978 + } 1957 2979 1958 2980 browserify-des@1.0.2: 1959 - resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} 2981 + resolution: 2982 + { 2983 + integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==, 2984 + } 1960 2985 1961 2986 browserify-rsa@4.1.1: 1962 - resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==} 1963 - engines: {node: '>= 0.10'} 2987 + resolution: 2988 + { 2989 + integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==, 2990 + } 2991 + engines: { node: ">= 0.10" } 1964 2992 1965 2993 browserify-sign@4.2.5: 1966 - resolution: {integrity: sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==} 1967 - engines: {node: '>= 0.10'} 2994 + resolution: 2995 + { 2996 + integrity: sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==, 2997 + } 2998 + engines: { node: ">= 0.10" } 1968 2999 1969 3000 browserify-zlib@0.2.0: 1970 - resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} 3001 + resolution: 3002 + { 3003 + integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==, 3004 + } 1971 3005 1972 3006 browserslist@4.26.3: 1973 - resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==} 1974 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 3007 + resolution: 3008 + { 3009 + integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==, 3010 + } 3011 + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } 1975 3012 hasBin: true 1976 3013 1977 3014 buffer-xor@1.0.3: 1978 - resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} 3015 + resolution: 3016 + { 3017 + integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==, 3018 + } 1979 3019 1980 3020 buffer@5.7.1: 1981 - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 3021 + resolution: 3022 + { 3023 + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, 3024 + } 1982 3025 1983 3026 buffer@6.0.3: 1984 - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 3027 + resolution: 3028 + { 3029 + integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==, 3030 + } 1985 3031 1986 3032 builtin-status-codes@3.0.0: 1987 - resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} 3033 + resolution: 3034 + { 3035 + integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==, 3036 + } 1988 3037 1989 3038 bytes@3.1.2: 1990 - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 1991 - engines: {node: '>= 0.8'} 3039 + resolution: 3040 + { 3041 + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, 3042 + } 3043 + engines: { node: ">= 0.8" } 1992 3044 1993 3045 cac@6.7.14: 1994 - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 1995 - engines: {node: '>=8'} 3046 + resolution: 3047 + { 3048 + integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, 3049 + } 3050 + engines: { node: ">=8" } 1996 3051 1997 3052 call-bind-apply-helpers@1.0.2: 1998 - resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} 1999 - engines: {node: '>= 0.4'} 3053 + resolution: 3054 + { 3055 + integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==, 3056 + } 3057 + engines: { node: ">= 0.4" } 2000 3058 2001 3059 call-bind@1.0.8: 2002 - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 2003 - engines: {node: '>= 0.4'} 3060 + resolution: 3061 + { 3062 + integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==, 3063 + } 3064 + engines: { node: ">= 0.4" } 2004 3065 2005 3066 call-bound@1.0.4: 2006 - resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} 2007 - engines: {node: '>= 0.4'} 3067 + resolution: 3068 + { 3069 + integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==, 3070 + } 3071 + engines: { node: ">= 0.4" } 2008 3072 2009 3073 call-me-maybe@1.0.2: 2010 - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} 3074 + resolution: 3075 + { 3076 + integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==, 3077 + } 2011 3078 2012 3079 camelcase@8.0.0: 2013 - resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 2014 - engines: {node: '>=16'} 3080 + resolution: 3081 + { 3082 + integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==, 3083 + } 3084 + engines: { node: ">=16" } 2015 3085 2016 3086 caniuse-lite@1.0.30001747: 2017 - resolution: {integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==} 3087 + resolution: 3088 + { 3089 + integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==, 3090 + } 2018 3091 2019 3092 cbor-extract@2.2.0: 2020 - resolution: {integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==} 3093 + resolution: 3094 + { 3095 + integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==, 3096 + } 2021 3097 hasBin: true 2022 3098 2023 3099 cbor-x@1.6.0: 2024 - resolution: {integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==} 3100 + resolution: 3101 + { 3102 + integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==, 3103 + } 2025 3104 2026 3105 cborg@1.10.2: 2027 - resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==} 3106 + resolution: 3107 + { 3108 + integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==, 3109 + } 2028 3110 hasBin: true 2029 3111 2030 3112 ccount@2.0.1: 2031 - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 3113 + resolution: 3114 + { 3115 + integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, 3116 + } 2032 3117 2033 3118 chai@4.5.0: 2034 - resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} 2035 - engines: {node: '>=4'} 3119 + resolution: 3120 + { 3121 + integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==, 3122 + } 3123 + engines: { node: ">=4" } 2036 3124 2037 3125 chalk@4.1.2: 2038 - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 2039 - engines: {node: '>=10'} 3126 + resolution: 3127 + { 3128 + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, 3129 + } 3130 + engines: { node: ">=10" } 2040 3131 2041 3132 chalk@5.6.2: 2042 - resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} 2043 - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 3133 + resolution: 3134 + { 3135 + integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==, 3136 + } 3137 + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } 2044 3138 2045 3139 change-case@5.4.4: 2046 - resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} 3140 + resolution: 3141 + { 3142 + integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==, 3143 + } 2047 3144 2048 3145 character-entities-html4@2.1.0: 2049 - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 3146 + resolution: 3147 + { 3148 + integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, 3149 + } 2050 3150 2051 3151 character-entities-legacy@3.0.0: 2052 - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 3152 + resolution: 3153 + { 3154 + integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==, 3155 + } 2053 3156 2054 3157 character-entities@2.0.2: 2055 - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 3158 + resolution: 3159 + { 3160 + integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, 3161 + } 2056 3162 2057 3163 chardet@2.1.0: 2058 - resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} 3164 + resolution: 3165 + { 3166 + integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==, 3167 + } 2059 3168 2060 3169 check-error@1.0.3: 2061 - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} 3170 + resolution: 3171 + { 3172 + integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==, 3173 + } 2062 3174 2063 3175 chokidar@4.0.3: 2064 - resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 2065 - engines: {node: '>= 14.16.0'} 3176 + resolution: 3177 + { 3178 + integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==, 3179 + } 3180 + engines: { node: ">= 14.16.0" } 2066 3181 2067 3182 chownr@3.0.0: 2068 - resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} 2069 - engines: {node: '>=18'} 3183 + resolution: 3184 + { 3185 + integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==, 3186 + } 3187 + engines: { node: ">=18" } 2070 3188 2071 3189 ci-info@4.3.0: 2072 - resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} 2073 - engines: {node: '>=8'} 3190 + resolution: 3191 + { 3192 + integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==, 3193 + } 3194 + engines: { node: ">=8" } 2074 3195 2075 3196 cipher-base@1.0.7: 2076 - resolution: {integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==} 2077 - engines: {node: '>= 0.10'} 3197 + resolution: 3198 + { 3199 + integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==, 3200 + } 3201 + engines: { node: ">= 0.10" } 2078 3202 2079 3203 cli-boxes@3.0.0: 2080 - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 2081 - engines: {node: '>=10'} 3204 + resolution: 3205 + { 3206 + integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==, 3207 + } 3208 + engines: { node: ">=10" } 2082 3209 2083 3210 cli-width@4.1.0: 2084 - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} 2085 - engines: {node: '>= 12'} 3211 + resolution: 3212 + { 3213 + integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==, 3214 + } 3215 + engines: { node: ">= 12" } 2086 3216 2087 3217 cliui@8.0.1: 2088 - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 2089 - engines: {node: '>=12'} 3218 + resolution: 3219 + { 3220 + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, 3221 + } 3222 + engines: { node: ">=12" } 2090 3223 2091 3224 cliui@9.0.1: 2092 - resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==} 2093 - engines: {node: '>=20'} 3225 + resolution: 3226 + { 3227 + integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==, 3228 + } 3229 + engines: { node: ">=20" } 2094 3230 2095 3231 clone@2.1.2: 2096 - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} 2097 - engines: {node: '>=0.8'} 3232 + resolution: 3233 + { 3234 + integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, 3235 + } 3236 + engines: { node: ">=0.8" } 2098 3237 2099 3238 clsx@2.1.1: 2100 - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 2101 - engines: {node: '>=6'} 3239 + resolution: 3240 + { 3241 + integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==, 3242 + } 3243 + engines: { node: ">=6" } 2102 3244 2103 3245 code-block-writer@13.0.3: 2104 - resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==} 3246 + resolution: 3247 + { 3248 + integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==, 3249 + } 2105 3250 2106 3251 color-convert@2.0.1: 2107 - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 2108 - engines: {node: '>=7.0.0'} 3252 + resolution: 3253 + { 3254 + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, 3255 + } 3256 + engines: { node: ">=7.0.0" } 2109 3257 2110 3258 color-name@1.1.4: 2111 - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 3259 + resolution: 3260 + { 3261 + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, 3262 + } 2112 3263 2113 3264 comma-separated-tokens@2.0.3: 2114 - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 3265 + resolution: 3266 + { 3267 + integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==, 3268 + } 2115 3269 2116 3270 commander@9.5.0: 2117 - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} 2118 - engines: {node: ^12.20.0 || >=14} 3271 + resolution: 3272 + { 3273 + integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==, 3274 + } 3275 + engines: { node: ^12.20.0 || >=14 } 2119 3276 2120 3277 common-ancestor-path@1.0.1: 2121 - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} 3278 + resolution: 3279 + { 3280 + integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==, 3281 + } 2122 3282 2123 3283 concurrently@9.2.1: 2124 - resolution: {integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==} 2125 - engines: {node: '>=18'} 3284 + resolution: 3285 + { 3286 + integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==, 3287 + } 3288 + engines: { node: ">=18" } 2126 3289 hasBin: true 2127 3290 2128 3291 confbox@0.1.8: 2129 - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 3292 + resolution: 3293 + { 3294 + integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==, 3295 + } 2130 3296 2131 3297 confbox@0.2.2: 2132 - resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} 3298 + resolution: 3299 + { 3300 + integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==, 3301 + } 2133 3302 2134 3303 console-browserify@1.2.0: 2135 - resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} 3304 + resolution: 3305 + { 3306 + integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==, 3307 + } 2136 3308 2137 3309 constants-browserify@1.0.0: 2138 - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} 3310 + resolution: 3311 + { 3312 + integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==, 3313 + } 2139 3314 2140 3315 content-disposition@0.5.4: 2141 - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} 2142 - engines: {node: '>= 0.6'} 3316 + resolution: 3317 + { 3318 + integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, 3319 + } 3320 + engines: { node: ">= 0.6" } 2143 3321 2144 3322 content-type@1.0.5: 2145 - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 2146 - engines: {node: '>= 0.6'} 3323 + resolution: 3324 + { 3325 + integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, 3326 + } 3327 + engines: { node: ">= 0.6" } 2147 3328 2148 3329 convert-source-map@2.0.0: 2149 - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 3330 + resolution: 3331 + { 3332 + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, 3333 + } 2150 3334 2151 3335 cookie-es@1.2.2: 2152 - resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} 3336 + resolution: 3337 + { 3338 + integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==, 3339 + } 2153 3340 2154 3341 cookie-signature@1.0.6: 2155 - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} 3342 + resolution: 3343 + { 3344 + integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==, 3345 + } 2156 3346 2157 3347 cookie@0.7.1: 2158 - resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} 2159 - engines: {node: '>= 0.6'} 3348 + resolution: 3349 + { 3350 + integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==, 3351 + } 3352 + engines: { node: ">= 0.6" } 2160 3353 2161 3354 cookie@1.0.2: 2162 - resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} 2163 - engines: {node: '>=18'} 3355 + resolution: 3356 + { 3357 + integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==, 3358 + } 3359 + engines: { node: ">=18" } 2164 3360 2165 3361 core-util-is@1.0.3: 2166 - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 3362 + resolution: 3363 + { 3364 + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, 3365 + } 2167 3366 2168 3367 create-ecdh@4.0.4: 2169 - resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} 3368 + resolution: 3369 + { 3370 + integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==, 3371 + } 2170 3372 2171 3373 create-hash@1.2.0: 2172 - resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} 3374 + resolution: 3375 + { 3376 + integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==, 3377 + } 2173 3378 2174 3379 create-hmac@1.1.7: 2175 - resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} 3380 + resolution: 3381 + { 3382 + integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==, 3383 + } 2176 3384 2177 3385 create-require@1.1.1: 2178 - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 3386 + resolution: 3387 + { 3388 + integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, 3389 + } 2179 3390 2180 3391 cross-fetch@3.2.0: 2181 - resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} 3392 + resolution: 3393 + { 3394 + integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==, 3395 + } 2182 3396 2183 3397 cross-spawn@7.0.6: 2184 - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 2185 - engines: {node: '>= 8'} 3398 + resolution: 3399 + { 3400 + integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, 3401 + } 3402 + engines: { node: ">= 8" } 2186 3403 2187 3404 crossws@0.3.5: 2188 - resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} 3405 + resolution: 3406 + { 3407 + integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==, 3408 + } 2189 3409 2190 3410 crypto-browserify@3.12.1: 2191 - resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==} 2192 - engines: {node: '>= 0.10'} 3411 + resolution: 3412 + { 3413 + integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==, 3414 + } 3415 + engines: { node: ">= 0.10" } 2193 3416 2194 3417 css-tree@3.1.0: 2195 - resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==} 2196 - engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.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 } 2197 3423 2198 3424 cssesc@3.0.0: 2199 - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 2200 - engines: {node: '>=4'} 3425 + resolution: 3426 + { 3427 + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, 3428 + } 3429 + engines: { node: ">=4" } 2201 3430 hasBin: true 2202 3431 2203 3432 csstype@3.1.3: 2204 - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 3433 + resolution: 3434 + { 3435 + integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, 3436 + } 2205 3437 2206 3438 debounce@2.2.0: 2207 - resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==} 2208 - engines: {node: '>=18'} 3439 + resolution: 3440 + { 3441 + integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==, 3442 + } 3443 + engines: { node: ">=18" } 2209 3444 2210 3445 debug@2.6.9: 2211 - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 3446 + resolution: 3447 + { 3448 + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, 3449 + } 2212 3450 peerDependencies: 2213 - supports-color: '*' 3451 + supports-color: "*" 2214 3452 peerDependenciesMeta: 2215 3453 supports-color: 2216 3454 optional: true 2217 3455 2218 3456 debug@4.4.3: 2219 - resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 2220 - engines: {node: '>=6.0'} 3457 + resolution: 3458 + { 3459 + integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==, 3460 + } 3461 + engines: { node: ">=6.0" } 2221 3462 peerDependencies: 2222 - supports-color: '*' 3463 + supports-color: "*" 2223 3464 peerDependenciesMeta: 2224 3465 supports-color: 2225 3466 optional: true 2226 3467 2227 3468 decode-named-character-reference@1.2.0: 2228 - resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} 3469 + resolution: 3470 + { 3471 + integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==, 3472 + } 2229 3473 2230 3474 deep-eql@4.1.4: 2231 - resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} 2232 - engines: {node: '>=6'} 3475 + resolution: 3476 + { 3477 + integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==, 3478 + } 3479 + engines: { node: ">=6" } 2233 3480 2234 3481 define-data-property@1.1.4: 2235 - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 2236 - engines: {node: '>= 0.4'} 3482 + resolution: 3483 + { 3484 + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, 3485 + } 3486 + engines: { node: ">= 0.4" } 2237 3487 2238 3488 define-properties@1.2.1: 2239 - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 2240 - engines: {node: '>= 0.4'} 3489 + resolution: 3490 + { 3491 + integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, 3492 + } 3493 + engines: { node: ">= 0.4" } 2241 3494 2242 3495 defu@6.1.4: 2243 - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 3496 + resolution: 3497 + { 3498 + integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==, 3499 + } 2244 3500 2245 3501 depd@2.0.0: 2246 - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 2247 - engines: {node: '>= 0.8'} 3502 + resolution: 3503 + { 3504 + integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, 3505 + } 3506 + engines: { node: ">= 0.8" } 2248 3507 2249 3508 dequal@2.0.3: 2250 - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 2251 - engines: {node: '>=6'} 3509 + resolution: 3510 + { 3511 + integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, 3512 + } 3513 + engines: { node: ">=6" } 2252 3514 2253 3515 des.js@1.1.0: 2254 - resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} 3516 + resolution: 3517 + { 3518 + integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==, 3519 + } 2255 3520 2256 3521 destr@2.0.5: 2257 - resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 3522 + resolution: 3523 + { 3524 + integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==, 3525 + } 2258 3526 2259 3527 destroy@1.2.0: 2260 - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 2261 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 3528 + resolution: 3529 + { 3530 + integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==, 3531 + } 3532 + engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } 2262 3533 2263 3534 detect-libc@2.1.1: 2264 - resolution: {integrity: sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==} 2265 - engines: {node: '>=8'} 3535 + resolution: 3536 + { 3537 + integrity: sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==, 3538 + } 3539 + engines: { node: ">=8" } 2266 3540 2267 3541 deterministic-object-hash@2.0.2: 2268 - resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} 2269 - engines: {node: '>=18'} 3542 + resolution: 3543 + { 3544 + integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==, 3545 + } 3546 + engines: { node: ">=18" } 2270 3547 2271 3548 devalue@5.3.2: 2272 - resolution: {integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==} 3549 + resolution: 3550 + { 3551 + integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==, 3552 + } 2273 3553 2274 3554 devlop@1.1.0: 2275 - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 3555 + resolution: 3556 + { 3557 + integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, 3558 + } 2276 3559 2277 3560 dfa@1.2.0: 2278 - resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} 3561 + resolution: 3562 + { 3563 + integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==, 3564 + } 2279 3565 2280 3566 diff-sequences@29.6.3: 2281 - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} 2282 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 3567 + resolution: 3568 + { 3569 + integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==, 3570 + } 3571 + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } 2283 3572 2284 3573 diff@5.2.0: 2285 - resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} 2286 - engines: {node: '>=0.3.1'} 3574 + resolution: 3575 + { 3576 + integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==, 3577 + } 3578 + engines: { node: ">=0.3.1" } 2287 3579 2288 3580 diffie-hellman@5.0.3: 2289 - resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} 3581 + resolution: 3582 + { 3583 + integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==, 3584 + } 2290 3585 2291 3586 dlv@1.1.3: 2292 - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 3587 + resolution: 3588 + { 3589 + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, 3590 + } 2293 3591 2294 3592 domain-browser@4.22.0: 2295 - resolution: {integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==} 2296 - engines: {node: '>=10'} 3593 + resolution: 3594 + { 3595 + integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==, 3596 + } 3597 + engines: { node: ">=10" } 2297 3598 2298 3599 dset@3.1.4: 2299 - resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} 2300 - engines: {node: '>=4'} 3600 + resolution: 3601 + { 3602 + integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==, 3603 + } 3604 + engines: { node: ">=4" } 2301 3605 2302 3606 dunder-proto@1.0.1: 2303 - resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 2304 - engines: {node: '>= 0.4'} 3607 + resolution: 3608 + { 3609 + integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==, 3610 + } 3611 + engines: { node: ">= 0.4" } 2305 3612 2306 3613 duplexer@0.1.2: 2307 - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} 3614 + resolution: 3615 + { 3616 + integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, 3617 + } 2308 3618 2309 3619 ee-first@1.1.1: 2310 - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 3620 + resolution: 3621 + { 3622 + integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, 3623 + } 2311 3624 2312 3625 electron-to-chromium@1.5.230: 2313 - resolution: {integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==} 3626 + resolution: 3627 + { 3628 + integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==, 3629 + } 2314 3630 2315 3631 elliptic@6.6.1: 2316 - resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} 3632 + resolution: 3633 + { 3634 + integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==, 3635 + } 2317 3636 2318 3637 embla-carousel-autoplay@8.6.0: 2319 - resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==} 3638 + resolution: 3639 + { 3640 + integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==, 3641 + } 2320 3642 peerDependencies: 2321 3643 embla-carousel: 8.6.0 2322 3644 2323 3645 embla-carousel-fade@8.6.0: 2324 - resolution: {integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==} 3646 + resolution: 3647 + { 3648 + integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==, 3649 + } 2325 3650 peerDependencies: 2326 3651 embla-carousel: 8.6.0 2327 3652 2328 3653 embla-carousel@8.6.0: 2329 - resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==} 3654 + resolution: 3655 + { 3656 + integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==, 3657 + } 2330 3658 2331 3659 emoji-regex@10.5.0: 2332 - resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==} 3660 + resolution: 3661 + { 3662 + integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==, 3663 + } 2333 3664 2334 3665 emoji-regex@8.0.0: 2335 - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 3666 + resolution: 3667 + { 3668 + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, 3669 + } 2336 3670 2337 3671 encodeurl@1.0.2: 2338 - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} 2339 - engines: {node: '>= 0.8'} 3672 + resolution: 3673 + { 3674 + integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, 3675 + } 3676 + engines: { node: ">= 0.8" } 2340 3677 2341 3678 encodeurl@2.0.0: 2342 - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 2343 - engines: {node: '>= 0.8'} 3679 + resolution: 3680 + { 3681 + integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==, 3682 + } 3683 + engines: { node: ">= 0.8" } 2344 3684 2345 3685 entities@6.0.1: 2346 - resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 2347 - engines: {node: '>=0.12'} 3686 + resolution: 3687 + { 3688 + integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==, 3689 + } 3690 + engines: { node: ">=0.12" } 2348 3691 2349 3692 env-paths@3.0.0: 2350 - resolution: {integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==} 2351 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.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 } 2352 3698 2353 3699 es-define-property@1.0.1: 2354 - resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 2355 - engines: {node: '>= 0.4'} 3700 + resolution: 3701 + { 3702 + integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==, 3703 + } 3704 + engines: { node: ">= 0.4" } 2356 3705 2357 3706 es-errors@1.3.0: 2358 - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 2359 - engines: {node: '>= 0.4'} 3707 + resolution: 3708 + { 3709 + integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, 3710 + } 3711 + engines: { node: ">= 0.4" } 2360 3712 2361 3713 es-module-lexer@1.7.0: 2362 - resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} 3714 + resolution: 3715 + { 3716 + integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==, 3717 + } 2363 3718 2364 3719 es-object-atoms@1.1.1: 2365 - resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 2366 - engines: {node: '>= 0.4'} 3720 + resolution: 3721 + { 3722 + integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==, 3723 + } 3724 + engines: { node: ">= 0.4" } 2367 3725 2368 3726 esbuild-plugins-node-modules-polyfill@1.7.1: 2369 - resolution: {integrity: sha512-IEaUhaS1RukGGcatDzqJmR+AzUWJ2upTJZP2i7FzR37Iw5Lk0LReCTnWnPMWnGG9lO4MWTGKEGGLWEOPegTRJA==} 2370 - engines: {node: '>=14.0.0'} 3727 + resolution: 3728 + { 3729 + integrity: sha512-IEaUhaS1RukGGcatDzqJmR+AzUWJ2upTJZP2i7FzR37Iw5Lk0LReCTnWnPMWnGG9lO4MWTGKEGGLWEOPegTRJA==, 3730 + } 3731 + engines: { node: ">=14.0.0" } 2371 3732 peerDependencies: 2372 - esbuild: '>=0.14.0 <=0.25.x' 3733 + esbuild: ">=0.14.0 <=0.25.x" 2373 3734 2374 3735 esbuild@0.21.5: 2375 - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 2376 - engines: {node: '>=12'} 3736 + resolution: 3737 + { 3738 + integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==, 3739 + } 3740 + engines: { node: ">=12" } 2377 3741 hasBin: true 2378 3742 2379 3743 esbuild@0.25.10: 2380 - resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} 2381 - engines: {node: '>=18'} 3744 + resolution: 3745 + { 3746 + integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==, 3747 + } 3748 + engines: { node: ">=18" } 2382 3749 hasBin: true 2383 3750 2384 3751 escalade@3.2.0: 2385 - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 2386 - engines: {node: '>=6'} 3752 + resolution: 3753 + { 3754 + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, 3755 + } 3756 + engines: { node: ">=6" } 2387 3757 2388 3758 escape-html@1.0.3: 2389 - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 3759 + resolution: 3760 + { 3761 + integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, 3762 + } 2390 3763 2391 3764 escape-string-regexp@5.0.0: 2392 - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 2393 - engines: {node: '>=12'} 3765 + resolution: 3766 + { 3767 + integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, 3768 + } 3769 + engines: { node: ">=12" } 2394 3770 2395 3771 estree-walker@2.0.2: 2396 - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 3772 + resolution: 3773 + { 3774 + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, 3775 + } 2397 3776 2398 3777 estree-walker@3.0.3: 2399 - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 3778 + resolution: 3779 + { 3780 + integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, 3781 + } 2400 3782 2401 3783 etag@1.8.1: 2402 - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 2403 - engines: {node: '>= 0.6'} 3784 + resolution: 3785 + { 3786 + integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, 3787 + } 3788 + engines: { node: ">= 0.6" } 2404 3789 2405 3790 event-stream@3.3.4: 2406 - resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} 3791 + resolution: 3792 + { 3793 + integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==, 3794 + } 2407 3795 2408 3796 event-target-shim@5.0.1: 2409 - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 2410 - engines: {node: '>=6'} 3797 + resolution: 3798 + { 3799 + integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, 3800 + } 3801 + engines: { node: ">=6" } 2411 3802 2412 3803 eventemitter3@5.0.1: 2413 - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 3804 + resolution: 3805 + { 3806 + integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, 3807 + } 2414 3808 2415 3809 events@3.3.0: 2416 - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 2417 - engines: {node: '>=0.8.x'} 3810 + resolution: 3811 + { 3812 + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, 3813 + } 3814 + engines: { node: ">=0.8.x" } 2418 3815 2419 3816 evp_bytestokey@1.0.3: 2420 - resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} 3817 + resolution: 3818 + { 3819 + integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==, 3820 + } 2421 3821 2422 3822 execa@8.0.1: 2423 - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 2424 - engines: {node: '>=16.17'} 3823 + resolution: 3824 + { 3825 + integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, 3826 + } 3827 + engines: { node: ">=16.17" } 2425 3828 2426 3829 express@4.21.2: 2427 - resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} 2428 - engines: {node: '>= 0.10.0'} 3830 + resolution: 3831 + { 3832 + integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==, 3833 + } 3834 + engines: { node: ">= 0.10.0" } 2429 3835 2430 3836 exsolve@1.0.7: 2431 - resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} 3837 + resolution: 3838 + { 3839 + integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==, 3840 + } 2432 3841 2433 3842 extend@3.0.2: 2434 - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 3843 + resolution: 3844 + { 3845 + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, 3846 + } 2435 3847 2436 3848 fast-deep-equal@3.1.3: 2437 - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 3849 + resolution: 3850 + { 3851 + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, 3852 + } 2438 3853 2439 3854 fast-glob@3.3.3: 2440 - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 2441 - engines: {node: '>=8.6.0'} 3855 + resolution: 3856 + { 3857 + integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==, 3858 + } 3859 + engines: { node: ">=8.6.0" } 2442 3860 2443 3861 fast-redact@3.5.0: 2444 - resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} 2445 - engines: {node: '>=6'} 3862 + resolution: 3863 + { 3864 + integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==, 3865 + } 3866 + engines: { node: ">=6" } 2446 3867 2447 3868 fast-uri@3.1.0: 2448 - resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==} 3869 + resolution: 3870 + { 3871 + integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==, 3872 + } 2449 3873 2450 3874 fastq@1.19.1: 2451 - resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 3875 + resolution: 3876 + { 3877 + integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==, 3878 + } 2452 3879 2453 3880 fdir@6.5.0: 2454 - resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 2455 - engines: {node: '>=12.0.0'} 3881 + resolution: 3882 + { 3883 + integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==, 3884 + } 3885 + engines: { node: ">=12.0.0" } 2456 3886 peerDependencies: 2457 3887 picomatch: ^3 || ^4 2458 3888 peerDependenciesMeta: ··· 2460 3890 optional: true 2461 3891 2462 3892 fill-range@7.1.1: 2463 - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 2464 - engines: {node: '>=8'} 3893 + resolution: 3894 + { 3895 + integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, 3896 + } 3897 + engines: { node: ">=8" } 2465 3898 2466 3899 finalhandler@1.3.1: 2467 - resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} 2468 - engines: {node: '>= 0.8'} 3900 + resolution: 3901 + { 3902 + integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==, 3903 + } 3904 + engines: { node: ">= 0.8" } 2469 3905 2470 3906 find-up@5.0.0: 2471 - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 2472 - engines: {node: '>=10'} 3907 + resolution: 3908 + { 3909 + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, 3910 + } 3911 + engines: { node: ">=10" } 2473 3912 2474 3913 flattie@1.1.1: 2475 - resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 2476 - engines: {node: '>=8'} 3914 + resolution: 3915 + { 3916 + integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==, 3917 + } 3918 + engines: { node: ">=8" } 2477 3919 2478 3920 fontace@0.3.0: 2479 - resolution: {integrity: sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==} 3921 + resolution: 3922 + { 3923 + integrity: sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==, 3924 + } 2480 3925 2481 3926 fontkit@2.0.4: 2482 - resolution: {integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==} 3927 + resolution: 3928 + { 3929 + integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==, 3930 + } 2483 3931 2484 3932 for-each@0.3.5: 2485 - resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} 2486 - engines: {node: '>= 0.4'} 3933 + resolution: 3934 + { 3935 + integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==, 3936 + } 3937 + engines: { node: ">= 0.4" } 2487 3938 2488 3939 forwarded@0.2.0: 2489 - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 2490 - engines: {node: '>= 0.6'} 3940 + resolution: 3941 + { 3942 + integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, 3943 + } 3944 + engines: { node: ">= 0.6" } 2491 3945 2492 3946 fresh@0.5.2: 2493 - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 2494 - engines: {node: '>= 0.6'} 3947 + resolution: 3948 + { 3949 + integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, 3950 + } 3951 + engines: { node: ">= 0.6" } 2495 3952 2496 3953 from@0.1.7: 2497 - resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} 3954 + resolution: 3955 + { 3956 + integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==, 3957 + } 2498 3958 2499 3959 fsevents@2.3.3: 2500 - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 2501 - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 3960 + resolution: 3961 + { 3962 + integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, 3963 + } 3964 + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } 2502 3965 os: [darwin] 2503 3966 2504 3967 function-bind@1.1.2: 2505 - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 3968 + resolution: 3969 + { 3970 + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, 3971 + } 2506 3972 2507 3973 generator-function@2.0.1: 2508 - resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} 2509 - engines: {node: '>= 0.4'} 3974 + resolution: 3975 + { 3976 + integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==, 3977 + } 3978 + engines: { node: ">= 0.4" } 2510 3979 2511 3980 gensync@1.0.0-beta.2: 2512 - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 2513 - engines: {node: '>=6.9.0'} 3981 + resolution: 3982 + { 3983 + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, 3984 + } 3985 + engines: { node: ">=6.9.0" } 2514 3986 2515 3987 get-caller-file@2.0.5: 2516 - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 2517 - engines: {node: 6.* || 8.* || >= 10.*} 3988 + resolution: 3989 + { 3990 + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, 3991 + } 3992 + engines: { node: 6.* || 8.* || >= 10.* } 2518 3993 2519 3994 get-east-asian-width@1.4.0: 2520 - resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==} 2521 - engines: {node: '>=18'} 3995 + resolution: 3996 + { 3997 + integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==, 3998 + } 3999 + engines: { node: ">=18" } 2522 4000 2523 4001 get-func-name@2.0.2: 2524 - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} 4002 + resolution: 4003 + { 4004 + integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==, 4005 + } 2525 4006 2526 4007 get-intrinsic@1.3.0: 2527 - resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} 2528 - engines: {node: '>= 0.4'} 4008 + resolution: 4009 + { 4010 + integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==, 4011 + } 4012 + engines: { node: ">= 0.4" } 2529 4013 2530 4014 get-proto@1.0.1: 2531 - resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 2532 - engines: {node: '>= 0.4'} 4015 + resolution: 4016 + { 4017 + integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==, 4018 + } 4019 + engines: { node: ">= 0.4" } 2533 4020 2534 4021 get-stream@8.0.1: 2535 - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 2536 - engines: {node: '>=16'} 4022 + resolution: 4023 + { 4024 + integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, 4025 + } 4026 + engines: { node: ">=16" } 2537 4027 2538 4028 github-slugger@2.0.0: 2539 - resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 4029 + resolution: 4030 + { 4031 + integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==, 4032 + } 2540 4033 2541 4034 glob-parent@5.1.2: 2542 - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 2543 - engines: {node: '>= 6'} 4035 + resolution: 4036 + { 4037 + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, 4038 + } 4039 + engines: { node: ">= 6" } 2544 4040 2545 4041 globby@14.1.0: 2546 - resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} 2547 - engines: {node: '>=18'} 4042 + resolution: 4043 + { 4044 + integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==, 4045 + } 4046 + engines: { node: ">=18" } 2548 4047 2549 4048 gopd@1.2.0: 2550 - resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 2551 - engines: {node: '>= 0.4'} 4049 + resolution: 4050 + { 4051 + integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==, 4052 + } 4053 + engines: { node: ">= 0.4" } 2552 4054 2553 4055 graphemer@1.4.0: 2554 - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 4056 + resolution: 4057 + { 4058 + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, 4059 + } 2555 4060 2556 4061 h3@1.15.4: 2557 - resolution: {integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==} 4062 + resolution: 4063 + { 4064 + integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==, 4065 + } 2558 4066 2559 4067 has-flag@4.0.0: 2560 - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 2561 - engines: {node: '>=8'} 4068 + resolution: 4069 + { 4070 + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, 4071 + } 4072 + engines: { node: ">=8" } 2562 4073 2563 4074 has-property-descriptors@1.0.2: 2564 - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 4075 + resolution: 4076 + { 4077 + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, 4078 + } 2565 4079 2566 4080 has-symbols@1.1.0: 2567 - resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 2568 - engines: {node: '>= 0.4'} 4081 + resolution: 4082 + { 4083 + integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==, 4084 + } 4085 + engines: { node: ">= 0.4" } 2569 4086 2570 4087 has-tostringtag@1.0.2: 2571 - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 2572 - engines: {node: '>= 0.4'} 4088 + resolution: 4089 + { 4090 + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, 4091 + } 4092 + engines: { node: ">= 0.4" } 2573 4093 2574 4094 hash-base@3.0.5: 2575 - resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} 2576 - engines: {node: '>= 0.10'} 4095 + resolution: 4096 + { 4097 + integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==, 4098 + } 4099 + engines: { node: ">= 0.10" } 2577 4100 2578 4101 hash-base@3.1.2: 2579 - resolution: {integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==} 2580 - engines: {node: '>= 0.8'} 4102 + resolution: 4103 + { 4104 + integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==, 4105 + } 4106 + engines: { node: ">= 0.8" } 2581 4107 2582 4108 hash.js@1.1.7: 2583 - resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} 4109 + resolution: 4110 + { 4111 + integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==, 4112 + } 2584 4113 2585 4114 hasown@2.0.2: 2586 - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 2587 - engines: {node: '>= 0.4'} 4115 + resolution: 4116 + { 4117 + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, 4118 + } 4119 + engines: { node: ">= 0.4" } 2588 4120 2589 4121 hast-util-from-html@2.0.3: 2590 - resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} 4122 + resolution: 4123 + { 4124 + integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==, 4125 + } 2591 4126 2592 4127 hast-util-from-parse5@8.0.3: 2593 - resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} 4128 + resolution: 4129 + { 4130 + integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==, 4131 + } 2594 4132 2595 4133 hast-util-is-element@3.0.0: 2596 - resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 4134 + resolution: 4135 + { 4136 + integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==, 4137 + } 2597 4138 2598 4139 hast-util-parse-selector@4.0.0: 2599 - resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 4140 + resolution: 4141 + { 4142 + integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, 4143 + } 2600 4144 2601 4145 hast-util-raw@9.1.0: 2602 - resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} 4146 + resolution: 4147 + { 4148 + integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==, 4149 + } 2603 4150 2604 4151 hast-util-to-html@9.0.5: 2605 - resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 4152 + resolution: 4153 + { 4154 + integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==, 4155 + } 2606 4156 2607 4157 hast-util-to-parse5@8.0.0: 2608 - resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} 4158 + resolution: 4159 + { 4160 + integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==, 4161 + } 2609 4162 2610 4163 hast-util-to-text@4.0.2: 2611 - resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 4164 + resolution: 4165 + { 4166 + integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==, 4167 + } 2612 4168 2613 4169 hast-util-whitespace@3.0.0: 2614 - resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 4170 + resolution: 4171 + { 4172 + integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==, 4173 + } 2615 4174 2616 4175 hastscript@9.0.1: 2617 - resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} 4176 + resolution: 4177 + { 4178 + integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==, 4179 + } 2618 4180 2619 4181 hmac-drbg@1.0.1: 2620 - resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} 4182 + resolution: 4183 + { 4184 + integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==, 4185 + } 2621 4186 2622 4187 html-escaper@3.0.3: 2623 - resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 4188 + resolution: 4189 + { 4190 + integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==, 4191 + } 2624 4192 2625 4193 html-void-elements@3.0.0: 2626 - resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 4194 + resolution: 4195 + { 4196 + integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, 4197 + } 2627 4198 2628 4199 http-cache-semantics@4.2.0: 2629 - resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} 4200 + resolution: 4201 + { 4202 + integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==, 4203 + } 2630 4204 2631 4205 http-errors@2.0.0: 2632 - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 2633 - engines: {node: '>= 0.8'} 4206 + resolution: 4207 + { 4208 + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, 4209 + } 4210 + engines: { node: ">= 0.8" } 2634 4211 2635 4212 https-browserify@1.0.0: 2636 - resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} 4213 + resolution: 4214 + { 4215 + integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==, 4216 + } 2637 4217 2638 4218 human-signals@5.0.0: 2639 - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 2640 - engines: {node: '>=16.17.0'} 4219 + resolution: 4220 + { 4221 + integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, 4222 + } 4223 + engines: { node: ">=16.17.0" } 2641 4224 2642 4225 iconv-lite@0.4.24: 2643 - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 2644 - engines: {node: '>=0.10.0'} 4226 + resolution: 4227 + { 4228 + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, 4229 + } 4230 + engines: { node: ">=0.10.0" } 2645 4231 2646 4232 iconv-lite@0.7.0: 2647 - resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==} 2648 - engines: {node: '>=0.10.0'} 4233 + resolution: 4234 + { 4235 + integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==, 4236 + } 4237 + engines: { node: ">=0.10.0" } 2649 4238 2650 4239 ieee754@1.2.1: 2651 - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 4240 + resolution: 4241 + { 4242 + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, 4243 + } 2652 4244 2653 4245 ignore@7.0.5: 2654 - resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} 2655 - engines: {node: '>= 4'} 4246 + resolution: 4247 + { 4248 + integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==, 4249 + } 4250 + engines: { node: ">= 4" } 2656 4251 2657 4252 import-meta-resolve@4.2.0: 2658 - resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} 4253 + resolution: 4254 + { 4255 + integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==, 4256 + } 2659 4257 2660 4258 inherits@2.0.4: 2661 - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 4259 + resolution: 4260 + { 4261 + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, 4262 + } 2662 4263 2663 4264 ipaddr.js@1.9.1: 2664 - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 2665 - engines: {node: '>= 0.10'} 4265 + resolution: 4266 + { 4267 + integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, 4268 + } 4269 + engines: { node: ">= 0.10" } 2666 4270 2667 4271 iron-webcrypto@1.2.1: 2668 - resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 4272 + resolution: 4273 + { 4274 + integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==, 4275 + } 2669 4276 2670 4277 is-arguments@1.2.0: 2671 - resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} 2672 - engines: {node: '>= 0.4'} 4278 + resolution: 4279 + { 4280 + integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==, 4281 + } 4282 + engines: { node: ">= 0.4" } 2673 4283 2674 4284 is-callable@1.2.7: 2675 - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 2676 - engines: {node: '>= 0.4'} 4285 + resolution: 4286 + { 4287 + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, 4288 + } 4289 + engines: { node: ">= 0.4" } 2677 4290 2678 4291 is-core-module@2.16.1: 2679 - resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 2680 - engines: {node: '>= 0.4'} 4292 + resolution: 4293 + { 4294 + integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==, 4295 + } 4296 + engines: { node: ">= 0.4" } 2681 4297 2682 4298 is-docker@3.0.0: 2683 - resolution: {integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==} 2684 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.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 } 2685 4304 hasBin: true 2686 4305 2687 4306 is-extglob@2.1.1: 2688 - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2689 - engines: {node: '>=0.10.0'} 4307 + resolution: 4308 + { 4309 + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, 4310 + } 4311 + engines: { node: ">=0.10.0" } 2690 4312 2691 4313 is-fullwidth-code-point@3.0.0: 2692 - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2693 - engines: {node: '>=8'} 4314 + resolution: 4315 + { 4316 + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, 4317 + } 4318 + engines: { node: ">=8" } 2694 4319 2695 4320 is-generator-function@1.1.2: 2696 - resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} 2697 - engines: {node: '>= 0.4'} 4321 + resolution: 4322 + { 4323 + integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==, 4324 + } 4325 + engines: { node: ">= 0.4" } 2698 4326 2699 4327 is-glob@4.0.3: 2700 - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2701 - engines: {node: '>=0.10.0'} 4328 + resolution: 4329 + { 4330 + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, 4331 + } 4332 + engines: { node: ">=0.10.0" } 2702 4333 2703 4334 is-inside-container@1.0.0: 2704 - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 2705 - engines: {node: '>=14.16'} 4335 + resolution: 4336 + { 4337 + integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==, 4338 + } 4339 + engines: { node: ">=14.16" } 2706 4340 hasBin: true 2707 4341 2708 4342 is-nan@1.3.2: 2709 - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} 2710 - engines: {node: '>= 0.4'} 4343 + resolution: 4344 + { 4345 + integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==, 4346 + } 4347 + engines: { node: ">= 0.4" } 2711 4348 2712 4349 is-number@7.0.0: 2713 - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2714 - engines: {node: '>=0.12.0'} 4350 + resolution: 4351 + { 4352 + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, 4353 + } 4354 + engines: { node: ">=0.12.0" } 2715 4355 2716 4356 is-plain-obj@4.1.0: 2717 - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 2718 - engines: {node: '>=12'} 4357 + resolution: 4358 + { 4359 + integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, 4360 + } 4361 + engines: { node: ">=12" } 2719 4362 2720 4363 is-regex@1.2.1: 2721 - resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 2722 - engines: {node: '>= 0.4'} 4364 + resolution: 4365 + { 4366 + integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==, 4367 + } 4368 + engines: { node: ">= 0.4" } 2723 4369 2724 4370 is-stream@3.0.0: 2725 - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 2726 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 4371 + resolution: 4372 + { 4373 + integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, 4374 + } 4375 + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 2727 4376 2728 4377 is-typed-array@1.1.15: 2729 - resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 2730 - engines: {node: '>= 0.4'} 4378 + resolution: 4379 + { 4380 + integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==, 4381 + } 4382 + engines: { node: ">= 0.4" } 2731 4383 2732 4384 is-unicode-supported@2.1.0: 2733 - resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} 2734 - engines: {node: '>=18'} 4385 + resolution: 4386 + { 4387 + integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==, 4388 + } 4389 + engines: { node: ">=18" } 2735 4390 2736 4391 is-wsl@3.1.0: 2737 - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 2738 - engines: {node: '>=16'} 4392 + resolution: 4393 + { 4394 + integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==, 4395 + } 4396 + engines: { node: ">=16" } 2739 4397 2740 4398 isarray@1.0.0: 2741 - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 4399 + resolution: 4400 + { 4401 + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, 4402 + } 2742 4403 2743 4404 isarray@2.0.5: 2744 - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 4405 + resolution: 4406 + { 4407 + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, 4408 + } 2745 4409 2746 4410 isexe@2.0.0: 2747 - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 4411 + resolution: 4412 + { 4413 + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, 4414 + } 2748 4415 2749 4416 iso-datestring-validator@2.2.2: 2750 - resolution: {integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==} 4417 + resolution: 4418 + { 4419 + integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==, 4420 + } 2751 4421 2752 4422 isomorphic-timers-promises@1.0.1: 2753 - resolution: {integrity: sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ==} 2754 - engines: {node: '>=10'} 4423 + resolution: 4424 + { 4425 + integrity: sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ==, 4426 + } 4427 + engines: { node: ">=10" } 2755 4428 2756 4429 js-tokens@4.0.0: 2757 - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 4430 + resolution: 4431 + { 4432 + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, 4433 + } 2758 4434 2759 4435 js-tokens@9.0.1: 2760 - resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} 4436 + resolution: 4437 + { 4438 + integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==, 4439 + } 2761 4440 2762 4441 js-yaml@4.1.0: 2763 - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 4442 + resolution: 4443 + { 4444 + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, 4445 + } 2764 4446 hasBin: true 2765 4447 2766 4448 jsesc@3.1.0: 2767 - resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 2768 - engines: {node: '>=6'} 4449 + resolution: 4450 + { 4451 + integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==, 4452 + } 4453 + engines: { node: ">=6" } 2769 4454 hasBin: true 2770 4455 2771 4456 json-schema-traverse@1.0.0: 2772 - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 4457 + resolution: 4458 + { 4459 + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, 4460 + } 2773 4461 2774 4462 json-stringify-pretty-compact@4.0.0: 2775 - resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==} 4463 + resolution: 4464 + { 4465 + integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==, 4466 + } 2776 4467 2777 4468 json5@2.2.3: 2778 - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 2779 - engines: {node: '>=6'} 4469 + resolution: 4470 + { 4471 + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, 4472 + } 4473 + engines: { node: ">=6" } 2780 4474 hasBin: true 2781 4475 2782 4476 keyborg@2.6.0: 2783 - resolution: {integrity: sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==} 4477 + resolution: 4478 + { 4479 + integrity: sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==, 4480 + } 2784 4481 2785 4482 kleur@3.0.3: 2786 - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 2787 - engines: {node: '>=6'} 4483 + resolution: 4484 + { 4485 + integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, 4486 + } 4487 + engines: { node: ">=6" } 2788 4488 2789 4489 kleur@4.1.5: 2790 - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 2791 - engines: {node: '>=6'} 4490 + resolution: 4491 + { 4492 + integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, 4493 + } 4494 + engines: { node: ">=6" } 2792 4495 2793 4496 local-pkg@0.5.1: 2794 - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} 2795 - engines: {node: '>=14'} 4497 + resolution: 4498 + { 4499 + integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==, 4500 + } 4501 + engines: { node: ">=14" } 2796 4502 2797 4503 local-pkg@1.1.2: 2798 - resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} 2799 - engines: {node: '>=14'} 4504 + resolution: 4505 + { 4506 + integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==, 4507 + } 4508 + engines: { node: ">=14" } 2800 4509 2801 4510 locate-path@6.0.0: 2802 - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2803 - engines: {node: '>=10'} 4511 + resolution: 4512 + { 4513 + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, 4514 + } 4515 + engines: { node: ">=10" } 2804 4516 2805 4517 longest-streak@3.1.0: 2806 - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 4518 + resolution: 4519 + { 4520 + integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==, 4521 + } 2807 4522 2808 4523 loose-envify@1.4.0: 2809 - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 4524 + resolution: 4525 + { 4526 + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, 4527 + } 2810 4528 hasBin: true 2811 4529 2812 4530 loupe@2.3.7: 2813 - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} 4531 + resolution: 4532 + { 4533 + integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==, 4534 + } 2814 4535 2815 4536 lru-cache@10.4.3: 2816 - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 4537 + resolution: 4538 + { 4539 + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, 4540 + } 2817 4541 2818 4542 lru-cache@5.1.1: 2819 - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 4543 + resolution: 4544 + { 4545 + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, 4546 + } 2820 4547 2821 4548 lzutf8@0.6.3: 2822 - resolution: {integrity: sha512-CAkF9HKrM+XpB0f3DepQ2to2iUEo0zrbh+XgBqgNBc1+k8HMM3u/YSfHI3Dr4GmoTIez2Pr/If1XFl3rU26AwA==} 4549 + resolution: 4550 + { 4551 + integrity: sha512-CAkF9HKrM+XpB0f3DepQ2to2iUEo0zrbh+XgBqgNBc1+k8HMM3u/YSfHI3Dr4GmoTIez2Pr/If1XFl3rU26AwA==, 4552 + } 2823 4553 2824 4554 magic-string@0.30.19: 2825 - resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} 4555 + resolution: 4556 + { 4557 + integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==, 4558 + } 2826 4559 2827 4560 magicast@0.3.5: 2828 - resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 4561 + resolution: 4562 + { 4563 + integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==, 4564 + } 2829 4565 2830 4566 map-stream@0.1.0: 2831 - resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} 4567 + resolution: 4568 + { 4569 + integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==, 4570 + } 2832 4571 2833 4572 markdown-table@3.0.4: 2834 - resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 4573 + resolution: 4574 + { 4575 + integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==, 4576 + } 2835 4577 2836 4578 math-intrinsics@1.1.0: 2837 - resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 2838 - engines: {node: '>= 0.4'} 4579 + resolution: 4580 + { 4581 + integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==, 4582 + } 4583 + engines: { node: ">= 0.4" } 2839 4584 2840 4585 md5.js@1.3.5: 2841 - resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} 4586 + resolution: 4587 + { 4588 + integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==, 4589 + } 2842 4590 2843 4591 mdast-util-definitions@6.0.0: 2844 - resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} 4592 + resolution: 4593 + { 4594 + integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==, 4595 + } 2845 4596 2846 4597 mdast-util-find-and-replace@3.0.2: 2847 - resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 4598 + resolution: 4599 + { 4600 + integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==, 4601 + } 2848 4602 2849 4603 mdast-util-from-markdown@2.0.2: 2850 - resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 4604 + resolution: 4605 + { 4606 + integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==, 4607 + } 2851 4608 2852 4609 mdast-util-gfm-autolink-literal@2.0.1: 2853 - resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 4610 + resolution: 4611 + { 4612 + integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==, 4613 + } 2854 4614 2855 4615 mdast-util-gfm-footnote@2.1.0: 2856 - resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} 4616 + resolution: 4617 + { 4618 + integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==, 4619 + } 2857 4620 2858 4621 mdast-util-gfm-strikethrough@2.0.0: 2859 - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 4622 + resolution: 4623 + { 4624 + integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==, 4625 + } 2860 4626 2861 4627 mdast-util-gfm-table@2.0.0: 2862 - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 4628 + resolution: 4629 + { 4630 + integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==, 4631 + } 2863 4632 2864 4633 mdast-util-gfm-task-list-item@2.0.0: 2865 - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 4634 + resolution: 4635 + { 4636 + integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==, 4637 + } 2866 4638 2867 4639 mdast-util-gfm@3.1.0: 2868 - resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} 4640 + resolution: 4641 + { 4642 + integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==, 4643 + } 2869 4644 2870 4645 mdast-util-phrasing@4.1.0: 2871 - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 4646 + resolution: 4647 + { 4648 + integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==, 4649 + } 2872 4650 2873 4651 mdast-util-to-hast@13.2.0: 2874 - resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 4652 + resolution: 4653 + { 4654 + integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==, 4655 + } 2875 4656 2876 4657 mdast-util-to-markdown@2.1.2: 2877 - resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 4658 + resolution: 4659 + { 4660 + integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==, 4661 + } 2878 4662 2879 4663 mdast-util-to-string@4.0.0: 2880 - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 4664 + resolution: 4665 + { 4666 + integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==, 4667 + } 2881 4668 2882 4669 mdn-data@2.12.2: 2883 - resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} 4670 + resolution: 4671 + { 4672 + integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==, 4673 + } 2884 4674 2885 4675 media-typer@0.3.0: 2886 - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} 2887 - engines: {node: '>= 0.6'} 4676 + resolution: 4677 + { 4678 + integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==, 4679 + } 4680 + engines: { node: ">= 0.6" } 2888 4681 2889 4682 merge-descriptors@1.0.3: 2890 - resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} 4683 + resolution: 4684 + { 4685 + integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==, 4686 + } 2891 4687 2892 4688 merge-stream@2.0.0: 2893 - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 4689 + resolution: 4690 + { 4691 + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, 4692 + } 2894 4693 2895 4694 merge2@1.4.1: 2896 - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2897 - engines: {node: '>= 8'} 4695 + resolution: 4696 + { 4697 + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, 4698 + } 4699 + engines: { node: ">= 8" } 2898 4700 2899 4701 methods@1.1.2: 2900 - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 2901 - engines: {node: '>= 0.6'} 4702 + resolution: 4703 + { 4704 + integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, 4705 + } 4706 + engines: { node: ">= 0.6" } 2902 4707 2903 4708 micromark-core-commonmark@2.0.3: 2904 - resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 4709 + resolution: 4710 + { 4711 + integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==, 4712 + } 2905 4713 2906 4714 micromark-extension-gfm-autolink-literal@2.1.0: 2907 - resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 4715 + resolution: 4716 + { 4717 + integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==, 4718 + } 2908 4719 2909 4720 micromark-extension-gfm-footnote@2.1.0: 2910 - resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 4721 + resolution: 4722 + { 4723 + integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==, 4724 + } 2911 4725 2912 4726 micromark-extension-gfm-strikethrough@2.1.0: 2913 - resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 4727 + resolution: 4728 + { 4729 + integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==, 4730 + } 2914 4731 2915 4732 micromark-extension-gfm-table@2.1.1: 2916 - resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} 4733 + resolution: 4734 + { 4735 + integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==, 4736 + } 2917 4737 2918 4738 micromark-extension-gfm-tagfilter@2.0.0: 2919 - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 4739 + resolution: 4740 + { 4741 + integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==, 4742 + } 2920 4743 2921 4744 micromark-extension-gfm-task-list-item@2.1.0: 2922 - resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 4745 + resolution: 4746 + { 4747 + integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==, 4748 + } 2923 4749 2924 4750 micromark-extension-gfm@3.0.0: 2925 - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 4751 + resolution: 4752 + { 4753 + integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==, 4754 + } 2926 4755 2927 4756 micromark-factory-destination@2.0.1: 2928 - resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 4757 + resolution: 4758 + { 4759 + integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==, 4760 + } 2929 4761 2930 4762 micromark-factory-label@2.0.1: 2931 - resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 4763 + resolution: 4764 + { 4765 + integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==, 4766 + } 2932 4767 2933 4768 micromark-factory-space@2.0.1: 2934 - resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 4769 + resolution: 4770 + { 4771 + integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==, 4772 + } 2935 4773 2936 4774 micromark-factory-title@2.0.1: 2937 - resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 4775 + resolution: 4776 + { 4777 + integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==, 4778 + } 2938 4779 2939 4780 micromark-factory-whitespace@2.0.1: 2940 - resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 4781 + resolution: 4782 + { 4783 + integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==, 4784 + } 2941 4785 2942 4786 micromark-util-character@2.1.1: 2943 - resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 4787 + resolution: 4788 + { 4789 + integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==, 4790 + } 2944 4791 2945 4792 micromark-util-chunked@2.0.1: 2946 - resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 4793 + resolution: 4794 + { 4795 + integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==, 4796 + } 2947 4797 2948 4798 micromark-util-classify-character@2.0.1: 2949 - resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 4799 + resolution: 4800 + { 4801 + integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==, 4802 + } 2950 4803 2951 4804 micromark-util-combine-extensions@2.0.1: 2952 - resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 4805 + resolution: 4806 + { 4807 + integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==, 4808 + } 2953 4809 2954 4810 micromark-util-decode-numeric-character-reference@2.0.2: 2955 - resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 4811 + resolution: 4812 + { 4813 + integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==, 4814 + } 2956 4815 2957 4816 micromark-util-decode-string@2.0.1: 2958 - resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 4817 + resolution: 4818 + { 4819 + integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==, 4820 + } 2959 4821 2960 4822 micromark-util-encode@2.0.1: 2961 - resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 4823 + resolution: 4824 + { 4825 + integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==, 4826 + } 2962 4827 2963 4828 micromark-util-html-tag-name@2.0.1: 2964 - resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 4829 + resolution: 4830 + { 4831 + integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==, 4832 + } 2965 4833 2966 4834 micromark-util-normalize-identifier@2.0.1: 2967 - resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 4835 + resolution: 4836 + { 4837 + integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==, 4838 + } 2968 4839 2969 4840 micromark-util-resolve-all@2.0.1: 2970 - resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 4841 + resolution: 4842 + { 4843 + integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==, 4844 + } 2971 4845 2972 4846 micromark-util-sanitize-uri@2.0.1: 2973 - resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 4847 + resolution: 4848 + { 4849 + integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==, 4850 + } 2974 4851 2975 4852 micromark-util-subtokenize@2.1.0: 2976 - resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} 4853 + resolution: 4854 + { 4855 + integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==, 4856 + } 2977 4857 2978 4858 micromark-util-symbol@2.0.1: 2979 - resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 4859 + resolution: 4860 + { 4861 + integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==, 4862 + } 2980 4863 2981 4864 micromark-util-types@2.0.2: 2982 - resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 4865 + resolution: 4866 + { 4867 + integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==, 4868 + } 2983 4869 2984 4870 micromark@4.0.2: 2985 - resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 4871 + resolution: 4872 + { 4873 + integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==, 4874 + } 2986 4875 2987 4876 micromatch@4.0.8: 2988 - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 2989 - engines: {node: '>=8.6'} 4877 + resolution: 4878 + { 4879 + integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, 4880 + } 4881 + engines: { node: ">=8.6" } 2990 4882 2991 4883 miller-rabin@4.0.1: 2992 - resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} 4884 + resolution: 4885 + { 4886 + integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==, 4887 + } 2993 4888 hasBin: true 2994 4889 2995 4890 mime-db@1.52.0: 2996 - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 2997 - engines: {node: '>= 0.6'} 4891 + resolution: 4892 + { 4893 + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, 4894 + } 4895 + engines: { node: ">= 0.6" } 2998 4896 2999 4897 mime-types@2.1.35: 3000 - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 3001 - engines: {node: '>= 0.6'} 4898 + resolution: 4899 + { 4900 + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, 4901 + } 4902 + engines: { node: ">= 0.6" } 3002 4903 3003 4904 mime@1.6.0: 3004 - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 3005 - engines: {node: '>=4'} 4905 + resolution: 4906 + { 4907 + integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, 4908 + } 4909 + engines: { node: ">=4" } 3006 4910 hasBin: true 3007 4911 3008 4912 mimic-fn@4.0.0: 3009 - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 3010 - engines: {node: '>=12'} 4913 + resolution: 4914 + { 4915 + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, 4916 + } 4917 + engines: { node: ">=12" } 3011 4918 3012 4919 minimalistic-assert@1.0.1: 3013 - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} 4920 + resolution: 4921 + { 4922 + integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==, 4923 + } 3014 4924 3015 4925 minimalistic-crypto-utils@1.0.1: 3016 - resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} 4926 + resolution: 4927 + { 4928 + integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==, 4929 + } 3017 4930 3018 4931 minimatch@9.0.5: 3019 - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 3020 - engines: {node: '>=16 || 14 >=14.17'} 4932 + resolution: 4933 + { 4934 + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, 4935 + } 4936 + engines: { node: ">=16 || 14 >=14.17" } 3021 4937 3022 4938 minipass@7.1.2: 3023 - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 3024 - engines: {node: '>=16 || 14 >=14.17'} 4939 + resolution: 4940 + { 4941 + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, 4942 + } 4943 + engines: { node: ">=16 || 14 >=14.17" } 3025 4944 3026 4945 minizlib@3.1.0: 3027 - resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} 3028 - engines: {node: '>= 18'} 4946 + resolution: 4947 + { 4948 + integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==, 4949 + } 4950 + engines: { node: ">= 18" } 3029 4951 3030 4952 mlly@1.8.0: 3031 - resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} 4953 + resolution: 4954 + { 4955 + integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==, 4956 + } 3032 4957 3033 4958 monaco-editor@0.52.2: 3034 - resolution: {integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==} 4959 + resolution: 4960 + { 4961 + integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==, 4962 + } 3035 4963 3036 4964 mrmime@2.0.1: 3037 - resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 3038 - engines: {node: '>=10'} 4965 + resolution: 4966 + { 4967 + integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==, 4968 + } 4969 + engines: { node: ">=10" } 3039 4970 3040 4971 ms@2.0.0: 3041 - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 4972 + resolution: 4973 + { 4974 + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, 4975 + } 3042 4976 3043 4977 ms@2.1.3: 3044 - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 4978 + resolution: 4979 + { 4980 + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, 4981 + } 3045 4982 3046 4983 multiformats@9.9.0: 3047 - resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} 4984 + resolution: 4985 + { 4986 + integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==, 4987 + } 3048 4988 3049 4989 mustache@4.2.0: 3050 - resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} 4990 + resolution: 4991 + { 4992 + integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==, 4993 + } 3051 4994 hasBin: true 3052 4995 3053 4996 mute-stream@2.0.0: 3054 - resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} 3055 - engines: {node: ^18.17.0 || >=20.5.0} 4997 + resolution: 4998 + { 4999 + integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==, 5000 + } 5001 + engines: { node: ^18.17.0 || >=20.5.0 } 3056 5002 3057 5003 nanoid@3.3.11: 3058 - resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 3059 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 5004 + resolution: 5005 + { 5006 + integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==, 5007 + } 5008 + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } 3060 5009 hasBin: true 3061 5010 3062 5011 negotiator@0.6.3: 3063 - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} 3064 - engines: {node: '>= 0.6'} 5012 + resolution: 5013 + { 5014 + integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, 5015 + } 5016 + engines: { node: ">= 0.6" } 3065 5017 3066 5018 neotraverse@0.6.18: 3067 - resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 3068 - engines: {node: '>= 10'} 5019 + resolution: 5020 + { 5021 + integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==, 5022 + } 5023 + engines: { node: ">= 10" } 3069 5024 3070 5025 nlcst-to-string@4.0.0: 3071 - resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 5026 + resolution: 5027 + { 5028 + integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==, 5029 + } 3072 5030 3073 5031 node-cleanup@2.1.2: 3074 - resolution: {integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==} 5032 + resolution: 5033 + { 5034 + integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==, 5035 + } 3075 5036 3076 5037 node-fetch-native@1.6.7: 3077 - resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} 5038 + resolution: 5039 + { 5040 + integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==, 5041 + } 3078 5042 3079 5043 node-fetch@2.7.0: 3080 - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 3081 - engines: {node: 4.x || >=6.0.0} 5044 + resolution: 5045 + { 5046 + integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, 5047 + } 5048 + engines: { node: 4.x || >=6.0.0 } 3082 5049 peerDependencies: 3083 5050 encoding: ^0.1.0 3084 5051 peerDependenciesMeta: ··· 3086 5053 optional: true 3087 5054 3088 5055 node-gyp-build-optional-packages@5.1.1: 3089 - resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==} 5056 + resolution: 5057 + { 5058 + integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==, 5059 + } 3090 5060 hasBin: true 3091 5061 3092 5062 node-mock-http@1.0.3: 3093 - resolution: {integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==} 5063 + resolution: 5064 + { 5065 + integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==, 5066 + } 3094 5067 3095 5068 node-releases@2.0.23: 3096 - resolution: {integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==} 5069 + resolution: 5070 + { 5071 + integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==, 5072 + } 3097 5073 3098 5074 node-stdlib-browser@1.3.1: 3099 - resolution: {integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==} 3100 - engines: {node: '>=10'} 5075 + resolution: 5076 + { 5077 + integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==, 5078 + } 5079 + engines: { node: ">=10" } 3101 5080 3102 5081 normalize-path@3.0.0: 3103 - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 3104 - engines: {node: '>=0.10.0'} 5082 + resolution: 5083 + { 5084 + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, 5085 + } 5086 + engines: { node: ">=0.10.0" } 3105 5087 3106 5088 npm-run-path@5.3.0: 3107 - resolution: {integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==} 3108 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 5089 + resolution: 5090 + { 5091 + integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, 5092 + } 5093 + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 3109 5094 3110 5095 object-inspect@1.13.4: 3111 - resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 3112 - engines: {node: '>= 0.4'} 5096 + resolution: 5097 + { 5098 + integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==, 5099 + } 5100 + engines: { node: ">= 0.4" } 3113 5101 3114 5102 object-is@1.1.6: 3115 - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} 3116 - engines: {node: '>= 0.4'} 5103 + resolution: 5104 + { 5105 + integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==, 5106 + } 5107 + engines: { node: ">= 0.4" } 3117 5108 3118 5109 object-keys@1.1.1: 3119 - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 3120 - engines: {node: '>= 0.4'} 5110 + resolution: 5111 + { 5112 + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, 5113 + } 5114 + engines: { node: ">= 0.4" } 3121 5115 3122 5116 object.assign@4.1.7: 3123 - resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 3124 - engines: {node: '>= 0.4'} 5117 + resolution: 5118 + { 5119 + integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==, 5120 + } 5121 + engines: { node: ">= 0.4" } 3125 5122 3126 5123 ofetch@1.4.1: 3127 - resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} 5124 + resolution: 5125 + { 5126 + integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==, 5127 + } 3128 5128 3129 5129 ohash@2.0.11: 3130 - resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 5130 + resolution: 5131 + { 5132 + integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==, 5133 + } 3131 5134 3132 5135 on-exit-leak-free@2.1.2: 3133 - resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} 3134 - engines: {node: '>=14.0.0'} 5136 + resolution: 5137 + { 5138 + integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==, 5139 + } 5140 + engines: { node: ">=14.0.0" } 3135 5141 3136 5142 on-finished@2.4.1: 3137 - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 3138 - engines: {node: '>= 0.8'} 5143 + resolution: 5144 + { 5145 + integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==, 5146 + } 5147 + engines: { node: ">= 0.8" } 3139 5148 3140 5149 onetime@6.0.0: 3141 - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 3142 - engines: {node: '>=12'} 5150 + resolution: 5151 + { 5152 + integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, 5153 + } 5154 + engines: { node: ">=12" } 3143 5155 3144 5156 oniguruma-parser@0.12.1: 3145 - resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} 5157 + resolution: 5158 + { 5159 + integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==, 5160 + } 3146 5161 3147 5162 oniguruma-to-es@4.3.3: 3148 - resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==} 5163 + resolution: 5164 + { 5165 + integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==, 5166 + } 3149 5167 3150 5168 openapi-types@12.1.3: 3151 - resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==} 5169 + resolution: 5170 + { 5171 + integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==, 5172 + } 3152 5173 3153 5174 os-browserify@0.3.0: 3154 - resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} 5175 + resolution: 5176 + { 5177 + integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==, 5178 + } 3155 5179 3156 5180 p-limit@3.1.0: 3157 - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 3158 - engines: {node: '>=10'} 5181 + resolution: 5182 + { 5183 + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, 5184 + } 5185 + engines: { node: ">=10" } 3159 5186 3160 5187 p-limit@5.0.0: 3161 - resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} 3162 - engines: {node: '>=18'} 5188 + resolution: 5189 + { 5190 + integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==, 5191 + } 5192 + engines: { node: ">=18" } 3163 5193 3164 5194 p-limit@6.2.0: 3165 - resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} 3166 - engines: {node: '>=18'} 5195 + resolution: 5196 + { 5197 + integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==, 5198 + } 5199 + engines: { node: ">=18" } 3167 5200 3168 5201 p-locate@5.0.0: 3169 - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 3170 - engines: {node: '>=10'} 5202 + resolution: 5203 + { 5204 + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, 5205 + } 5206 + engines: { node: ">=10" } 3171 5207 3172 5208 p-queue@8.1.1: 3173 - resolution: {integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==} 3174 - engines: {node: '>=18'} 5209 + resolution: 5210 + { 5211 + integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==, 5212 + } 5213 + engines: { node: ">=18" } 3175 5214 3176 5215 p-timeout@6.1.4: 3177 - resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} 3178 - engines: {node: '>=14.16'} 5216 + resolution: 5217 + { 5218 + integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==, 5219 + } 5220 + engines: { node: ">=14.16" } 3179 5221 3180 5222 package-manager-detector@1.3.0: 3181 - resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} 5223 + resolution: 5224 + { 5225 + integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==, 5226 + } 3182 5227 3183 5228 pako@0.2.9: 3184 - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} 5229 + resolution: 5230 + { 5231 + integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==, 5232 + } 3185 5233 3186 5234 pako@1.0.11: 3187 - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} 5235 + resolution: 5236 + { 5237 + integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, 5238 + } 3188 5239 3189 5240 parse-asn1@5.1.9: 3190 - resolution: {integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==} 3191 - engines: {node: '>= 0.10'} 5241 + resolution: 5242 + { 5243 + integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==, 5244 + } 5245 + engines: { node: ">= 0.10" } 3192 5246 3193 5247 parse-latin@7.0.0: 3194 - resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 5248 + resolution: 5249 + { 5250 + integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==, 5251 + } 3195 5252 3196 5253 parse5@7.3.0: 3197 - resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 5254 + resolution: 5255 + { 5256 + integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==, 5257 + } 3198 5258 3199 5259 parseurl@1.3.3: 3200 - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 3201 - engines: {node: '>= 0.8'} 5260 + resolution: 5261 + { 5262 + integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, 5263 + } 5264 + engines: { node: ">= 0.8" } 3202 5265 3203 5266 path-browserify@1.0.1: 3204 - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} 5267 + resolution: 5268 + { 5269 + integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==, 5270 + } 3205 5271 3206 5272 path-exists@4.0.0: 3207 - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 3208 - engines: {node: '>=8'} 5273 + resolution: 5274 + { 5275 + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, 5276 + } 5277 + engines: { node: ">=8" } 3209 5278 3210 5279 path-key@3.1.1: 3211 - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 3212 - engines: {node: '>=8'} 5280 + resolution: 5281 + { 5282 + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, 5283 + } 5284 + engines: { node: ">=8" } 3213 5285 3214 5286 path-key@4.0.0: 3215 - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 3216 - engines: {node: '>=12'} 5287 + resolution: 5288 + { 5289 + integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, 5290 + } 5291 + engines: { node: ">=12" } 3217 5292 3218 5293 path-parse@1.0.7: 3219 - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 5294 + resolution: 5295 + { 5296 + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, 5297 + } 3220 5298 3221 5299 path-to-regexp@0.1.12: 3222 - resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} 5300 + resolution: 5301 + { 5302 + integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==, 5303 + } 3223 5304 3224 5305 path-type@6.0.0: 3225 - resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} 3226 - engines: {node: '>=18'} 5306 + resolution: 5307 + { 5308 + integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==, 5309 + } 5310 + engines: { node: ">=18" } 3227 5311 3228 5312 pathe@1.1.2: 3229 - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 5313 + resolution: 5314 + { 5315 + integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==, 5316 + } 3230 5317 3231 5318 pathe@2.0.3: 3232 - resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 5319 + resolution: 5320 + { 5321 + integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==, 5322 + } 3233 5323 3234 5324 pathval@1.1.1: 3235 - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} 5325 + resolution: 5326 + { 5327 + integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, 5328 + } 3236 5329 3237 5330 pause-stream@0.0.11: 3238 - resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} 5331 + resolution: 5332 + { 5333 + integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==, 5334 + } 3239 5335 3240 5336 pbkdf2@3.1.5: 3241 - resolution: {integrity: sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==} 3242 - engines: {node: '>= 0.10'} 5337 + resolution: 5338 + { 5339 + integrity: sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==, 5340 + } 5341 + engines: { node: ">= 0.10" } 3243 5342 3244 5343 picocolors@1.1.1: 3245 - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 5344 + resolution: 5345 + { 5346 + integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, 5347 + } 3246 5348 3247 5349 picomatch@2.3.1: 3248 - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3249 - engines: {node: '>=8.6'} 5350 + resolution: 5351 + { 5352 + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, 5353 + } 5354 + engines: { node: ">=8.6" } 3250 5355 3251 5356 picomatch@4.0.3: 3252 - resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 3253 - engines: {node: '>=12'} 5357 + resolution: 5358 + { 5359 + integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==, 5360 + } 5361 + engines: { node: ">=12" } 3254 5362 3255 5363 pino-abstract-transport@1.2.0: 3256 - resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} 5364 + resolution: 5365 + { 5366 + integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==, 5367 + } 3257 5368 3258 5369 pino-std-serializers@6.2.2: 3259 - resolution: {integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==} 5370 + resolution: 5371 + { 5372 + integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==, 5373 + } 3260 5374 3261 5375 pino@8.21.0: 3262 - resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==} 5376 + resolution: 5377 + { 5378 + integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==, 5379 + } 3263 5380 hasBin: true 3264 5381 3265 5382 pkg-dir@5.0.0: 3266 - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} 3267 - engines: {node: '>=10'} 5383 + resolution: 5384 + { 5385 + integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==, 5386 + } 5387 + engines: { node: ">=10" } 3268 5388 3269 5389 pkg-types@1.3.1: 3270 - resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} 5390 + resolution: 5391 + { 5392 + integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==, 5393 + } 3271 5394 3272 5395 pkg-types@2.3.0: 3273 - resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} 5396 + resolution: 5397 + { 5398 + integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==, 5399 + } 3274 5400 3275 5401 possible-typed-array-names@1.1.0: 3276 - resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} 3277 - engines: {node: '>= 0.4'} 5402 + resolution: 5403 + { 5404 + integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==, 5405 + } 5406 + engines: { node: ">= 0.4" } 3278 5407 3279 5408 postcss@8.5.6: 3280 - resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 3281 - engines: {node: ^10 || ^12 || >=14} 5409 + resolution: 5410 + { 5411 + integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==, 5412 + } 5413 + engines: { node: ^10 || ^12 || >=14 } 3282 5414 3283 5415 prettier@3.3.3: 3284 - resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} 3285 - engines: {node: '>=14'} 5416 + resolution: 5417 + { 5418 + integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==, 5419 + } 5420 + engines: { node: ">=14" } 3286 5421 hasBin: true 3287 5422 3288 5423 prettier@3.6.2: 3289 - resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} 3290 - engines: {node: '>=14'} 5424 + resolution: 5425 + { 5426 + integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==, 5427 + } 5428 + engines: { node: ">=14" } 3291 5429 hasBin: true 3292 5430 3293 5431 pretty-format@29.7.0: 3294 - resolution: {integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==} 3295 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.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 } 3296 5437 3297 5438 prismjs@1.30.0: 3298 - resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} 3299 - engines: {node: '>=6'} 5439 + resolution: 5440 + { 5441 + integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==, 5442 + } 5443 + engines: { node: ">=6" } 3300 5444 3301 5445 process-nextick-args@2.0.1: 3302 - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 5446 + resolution: 5447 + { 5448 + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, 5449 + } 3303 5450 3304 5451 process-warning@3.0.0: 3305 - resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==} 5452 + resolution: 5453 + { 5454 + integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==, 5455 + } 3306 5456 3307 5457 process@0.11.10: 3308 - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 3309 - engines: {node: '>= 0.6.0'} 5458 + resolution: 5459 + { 5460 + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, 5461 + } 5462 + engines: { node: ">= 0.6.0" } 3310 5463 3311 5464 prompts@2.4.2: 3312 - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 3313 - engines: {node: '>= 6'} 5465 + resolution: 5466 + { 5467 + integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, 5468 + } 5469 + engines: { node: ">= 6" } 3314 5470 3315 5471 property-information@6.5.0: 3316 - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 5472 + resolution: 5473 + { 5474 + integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==, 5475 + } 3317 5476 3318 5477 property-information@7.1.0: 3319 - resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} 5478 + resolution: 5479 + { 5480 + integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==, 5481 + } 3320 5482 3321 5483 proxy-addr@2.0.7: 3322 - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 3323 - engines: {node: '>= 0.10'} 5484 + resolution: 5485 + { 5486 + integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, 5487 + } 5488 + engines: { node: ">= 0.10" } 3324 5489 3325 5490 ps-tree@1.2.0: 3326 - resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==} 3327 - engines: {node: '>= 0.10'} 5491 + resolution: 5492 + { 5493 + integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==, 5494 + } 5495 + engines: { node: ">= 0.10" } 3328 5496 hasBin: true 3329 5497 3330 5498 public-encrypt@4.0.3: 3331 - resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} 5499 + resolution: 5500 + { 5501 + integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==, 5502 + } 3332 5503 3333 5504 punycode@1.4.1: 3334 - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} 5505 + resolution: 5506 + { 5507 + integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, 5508 + } 3335 5509 3336 5510 qs@6.13.0: 3337 - resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} 3338 - engines: {node: '>=0.6'} 5511 + resolution: 5512 + { 5513 + integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==, 5514 + } 5515 + engines: { node: ">=0.6" } 3339 5516 3340 5517 quansync@0.2.11: 3341 - resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} 5518 + resolution: 5519 + { 5520 + integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==, 5521 + } 3342 5522 3343 5523 querystring-es3@0.2.1: 3344 - resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} 3345 - engines: {node: '>=0.4.x'} 5524 + resolution: 5525 + { 5526 + integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==, 5527 + } 5528 + engines: { node: ">=0.4.x" } 3346 5529 3347 5530 queue-microtask@1.2.3: 3348 - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 5531 + resolution: 5532 + { 5533 + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, 5534 + } 3349 5535 3350 5536 quick-format-unescaped@4.0.4: 3351 - resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} 5537 + resolution: 5538 + { 5539 + integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, 5540 + } 3352 5541 3353 5542 radix3@1.1.2: 3354 - resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 5543 + resolution: 5544 + { 5545 + integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==, 5546 + } 3355 5547 3356 5548 randombytes@2.1.0: 3357 - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} 5549 + resolution: 5550 + { 5551 + integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, 5552 + } 3358 5553 3359 5554 randomfill@1.0.4: 3360 - resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} 5555 + resolution: 5556 + { 5557 + integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==, 5558 + } 3361 5559 3362 5560 range-parser@1.2.1: 3363 - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 3364 - engines: {node: '>= 0.6'} 5561 + resolution: 5562 + { 5563 + integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, 5564 + } 5565 + engines: { node: ">= 0.6" } 3365 5566 3366 5567 rate-limiter-flexible@2.4.2: 3367 - resolution: {integrity: sha512-rMATGGOdO1suFyf/mI5LYhts71g1sbdhmd6YvdiXO2gJnd42Tt6QS4JUKJKSWVVkMtBacm6l40FR7Trjo6Iruw==} 5568 + resolution: 5569 + { 5570 + integrity: sha512-rMATGGOdO1suFyf/mI5LYhts71g1sbdhmd6YvdiXO2gJnd42Tt6QS4JUKJKSWVVkMtBacm6l40FR7Trjo6Iruw==, 5571 + } 3368 5572 3369 5573 raw-body@2.5.2: 3370 - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} 3371 - engines: {node: '>= 0.8'} 5574 + resolution: 5575 + { 5576 + integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==, 5577 + } 5578 + engines: { node: ">= 0.8" } 3372 5579 3373 5580 react-dom@18.3.1: 3374 - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 5581 + resolution: 5582 + { 5583 + integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, 5584 + } 3375 5585 peerDependencies: 3376 5586 react: ^18.3.1 3377 5587 3378 5588 react-dom@19.2.0: 3379 - resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==} 5589 + resolution: 5590 + { 5591 + integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==, 5592 + } 3380 5593 peerDependencies: 3381 5594 react: ^19.2.0 3382 5595 3383 5596 react-error-boundary@6.0.0: 3384 - resolution: {integrity: sha512-gdlJjD7NWr0IfkPlaREN2d9uUZUlksrfOx7SX62VRerwXbMY6ftGCIZua1VG1aXFNOimhISsTq+Owp725b9SiA==} 5597 + resolution: 5598 + { 5599 + integrity: sha512-gdlJjD7NWr0IfkPlaREN2d9uUZUlksrfOx7SX62VRerwXbMY6ftGCIZua1VG1aXFNOimhISsTq+Owp725b9SiA==, 5600 + } 3385 5601 peerDependencies: 3386 - react: '>=16.13.1' 5602 + react: ">=16.13.1" 3387 5603 3388 5604 react-hotkeys-hook@5.1.0: 3389 - resolution: {integrity: sha512-GCNGXjBzV9buOS3REoQFmSmE4WTvBhYQ0YrAeeMZI83bhXg3dRWsLHXDutcVDdEjwJqJCxk5iewWYX5LtFUd7g==} 5605 + resolution: 5606 + { 5607 + integrity: sha512-GCNGXjBzV9buOS3REoQFmSmE4WTvBhYQ0YrAeeMZI83bhXg3dRWsLHXDutcVDdEjwJqJCxk5iewWYX5LtFUd7g==, 5608 + } 3390 5609 peerDependencies: 3391 - react: '>=16.8.0' 3392 - react-dom: '>=16.8.0' 5610 + react: ">=16.8.0" 5611 + react-dom: ">=16.8.0" 3393 5612 3394 5613 react-is@17.0.2: 3395 - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 5614 + resolution: 5615 + { 5616 + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, 5617 + } 3396 5618 3397 5619 react-is@18.3.1: 3398 - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} 5620 + resolution: 5621 + { 5622 + integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==, 5623 + } 3399 5624 3400 5625 react-refresh@0.17.0: 3401 - resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} 3402 - engines: {node: '>=0.10.0'} 5626 + resolution: 5627 + { 5628 + integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==, 5629 + } 5630 + engines: { node: ">=0.10.0" } 3403 5631 3404 5632 react@18.3.1: 3405 - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 3406 - engines: {node: '>=0.10.0'} 5633 + resolution: 5634 + { 5635 + integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, 5636 + } 5637 + engines: { node: ">=0.10.0" } 3407 5638 3408 5639 react@19.2.0: 3409 - resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} 3410 - engines: {node: '>=0.10.0'} 5640 + resolution: 5641 + { 5642 + integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==, 5643 + } 5644 + engines: { node: ">=0.10.0" } 3411 5645 3412 5646 readable-stream@2.3.8: 3413 - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 5647 + resolution: 5648 + { 5649 + integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, 5650 + } 3414 5651 3415 5652 readable-stream@3.6.2: 3416 - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 3417 - engines: {node: '>= 6'} 5653 + resolution: 5654 + { 5655 + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, 5656 + } 5657 + engines: { node: ">= 6" } 3418 5658 3419 5659 readable-stream@4.7.0: 3420 - resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} 3421 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 5660 + resolution: 5661 + { 5662 + integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==, 5663 + } 5664 + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } 3422 5665 3423 5666 readdirp@4.1.2: 3424 - resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 3425 - engines: {node: '>= 14.18.0'} 5667 + resolution: 5668 + { 5669 + integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==, 5670 + } 5671 + engines: { node: ">= 14.18.0" } 3426 5672 3427 5673 real-require@0.2.0: 3428 - resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 3429 - engines: {node: '>= 12.13.0'} 5674 + resolution: 5675 + { 5676 + integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==, 5677 + } 5678 + engines: { node: ">= 12.13.0" } 3430 5679 3431 5680 regex-recursion@6.0.2: 3432 - resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} 5681 + resolution: 5682 + { 5683 + integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==, 5684 + } 3433 5685 3434 5686 regex-utilities@2.3.0: 3435 - resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 5687 + resolution: 5688 + { 5689 + integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==, 5690 + } 3436 5691 3437 5692 regex@6.0.1: 3438 - resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==} 5693 + resolution: 5694 + { 5695 + integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==, 5696 + } 3439 5697 3440 5698 rehype-parse@9.0.1: 3441 - resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} 5699 + resolution: 5700 + { 5701 + integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==, 5702 + } 3442 5703 3443 5704 rehype-raw@7.0.0: 3444 - resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 5705 + resolution: 5706 + { 5707 + integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==, 5708 + } 3445 5709 3446 5710 rehype-stringify@10.0.1: 3447 - resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} 5711 + resolution: 5712 + { 5713 + integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==, 5714 + } 3448 5715 3449 5716 rehype@13.0.2: 3450 - resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} 5717 + resolution: 5718 + { 5719 + integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==, 5720 + } 3451 5721 3452 5722 remark-gfm@4.0.1: 3453 - resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} 5723 + resolution: 5724 + { 5725 + integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==, 5726 + } 3454 5727 3455 5728 remark-parse@11.0.0: 3456 - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 5729 + resolution: 5730 + { 5731 + integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==, 5732 + } 3457 5733 3458 5734 remark-rehype@11.1.2: 3459 - resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} 5735 + resolution: 5736 + { 5737 + integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==, 5738 + } 3460 5739 3461 5740 remark-smartypants@3.0.2: 3462 - resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} 3463 - engines: {node: '>=16.0.0'} 5741 + resolution: 5742 + { 5743 + integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==, 5744 + } 5745 + engines: { node: ">=16.0.0" } 3464 5746 3465 5747 remark-stringify@11.0.0: 3466 - resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 5748 + resolution: 5749 + { 5750 + integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==, 5751 + } 3467 5752 3468 5753 require-directory@2.1.1: 3469 - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 3470 - engines: {node: '>=0.10.0'} 5754 + resolution: 5755 + { 5756 + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, 5757 + } 5758 + engines: { node: ">=0.10.0" } 3471 5759 3472 5760 require-from-string@2.0.2: 3473 - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 3474 - engines: {node: '>=0.10.0'} 5761 + resolution: 5762 + { 5763 + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, 5764 + } 5765 + engines: { node: ">=0.10.0" } 3475 5766 3476 5767 resolve.exports@2.0.3: 3477 - resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} 3478 - engines: {node: '>=10'} 5768 + resolution: 5769 + { 5770 + integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==, 5771 + } 5772 + engines: { node: ">=10" } 3479 5773 3480 5774 resolve@1.22.10: 3481 - resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 3482 - engines: {node: '>= 0.4'} 5775 + resolution: 5776 + { 5777 + integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==, 5778 + } 5779 + engines: { node: ">= 0.4" } 3483 5780 hasBin: true 3484 5781 3485 5782 restructure@3.0.2: 3486 - resolution: {integrity: sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==} 5783 + resolution: 5784 + { 5785 + integrity: sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==, 5786 + } 3487 5787 3488 5788 retext-latin@4.0.0: 3489 - resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} 5789 + resolution: 5790 + { 5791 + integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==, 5792 + } 3490 5793 3491 5794 retext-smartypants@6.2.0: 3492 - resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} 5795 + resolution: 5796 + { 5797 + integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==, 5798 + } 3493 5799 3494 5800 retext-stringify@4.0.0: 3495 - resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} 5801 + resolution: 5802 + { 5803 + integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==, 5804 + } 3496 5805 3497 5806 retext@9.0.0: 3498 - resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} 5807 + resolution: 5808 + { 5809 + integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==, 5810 + } 3499 5811 3500 5812 reusify@1.1.0: 3501 - resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 3502 - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 5813 + resolution: 5814 + { 5815 + integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==, 5816 + } 5817 + engines: { iojs: ">=1.0.0", node: ">=0.10.0" } 3503 5818 3504 5819 ripemd160@2.0.3: 3505 - resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==} 3506 - engines: {node: '>= 0.8'} 5820 + resolution: 5821 + { 5822 + integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==, 5823 + } 5824 + engines: { node: ">= 0.8" } 3507 5825 3508 5826 rollup@4.52.4: 3509 - resolution: {integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==} 3510 - engines: {node: '>=18.0.0', npm: '>=8.0.0'} 5827 + resolution: 5828 + { 5829 + integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==, 5830 + } 5831 + engines: { node: ">=18.0.0", npm: ">=8.0.0" } 3511 5832 hasBin: true 3512 5833 3513 5834 rtl-css-js@1.16.1: 3514 - resolution: {integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==} 5835 + resolution: 5836 + { 5837 + integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==, 5838 + } 3515 5839 3516 5840 run-parallel@1.2.0: 3517 - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 5841 + resolution: 5842 + { 5843 + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, 5844 + } 3518 5845 3519 5846 rxjs@7.8.2: 3520 - resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} 5847 + resolution: 5848 + { 5849 + integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==, 5850 + } 3521 5851 3522 5852 safe-buffer@5.1.2: 3523 - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 5853 + resolution: 5854 + { 5855 + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, 5856 + } 3524 5857 3525 5858 safe-buffer@5.2.1: 3526 - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 5859 + resolution: 5860 + { 5861 + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, 5862 + } 3527 5863 3528 5864 safe-regex-test@1.1.0: 3529 - resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 3530 - engines: {node: '>= 0.4'} 5865 + resolution: 5866 + { 5867 + integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==, 5868 + } 5869 + engines: { node: ">= 0.4" } 3531 5870 3532 5871 safe-stable-stringify@2.5.0: 3533 - resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} 3534 - engines: {node: '>=10'} 5872 + resolution: 5873 + { 5874 + integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==, 5875 + } 5876 + engines: { node: ">=10" } 3535 5877 3536 5878 safer-buffer@2.1.2: 3537 - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 5879 + resolution: 5880 + { 5881 + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, 5882 + } 3538 5883 3539 5884 scheduler@0.23.2: 3540 - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 5885 + resolution: 5886 + { 5887 + integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, 5888 + } 3541 5889 3542 5890 scheduler@0.27.0: 3543 - resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} 5891 + resolution: 5892 + { 5893 + integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==, 5894 + } 3544 5895 3545 5896 semver@6.3.1: 3546 - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 5897 + resolution: 5898 + { 5899 + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, 5900 + } 3547 5901 hasBin: true 3548 5902 3549 5903 semver@7.7.2: 3550 - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 3551 - engines: {node: '>=10'} 5904 + resolution: 5905 + { 5906 + integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==, 5907 + } 5908 + engines: { node: ">=10" } 3552 5909 hasBin: true 3553 5910 3554 5911 send@0.19.0: 3555 - resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} 3556 - engines: {node: '>= 0.8.0'} 5912 + resolution: 5913 + { 5914 + integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==, 5915 + } 5916 + engines: { node: ">= 0.8.0" } 3557 5917 3558 5918 serve-static@1.16.2: 3559 - resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} 3560 - engines: {node: '>= 0.8.0'} 5919 + resolution: 5920 + { 5921 + integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==, 5922 + } 5923 + engines: { node: ">= 0.8.0" } 3561 5924 3562 5925 set-function-length@1.2.2: 3563 - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 3564 - engines: {node: '>= 0.4'} 5926 + resolution: 5927 + { 5928 + integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, 5929 + } 5930 + engines: { node: ">= 0.4" } 3565 5931 3566 5932 setimmediate@1.0.5: 3567 - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} 5933 + resolution: 5934 + { 5935 + integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, 5936 + } 3568 5937 3569 5938 setprototypeof@1.2.0: 3570 - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 5939 + resolution: 5940 + { 5941 + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, 5942 + } 3571 5943 3572 5944 sha.js@2.4.12: 3573 - resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==} 3574 - engines: {node: '>= 0.10'} 5945 + resolution: 5946 + { 5947 + integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==, 5948 + } 5949 + engines: { node: ">= 0.10" } 3575 5950 hasBin: true 3576 5951 3577 5952 sharp@0.34.4: 3578 - resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==} 3579 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 5953 + resolution: 5954 + { 5955 + integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==, 5956 + } 5957 + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 3580 5958 3581 5959 shebang-command@2.0.0: 3582 - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3583 - engines: {node: '>=8'} 5960 + resolution: 5961 + { 5962 + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, 5963 + } 5964 + engines: { node: ">=8" } 3584 5965 3585 5966 shebang-regex@3.0.0: 3586 - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3587 - engines: {node: '>=8'} 5967 + resolution: 5968 + { 5969 + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, 5970 + } 5971 + engines: { node: ">=8" } 3588 5972 3589 5973 shell-quote@1.8.3: 3590 - resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} 3591 - engines: {node: '>= 0.4'} 5974 + resolution: 5975 + { 5976 + integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==, 5977 + } 5978 + engines: { node: ">= 0.4" } 3592 5979 3593 5980 shiki@3.13.0: 3594 - resolution: {integrity: sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==} 5981 + resolution: 5982 + { 5983 + integrity: sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==, 5984 + } 3595 5985 3596 5986 side-channel-list@1.0.0: 3597 - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 3598 - engines: {node: '>= 0.4'} 5987 + resolution: 5988 + { 5989 + integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==, 5990 + } 5991 + engines: { node: ">= 0.4" } 3599 5992 3600 5993 side-channel-map@1.0.1: 3601 - resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 3602 - engines: {node: '>= 0.4'} 5994 + resolution: 5995 + { 5996 + integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==, 5997 + } 5998 + engines: { node: ">= 0.4" } 3603 5999 3604 6000 side-channel-weakmap@1.0.2: 3605 - resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 3606 - engines: {node: '>= 0.4'} 6001 + resolution: 6002 + { 6003 + integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==, 6004 + } 6005 + engines: { node: ">= 0.4" } 3607 6006 3608 6007 side-channel@1.1.0: 3609 - resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 3610 - engines: {node: '>= 0.4'} 6008 + resolution: 6009 + { 6010 + integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==, 6011 + } 6012 + engines: { node: ">= 0.4" } 3611 6013 3612 6014 siginfo@2.0.0: 3613 - resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 6015 + resolution: 6016 + { 6017 + integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==, 6018 + } 3614 6019 3615 6020 signal-exit@4.1.0: 3616 - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 3617 - engines: {node: '>=14'} 6021 + resolution: 6022 + { 6023 + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, 6024 + } 6025 + engines: { node: ">=14" } 3618 6026 3619 6027 sisteransi@1.0.5: 3620 - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 6028 + resolution: 6029 + { 6030 + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, 6031 + } 3621 6032 3622 6033 slash@5.1.0: 3623 - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 3624 - engines: {node: '>=14.16'} 6034 + resolution: 6035 + { 6036 + integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==, 6037 + } 6038 + engines: { node: ">=14.16" } 3625 6039 3626 6040 smol-toml@1.4.2: 3627 - resolution: {integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==} 3628 - engines: {node: '>= 18'} 6041 + resolution: 6042 + { 6043 + integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==, 6044 + } 6045 + engines: { node: ">= 18" } 3629 6046 3630 6047 sonic-boom@3.8.1: 3631 - resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==} 6048 + resolution: 6049 + { 6050 + integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==, 6051 + } 3632 6052 3633 6053 source-map-js@1.2.1: 3634 - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 3635 - engines: {node: '>=0.10.0'} 6054 + resolution: 6055 + { 6056 + integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, 6057 + } 6058 + engines: { node: ">=0.10.0" } 3636 6059 3637 6060 space-separated-tokens@2.0.2: 3638 - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 6061 + resolution: 6062 + { 6063 + integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, 6064 + } 3639 6065 3640 6066 split2@4.2.0: 3641 - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 3642 - engines: {node: '>= 10.x'} 6067 + resolution: 6068 + { 6069 + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, 6070 + } 6071 + engines: { node: ">= 10.x" } 3643 6072 3644 6073 split@0.3.3: 3645 - resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} 6074 + resolution: 6075 + { 6076 + integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==, 6077 + } 3646 6078 3647 6079 stackback@0.0.2: 3648 - resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 6080 + resolution: 6081 + { 6082 + integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==, 6083 + } 3649 6084 3650 6085 statuses@2.0.1: 3651 - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 3652 - engines: {node: '>= 0.8'} 6086 + resolution: 6087 + { 6088 + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, 6089 + } 6090 + engines: { node: ">= 0.8" } 3653 6091 3654 6092 std-env@3.9.0: 3655 - resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} 6093 + resolution: 6094 + { 6095 + integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==, 6096 + } 3656 6097 3657 6098 stream-browserify@3.0.0: 3658 - resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} 6099 + resolution: 6100 + { 6101 + integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==, 6102 + } 3659 6103 3660 6104 stream-combiner@0.0.4: 3661 - resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} 6105 + resolution: 6106 + { 6107 + integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==, 6108 + } 3662 6109 3663 6110 stream-http@3.2.0: 3664 - resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==} 6111 + resolution: 6112 + { 6113 + integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==, 6114 + } 3665 6115 3666 6116 string-argv@0.3.2: 3667 - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 3668 - engines: {node: '>=0.6.19'} 6117 + resolution: 6118 + { 6119 + integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, 6120 + } 6121 + engines: { node: ">=0.6.19" } 3669 6122 3670 6123 string-width@4.2.3: 3671 - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 3672 - engines: {node: '>=8'} 6124 + resolution: 6125 + { 6126 + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, 6127 + } 6128 + engines: { node: ">=8" } 3673 6129 3674 6130 string-width@7.2.0: 3675 - resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 3676 - engines: {node: '>=18'} 6131 + resolution: 6132 + { 6133 + integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, 6134 + } 6135 + engines: { node: ">=18" } 3677 6136 3678 6137 string_decoder@1.1.1: 3679 - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 6138 + resolution: 6139 + { 6140 + integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, 6141 + } 3680 6142 3681 6143 string_decoder@1.3.0: 3682 - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 6144 + resolution: 6145 + { 6146 + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, 6147 + } 3683 6148 3684 6149 stringify-entities@4.0.4: 3685 - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 6150 + resolution: 6151 + { 6152 + integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==, 6153 + } 3686 6154 3687 6155 strip-ansi@6.0.1: 3688 - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3689 - engines: {node: '>=8'} 6156 + resolution: 6157 + { 6158 + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, 6159 + } 6160 + engines: { node: ">=8" } 3690 6161 3691 6162 strip-ansi@7.1.2: 3692 - resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} 3693 - engines: {node: '>=12'} 6163 + resolution: 6164 + { 6165 + integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==, 6166 + } 6167 + engines: { node: ">=12" } 3694 6168 3695 6169 strip-final-newline@3.0.0: 3696 - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 3697 - engines: {node: '>=12'} 6170 + resolution: 6171 + { 6172 + integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, 6173 + } 6174 + engines: { node: ">=12" } 3698 6175 3699 6176 strip-literal@2.1.1: 3700 - resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==} 6177 + resolution: 6178 + { 6179 + integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==, 6180 + } 3701 6181 3702 6182 stylis@4.3.6: 3703 - resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==} 6183 + resolution: 6184 + { 6185 + integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==, 6186 + } 3704 6187 3705 6188 supports-color@7.2.0: 3706 - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3707 - engines: {node: '>=8'} 6189 + resolution: 6190 + { 6191 + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, 6192 + } 6193 + engines: { node: ">=8" } 3708 6194 3709 6195 supports-color@8.1.1: 3710 - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} 3711 - engines: {node: '>=10'} 6196 + resolution: 6197 + { 6198 + integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, 6199 + } 6200 + engines: { node: ">=10" } 3712 6201 3713 6202 supports-preserve-symlinks-flag@1.0.0: 3714 - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 3715 - engines: {node: '>= 0.4'} 6203 + resolution: 6204 + { 6205 + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, 6206 + } 6207 + engines: { node: ">= 0.4" } 3716 6208 3717 6209 swagger-ui-dist@5.29.3: 3718 - resolution: {integrity: sha512-U99f/2YocRA2Mxqx3eUBRhQonWVtE5dIvMs0Zlsn4a4ip8awMq0JxXhU+Sidtna2WlZrHbK2Rro3RZvYUymRbA==} 6210 + resolution: 6211 + { 6212 + integrity: sha512-U99f/2YocRA2Mxqx3eUBRhQonWVtE5dIvMs0Zlsn4a4ip8awMq0JxXhU+Sidtna2WlZrHbK2Rro3RZvYUymRbA==, 6213 + } 3719 6214 3720 6215 tabster@8.5.6: 3721 - resolution: {integrity: sha512-2vfrRGrx8O9BjdrtSlVA5fvpmbq5HQBRN13XFRg6LAvZ1Fr3QdBnswgT4YgFS5Bhoo5nxwgjRaRueI2Us/dv7g==} 6216 + resolution: 6217 + { 6218 + integrity: sha512-2vfrRGrx8O9BjdrtSlVA5fvpmbq5HQBRN13XFRg6LAvZ1Fr3QdBnswgT4YgFS5Bhoo5nxwgjRaRueI2Us/dv7g==, 6219 + } 3722 6220 3723 6221 tar@7.5.1: 3724 - resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==} 3725 - engines: {node: '>=18'} 6222 + resolution: 6223 + { 6224 + integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==, 6225 + } 6226 + engines: { node: ">=18" } 3726 6227 3727 6228 temporal-polyfill@0.3.0: 3728 - resolution: {integrity: sha512-qNsTkX9K8hi+FHDfHmf22e/OGuXmfBm9RqNismxBrnSmZVJKegQ+HYYXT+R7Ha8F/YSm2Y34vmzD4cxMu2u95g==} 6229 + resolution: 6230 + { 6231 + integrity: sha512-qNsTkX9K8hi+FHDfHmf22e/OGuXmfBm9RqNismxBrnSmZVJKegQ+HYYXT+R7Ha8F/YSm2Y34vmzD4cxMu2u95g==, 6232 + } 3729 6233 3730 6234 temporal-spec@0.3.0: 3731 - resolution: {integrity: sha512-n+noVpIqz4hYgFSMOSiINNOUOMFtV5cZQNCmmszA6GiVFVRt3G7AqVyhXjhCSmowvQn+NsGn+jMDMKJYHd3bSQ==} 6235 + resolution: 6236 + { 6237 + integrity: sha512-n+noVpIqz4hYgFSMOSiINNOUOMFtV5cZQNCmmszA6GiVFVRt3G7AqVyhXjhCSmowvQn+NsGn+jMDMKJYHd3bSQ==, 6238 + } 3732 6239 3733 6240 thread-stream@2.7.0: 3734 - resolution: {integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==} 6241 + resolution: 6242 + { 6243 + integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==, 6244 + } 3735 6245 3736 6246 through@2.3.8: 3737 - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 6247 + resolution: 6248 + { 6249 + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, 6250 + } 3738 6251 3739 6252 timers-browserify@2.0.12: 3740 - resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} 3741 - engines: {node: '>=0.6.0'} 6253 + resolution: 6254 + { 6255 + integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==, 6256 + } 6257 + engines: { node: ">=0.6.0" } 3742 6258 3743 6259 tiny-inflate@1.0.3: 3744 - resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} 6260 + resolution: 6261 + { 6262 + integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==, 6263 + } 3745 6264 3746 6265 tinybench@2.9.0: 3747 - resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 6266 + resolution: 6267 + { 6268 + integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==, 6269 + } 3748 6270 3749 6271 tinyexec@0.3.2: 3750 - resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 6272 + resolution: 6273 + { 6274 + integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==, 6275 + } 3751 6276 3752 6277 tinyglobby@0.2.15: 3753 - resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 3754 - engines: {node: '>=12.0.0'} 6278 + resolution: 6279 + { 6280 + integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==, 6281 + } 6282 + engines: { node: ">=12.0.0" } 3755 6283 3756 6284 tinypool@0.8.4: 3757 - resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} 3758 - engines: {node: '>=14.0.0'} 6285 + resolution: 6286 + { 6287 + integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==, 6288 + } 6289 + engines: { node: ">=14.0.0" } 3759 6290 3760 6291 tinyspy@2.2.1: 3761 - resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} 3762 - engines: {node: '>=14.0.0'} 6292 + resolution: 6293 + { 6294 + integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==, 6295 + } 6296 + engines: { node: ">=14.0.0" } 3763 6297 3764 6298 to-buffer@1.2.2: 3765 - resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==} 3766 - engines: {node: '>= 0.4'} 6299 + resolution: 6300 + { 6301 + integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==, 6302 + } 6303 + engines: { node: ">= 0.4" } 3767 6304 3768 6305 to-regex-range@5.0.1: 3769 - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3770 - engines: {node: '>=8.0'} 6306 + resolution: 6307 + { 6308 + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, 6309 + } 6310 + engines: { node: ">=8.0" } 3771 6311 3772 6312 toidentifier@1.0.1: 3773 - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 3774 - engines: {node: '>=0.6'} 6313 + resolution: 6314 + { 6315 + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, 6316 + } 6317 + engines: { node: ">=0.6" } 3775 6318 3776 6319 tr46@0.0.3: 3777 - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 6320 + resolution: 6321 + { 6322 + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, 6323 + } 3778 6324 3779 6325 tree-kill@1.2.2: 3780 - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 6326 + resolution: 6327 + { 6328 + integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, 6329 + } 3781 6330 hasBin: true 3782 6331 3783 6332 trim-lines@3.0.1: 3784 - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 6333 + resolution: 6334 + { 6335 + integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==, 6336 + } 3785 6337 3786 6338 trough@2.2.0: 3787 - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 6339 + resolution: 6340 + { 6341 + integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, 6342 + } 3788 6343 3789 6344 ts-morph@24.0.0: 3790 - resolution: {integrity: sha512-2OAOg/Ob5yx9Et7ZX4CvTCc0UFoZHwLEJ+dpDPSUi5TgwwlTlX47w+iFRrEwzUZwYACjq83cgjS/Da50Ga37uw==} 6345 + resolution: 6346 + { 6347 + integrity: sha512-2OAOg/Ob5yx9Et7ZX4CvTCc0UFoZHwLEJ+dpDPSUi5TgwwlTlX47w+iFRrEwzUZwYACjq83cgjS/Da50Ga37uw==, 6348 + } 3791 6349 3792 6350 tsc-watch@7.2.0: 3793 - resolution: {integrity: sha512-4gRFawQD1cVSaILvG7wl2x6NtteKbS2dGBMbL7Q6n1ldLIOKXCJUoEwUXdGuee4dp+zcnA6tukBBLz1lZrNI9w==} 3794 - engines: {node: '>=12.12.0'} 6351 + resolution: 6352 + { 6353 + integrity: sha512-4gRFawQD1cVSaILvG7wl2x6NtteKbS2dGBMbL7Q6n1ldLIOKXCJUoEwUXdGuee4dp+zcnA6tukBBLz1lZrNI9w==, 6354 + } 6355 + engines: { node: ">=12.12.0" } 3795 6356 hasBin: true 3796 6357 peerDependencies: 3797 - typescript: '*' 6358 + typescript: "*" 3798 6359 3799 6360 tsconfck@3.1.6: 3800 - resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} 3801 - engines: {node: ^18 || >=20} 6361 + resolution: 6362 + { 6363 + integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==, 6364 + } 6365 + engines: { node: ^18 || >=20 } 3802 6366 hasBin: true 3803 6367 peerDependencies: 3804 6368 typescript: ^5.0.0 ··· 3807 6371 optional: true 3808 6372 3809 6373 tslib@2.8.1: 3810 - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 6374 + resolution: 6375 + { 6376 + integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, 6377 + } 3811 6378 3812 6379 tty-browserify@0.0.1: 3813 - resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} 6380 + resolution: 6381 + { 6382 + integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==, 6383 + } 3814 6384 3815 6385 type-detect@4.1.0: 3816 - resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} 3817 - engines: {node: '>=4'} 6386 + resolution: 6387 + { 6388 + integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==, 6389 + } 6390 + engines: { node: ">=4" } 3818 6391 3819 6392 type-fest@4.41.0: 3820 - resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} 3821 - engines: {node: '>=16'} 6393 + resolution: 6394 + { 6395 + integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==, 6396 + } 6397 + engines: { node: ">=16" } 3822 6398 3823 6399 type-is@1.6.18: 3824 - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} 3825 - engines: {node: '>= 0.6'} 6400 + resolution: 6401 + { 6402 + integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, 6403 + } 6404 + engines: { node: ">= 0.6" } 3826 6405 3827 6406 typed-array-buffer@1.0.3: 3828 - resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} 3829 - engines: {node: '>= 0.4'} 6407 + resolution: 6408 + { 6409 + integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==, 6410 + } 6411 + engines: { node: ">= 0.4" } 3830 6412 3831 6413 typescript@5.9.3: 3832 - resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} 3833 - engines: {node: '>=14.17'} 6414 + resolution: 6415 + { 6416 + integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==, 6417 + } 6418 + engines: { node: ">=14.17" } 3834 6419 hasBin: true 3835 6420 3836 6421 ufo@1.6.1: 3837 - resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} 6422 + resolution: 6423 + { 6424 + integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==, 6425 + } 3838 6426 3839 6427 uint8arrays@3.0.0: 3840 - resolution: {integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==} 6428 + resolution: 6429 + { 6430 + integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==, 6431 + } 3841 6432 3842 6433 ultrahtml@1.6.0: 3843 - resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} 6434 + resolution: 6435 + { 6436 + integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==, 6437 + } 3844 6438 3845 6439 uncrypto@0.1.3: 3846 - resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 6440 + resolution: 6441 + { 6442 + integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==, 6443 + } 3847 6444 3848 6445 undici-types@6.21.0: 3849 - resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} 6446 + resolution: 6447 + { 6448 + integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==, 6449 + } 3850 6450 3851 6451 unicode-properties@1.4.1: 3852 - resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==} 6452 + resolution: 6453 + { 6454 + integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==, 6455 + } 3853 6456 3854 6457 unicode-trie@2.0.0: 3855 - resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} 6458 + resolution: 6459 + { 6460 + integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==, 6461 + } 3856 6462 3857 6463 unicorn-magic@0.3.0: 3858 - resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} 3859 - engines: {node: '>=18'} 6464 + resolution: 6465 + { 6466 + integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==, 6467 + } 6468 + engines: { node: ">=18" } 3860 6469 3861 6470 unified@11.0.5: 3862 - resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 6471 + resolution: 6472 + { 6473 + integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==, 6474 + } 3863 6475 3864 6476 unifont@0.5.2: 3865 - resolution: {integrity: sha512-LzR4WUqzH9ILFvjLAUU7dK3Lnou/qd5kD+IakBtBK4S15/+x2y9VX+DcWQv6s551R6W+vzwgVS6tFg3XggGBgg==} 6477 + resolution: 6478 + { 6479 + integrity: sha512-LzR4WUqzH9ILFvjLAUU7dK3Lnou/qd5kD+IakBtBK4S15/+x2y9VX+DcWQv6s551R6W+vzwgVS6tFg3XggGBgg==, 6480 + } 3866 6481 3867 6482 unist-util-find-after@5.0.0: 3868 - resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 6483 + resolution: 6484 + { 6485 + integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==, 6486 + } 3869 6487 3870 6488 unist-util-is@6.0.0: 3871 - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 6489 + resolution: 6490 + { 6491 + integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==, 6492 + } 3872 6493 3873 6494 unist-util-modify-children@4.0.0: 3874 - resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 6495 + resolution: 6496 + { 6497 + integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==, 6498 + } 3875 6499 3876 6500 unist-util-position@5.0.0: 3877 - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 6501 + resolution: 6502 + { 6503 + integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, 6504 + } 3878 6505 3879 6506 unist-util-remove-position@5.0.0: 3880 - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 6507 + resolution: 6508 + { 6509 + integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==, 6510 + } 3881 6511 3882 6512 unist-util-stringify-position@4.0.0: 3883 - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 6513 + resolution: 6514 + { 6515 + integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, 6516 + } 3884 6517 3885 6518 unist-util-visit-children@3.0.0: 3886 - resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} 6519 + resolution: 6520 + { 6521 + integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==, 6522 + } 3887 6523 3888 6524 unist-util-visit-parents@6.0.1: 3889 - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 6525 + resolution: 6526 + { 6527 + integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, 6528 + } 3890 6529 3891 6530 unist-util-visit@5.0.0: 3892 - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 6531 + resolution: 6532 + { 6533 + integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==, 6534 + } 3893 6535 3894 6536 unpipe@1.0.0: 3895 - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 3896 - engines: {node: '>= 0.8'} 6537 + resolution: 6538 + { 6539 + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, 6540 + } 6541 + engines: { node: ">= 0.8" } 3897 6542 3898 6543 unstorage@1.17.1: 3899 - resolution: {integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==} 6544 + resolution: 6545 + { 6546 + integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==, 6547 + } 3900 6548 peerDependencies: 3901 - '@azure/app-configuration': ^1.8.0 3902 - '@azure/cosmos': ^4.2.0 3903 - '@azure/data-tables': ^13.3.0 3904 - '@azure/identity': ^4.6.0 3905 - '@azure/keyvault-secrets': ^4.9.0 3906 - '@azure/storage-blob': ^12.26.0 3907 - '@capacitor/preferences': ^6.0.3 || ^7.0.0 3908 - '@deno/kv': '>=0.9.0' 3909 - '@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 3910 - '@planetscale/database': ^1.19.0 3911 - '@upstash/redis': ^1.34.3 3912 - '@vercel/blob': '>=0.27.1' 3913 - '@vercel/functions': ^2.2.12 || ^3.0.0 3914 - '@vercel/kv': ^1.0.1 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 3915 6563 aws4fetch: ^1.0.20 3916 - db0: '>=0.2.1' 6564 + db0: ">=0.2.1" 3917 6565 idb-keyval: ^6.2.1 3918 6566 ioredis: ^5.4.2 3919 6567 uploadthing: ^7.4.4 3920 6568 peerDependenciesMeta: 3921 - '@azure/app-configuration': 6569 + "@azure/app-configuration": 3922 6570 optional: true 3923 - '@azure/cosmos': 6571 + "@azure/cosmos": 3924 6572 optional: true 3925 - '@azure/data-tables': 6573 + "@azure/data-tables": 3926 6574 optional: true 3927 - '@azure/identity': 6575 + "@azure/identity": 3928 6576 optional: true 3929 - '@azure/keyvault-secrets': 6577 + "@azure/keyvault-secrets": 3930 6578 optional: true 3931 - '@azure/storage-blob': 6579 + "@azure/storage-blob": 3932 6580 optional: true 3933 - '@capacitor/preferences': 6581 + "@capacitor/preferences": 3934 6582 optional: true 3935 - '@deno/kv': 6583 + "@deno/kv": 3936 6584 optional: true 3937 - '@netlify/blobs': 6585 + "@netlify/blobs": 3938 6586 optional: true 3939 - '@planetscale/database': 6587 + "@planetscale/database": 3940 6588 optional: true 3941 - '@upstash/redis': 6589 + "@upstash/redis": 3942 6590 optional: true 3943 - '@vercel/blob': 6591 + "@vercel/blob": 3944 6592 optional: true 3945 - '@vercel/functions': 6593 + "@vercel/functions": 3946 6594 optional: true 3947 - '@vercel/kv': 6595 + "@vercel/kv": 3948 6596 optional: true 3949 6597 aws4fetch: 3950 6598 optional: true ··· 3958 6606 optional: true 3959 6607 3960 6608 update-browserslist-db@1.1.3: 3961 - resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 6609 + resolution: 6610 + { 6611 + integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==, 6612 + } 3962 6613 hasBin: true 3963 6614 peerDependencies: 3964 - browserslist: '>= 4.21.0' 6615 + browserslist: ">= 4.21.0" 3965 6616 3966 6617 url@0.11.4: 3967 - resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} 3968 - engines: {node: '>= 0.4'} 6618 + resolution: 6619 + { 6620 + integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==, 6621 + } 6622 + engines: { node: ">= 0.4" } 3969 6623 3970 6624 use-sync-external-store@1.6.0: 3971 - resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} 6625 + resolution: 6626 + { 6627 + integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==, 6628 + } 3972 6629 peerDependencies: 3973 6630 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 3974 6631 3975 6632 util-deprecate@1.0.2: 3976 - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 6633 + resolution: 6634 + { 6635 + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, 6636 + } 3977 6637 3978 6638 util@0.12.5: 3979 - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} 6639 + resolution: 6640 + { 6641 + integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==, 6642 + } 3980 6643 3981 6644 utils-merge@1.0.1: 3982 - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} 3983 - engines: {node: '>= 0.4.0'} 6645 + resolution: 6646 + { 6647 + integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, 6648 + } 6649 + engines: { node: ">= 0.4.0" } 3984 6650 3985 6651 vary@1.1.2: 3986 - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 3987 - engines: {node: '>= 0.8'} 6652 + resolution: 6653 + { 6654 + integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, 6655 + } 6656 + engines: { node: ">= 0.8" } 3988 6657 3989 6658 vfile-location@5.0.3: 3990 - resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 6659 + resolution: 6660 + { 6661 + integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==, 6662 + } 3991 6663 3992 6664 vfile-message@4.0.3: 3993 - resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} 6665 + resolution: 6666 + { 6667 + integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==, 6668 + } 3994 6669 3995 6670 vfile@6.0.3: 3996 - resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 6671 + resolution: 6672 + { 6673 + integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==, 6674 + } 3997 6675 3998 6676 vite-node@1.6.1: 3999 - resolution: {integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==} 4000 - engines: {node: ^18.0.0 || >=20.0.0} 6677 + resolution: 6678 + { 6679 + integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==, 6680 + } 6681 + engines: { node: ^18.0.0 || >=20.0.0 } 4001 6682 hasBin: true 4002 6683 4003 6684 vite@5.4.20: 4004 - resolution: {integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==} 4005 - engines: {node: ^18.0.0 || >=20.0.0} 6685 + resolution: 6686 + { 6687 + integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==, 6688 + } 6689 + engines: { node: ^18.0.0 || >=20.0.0 } 4006 6690 hasBin: true 4007 6691 peerDependencies: 4008 - '@types/node': ^18.0.0 || >=20.0.0 4009 - less: '*' 6692 + "@types/node": ^18.0.0 || >=20.0.0 6693 + less: "*" 4010 6694 lightningcss: ^1.21.0 4011 - sass: '*' 4012 - sass-embedded: '*' 4013 - stylus: '*' 4014 - sugarss: '*' 6695 + sass: "*" 6696 + sass-embedded: "*" 6697 + stylus: "*" 6698 + sugarss: "*" 4015 6699 terser: ^5.4.0 4016 6700 peerDependenciesMeta: 4017 - '@types/node': 6701 + "@types/node": 4018 6702 optional: true 4019 6703 less: 4020 6704 optional: true ··· 4032 6716 optional: true 4033 6717 4034 6718 vite@6.3.6: 4035 - resolution: {integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==} 4036 - engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0} 6719 + resolution: 6720 + { 6721 + integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==, 6722 + } 6723 + engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } 4037 6724 hasBin: true 4038 6725 peerDependencies: 4039 - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 4040 - jiti: '>=1.21.0' 4041 - less: '*' 6726 + "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 6727 + jiti: ">=1.21.0" 6728 + less: "*" 4042 6729 lightningcss: ^1.21.0 4043 - sass: '*' 4044 - sass-embedded: '*' 4045 - stylus: '*' 4046 - sugarss: '*' 6730 + sass: "*" 6731 + sass-embedded: "*" 6732 + stylus: "*" 6733 + sugarss: "*" 4047 6734 terser: ^5.16.0 4048 6735 tsx: ^4.8.1 4049 6736 yaml: ^2.4.2 4050 6737 peerDependenciesMeta: 4051 - '@types/node': 6738 + "@types/node": 4052 6739 optional: true 4053 6740 jiti: 4054 6741 optional: true ··· 4072 6759 optional: true 4073 6760 4074 6761 vitefu@1.1.1: 4075 - resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} 6762 + resolution: 6763 + { 6764 + integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==, 6765 + } 4076 6766 peerDependencies: 4077 6767 vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 4078 6768 peerDependenciesMeta: ··· 4080 6770 optional: true 4081 6771 4082 6772 vitest@1.6.1: 4083 - resolution: {integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==} 4084 - engines: {node: ^18.0.0 || >=20.0.0} 6773 + resolution: 6774 + { 6775 + integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==, 6776 + } 6777 + engines: { node: ^18.0.0 || >=20.0.0 } 4085 6778 hasBin: true 4086 6779 peerDependencies: 4087 - '@edge-runtime/vm': '*' 4088 - '@types/node': ^18.0.0 || >=20.0.0 4089 - '@vitest/browser': 1.6.1 4090 - '@vitest/ui': 1.6.1 4091 - happy-dom: '*' 4092 - jsdom: '*' 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: "*" 4093 6786 peerDependenciesMeta: 4094 - '@edge-runtime/vm': 6787 + "@edge-runtime/vm": 4095 6788 optional: true 4096 - '@types/node': 6789 + "@types/node": 4097 6790 optional: true 4098 - '@vitest/browser': 6791 + "@vitest/browser": 4099 6792 optional: true 4100 - '@vitest/ui': 6793 + "@vitest/ui": 4101 6794 optional: true 4102 6795 happy-dom: 4103 6796 optional: true ··· 4105 6798 optional: true 4106 6799 4107 6800 vm-browserify@1.1.2: 4108 - resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} 6801 + resolution: 6802 + { 6803 + integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==, 6804 + } 4109 6805 4110 6806 vscode-jsonrpc@8.2.0: 4111 - resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} 4112 - engines: {node: '>=14.0.0'} 6807 + resolution: 6808 + { 6809 + integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==, 6810 + } 6811 + engines: { node: ">=14.0.0" } 4113 6812 4114 6813 vscode-languageserver-protocol@3.17.5: 4115 - resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} 6814 + resolution: 6815 + { 6816 + integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==, 6817 + } 4116 6818 4117 6819 vscode-languageserver-textdocument@1.0.12: 4118 - resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} 6820 + resolution: 6821 + { 6822 + integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==, 6823 + } 4119 6824 4120 6825 vscode-languageserver-types@3.17.5: 4121 - resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} 6826 + resolution: 6827 + { 6828 + integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, 6829 + } 4122 6830 4123 6831 vscode-languageserver@9.0.1: 4124 - resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} 6832 + resolution: 6833 + { 6834 + integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==, 6835 + } 4125 6836 hasBin: true 4126 6837 4127 6838 web-namespaces@2.0.1: 4128 - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 6839 + resolution: 6840 + { 6841 + integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==, 6842 + } 4129 6843 4130 6844 webidl-conversions@3.0.1: 4131 - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 6845 + resolution: 6846 + { 6847 + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, 6848 + } 4132 6849 4133 6850 whatwg-url@5.0.0: 4134 - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 6851 + resolution: 6852 + { 6853 + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, 6854 + } 4135 6855 4136 6856 which-pm-runs@1.1.0: 4137 - resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} 4138 - engines: {node: '>=4'} 6857 + resolution: 6858 + { 6859 + integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==, 6860 + } 6861 + engines: { node: ">=4" } 4139 6862 4140 6863 which-typed-array@1.1.19: 4141 - resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} 4142 - engines: {node: '>= 0.4'} 6864 + resolution: 6865 + { 6866 + integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==, 6867 + } 6868 + engines: { node: ">= 0.4" } 4143 6869 4144 6870 which@2.0.2: 4145 - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 4146 - engines: {node: '>= 8'} 6871 + resolution: 6872 + { 6873 + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, 6874 + } 6875 + engines: { node: ">= 8" } 4147 6876 hasBin: true 4148 6877 4149 6878 why-is-node-running@2.3.0: 4150 - resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 4151 - engines: {node: '>=8'} 6879 + resolution: 6880 + { 6881 + integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==, 6882 + } 6883 + engines: { node: ">=8" } 4152 6884 hasBin: true 4153 6885 4154 6886 widest-line@5.0.0: 4155 - resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} 4156 - engines: {node: '>=18'} 6887 + resolution: 6888 + { 6889 + integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==, 6890 + } 6891 + engines: { node: ">=18" } 4157 6892 4158 6893 wrap-ansi@6.2.0: 4159 - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 4160 - engines: {node: '>=8'} 6894 + resolution: 6895 + { 6896 + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, 6897 + } 6898 + engines: { node: ">=8" } 4161 6899 4162 6900 wrap-ansi@7.0.0: 4163 - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 4164 - engines: {node: '>=10'} 6901 + resolution: 6902 + { 6903 + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, 6904 + } 6905 + engines: { node: ">=10" } 4165 6906 4166 6907 wrap-ansi@9.0.2: 4167 - resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} 4168 - engines: {node: '>=18'} 6908 + resolution: 6909 + { 6910 + integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==, 6911 + } 6912 + engines: { node: ">=18" } 4169 6913 4170 6914 ws@8.18.3: 4171 - resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} 4172 - engines: {node: '>=10.0.0'} 6915 + resolution: 6916 + { 6917 + integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==, 6918 + } 6919 + engines: { node: ">=10.0.0" } 4173 6920 peerDependencies: 4174 6921 bufferutil: ^4.0.1 4175 - utf-8-validate: '>=5.0.2' 6922 + utf-8-validate: ">=5.0.2" 4176 6923 peerDependenciesMeta: 4177 6924 bufferutil: 4178 6925 optional: true ··· 4180 6927 optional: true 4181 6928 4182 6929 xtend@4.0.2: 4183 - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 4184 - engines: {node: '>=0.4'} 6930 + resolution: 6931 + { 6932 + integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, 6933 + } 6934 + engines: { node: ">=0.4" } 4185 6935 4186 6936 xxhash-wasm@1.1.0: 4187 - resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} 6937 + resolution: 6938 + { 6939 + integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==, 6940 + } 4188 6941 4189 6942 y18n@5.0.8: 4190 - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 4191 - engines: {node: '>=10'} 6943 + resolution: 6944 + { 6945 + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, 6946 + } 6947 + engines: { node: ">=10" } 4192 6948 4193 6949 yallist@3.1.1: 4194 - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 6950 + resolution: 6951 + { 6952 + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, 6953 + } 4195 6954 4196 6955 yallist@5.0.0: 4197 - resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} 4198 - engines: {node: '>=18'} 6956 + resolution: 6957 + { 6958 + integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==, 6959 + } 6960 + engines: { node: ">=18" } 4199 6961 4200 6962 yaml@2.8.1: 4201 - resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} 4202 - engines: {node: '>= 14.6'} 6963 + resolution: 6964 + { 6965 + integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==, 6966 + } 6967 + engines: { node: ">= 14.6" } 4203 6968 hasBin: true 4204 6969 4205 6970 yargs-parser@21.1.1: 4206 - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 4207 - engines: {node: '>=12'} 6971 + resolution: 6972 + { 6973 + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, 6974 + } 6975 + engines: { node: ">=12" } 4208 6976 4209 6977 yargs-parser@22.0.0: 4210 - resolution: {integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==} 4211 - engines: {node: ^20.19.0 || ^22.12.0 || >=23} 6978 + resolution: 6979 + { 6980 + integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==, 6981 + } 6982 + engines: { node: ^20.19.0 || ^22.12.0 || >=23 } 4212 6983 4213 6984 yargs@17.7.2: 4214 - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 4215 - engines: {node: '>=12'} 6985 + resolution: 6986 + { 6987 + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, 6988 + } 6989 + engines: { node: ">=12" } 4216 6990 4217 6991 yargs@18.0.0: 4218 - resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==} 4219 - engines: {node: ^20.19.0 || ^22.12.0 || >=23} 6992 + resolution: 6993 + { 6994 + integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==, 6995 + } 6996 + engines: { node: ^20.19.0 || ^22.12.0 || >=23 } 4220 6997 4221 6998 yesno@0.4.0: 4222 - resolution: {integrity: sha512-tdBxmHvbXPBKYIg81bMCB7bVeDmHkRzk5rVJyYYXurwKkHq/MCd8rz4HSJUP7hW0H2NlXiq8IFiWvYKEHhlotA==} 6999 + resolution: 7000 + { 7001 + integrity: sha512-tdBxmHvbXPBKYIg81bMCB7bVeDmHkRzk5rVJyYYXurwKkHq/MCd8rz4HSJUP7hW0H2NlXiq8IFiWvYKEHhlotA==, 7002 + } 4223 7003 4224 7004 yocto-queue@0.1.0: 4225 - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 4226 - engines: {node: '>=10'} 7005 + resolution: 7006 + { 7007 + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, 7008 + } 7009 + engines: { node: ">=10" } 4227 7010 4228 7011 yocto-queue@1.2.1: 4229 - resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} 4230 - engines: {node: '>=12.20'} 7012 + resolution: 7013 + { 7014 + integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==, 7015 + } 7016 + engines: { node: ">=12.20" } 4231 7017 4232 7018 yocto-spinner@0.2.3: 4233 - resolution: {integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==} 4234 - engines: {node: '>=18.19'} 7019 + resolution: 7020 + { 7021 + integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==, 7022 + } 7023 + engines: { node: ">=18.19" } 4235 7024 4236 7025 yoctocolors-cjs@2.1.3: 4237 - resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} 4238 - engines: {node: '>=18'} 7026 + resolution: 7027 + { 7028 + integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==, 7029 + } 7030 + engines: { node: ">=18" } 4239 7031 4240 7032 yoctocolors@2.1.2: 4241 - resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} 4242 - engines: {node: '>=18'} 7033 + resolution: 7034 + { 7035 + integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==, 7036 + } 7037 + engines: { node: ">=18" } 4243 7038 4244 7039 zod-to-json-schema@3.24.6: 4245 - resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==} 7040 + resolution: 7041 + { 7042 + integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==, 7043 + } 4246 7044 peerDependencies: 4247 7045 zod: ^3.24.1 4248 7046 4249 7047 zod-to-ts@1.2.0: 4250 - resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} 7048 + resolution: 7049 + { 7050 + integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==, 7051 + } 4251 7052 peerDependencies: 4252 7053 typescript: ^4.9.4 || ^5.0.2 4253 7054 zod: ^3 4254 7055 4255 7056 zod@3.25.76: 4256 - resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 7057 + resolution: 7058 + { 7059 + integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==, 7060 + } 4257 7061 4258 7062 zwitch@2.0.4: 4259 - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 7063 + resolution: 7064 + { 7065 + integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, 7066 + } 4260 7067 4261 7068 snapshots: 4262 - 4263 - '@apidevtools/json-schema-ref-parser@14.0.1': 7069 + "@apidevtools/json-schema-ref-parser@14.0.1": 4264 7070 dependencies: 4265 - '@types/json-schema': 7.0.15 7071 + "@types/json-schema": 7.0.15 4266 7072 js-yaml: 4.1.0 4267 7073 4268 - '@apidevtools/openapi-schemas@2.1.0': {} 7074 + "@apidevtools/openapi-schemas@2.1.0": {} 4269 7075 4270 - '@apidevtools/swagger-methods@3.0.2': {} 7076 + "@apidevtools/swagger-methods@3.0.2": {} 4271 7077 4272 - '@apidevtools/swagger-parser@12.0.0(openapi-types@12.1.3)': 7078 + "@apidevtools/swagger-parser@12.0.0(openapi-types@12.1.3)": 4273 7079 dependencies: 4274 - '@apidevtools/json-schema-ref-parser': 14.0.1 4275 - '@apidevtools/openapi-schemas': 2.1.0 4276 - '@apidevtools/swagger-methods': 3.0.2 7080 + "@apidevtools/json-schema-ref-parser": 14.0.1 7081 + "@apidevtools/openapi-schemas": 2.1.0 7082 + "@apidevtools/swagger-methods": 3.0.2 4277 7083 ajv: 8.17.1 4278 7084 ajv-draft-04: 1.0.0(ajv@8.17.1) 4279 7085 call-me-maybe: 1.0.2 4280 7086 openapi-types: 12.1.3 4281 7087 4282 - '@astrojs/compiler@2.13.0': {} 7088 + "@astrojs/compiler@2.13.0": {} 4283 7089 4284 - '@astrojs/internal-helpers@0.7.3': {} 7090 + "@astrojs/internal-helpers@0.7.3": {} 4285 7091 4286 - '@astrojs/markdown-remark@6.3.7': 7092 + "@astrojs/markdown-remark@6.3.7": 4287 7093 dependencies: 4288 - '@astrojs/internal-helpers': 0.7.3 4289 - '@astrojs/prism': 3.3.0 7094 + "@astrojs/internal-helpers": 0.7.3 7095 + "@astrojs/prism": 3.3.0 4290 7096 github-slugger: 2.0.0 4291 7097 hast-util-from-html: 2.0.3 4292 7098 hast-util-to-text: 4.0.2 ··· 4309 7115 transitivePeerDependencies: 4310 7116 - supports-color 4311 7117 4312 - '@astrojs/prism@3.3.0': 7118 + "@astrojs/prism@3.3.0": 4313 7119 dependencies: 4314 7120 prismjs: 1.30.0 4315 7121 4316 - '@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)': 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)": 4317 7123 dependencies: 4318 - '@types/react': 19.2.0 4319 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 4320 - '@vitejs/plugin-react': 4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1)) 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 7127 react: 19.2.0 4322 7128 react-dom: 19.2.0(react@19.2.0) 4323 7129 ultrahtml: 1.6.0 4324 7130 vite: 6.3.6(@types/node@20.19.19)(yaml@2.8.1) 4325 7131 transitivePeerDependencies: 4326 - - '@types/node' 7132 + - "@types/node" 4327 7133 - jiti 4328 7134 - less 4329 7135 - lightningcss ··· 4336 7142 - tsx 4337 7143 - yaml 4338 7144 4339 - '@astrojs/telemetry@3.3.0': 7145 + "@astrojs/telemetry@3.3.0": 4340 7146 dependencies: 4341 7147 ci-info: 4.3.0 4342 7148 debug: 4.4.3 ··· 4348 7154 transitivePeerDependencies: 4349 7155 - supports-color 4350 7156 4351 - '@atproto/common-web@0.4.3': 7157 + "@atproto/common-web@0.4.3": 4352 7158 dependencies: 4353 7159 graphemer: 1.4.0 4354 7160 multiformats: 9.9.0 4355 7161 uint8arrays: 3.0.0 4356 7162 zod: 3.25.76 4357 7163 4358 - '@atproto/common@0.4.12': 7164 + "@atproto/common@0.4.12": 4359 7165 dependencies: 4360 - '@atproto/common-web': 0.4.3 4361 - '@ipld/dag-cbor': 7.0.3 7166 + "@atproto/common-web": 0.4.3 7167 + "@ipld/dag-cbor": 7.0.3 4362 7168 cbor-x: 1.6.0 4363 7169 iso-datestring-validator: 2.2.2 4364 7170 multiformats: 9.9.0 4365 7171 pino: 8.21.0 4366 7172 4367 - '@atproto/crypto@0.4.4': 7173 + "@atproto/crypto@0.4.4": 4368 7174 dependencies: 4369 - '@noble/curves': 1.9.7 4370 - '@noble/hashes': 1.8.0 7175 + "@noble/curves": 1.9.7 7176 + "@noble/hashes": 1.8.0 4371 7177 uint8arrays: 3.0.0 4372 7178 4373 - '@atproto/lex-cli@0.9.5': 7179 + "@atproto/lex-cli@0.9.5": 4374 7180 dependencies: 4375 - '@atproto/lexicon': 0.5.1 4376 - '@atproto/syntax': 0.4.1 7181 + "@atproto/lexicon": 0.5.1 7182 + "@atproto/syntax": 0.4.1 4377 7183 chalk: 4.1.2 4378 7184 commander: 9.5.0 4379 7185 prettier: 3.3.3 ··· 4381 7187 yesno: 0.4.0 4382 7188 zod: 3.25.76 4383 7189 4384 - '@atproto/lexicon@0.5.1': 7190 + "@atproto/lexicon@0.5.1": 4385 7191 dependencies: 4386 - '@atproto/common-web': 0.4.3 4387 - '@atproto/syntax': 0.4.1 7192 + "@atproto/common-web": 0.4.3 7193 + "@atproto/syntax": 0.4.1 4388 7194 iso-datestring-validator: 2.2.2 4389 7195 multiformats: 9.9.0 4390 7196 zod: 3.25.76 4391 7197 4392 - '@atproto/syntax@0.4.1': {} 7198 + "@atproto/syntax@0.4.1": {} 4393 7199 4394 - '@atproto/xrpc-server@0.9.5': 7200 + "@atproto/xrpc-server@0.9.5": 4395 7201 dependencies: 4396 - '@atproto/common': 0.4.12 4397 - '@atproto/crypto': 0.4.4 4398 - '@atproto/lexicon': 0.5.1 4399 - '@atproto/xrpc': 0.7.5 7202 + "@atproto/common": 0.4.12 7203 + "@atproto/crypto": 0.4.4 7204 + "@atproto/lexicon": 0.5.1 7205 + "@atproto/xrpc": 0.7.5 4400 7206 cbor-x: 1.6.0 4401 7207 express: 4.21.2 4402 7208 http-errors: 2.0.0 ··· 4410 7216 - supports-color 4411 7217 - utf-8-validate 4412 7218 4413 - '@atproto/xrpc@0.7.5': 7219 + "@atproto/xrpc@0.7.5": 4414 7220 dependencies: 4415 - '@atproto/lexicon': 0.5.1 7221 + "@atproto/lexicon": 0.5.1 4416 7222 zod: 3.25.76 4417 7223 4418 - '@babel/code-frame@7.27.1': 7224 + "@babel/code-frame@7.27.1": 4419 7225 dependencies: 4420 - '@babel/helper-validator-identifier': 7.27.1 7226 + "@babel/helper-validator-identifier": 7.27.1 4421 7227 js-tokens: 4.0.0 4422 7228 picocolors: 1.1.1 4423 7229 4424 - '@babel/compat-data@7.28.4': {} 7230 + "@babel/compat-data@7.28.4": {} 4425 7231 4426 - '@babel/core@7.28.4': 7232 + "@babel/core@7.28.4": 4427 7233 dependencies: 4428 - '@babel/code-frame': 7.27.1 4429 - '@babel/generator': 7.28.3 4430 - '@babel/helper-compilation-targets': 7.27.2 4431 - '@babel/helper-module-transforms': 7.28.3(@babel/core@7.28.4) 4432 - '@babel/helpers': 7.28.4 4433 - '@babel/parser': 7.28.4 4434 - '@babel/template': 7.27.2 4435 - '@babel/traverse': 7.28.4 4436 - '@babel/types': 7.28.4 4437 - '@jridgewell/remapping': 2.3.5 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 4438 7244 convert-source-map: 2.0.0 4439 7245 debug: 4.4.3 4440 7246 gensync: 1.0.0-beta.2 ··· 4443 7249 transitivePeerDependencies: 4444 7250 - supports-color 4445 7251 4446 - '@babel/generator@7.28.3': 7252 + "@babel/generator@7.28.3": 4447 7253 dependencies: 4448 - '@babel/parser': 7.28.4 4449 - '@babel/types': 7.28.4 4450 - '@jridgewell/gen-mapping': 0.3.13 4451 - '@jridgewell/trace-mapping': 0.3.31 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 4452 7258 jsesc: 3.1.0 4453 7259 4454 - '@babel/helper-compilation-targets@7.27.2': 7260 + "@babel/helper-compilation-targets@7.27.2": 4455 7261 dependencies: 4456 - '@babel/compat-data': 7.28.4 4457 - '@babel/helper-validator-option': 7.27.1 7262 + "@babel/compat-data": 7.28.4 7263 + "@babel/helper-validator-option": 7.27.1 4458 7264 browserslist: 4.26.3 4459 7265 lru-cache: 5.1.1 4460 7266 semver: 6.3.1 4461 7267 4462 - '@babel/helper-globals@7.28.0': {} 7268 + "@babel/helper-globals@7.28.0": {} 4463 7269 4464 - '@babel/helper-module-imports@7.27.1': 7270 + "@babel/helper-module-imports@7.27.1": 4465 7271 dependencies: 4466 - '@babel/traverse': 7.28.4 4467 - '@babel/types': 7.28.4 7272 + "@babel/traverse": 7.28.4 7273 + "@babel/types": 7.28.4 4468 7274 transitivePeerDependencies: 4469 7275 - supports-color 4470 7276 4471 - '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)': 7277 + "@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)": 4472 7278 dependencies: 4473 - '@babel/core': 7.28.4 4474 - '@babel/helper-module-imports': 7.27.1 4475 - '@babel/helper-validator-identifier': 7.27.1 4476 - '@babel/traverse': 7.28.4 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 4477 7283 transitivePeerDependencies: 4478 7284 - supports-color 4479 7285 4480 - '@babel/helper-plugin-utils@7.27.1': {} 7286 + "@babel/helper-plugin-utils@7.27.1": {} 4481 7287 4482 - '@babel/helper-string-parser@7.27.1': {} 7288 + "@babel/helper-string-parser@7.27.1": {} 4483 7289 4484 - '@babel/helper-validator-identifier@7.27.1': {} 7290 + "@babel/helper-validator-identifier@7.27.1": {} 4485 7291 4486 - '@babel/helper-validator-option@7.27.1': {} 7292 + "@babel/helper-validator-option@7.27.1": {} 4487 7293 4488 - '@babel/helpers@7.28.4': 7294 + "@babel/helpers@7.28.4": 4489 7295 dependencies: 4490 - '@babel/template': 7.27.2 4491 - '@babel/types': 7.28.4 7296 + "@babel/template": 7.27.2 7297 + "@babel/types": 7.28.4 4492 7298 4493 - '@babel/parser@7.28.4': 7299 + "@babel/parser@7.28.4": 4494 7300 dependencies: 4495 - '@babel/types': 7.28.4 7301 + "@babel/types": 7.28.4 4496 7302 4497 - '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)': 7303 + "@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)": 4498 7304 dependencies: 4499 - '@babel/core': 7.28.4 4500 - '@babel/helper-plugin-utils': 7.27.1 7305 + "@babel/core": 7.28.4 7306 + "@babel/helper-plugin-utils": 7.27.1 4501 7307 4502 - '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)': 7308 + "@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)": 4503 7309 dependencies: 4504 - '@babel/core': 7.28.4 4505 - '@babel/helper-plugin-utils': 7.27.1 7310 + "@babel/core": 7.28.4 7311 + "@babel/helper-plugin-utils": 7.27.1 4506 7312 4507 - '@babel/runtime@7.28.4': {} 7313 + "@babel/runtime@7.28.4": {} 4508 7314 4509 - '@babel/template@7.27.2': 7315 + "@babel/template@7.27.2": 4510 7316 dependencies: 4511 - '@babel/code-frame': 7.27.1 4512 - '@babel/parser': 7.28.4 4513 - '@babel/types': 7.28.4 7317 + "@babel/code-frame": 7.27.1 7318 + "@babel/parser": 7.28.4 7319 + "@babel/types": 7.28.4 4514 7320 4515 - '@babel/traverse@7.28.4': 7321 + "@babel/traverse@7.28.4": 4516 7322 dependencies: 4517 - '@babel/code-frame': 7.27.1 4518 - '@babel/generator': 7.28.3 4519 - '@babel/helper-globals': 7.28.0 4520 - '@babel/parser': 7.28.4 4521 - '@babel/template': 7.27.2 4522 - '@babel/types': 7.28.4 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 4523 7329 debug: 4.4.3 4524 7330 transitivePeerDependencies: 4525 7331 - supports-color 4526 7332 4527 - '@babel/types@7.28.4': 7333 + "@babel/types@7.28.4": 4528 7334 dependencies: 4529 - '@babel/helper-string-parser': 7.27.1 4530 - '@babel/helper-validator-identifier': 7.27.1 7335 + "@babel/helper-string-parser": 7.27.1 7336 + "@babel/helper-validator-identifier": 7.27.1 4531 7337 4532 - '@capsizecss/unpack@2.4.0': 7338 + "@capsizecss/unpack@2.4.0": 4533 7339 dependencies: 4534 7340 blob-to-buffer: 1.2.9 4535 7341 cross-fetch: 3.2.0 ··· 4537 7343 transitivePeerDependencies: 4538 7344 - encoding 4539 7345 4540 - '@cbor-extract/cbor-extract-darwin-arm64@2.2.0': 7346 + "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": 4541 7347 optional: true 4542 7348 4543 - '@cbor-extract/cbor-extract-darwin-x64@2.2.0': 7349 + "@cbor-extract/cbor-extract-darwin-x64@2.2.0": 4544 7350 optional: true 4545 7351 4546 - '@cbor-extract/cbor-extract-linux-arm64@2.2.0': 7352 + "@cbor-extract/cbor-extract-linux-arm64@2.2.0": 4547 7353 optional: true 4548 7354 4549 - '@cbor-extract/cbor-extract-linux-arm@2.2.0': 7355 + "@cbor-extract/cbor-extract-linux-arm@2.2.0": 4550 7356 optional: true 4551 7357 4552 - '@cbor-extract/cbor-extract-linux-x64@2.2.0': 7358 + "@cbor-extract/cbor-extract-linux-x64@2.2.0": 4553 7359 optional: true 4554 7360 4555 - '@cbor-extract/cbor-extract-win32-x64@2.2.0': 7361 + "@cbor-extract/cbor-extract-win32-x64@2.2.0": 4556 7362 optional: true 4557 7363 4558 - '@ctrl/tinycolor@3.6.1': {} 7364 + "@ctrl/tinycolor@3.6.1": {} 4559 7365 4560 - '@emnapi/runtime@1.5.0': 7366 + "@emnapi/runtime@1.5.0": 4561 7367 dependencies: 4562 7368 tslib: 2.8.1 4563 7369 optional: true 4564 7370 4565 - '@emotion/hash@0.9.2': {} 7371 + "@emotion/hash@0.9.2": {} 4566 7372 4567 - '@esbuild/aix-ppc64@0.21.5': 7373 + "@esbuild/aix-ppc64@0.21.5": 4568 7374 optional: true 4569 7375 4570 - '@esbuild/aix-ppc64@0.25.10': 7376 + "@esbuild/aix-ppc64@0.25.10": 4571 7377 optional: true 4572 7378 4573 - '@esbuild/android-arm64@0.21.5': 7379 + "@esbuild/android-arm64@0.21.5": 4574 7380 optional: true 4575 7381 4576 - '@esbuild/android-arm64@0.25.10': 7382 + "@esbuild/android-arm64@0.25.10": 4577 7383 optional: true 4578 7384 4579 - '@esbuild/android-arm@0.21.5': 7385 + "@esbuild/android-arm@0.21.5": 4580 7386 optional: true 4581 7387 4582 - '@esbuild/android-arm@0.25.10': 7388 + "@esbuild/android-arm@0.25.10": 4583 7389 optional: true 4584 7390 4585 - '@esbuild/android-x64@0.21.5': 7391 + "@esbuild/android-x64@0.21.5": 4586 7392 optional: true 4587 7393 4588 - '@esbuild/android-x64@0.25.10': 7394 + "@esbuild/android-x64@0.25.10": 4589 7395 optional: true 4590 7396 4591 - '@esbuild/darwin-arm64@0.21.5': 7397 + "@esbuild/darwin-arm64@0.21.5": 4592 7398 optional: true 4593 7399 4594 - '@esbuild/darwin-arm64@0.25.10': 7400 + "@esbuild/darwin-arm64@0.25.10": 4595 7401 optional: true 4596 7402 4597 - '@esbuild/darwin-x64@0.21.5': 7403 + "@esbuild/darwin-x64@0.21.5": 4598 7404 optional: true 4599 7405 4600 - '@esbuild/darwin-x64@0.25.10': 7406 + "@esbuild/darwin-x64@0.25.10": 4601 7407 optional: true 4602 7408 4603 - '@esbuild/freebsd-arm64@0.21.5': 7409 + "@esbuild/freebsd-arm64@0.21.5": 4604 7410 optional: true 4605 7411 4606 - '@esbuild/freebsd-arm64@0.25.10': 7412 + "@esbuild/freebsd-arm64@0.25.10": 4607 7413 optional: true 4608 7414 4609 - '@esbuild/freebsd-x64@0.21.5': 7415 + "@esbuild/freebsd-x64@0.21.5": 4610 7416 optional: true 4611 7417 4612 - '@esbuild/freebsd-x64@0.25.10': 7418 + "@esbuild/freebsd-x64@0.25.10": 4613 7419 optional: true 4614 7420 4615 - '@esbuild/linux-arm64@0.21.5': 7421 + "@esbuild/linux-arm64@0.21.5": 4616 7422 optional: true 4617 7423 4618 - '@esbuild/linux-arm64@0.25.10': 7424 + "@esbuild/linux-arm64@0.25.10": 4619 7425 optional: true 4620 7426 4621 - '@esbuild/linux-arm@0.21.5': 7427 + "@esbuild/linux-arm@0.21.5": 4622 7428 optional: true 4623 7429 4624 - '@esbuild/linux-arm@0.25.10': 7430 + "@esbuild/linux-arm@0.25.10": 4625 7431 optional: true 4626 7432 4627 - '@esbuild/linux-ia32@0.21.5': 7433 + "@esbuild/linux-ia32@0.21.5": 4628 7434 optional: true 4629 7435 4630 - '@esbuild/linux-ia32@0.25.10': 7436 + "@esbuild/linux-ia32@0.25.10": 4631 7437 optional: true 4632 7438 4633 - '@esbuild/linux-loong64@0.21.5': 7439 + "@esbuild/linux-loong64@0.21.5": 4634 7440 optional: true 4635 7441 4636 - '@esbuild/linux-loong64@0.25.10': 7442 + "@esbuild/linux-loong64@0.25.10": 4637 7443 optional: true 4638 7444 4639 - '@esbuild/linux-mips64el@0.21.5': 7445 + "@esbuild/linux-mips64el@0.21.5": 4640 7446 optional: true 4641 7447 4642 - '@esbuild/linux-mips64el@0.25.10': 7448 + "@esbuild/linux-mips64el@0.25.10": 4643 7449 optional: true 4644 7450 4645 - '@esbuild/linux-ppc64@0.21.5': 7451 + "@esbuild/linux-ppc64@0.21.5": 4646 7452 optional: true 4647 7453 4648 - '@esbuild/linux-ppc64@0.25.10': 7454 + "@esbuild/linux-ppc64@0.25.10": 4649 7455 optional: true 4650 7456 4651 - '@esbuild/linux-riscv64@0.21.5': 7457 + "@esbuild/linux-riscv64@0.21.5": 4652 7458 optional: true 4653 7459 4654 - '@esbuild/linux-riscv64@0.25.10': 7460 + "@esbuild/linux-riscv64@0.25.10": 4655 7461 optional: true 4656 7462 4657 - '@esbuild/linux-s390x@0.21.5': 7463 + "@esbuild/linux-s390x@0.21.5": 4658 7464 optional: true 4659 7465 4660 - '@esbuild/linux-s390x@0.25.10': 7466 + "@esbuild/linux-s390x@0.25.10": 4661 7467 optional: true 4662 7468 4663 - '@esbuild/linux-x64@0.21.5': 7469 + "@esbuild/linux-x64@0.21.5": 4664 7470 optional: true 4665 7471 4666 - '@esbuild/linux-x64@0.25.10': 7472 + "@esbuild/linux-x64@0.25.10": 4667 7473 optional: true 4668 7474 4669 - '@esbuild/netbsd-arm64@0.25.10': 7475 + "@esbuild/netbsd-arm64@0.25.10": 4670 7476 optional: true 4671 7477 4672 - '@esbuild/netbsd-x64@0.21.5': 7478 + "@esbuild/netbsd-x64@0.21.5": 4673 7479 optional: true 4674 7480 4675 - '@esbuild/netbsd-x64@0.25.10': 7481 + "@esbuild/netbsd-x64@0.25.10": 4676 7482 optional: true 4677 7483 4678 - '@esbuild/openbsd-arm64@0.25.10': 7484 + "@esbuild/openbsd-arm64@0.25.10": 4679 7485 optional: true 4680 7486 4681 - '@esbuild/openbsd-x64@0.21.5': 7487 + "@esbuild/openbsd-x64@0.21.5": 4682 7488 optional: true 4683 7489 4684 - '@esbuild/openbsd-x64@0.25.10': 7490 + "@esbuild/openbsd-x64@0.25.10": 4685 7491 optional: true 4686 7492 4687 - '@esbuild/openharmony-arm64@0.25.10': 7493 + "@esbuild/openharmony-arm64@0.25.10": 4688 7494 optional: true 4689 7495 4690 - '@esbuild/sunos-x64@0.21.5': 7496 + "@esbuild/sunos-x64@0.21.5": 4691 7497 optional: true 4692 7498 4693 - '@esbuild/sunos-x64@0.25.10': 7499 + "@esbuild/sunos-x64@0.25.10": 4694 7500 optional: true 4695 7501 4696 - '@esbuild/win32-arm64@0.21.5': 7502 + "@esbuild/win32-arm64@0.21.5": 4697 7503 optional: true 4698 7504 4699 - '@esbuild/win32-arm64@0.25.10': 7505 + "@esbuild/win32-arm64@0.25.10": 4700 7506 optional: true 4701 7507 4702 - '@esbuild/win32-ia32@0.21.5': 7508 + "@esbuild/win32-ia32@0.21.5": 4703 7509 optional: true 4704 7510 4705 - '@esbuild/win32-ia32@0.25.10': 7511 + "@esbuild/win32-ia32@0.25.10": 4706 7512 optional: true 4707 7513 4708 - '@esbuild/win32-x64@0.21.5': 7514 + "@esbuild/win32-x64@0.21.5": 4709 7515 optional: true 4710 7516 4711 - '@esbuild/win32-x64@0.25.10': 7517 + "@esbuild/win32-x64@0.25.10": 4712 7518 optional: true 4713 7519 4714 - '@floating-ui/core@1.7.3': 7520 + "@floating-ui/core@1.7.3": 4715 7521 dependencies: 4716 - '@floating-ui/utils': 0.2.10 7522 + "@floating-ui/utils": 0.2.10 4717 7523 4718 - '@floating-ui/devtools@0.2.3(@floating-ui/dom@1.7.4)': 7524 + "@floating-ui/devtools@0.2.3(@floating-ui/dom@1.7.4)": 4719 7525 dependencies: 4720 - '@floating-ui/dom': 1.7.4 7526 + "@floating-ui/dom": 1.7.4 4721 7527 4722 - '@floating-ui/dom@1.7.4': 7528 + "@floating-ui/dom@1.7.4": 4723 7529 dependencies: 4724 - '@floating-ui/core': 1.7.3 4725 - '@floating-ui/utils': 0.2.10 7530 + "@floating-ui/core": 1.7.3 7531 + "@floating-ui/utils": 0.2.10 4726 7532 4727 - '@floating-ui/utils@0.2.10': {} 7533 + "@floating-ui/utils@0.2.10": {} 4728 7534 4729 - '@fluentui/keyboard-keys@9.0.8': 7535 + "@fluentui/keyboard-keys@9.0.8": 4730 7536 dependencies: 4731 - '@swc/helpers': 0.5.17 7537 + "@swc/helpers": 0.5.17 4732 7538 4733 - '@fluentui/priority-overflow@9.2.0': 7539 + "@fluentui/priority-overflow@9.2.0": 4734 7540 dependencies: 4735 - '@swc/helpers': 0.5.17 7541 + "@swc/helpers": 0.5.17 4736 7542 4737 - '@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)': 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)": 4738 7544 dependencies: 4739 - '@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) 4740 - '@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) 4741 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4742 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4743 - '@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) 4744 - '@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) 4745 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4746 - '@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) 4747 - '@fluentui/react-theme': 9.2.0 4748 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4749 - '@griffel/react': 1.5.30(react@18.3.1) 4750 - '@swc/helpers': 0.5.17 4751 - '@types/react': 18.3.25 4752 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 4753 7559 react: 18.3.1 4754 7560 react-dom: 18.3.1(react@18.3.1) 4755 7561 transitivePeerDependencies: 4756 7562 - scheduler 4757 7563 4758 - '@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)': 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)": 4759 7565 dependencies: 4760 - '@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) 4761 - '@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) 4762 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4763 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4764 - '@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) 4765 - '@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) 4766 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4767 - '@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) 4768 - '@fluentui/react-theme': 9.2.0 4769 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4770 - '@griffel/react': 1.5.30(react@18.3.1) 4771 - '@swc/helpers': 0.5.17 4772 - '@types/react': 19.2.0 4773 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 4774 7580 react: 18.3.1 4775 7581 react-dom: 18.3.1(react@18.3.1) 4776 7582 transitivePeerDependencies: 4777 7583 - scheduler 4778 7584 4779 - '@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)': 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)": 4780 7586 dependencies: 4781 - '@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) 4782 - '@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) 4783 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4784 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4785 - '@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) 4786 - '@fluentui/react-theme': 9.2.0 4787 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4788 - '@griffel/react': 1.5.30(react@18.3.1) 4789 - '@swc/helpers': 0.5.17 4790 - '@types/react': 18.3.25 4791 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 4792 7598 react: 18.3.1 4793 7599 react-dom: 18.3.1(react@18.3.1) 4794 7600 transitivePeerDependencies: 4795 7601 - scheduler 4796 7602 4797 - '@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)': 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)": 4798 7604 dependencies: 4799 - '@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) 4800 - '@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) 4801 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4802 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4803 - '@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) 4804 - '@fluentui/react-theme': 9.2.0 4805 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4806 - '@griffel/react': 1.5.30(react@18.3.1) 4807 - '@swc/helpers': 0.5.17 4808 - '@types/react': 19.2.0 4809 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 4810 7616 react: 18.3.1 4811 7617 react-dom: 18.3.1(react@18.3.1) 4812 7618 transitivePeerDependencies: 4813 7619 - scheduler 4814 7620 4815 - '@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)': 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)": 4816 7622 dependencies: 4817 - '@fluentui/keyboard-keys': 9.0.8 4818 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4819 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4820 - '@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) 4821 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4822 - '@swc/helpers': 0.5.17 4823 - '@types/react': 18.3.25 4824 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 4825 7631 react: 18.3.1 4826 7632 react-dom: 18.3.1(react@18.3.1) 4827 7633 4828 - '@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)': 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)": 4829 7635 dependencies: 4830 - '@fluentui/keyboard-keys': 9.0.8 4831 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4832 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4833 - '@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) 4834 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4835 - '@swc/helpers': 0.5.17 4836 - '@types/react': 19.2.0 4837 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 4838 7644 react: 18.3.1 4839 7645 react-dom: 18.3.1(react@18.3.1) 4840 7646 4841 - '@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)': 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)": 4842 7648 dependencies: 4843 - '@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) 4844 - '@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) 4845 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4846 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4847 - '@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) 4848 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4849 - '@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) 4850 - '@fluentui/react-theme': 9.2.0 4851 - '@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) 4852 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4853 - '@griffel/react': 1.5.30(react@18.3.1) 4854 - '@swc/helpers': 0.5.17 4855 - '@types/react': 18.3.25 4856 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 4857 7663 react: 18.3.1 4858 7664 react-dom: 18.3.1(react@18.3.1) 4859 7665 transitivePeerDependencies: 4860 7666 - scheduler 4861 7667 4862 - '@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)': 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)": 4863 7669 dependencies: 4864 - '@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) 4865 - '@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) 4866 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4867 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4868 - '@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) 4869 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4870 - '@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) 4871 - '@fluentui/react-theme': 9.2.0 4872 - '@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) 4873 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4874 - '@griffel/react': 1.5.30(react@18.3.1) 4875 - '@swc/helpers': 0.5.17 4876 - '@types/react': 19.2.0 4877 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 4878 7684 react: 18.3.1 4879 7685 react-dom: 18.3.1(react@18.3.1) 4880 7686 transitivePeerDependencies: 4881 7687 - scheduler 4882 7688 4883 - '@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)': 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)": 4884 7690 dependencies: 4885 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4886 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4887 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4888 - '@fluentui/react-theme': 9.2.0 4889 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4890 - '@griffel/react': 1.5.30(react@18.3.1) 4891 - '@swc/helpers': 0.5.17 4892 - '@types/react': 18.3.25 4893 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 4894 7700 react: 18.3.1 4895 7701 react-dom: 18.3.1(react@18.3.1) 4896 7702 4897 - '@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)': 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)": 4898 7704 dependencies: 4899 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4900 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4901 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4902 - '@fluentui/react-theme': 9.2.0 4903 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4904 - '@griffel/react': 1.5.30(react@18.3.1) 4905 - '@swc/helpers': 0.5.17 4906 - '@types/react': 19.2.0 4907 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 4908 7714 react: 18.3.1 4909 7715 react-dom: 18.3.1(react@18.3.1) 4910 7716 4911 - '@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)': 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)": 4912 7718 dependencies: 4913 - '@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) 4914 - '@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) 4915 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4916 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4917 - '@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) 4918 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4919 - '@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) 4920 - '@fluentui/react-theme': 9.2.0 4921 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4922 - '@griffel/react': 1.5.30(react@18.3.1) 4923 - '@swc/helpers': 0.5.17 4924 - '@types/react': 18.3.25 4925 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 4926 7732 react: 18.3.1 4927 7733 react-dom: 18.3.1(react@18.3.1) 4928 7734 4929 - '@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)': 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)": 4930 7736 dependencies: 4931 - '@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) 4932 - '@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) 4933 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4934 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4935 - '@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) 4936 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4937 - '@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) 4938 - '@fluentui/react-theme': 9.2.0 4939 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4940 - '@griffel/react': 1.5.30(react@18.3.1) 4941 - '@swc/helpers': 0.5.17 4942 - '@types/react': 19.2.0 4943 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 4944 7750 react: 18.3.1 4945 7751 react-dom: 18.3.1(react@18.3.1) 4946 7752 4947 - '@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)': 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)": 4948 7754 dependencies: 4949 - '@fluentui/keyboard-keys': 9.0.8 4950 - '@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) 4951 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4952 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4953 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4954 - '@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) 4955 - '@fluentui/react-theme': 9.2.0 4956 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4957 - '@griffel/react': 1.5.30(react@18.3.1) 4958 - '@swc/helpers': 0.5.17 4959 - '@types/react': 18.3.25 4960 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 4961 7767 react: 18.3.1 4962 7768 react-dom: 18.3.1(react@18.3.1) 4963 7769 4964 - '@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)': 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)": 4965 7771 dependencies: 4966 - '@fluentui/keyboard-keys': 9.0.8 4967 - '@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) 4968 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 4969 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 4970 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 4971 - '@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) 4972 - '@fluentui/react-theme': 9.2.0 4973 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 4974 - '@griffel/react': 1.5.30(react@18.3.1) 4975 - '@swc/helpers': 0.5.17 4976 - '@types/react': 19.2.0 4977 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 4978 7784 react: 18.3.1 4979 7785 react-dom: 18.3.1(react@18.3.1) 4980 7786 4981 - '@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)': 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)": 4982 7788 dependencies: 4983 - '@fluentui/keyboard-keys': 9.0.8 4984 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 4985 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 4986 - '@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) 4987 - '@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) 4988 - '@fluentui/react-theme': 9.2.0 4989 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 4990 - '@griffel/react': 1.5.30(react@18.3.1) 4991 - '@swc/helpers': 0.5.17 4992 - '@types/react': 18.3.25 4993 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 4994 7800 react: 18.3.1 4995 7801 react-dom: 18.3.1(react@18.3.1) 4996 7802 4997 - '@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)': 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)": 4998 7804 dependencies: 4999 - '@fluentui/keyboard-keys': 9.0.8 5000 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5001 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5002 - '@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) 5003 - '@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) 5004 - '@fluentui/react-theme': 9.2.0 5005 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5006 - '@griffel/react': 1.5.30(react@18.3.1) 5007 - '@swc/helpers': 0.5.17 5008 - '@types/react': 19.2.0 5009 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5010 7816 react: 18.3.1 5011 7817 react-dom: 18.3.1(react@18.3.1) 5012 7818 5013 - '@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)': 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)": 5014 7820 dependencies: 5015 - '@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) 5016 - '@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) 5017 - '@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) 5018 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5019 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5020 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5021 - '@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) 5022 - '@fluentui/react-theme': 9.2.0 5023 - '@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) 5024 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5025 - '@griffel/react': 1.5.30(react@18.3.1) 5026 - '@swc/helpers': 0.5.17 5027 - '@types/react': 18.3.25 5028 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5029 7835 embla-carousel: 8.6.0 5030 7836 embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 5031 7837 embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) ··· 5034 7840 transitivePeerDependencies: 5035 7841 - scheduler 5036 7842 5037 - '@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)': 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)": 5038 7844 dependencies: 5039 - '@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) 5040 - '@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) 5041 - '@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) 5042 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5043 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5044 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5045 - '@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) 5046 - '@fluentui/react-theme': 9.2.0 5047 - '@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) 5048 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5049 - '@griffel/react': 1.5.30(react@18.3.1) 5050 - '@swc/helpers': 0.5.17 5051 - '@types/react': 19.2.0 5052 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5053 7859 embla-carousel: 8.6.0 5054 7860 embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 5055 7861 embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) ··· 5058 7864 transitivePeerDependencies: 5059 7865 - scheduler 5060 7866 5061 - '@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)': 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)": 5062 7868 dependencies: 5063 - '@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) 5064 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5065 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5066 - '@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) 5067 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5068 - '@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) 5069 - '@fluentui/react-theme': 9.2.0 5070 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5071 - '@griffel/react': 1.5.30(react@18.3.1) 5072 - '@swc/helpers': 0.5.17 5073 - '@types/react': 18.3.25 5074 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5075 7881 react: 18.3.1 5076 7882 react-dom: 18.3.1(react@18.3.1) 5077 7883 transitivePeerDependencies: 5078 7884 - scheduler 5079 7885 5080 - '@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)': 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)": 5081 7887 dependencies: 5082 - '@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) 5083 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5084 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5085 - '@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) 5086 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5087 - '@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) 5088 - '@fluentui/react-theme': 9.2.0 5089 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5090 - '@griffel/react': 1.5.30(react@18.3.1) 5091 - '@swc/helpers': 0.5.17 5092 - '@types/react': 19.2.0 5093 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5094 7900 react: 18.3.1 5095 7901 react-dom: 18.3.1(react@18.3.1) 5096 7902 transitivePeerDependencies: 5097 7903 - scheduler 5098 7904 5099 - '@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)': 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)": 5100 7906 dependencies: 5101 - '@ctrl/tinycolor': 3.6.1 5102 - '@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) 5103 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5104 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5105 - '@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) 5106 - '@fluentui/react-theme': 9.2.0 5107 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5108 - '@griffel/react': 1.5.30(react@18.3.1) 5109 - '@swc/helpers': 0.5.17 5110 - '@types/react': 18.3.25 5111 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5112 7918 react: 18.3.1 5113 7919 react-dom: 18.3.1(react@18.3.1) 5114 7920 transitivePeerDependencies: 5115 7921 - scheduler 5116 7922 5117 - '@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)': 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)": 5118 7924 dependencies: 5119 - '@ctrl/tinycolor': 3.6.1 5120 - '@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) 5121 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5122 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5123 - '@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) 5124 - '@fluentui/react-theme': 9.2.0 5125 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5126 - '@griffel/react': 1.5.30(react@18.3.1) 5127 - '@swc/helpers': 0.5.17 5128 - '@types/react': 19.2.0 5129 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5130 7936 react: 18.3.1 5131 7937 react-dom: 18.3.1(react@18.3.1) 5132 7938 transitivePeerDependencies: 5133 7939 - scheduler 5134 7940 5135 - '@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)': 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)": 5136 7942 dependencies: 5137 - '@fluentui/keyboard-keys': 9.0.8 5138 - '@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) 5139 - '@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) 5140 - '@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) 5141 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5142 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5143 - '@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) 5144 - '@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) 5145 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5146 - '@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) 5147 - '@fluentui/react-theme': 9.2.0 5148 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5149 - '@griffel/react': 1.5.30(react@18.3.1) 5150 - '@swc/helpers': 0.5.17 5151 - '@types/react': 18.3.25 5152 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5153 7959 react: 18.3.1 5154 7960 react-dom: 18.3.1(react@18.3.1) 5155 7961 transitivePeerDependencies: 5156 7962 - scheduler 5157 7963 5158 - '@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)': 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)": 5159 7965 dependencies: 5160 - '@fluentui/keyboard-keys': 9.0.8 5161 - '@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) 5162 - '@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) 5163 - '@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) 5164 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5165 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5166 - '@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) 5167 - '@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) 5168 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5169 - '@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) 5170 - '@fluentui/react-theme': 9.2.0 5171 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5172 - '@griffel/react': 1.5.30(react@18.3.1) 5173 - '@swc/helpers': 0.5.17 5174 - '@types/react': 19.2.0 5175 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5176 7982 react: 18.3.1 5177 7983 react-dom: 18.3.1(react@18.3.1) 5178 7984 transitivePeerDependencies: 5179 7985 - scheduler 5180 7986 5181 - '@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)': 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)": 5182 7988 dependencies: 5183 - '@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) 5184 - '@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) 5185 - '@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) 5186 - '@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) 5187 - '@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) 5188 - '@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) 5189 - '@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) 5190 - '@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) 5191 - '@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) 5192 - '@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) 5193 - '@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) 5194 - '@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) 5195 - '@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) 5196 - '@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) 5197 - '@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) 5198 - '@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) 5199 - '@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) 5200 - '@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) 5201 - '@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) 5202 - '@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) 5203 - '@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) 5204 - '@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) 5205 - '@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) 5206 - '@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) 5207 - '@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) 5208 - '@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) 5209 - '@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) 5210 - '@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) 5211 - '@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) 5212 - '@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) 5213 - '@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) 5214 - '@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) 5215 - '@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) 5216 - '@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) 5217 - '@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) 5218 - '@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) 5219 - '@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) 5220 - '@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) 5221 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5222 - '@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) 5223 - '@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) 5224 - '@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) 5225 - '@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) 5226 - '@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) 5227 - '@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) 5228 - '@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) 5229 - '@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) 5230 - '@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) 5231 - '@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) 5232 - '@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) 5233 - '@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) 5234 - '@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) 5235 - '@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) 5236 - '@fluentui/react-theme': 9.2.0 5237 - '@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) 5238 - '@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) 5239 - '@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) 5240 - '@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) 5241 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5242 - '@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) 5243 - '@griffel/react': 1.5.30(react@18.3.1) 5244 - '@swc/helpers': 0.5.17 5245 - '@types/react': 18.3.25 5246 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5247 8053 react: 18.3.1 5248 8054 react-dom: 18.3.1(react@18.3.1) 5249 8055 transitivePeerDependencies: 5250 8056 - scheduler 5251 8057 5252 - '@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)': 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)": 5253 8059 dependencies: 5254 - '@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) 5255 - '@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) 5256 - '@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) 5257 - '@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) 5258 - '@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) 5259 - '@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) 5260 - '@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) 5261 - '@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) 5262 - '@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) 5263 - '@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) 5264 - '@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) 5265 - '@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) 5266 - '@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) 5267 - '@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) 5268 - '@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) 5269 - '@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) 5270 - '@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) 5271 - '@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) 5272 - '@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) 5273 - '@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) 5274 - '@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) 5275 - '@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) 5276 - '@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) 5277 - '@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) 5278 - '@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) 5279 - '@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) 5280 - '@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) 5281 - '@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) 5282 - '@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) 5283 - '@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) 5284 - '@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) 5285 - '@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) 5286 - '@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) 5287 - '@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) 5288 - '@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) 5289 - '@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) 5290 - '@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) 5291 - '@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) 5292 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5293 - '@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) 5294 - '@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) 5295 - '@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) 5296 - '@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) 5297 - '@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) 5298 - '@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) 5299 - '@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) 5300 - '@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) 5301 - '@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) 5302 - '@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) 5303 - '@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) 5304 - '@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) 5305 - '@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) 5306 - '@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) 5307 - '@fluentui/react-theme': 9.2.0 5308 - '@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) 5309 - '@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) 5310 - '@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) 5311 - '@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) 5312 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5313 - '@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) 5314 - '@griffel/react': 1.5.30(react@18.3.1) 5315 - '@swc/helpers': 0.5.17 5316 - '@types/react': 19.2.0 5317 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5318 8124 react: 18.3.1 5319 8125 react-dom: 18.3.1(react@18.3.1) 5320 8126 transitivePeerDependencies: 5321 8127 - scheduler 5322 8128 5323 - '@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)': 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)": 5324 8130 dependencies: 5325 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5326 - '@swc/helpers': 0.5.17 5327 - '@types/react': 18.3.25 5328 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5329 8135 react: 18.3.1 5330 8136 react-dom: 18.3.1(react@18.3.1) 5331 8137 scheduler: 0.27.0 5332 8138 5333 - '@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)': 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)": 5334 8140 dependencies: 5335 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5336 - '@swc/helpers': 0.5.17 5337 - '@types/react': 19.2.0 5338 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5339 8145 react: 18.3.1 5340 8146 react-dom: 18.3.1(react@18.3.1) 5341 8147 scheduler: 0.27.0 5342 8148 5343 - '@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)': 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)": 5344 8150 dependencies: 5345 - '@fluentui/keyboard-keys': 9.0.8 5346 - '@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) 5347 - '@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) 5348 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5349 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5350 - '@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) 5351 - '@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) 5352 - '@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) 5353 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5354 - '@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) 5355 - '@fluentui/react-theme': 9.2.0 5356 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5357 - '@griffel/react': 1.5.30(react@18.3.1) 5358 - '@swc/helpers': 0.5.17 5359 - '@types/react': 18.3.25 5360 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5361 8167 react: 18.3.1 5362 8168 react-dom: 18.3.1(react@18.3.1) 5363 8169 transitivePeerDependencies: 5364 8170 - scheduler 5365 8171 5366 - '@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)': 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)": 5367 8173 dependencies: 5368 - '@fluentui/keyboard-keys': 9.0.8 5369 - '@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) 5370 - '@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) 5371 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5372 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5373 - '@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) 5374 - '@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) 5375 - '@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) 5376 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5377 - '@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) 5378 - '@fluentui/react-theme': 9.2.0 5379 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5380 - '@griffel/react': 1.5.30(react@18.3.1) 5381 - '@swc/helpers': 0.5.17 5382 - '@types/react': 19.2.0 5383 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5384 8190 react: 18.3.1 5385 8191 react-dom: 18.3.1(react@18.3.1) 5386 8192 transitivePeerDependencies: 5387 8193 - scheduler 5388 8194 5389 - '@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)': 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)": 5390 8196 dependencies: 5391 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5392 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5393 - '@fluentui/react-theme': 9.2.0 5394 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5395 - '@griffel/react': 1.5.30(react@18.3.1) 5396 - '@swc/helpers': 0.5.17 5397 - '@types/react': 18.3.25 5398 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5399 8205 react: 18.3.1 5400 8206 react-dom: 18.3.1(react@18.3.1) 5401 8207 5402 - '@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)': 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)": 5403 8209 dependencies: 5404 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5405 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5406 - '@fluentui/react-theme': 9.2.0 5407 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5408 - '@griffel/react': 1.5.30(react@18.3.1) 5409 - '@swc/helpers': 0.5.17 5410 - '@types/react': 19.2.0 5411 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5412 8218 react: 18.3.1 5413 8219 react-dom: 18.3.1(react@18.3.1) 5414 8220 5415 - '@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)': 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)": 5416 8222 dependencies: 5417 - '@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) 5418 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5419 - '@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) 5420 - '@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) 5421 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5422 - '@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) 5423 - '@fluentui/react-theme': 9.2.0 5424 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5425 - '@griffel/react': 1.5.30(react@18.3.1) 5426 - '@swc/helpers': 0.5.17 5427 - '@types/react': 18.3.25 5428 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5429 8235 react: 18.3.1 5430 8236 react-dom: 18.3.1(react@18.3.1) 5431 8237 transitivePeerDependencies: 5432 8238 - scheduler 5433 8239 5434 - '@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)': 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)": 5435 8241 dependencies: 5436 - '@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) 5437 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5438 - '@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) 5439 - '@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) 5440 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5441 - '@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) 5442 - '@fluentui/react-theme': 9.2.0 5443 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5444 - '@griffel/react': 1.5.30(react@18.3.1) 5445 - '@swc/helpers': 0.5.17 5446 - '@types/react': 19.2.0 5447 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5448 8254 react: 18.3.1 5449 8255 react-dom: 18.3.1(react@18.3.1) 5450 8256 transitivePeerDependencies: 5451 8257 - scheduler 5452 8258 5453 - '@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)': 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)": 5454 8260 dependencies: 5455 - '@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) 5456 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5457 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5458 - '@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) 5459 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5460 - '@fluentui/react-theme': 9.2.0 5461 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5462 - '@griffel/react': 1.5.30(react@18.3.1) 5463 - '@swc/helpers': 0.5.17 5464 - '@types/react': 18.3.25 5465 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5466 8272 react: 18.3.1 5467 8273 react-dom: 18.3.1(react@18.3.1) 5468 8274 transitivePeerDependencies: 5469 8275 - scheduler 5470 8276 5471 - '@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)': 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)": 5472 8278 dependencies: 5473 - '@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) 5474 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5475 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5476 - '@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) 5477 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5478 - '@fluentui/react-theme': 9.2.0 5479 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5480 - '@griffel/react': 1.5.30(react@18.3.1) 5481 - '@swc/helpers': 0.5.17 5482 - '@types/react': 19.2.0 5483 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5484 8290 react: 18.3.1 5485 8291 react-dom: 18.3.1(react@18.3.1) 5486 8292 transitivePeerDependencies: 5487 8293 - scheduler 5488 8294 5489 - '@fluentui/react-icons@2.0.311(react@18.3.1)': 8295 + "@fluentui/react-icons@2.0.311(react@18.3.1)": 5490 8296 dependencies: 5491 - '@griffel/react': 1.5.30(react@18.3.1) 8297 + "@griffel/react": 1.5.30(react@18.3.1) 5492 8298 react: 18.3.1 5493 8299 tslib: 2.8.1 5494 8300 5495 - '@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)': 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)": 5496 8302 dependencies: 5497 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5498 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5499 - '@fluentui/react-theme': 9.2.0 5500 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5501 - '@griffel/react': 1.5.30(react@18.3.1) 5502 - '@swc/helpers': 0.5.17 5503 - '@types/react': 18.3.25 5504 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5505 8311 react: 18.3.1 5506 8312 react-dom: 18.3.1(react@18.3.1) 5507 8313 5508 - '@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)': 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)": 5509 8315 dependencies: 5510 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5511 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5512 - '@fluentui/react-theme': 9.2.0 5513 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5514 - '@griffel/react': 1.5.30(react@18.3.1) 5515 - '@swc/helpers': 0.5.17 5516 - '@types/react': 19.2.0 5517 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5518 8324 react: 18.3.1 5519 8325 react-dom: 18.3.1(react@18.3.1) 5520 8326 5521 - '@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)': 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)": 5522 8328 dependencies: 5523 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5524 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5525 - '@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) 5526 - '@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) 5527 - '@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) 5528 - '@fluentui/react-theme': 9.2.0 5529 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5530 - '@griffel/react': 1.5.30(react@18.3.1) 5531 - '@swc/helpers': 0.5.17 5532 - '@types/react': 18.3.25 5533 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5534 8340 react: 18.3.1 5535 8341 react-dom: 18.3.1(react@18.3.1) 5536 8342 transitivePeerDependencies: 5537 8343 - scheduler 5538 8344 5539 - '@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)': 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)": 5540 8346 dependencies: 5541 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5542 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5543 - '@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) 5544 - '@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) 5545 - '@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) 5546 - '@fluentui/react-theme': 9.2.0 5547 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5548 - '@griffel/react': 1.5.30(react@18.3.1) 5549 - '@swc/helpers': 0.5.17 5550 - '@types/react': 19.2.0 5551 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5552 8358 react: 18.3.1 5553 8359 react-dom: 18.3.1(react@18.3.1) 5554 8360 transitivePeerDependencies: 5555 8361 - scheduler 5556 8362 5557 - '@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)': 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)": 5558 8364 dependencies: 5559 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5560 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5561 - '@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) 5562 - '@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) 5563 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5564 - '@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) 5565 - '@fluentui/react-theme': 9.2.0 5566 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5567 - '@griffel/react': 1.5.30(react@18.3.1) 5568 - '@swc/helpers': 0.5.17 5569 - '@types/react': 18.3.25 5570 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5571 8377 react: 18.3.1 5572 8378 react-dom: 18.3.1(react@18.3.1) 5573 8379 transitivePeerDependencies: 5574 8380 - scheduler 5575 8381 5576 - '@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)': 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)": 5577 8383 dependencies: 5578 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5579 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5580 - '@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) 5581 - '@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) 5582 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5583 - '@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) 5584 - '@fluentui/react-theme': 9.2.0 5585 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5586 - '@griffel/react': 1.5.30(react@18.3.1) 5587 - '@swc/helpers': 0.5.17 5588 - '@types/react': 19.2.0 5589 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5590 8396 react: 18.3.1 5591 8397 react-dom: 18.3.1(react@18.3.1) 5592 8398 transitivePeerDependencies: 5593 8399 - scheduler 5594 8400 5595 - '@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)': 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)": 5596 8402 dependencies: 5597 - '@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) 5598 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5599 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5600 - '@fluentui/react-theme': 9.2.0 5601 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5602 - '@griffel/react': 1.5.30(react@18.3.1) 5603 - '@swc/helpers': 0.5.17 5604 - '@types/react': 18.3.25 5605 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5606 8412 react: 18.3.1 5607 8413 react-dom: 18.3.1(react@18.3.1) 5608 8414 transitivePeerDependencies: 5609 8415 - scheduler 5610 8416 5611 - '@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)': 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)": 5612 8418 dependencies: 5613 - '@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) 5614 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5615 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5616 - '@fluentui/react-theme': 9.2.0 5617 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5618 - '@griffel/react': 1.5.30(react@18.3.1) 5619 - '@swc/helpers': 0.5.17 5620 - '@types/react': 19.2.0 5621 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5622 8428 react: 18.3.1 5623 8429 react-dom: 18.3.1(react@18.3.1) 5624 8430 transitivePeerDependencies: 5625 8431 - scheduler 5626 8432 5627 - '@fluentui/react-jsx-runtime@9.2.1(@types/react@18.3.25)(react@18.3.1)': 8433 + "@fluentui/react-jsx-runtime@9.2.1(@types/react@18.3.25)(react@18.3.1)": 5628 8434 dependencies: 5629 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5630 - '@swc/helpers': 0.5.17 5631 - '@types/react': 18.3.25 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 8438 react: 18.3.1 5633 8439 react-is: 17.0.2 5634 8440 5635 - '@fluentui/react-jsx-runtime@9.2.1(@types/react@19.2.0)(react@18.3.1)': 8441 + "@fluentui/react-jsx-runtime@9.2.1(@types/react@19.2.0)(react@18.3.1)": 5636 8442 dependencies: 5637 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5638 - '@swc/helpers': 0.5.17 5639 - '@types/react': 19.2.0 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 8446 react: 18.3.1 5641 8447 react-is: 17.0.2 5642 8448 5643 - '@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)': 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)": 5644 8450 dependencies: 5645 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5646 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5647 - '@fluentui/react-theme': 9.2.0 5648 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5649 - '@griffel/react': 1.5.30(react@18.3.1) 5650 - '@swc/helpers': 0.5.17 5651 - '@types/react': 18.3.25 5652 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5653 8459 react: 18.3.1 5654 8460 react-dom: 18.3.1(react@18.3.1) 5655 8461 5656 - '@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)': 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)": 5657 8463 dependencies: 5658 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5659 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5660 - '@fluentui/react-theme': 9.2.0 5661 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5662 - '@griffel/react': 1.5.30(react@18.3.1) 5663 - '@swc/helpers': 0.5.17 5664 - '@types/react': 19.2.0 5665 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5666 8472 react: 18.3.1 5667 8473 react-dom: 18.3.1(react@18.3.1) 5668 8474 5669 - '@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)': 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)": 5670 8476 dependencies: 5671 - '@fluentui/keyboard-keys': 9.0.8 5672 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5673 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5674 - '@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) 5675 - '@fluentui/react-theme': 9.2.0 5676 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5677 - '@griffel/react': 1.5.30(react@18.3.1) 5678 - '@swc/helpers': 0.5.17 5679 - '@types/react': 18.3.25 5680 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5681 8487 react: 18.3.1 5682 8488 react-dom: 18.3.1(react@18.3.1) 5683 8489 5684 - '@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)': 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)": 5685 8491 dependencies: 5686 - '@fluentui/keyboard-keys': 9.0.8 5687 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5688 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5689 - '@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) 5690 - '@fluentui/react-theme': 9.2.0 5691 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5692 - '@griffel/react': 1.5.30(react@18.3.1) 5693 - '@swc/helpers': 0.5.17 5694 - '@types/react': 19.2.0 5695 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5696 8502 react: 18.3.1 5697 8503 react-dom: 18.3.1(react@18.3.1) 5698 8504 5699 - '@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)': 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)": 5700 8506 dependencies: 5701 - '@fluentui/keyboard-keys': 9.0.8 5702 - '@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) 5703 - '@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) 5704 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5705 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5706 - '@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) 5707 - '@fluentui/react-theme': 9.2.0 5708 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5709 - '@griffel/react': 1.5.30(react@18.3.1) 5710 - '@swc/helpers': 0.5.17 5711 - '@types/react': 18.3.25 5712 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5713 8519 react: 18.3.1 5714 8520 react-dom: 18.3.1(react@18.3.1) 5715 8521 transitivePeerDependencies: 5716 8522 - scheduler 5717 8523 5718 - '@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)': 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)": 5719 8525 dependencies: 5720 - '@fluentui/keyboard-keys': 9.0.8 5721 - '@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) 5722 - '@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) 5723 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5724 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5725 - '@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) 5726 - '@fluentui/react-theme': 9.2.0 5727 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5728 - '@griffel/react': 1.5.30(react@18.3.1) 5729 - '@swc/helpers': 0.5.17 5730 - '@types/react': 19.2.0 5731 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5732 8538 react: 18.3.1 5733 8539 react-dom: 18.3.1(react@18.3.1) 5734 8540 transitivePeerDependencies: 5735 8541 - scheduler 5736 8542 5737 - '@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)': 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)": 5738 8544 dependencies: 5739 - '@fluentui/keyboard-keys': 9.0.8 5740 - '@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) 5741 - '@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) 5742 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5743 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5744 - '@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) 5745 - '@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) 5746 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5747 - '@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) 5748 - '@fluentui/react-theme': 9.2.0 5749 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5750 - '@griffel/react': 1.5.30(react@18.3.1) 5751 - '@swc/helpers': 0.5.17 5752 - '@types/react': 18.3.25 5753 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5754 8560 react: 18.3.1 5755 8561 react-dom: 18.3.1(react@18.3.1) 5756 8562 transitivePeerDependencies: 5757 8563 - scheduler 5758 8564 5759 - '@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)': 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)": 5760 8566 dependencies: 5761 - '@fluentui/keyboard-keys': 9.0.8 5762 - '@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) 5763 - '@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) 5764 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5765 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5766 - '@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) 5767 - '@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) 5768 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5769 - '@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) 5770 - '@fluentui/react-theme': 9.2.0 5771 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5772 - '@griffel/react': 1.5.30(react@18.3.1) 5773 - '@swc/helpers': 0.5.17 5774 - '@types/react': 19.2.0 5775 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5776 8582 react: 18.3.1 5777 8583 react-dom: 18.3.1(react@18.3.1) 5778 8584 transitivePeerDependencies: 5779 8585 - scheduler 5780 8586 5781 - '@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)': 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)": 5782 8588 dependencies: 5783 - '@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) 5784 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5785 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5786 - '@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) 5787 - '@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) 5788 - '@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) 5789 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5790 - '@fluentui/react-theme': 9.2.0 5791 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5792 - '@griffel/react': 1.5.30(react@18.3.1) 5793 - '@swc/helpers': 0.5.17 5794 - '@types/react': 18.3.25 5795 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5796 8602 react: 18.3.1 5797 8603 react-dom: 18.3.1(react@18.3.1) 5798 8604 5799 - '@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)': 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)": 5800 8606 dependencies: 5801 - '@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) 5802 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5803 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5804 - '@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) 5805 - '@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) 5806 - '@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) 5807 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5808 - '@fluentui/react-theme': 9.2.0 5809 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5810 - '@griffel/react': 1.5.30(react@18.3.1) 5811 - '@swc/helpers': 0.5.17 5812 - '@types/react': 19.2.0 5813 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5814 8620 react: 18.3.1 5815 8621 react-dom: 18.3.1(react@18.3.1) 5816 8622 5817 - '@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)': 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)": 5818 8624 dependencies: 5819 - '@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) 5820 - '@swc/helpers': 0.5.17 5821 - '@types/react': 18.3.25 5822 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5823 8629 react: 18.3.1 5824 8630 react-dom: 18.3.1(react@18.3.1) 5825 8631 5826 - '@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)': 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)": 5827 8633 dependencies: 5828 - '@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) 5829 - '@swc/helpers': 0.5.17 5830 - '@types/react': 19.2.0 5831 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5832 8638 react: 18.3.1 5833 8639 react-dom: 18.3.1(react@18.3.1) 5834 8640 5835 - '@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)': 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)": 5836 8642 dependencies: 5837 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5838 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5839 - '@swc/helpers': 0.5.17 5840 - '@types/react': 18.3.25 5841 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5842 8648 react: 18.3.1 5843 8649 react-dom: 18.3.1(react@18.3.1) 5844 8650 5845 - '@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)': 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)": 5846 8652 dependencies: 5847 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5848 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5849 - '@swc/helpers': 0.5.17 5850 - '@types/react': 19.2.0 5851 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5852 8658 react: 18.3.1 5853 8659 react-dom: 18.3.1(react@18.3.1) 5854 8660 5855 - '@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)': 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)": 5856 8662 dependencies: 5857 - '@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) 5858 - '@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) 5859 - '@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) 5860 - '@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) 5861 - '@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) 5862 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5863 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5864 - '@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) 5865 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5866 - '@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) 5867 - '@fluentui/react-theme': 9.2.0 5868 - '@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) 5869 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5870 - '@griffel/react': 1.5.30(react@18.3.1) 5871 - '@swc/helpers': 0.5.17 5872 - '@types/react': 18.3.25 5873 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5874 8680 react: 18.3.1 5875 8681 react-dom: 18.3.1(react@18.3.1) 5876 8682 transitivePeerDependencies: 5877 8683 - scheduler 5878 8684 5879 - '@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)': 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)": 5880 8686 dependencies: 5881 - '@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) 5882 - '@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) 5883 - '@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) 5884 - '@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) 5885 - '@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) 5886 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 5887 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5888 - '@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) 5889 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5890 - '@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) 5891 - '@fluentui/react-theme': 9.2.0 5892 - '@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) 5893 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5894 - '@griffel/react': 1.5.30(react@18.3.1) 5895 - '@swc/helpers': 0.5.17 5896 - '@types/react': 19.2.0 5897 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5898 8704 react: 18.3.1 5899 8705 react-dom: 18.3.1(react@18.3.1) 5900 8706 transitivePeerDependencies: 5901 8707 - scheduler 5902 8708 5903 - '@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)': 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)": 5904 8710 dependencies: 5905 - '@fluentui/priority-overflow': 9.2.0 5906 - '@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) 5907 - '@fluentui/react-theme': 9.2.0 5908 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5909 - '@griffel/react': 1.5.30(react@18.3.1) 5910 - '@swc/helpers': 0.5.17 5911 - '@types/react': 18.3.25 5912 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5913 8719 react: 18.3.1 5914 8720 react-dom: 18.3.1(react@18.3.1) 5915 8721 transitivePeerDependencies: 5916 8722 - scheduler 5917 8723 5918 - '@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)': 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)": 5919 8725 dependencies: 5920 - '@fluentui/priority-overflow': 9.2.0 5921 - '@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) 5922 - '@fluentui/react-theme': 9.2.0 5923 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5924 - '@griffel/react': 1.5.30(react@18.3.1) 5925 - '@swc/helpers': 0.5.17 5926 - '@types/react': 19.2.0 5927 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5928 8734 react: 18.3.1 5929 8735 react-dom: 18.3.1(react@18.3.1) 5930 8736 transitivePeerDependencies: 5931 8737 - scheduler 5932 8738 5933 - '@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)': 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)": 5934 8740 dependencies: 5935 - '@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) 5936 - '@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) 5937 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5938 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5939 - '@fluentui/react-theme': 9.2.0 5940 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5941 - '@griffel/react': 1.5.30(react@18.3.1) 5942 - '@swc/helpers': 0.5.17 5943 - '@types/react': 18.3.25 5944 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5945 8751 react: 18.3.1 5946 8752 react-dom: 18.3.1(react@18.3.1) 5947 8753 transitivePeerDependencies: 5948 8754 - scheduler 5949 8755 5950 - '@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)': 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)": 5951 8757 dependencies: 5952 - '@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) 5953 - '@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) 5954 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5955 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5956 - '@fluentui/react-theme': 9.2.0 5957 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 5958 - '@griffel/react': 1.5.30(react@18.3.1) 5959 - '@swc/helpers': 0.5.17 5960 - '@types/react': 19.2.0 5961 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 5962 8768 react: 18.3.1 5963 8769 react-dom: 18.3.1(react@18.3.1) 5964 8770 transitivePeerDependencies: 5965 8771 - scheduler 5966 8772 5967 - '@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)': 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)": 5968 8774 dependencies: 5969 - '@fluentui/keyboard-keys': 9.0.8 5970 - '@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) 5971 - '@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) 5972 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 5973 - '@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) 5974 - '@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) 5975 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 5976 - '@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) 5977 - '@fluentui/react-theme': 9.2.0 5978 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 5979 - '@griffel/react': 1.5.30(react@18.3.1) 5980 - '@swc/helpers': 0.5.17 5981 - '@types/react': 18.3.25 5982 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 5983 8789 react: 18.3.1 5984 8790 react-dom: 18.3.1(react@18.3.1) 5985 8791 transitivePeerDependencies: 5986 8792 - scheduler 5987 8793 5988 - '@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)': 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)": 5989 8795 dependencies: 5990 - '@fluentui/keyboard-keys': 9.0.8 5991 - '@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) 5992 - '@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) 5993 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 5994 - '@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) 5995 - '@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) 5996 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 5997 - '@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) 5998 - '@fluentui/react-theme': 9.2.0 5999 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6000 - '@griffel/react': 1.5.30(react@18.3.1) 6001 - '@swc/helpers': 0.5.17 6002 - '@types/react': 19.2.0 6003 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6004 8810 react: 18.3.1 6005 8811 react-dom: 18.3.1(react@18.3.1) 6006 8812 transitivePeerDependencies: 6007 8813 - scheduler 6008 8814 6009 - '@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)': 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)": 6010 8816 dependencies: 6011 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6012 - '@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) 6013 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6014 - '@griffel/react': 1.5.30(react@18.3.1) 6015 - '@swc/helpers': 0.5.17 6016 - '@types/react': 18.3.25 6017 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6018 8824 react: 18.3.1 6019 8825 react-dom: 18.3.1(react@18.3.1) 6020 8826 6021 - '@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)': 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)": 6022 8828 dependencies: 6023 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6024 - '@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) 6025 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6026 - '@griffel/react': 1.5.30(react@18.3.1) 6027 - '@swc/helpers': 0.5.17 6028 - '@types/react': 19.2.0 6029 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6030 8836 react: 18.3.1 6031 8837 react-dom: 18.3.1(react@18.3.1) 6032 8838 6033 - '@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)': 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)": 6034 8840 dependencies: 6035 - '@floating-ui/devtools': 0.2.3(@floating-ui/dom@1.7.4) 6036 - '@floating-ui/dom': 1.7.4 6037 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6038 - '@fluentui/react-theme': 9.2.0 6039 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6040 - '@griffel/react': 1.5.30(react@18.3.1) 6041 - '@swc/helpers': 0.5.17 6042 - '@types/react': 18.3.25 6043 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6044 8850 react: 18.3.1 6045 8851 react-dom: 18.3.1(react@18.3.1) 6046 8852 use-sync-external-store: 1.6.0(react@18.3.1) 6047 8853 6048 - '@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)': 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)": 6049 8855 dependencies: 6050 - '@floating-ui/devtools': 0.2.3(@floating-ui/dom@1.7.4) 6051 - '@floating-ui/dom': 1.7.4 6052 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6053 - '@fluentui/react-theme': 9.2.0 6054 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6055 - '@griffel/react': 1.5.30(react@18.3.1) 6056 - '@swc/helpers': 0.5.17 6057 - '@types/react': 19.2.0 6058 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6059 8865 react: 18.3.1 6060 8866 react-dom: 18.3.1(react@18.3.1) 6061 8867 use-sync-external-store: 1.6.0(react@18.3.1) 6062 8868 6063 - '@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)': 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)": 6064 8870 dependencies: 6065 - '@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) 6066 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6067 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6068 - '@fluentui/react-theme': 9.2.0 6069 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6070 - '@griffel/react': 1.5.30(react@18.3.1) 6071 - '@swc/helpers': 0.5.17 6072 - '@types/react': 18.3.25 6073 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6074 8880 react: 18.3.1 6075 8881 react-dom: 18.3.1(react@18.3.1) 6076 8882 transitivePeerDependencies: 6077 8883 - scheduler 6078 8884 6079 - '@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)': 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)": 6080 8886 dependencies: 6081 - '@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) 6082 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6083 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6084 - '@fluentui/react-theme': 9.2.0 6085 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6086 - '@griffel/react': 1.5.30(react@18.3.1) 6087 - '@swc/helpers': 0.5.17 6088 - '@types/react': 19.2.0 6089 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6090 8896 react: 18.3.1 6091 8897 react-dom: 18.3.1(react@18.3.1) 6092 8898 transitivePeerDependencies: 6093 8899 - scheduler 6094 8900 6095 - '@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)': 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)": 6096 8902 dependencies: 6097 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6098 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6099 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6100 - '@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) 6101 - '@fluentui/react-theme': 9.2.0 6102 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6103 - '@griffel/core': 1.19.2 6104 - '@griffel/react': 1.5.30(react@18.3.1) 6105 - '@swc/helpers': 0.5.17 6106 - '@types/react': 18.3.25 6107 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6108 8914 react: 18.3.1 6109 8915 react-dom: 18.3.1(react@18.3.1) 6110 8916 6111 - '@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)': 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)": 6112 8918 dependencies: 6113 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6114 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6115 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6116 - '@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) 6117 - '@fluentui/react-theme': 9.2.0 6118 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6119 - '@griffel/core': 1.19.2 6120 - '@griffel/react': 1.5.30(react@18.3.1) 6121 - '@swc/helpers': 0.5.17 6122 - '@types/react': 19.2.0 6123 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6124 8930 react: 18.3.1 6125 8931 react-dom: 18.3.1(react@18.3.1) 6126 8932 6127 - '@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)': 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)": 6128 8934 dependencies: 6129 - '@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) 6130 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6131 - '@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) 6132 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6133 - '@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) 6134 - '@fluentui/react-theme': 9.2.0 6135 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6136 - '@griffel/react': 1.5.30(react@18.3.1) 6137 - '@swc/helpers': 0.5.17 6138 - '@types/react': 18.3.25 6139 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6140 8946 react: 18.3.1 6141 8947 react-dom: 18.3.1(react@18.3.1) 6142 8948 transitivePeerDependencies: 6143 8949 - scheduler 6144 8950 6145 - '@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)': 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)": 6146 8952 dependencies: 6147 - '@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) 6148 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6149 - '@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) 6150 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6151 - '@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) 6152 - '@fluentui/react-theme': 9.2.0 6153 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6154 - '@griffel/react': 1.5.30(react@18.3.1) 6155 - '@swc/helpers': 0.5.17 6156 - '@types/react': 19.2.0 6157 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6158 8964 react: 18.3.1 6159 8965 react-dom: 18.3.1(react@18.3.1) 6160 8966 transitivePeerDependencies: 6161 8967 - scheduler 6162 8968 6163 - '@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)': 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)": 6164 8970 dependencies: 6165 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6166 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6167 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6168 - '@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) 6169 - '@fluentui/react-theme': 9.2.0 6170 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6171 - '@griffel/react': 1.5.30(react@18.3.1) 6172 - '@swc/helpers': 0.5.17 6173 - '@types/react': 18.3.25 6174 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6175 8981 react: 18.3.1 6176 8982 react-dom: 18.3.1(react@18.3.1) 6177 8983 6178 - '@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)': 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)": 6179 8985 dependencies: 6180 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6181 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6182 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6183 - '@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) 6184 - '@fluentui/react-theme': 9.2.0 6185 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6186 - '@griffel/react': 1.5.30(react@18.3.1) 6187 - '@swc/helpers': 0.5.17 6188 - '@types/react': 19.2.0 6189 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6190 8996 react: 18.3.1 6191 8997 react-dom: 18.3.1(react@18.3.1) 6192 8998 6193 - '@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)': 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)": 6194 9000 dependencies: 6195 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6196 - '@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) 6197 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6198 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6199 - '@fluentui/react-theme': 9.2.0 6200 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6201 - '@griffel/react': 1.5.30(react@18.3.1) 6202 - '@swc/helpers': 0.5.17 6203 - '@types/react': 18.3.25 6204 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6205 9011 react: 18.3.1 6206 9012 react-dom: 18.3.1(react@18.3.1) 6207 9013 transitivePeerDependencies: 6208 9014 - scheduler 6209 9015 6210 - '@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)': 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)": 6211 9017 dependencies: 6212 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6213 - '@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) 6214 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6215 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6216 - '@fluentui/react-theme': 9.2.0 6217 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6218 - '@griffel/react': 1.5.30(react@18.3.1) 6219 - '@swc/helpers': 0.5.17 6220 - '@types/react': 19.2.0 6221 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6222 9028 react: 18.3.1 6223 9029 react-dom: 18.3.1(react@18.3.1) 6224 9030 transitivePeerDependencies: 6225 9031 - scheduler 6226 9032 6227 - '@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)': 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)": 6228 9034 dependencies: 6229 - '@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) 6230 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6231 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6232 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6233 - '@fluentui/react-theme': 9.2.0 6234 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6235 - '@griffel/react': 1.5.30(react@18.3.1) 6236 - '@swc/helpers': 0.5.17 6237 - '@types/react': 18.3.25 6238 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6239 9045 react: 18.3.1 6240 9046 react-dom: 18.3.1(react@18.3.1) 6241 9047 transitivePeerDependencies: 6242 9048 - scheduler 6243 9049 6244 - '@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)': 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)": 6245 9051 dependencies: 6246 - '@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) 6247 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6248 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6249 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6250 - '@fluentui/react-theme': 9.2.0 6251 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6252 - '@griffel/react': 1.5.30(react@18.3.1) 6253 - '@swc/helpers': 0.5.17 6254 - '@types/react': 19.2.0 6255 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6256 9062 react: 18.3.1 6257 9063 react-dom: 18.3.1(react@18.3.1) 6258 9064 transitivePeerDependencies: 6259 9065 - scheduler 6260 9066 6261 - '@fluentui/react-shared-contexts@9.25.2(@types/react@18.3.25)(react@18.3.1)': 9067 + "@fluentui/react-shared-contexts@9.25.2(@types/react@18.3.25)(react@18.3.1)": 6262 9068 dependencies: 6263 - '@fluentui/react-theme': 9.2.0 6264 - '@swc/helpers': 0.5.17 6265 - '@types/react': 18.3.25 9069 + "@fluentui/react-theme": 9.2.0 9070 + "@swc/helpers": 0.5.17 9071 + "@types/react": 18.3.25 6266 9072 react: 18.3.1 6267 9073 6268 - '@fluentui/react-shared-contexts@9.25.2(@types/react@19.2.0)(react@18.3.1)': 9074 + "@fluentui/react-shared-contexts@9.25.2(@types/react@19.2.0)(react@18.3.1)": 6269 9075 dependencies: 6270 - '@fluentui/react-theme': 9.2.0 6271 - '@swc/helpers': 0.5.17 6272 - '@types/react': 19.2.0 9076 + "@fluentui/react-theme": 9.2.0 9077 + "@swc/helpers": 0.5.17 9078 + "@types/react": 19.2.0 6273 9079 react: 18.3.1 6274 9080 6275 - '@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)': 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)": 6276 9082 dependencies: 6277 - '@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) 6278 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6279 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6280 - '@fluentui/react-theme': 9.2.0 6281 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6282 - '@griffel/react': 1.5.30(react@18.3.1) 6283 - '@swc/helpers': 0.5.17 6284 - '@types/react': 18.3.25 6285 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6286 9092 react: 18.3.1 6287 9093 react-dom: 18.3.1(react@18.3.1) 6288 9094 transitivePeerDependencies: 6289 9095 - scheduler 6290 9096 6291 - '@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)': 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)": 6292 9098 dependencies: 6293 - '@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) 6294 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6295 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6296 - '@fluentui/react-theme': 9.2.0 6297 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6298 - '@griffel/react': 1.5.30(react@18.3.1) 6299 - '@swc/helpers': 0.5.17 6300 - '@types/react': 19.2.0 6301 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6302 9108 react: 18.3.1 6303 9109 react-dom: 18.3.1(react@18.3.1) 6304 9110 transitivePeerDependencies: 6305 9111 - scheduler 6306 9112 6307 - '@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)': 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)": 6308 9114 dependencies: 6309 - '@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) 6310 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6311 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6312 - '@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) 6313 - '@fluentui/react-theme': 9.2.0 6314 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6315 - '@griffel/react': 1.5.30(react@18.3.1) 6316 - '@swc/helpers': 0.5.17 6317 - '@types/react': 18.3.25 6318 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6319 9125 react: 18.3.1 6320 9126 react-dom: 18.3.1(react@18.3.1) 6321 9127 transitivePeerDependencies: 6322 9128 - scheduler 6323 9129 6324 - '@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)': 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)": 6325 9131 dependencies: 6326 - '@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) 6327 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6328 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6329 - '@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) 6330 - '@fluentui/react-theme': 9.2.0 6331 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6332 - '@griffel/react': 1.5.30(react@18.3.1) 6333 - '@swc/helpers': 0.5.17 6334 - '@types/react': 19.2.0 6335 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6336 9142 react: 18.3.1 6337 9143 react-dom: 18.3.1(react@18.3.1) 6338 9144 transitivePeerDependencies: 6339 9145 - scheduler 6340 9146 6341 - '@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)': 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)": 6342 9148 dependencies: 6343 - '@fluentui/keyboard-keys': 9.0.8 6344 - '@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) 6345 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6346 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6347 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6348 - '@fluentui/react-theme': 9.2.0 6349 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6350 - '@griffel/react': 1.5.30(react@18.3.1) 6351 - '@swc/helpers': 0.5.17 6352 - '@types/react': 18.3.25 6353 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6354 9160 react: 18.3.1 6355 9161 react-dom: 18.3.1(react@18.3.1) 6356 9162 transitivePeerDependencies: 6357 9163 - scheduler 6358 9164 6359 - '@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)': 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)": 6360 9166 dependencies: 6361 - '@fluentui/keyboard-keys': 9.0.8 6362 - '@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) 6363 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6364 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6365 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6366 - '@fluentui/react-theme': 9.2.0 6367 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6368 - '@griffel/react': 1.5.30(react@18.3.1) 6369 - '@swc/helpers': 0.5.17 6370 - '@types/react': 19.2.0 6371 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6372 9178 react: 18.3.1 6373 9179 react-dom: 18.3.1(react@18.3.1) 6374 9180 transitivePeerDependencies: 6375 9181 - scheduler 6376 9182 6377 - '@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)': 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)": 6378 9184 dependencies: 6379 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6380 - '@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) 6381 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6382 - '@fluentui/react-theme': 9.2.0 6383 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6384 - '@griffel/react': 1.5.30(react@18.3.1) 6385 - '@swc/helpers': 0.5.17 6386 - '@types/react': 18.3.25 6387 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6388 9194 react: 18.3.1 6389 9195 react-dom: 18.3.1(react@18.3.1) 6390 9196 6391 - '@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)': 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)": 6392 9198 dependencies: 6393 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6394 - '@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) 6395 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6396 - '@fluentui/react-theme': 9.2.0 6397 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6398 - '@griffel/react': 1.5.30(react@18.3.1) 6399 - '@swc/helpers': 0.5.17 6400 - '@types/react': 19.2.0 6401 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6402 9208 react: 18.3.1 6403 9209 react-dom: 18.3.1(react@18.3.1) 6404 9210 6405 - '@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)': 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)": 6406 9212 dependencies: 6407 - '@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) 6408 - '@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) 6409 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6410 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6411 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6412 - '@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) 6413 - '@fluentui/react-theme': 9.2.0 6414 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6415 - '@griffel/react': 1.5.30(react@18.3.1) 6416 - '@swc/helpers': 0.5.17 6417 - '@types/react': 18.3.25 6418 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6419 9225 react: 18.3.1 6420 9226 react-dom: 18.3.1(react@18.3.1) 6421 9227 transitivePeerDependencies: 6422 9228 - scheduler 6423 9229 6424 - '@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)': 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)": 6425 9231 dependencies: 6426 - '@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) 6427 - '@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) 6428 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6429 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6430 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6431 - '@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) 6432 - '@fluentui/react-theme': 9.2.0 6433 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6434 - '@griffel/react': 1.5.30(react@18.3.1) 6435 - '@swc/helpers': 0.5.17 6436 - '@types/react': 19.2.0 6437 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6438 9244 react: 18.3.1 6439 9245 react-dom: 18.3.1(react@18.3.1) 6440 9246 transitivePeerDependencies: 6441 9247 - scheduler 6442 9248 6443 - '@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)': 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)": 6444 9250 dependencies: 6445 - '@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) 6446 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6447 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6448 - '@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) 6449 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6450 - '@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) 6451 - '@fluentui/react-theme': 9.2.0 6452 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6453 - '@griffel/react': 1.5.30(react@18.3.1) 6454 - '@swc/helpers': 0.5.17 6455 - '@types/react': 18.3.25 6456 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6457 9263 react: 18.3.1 6458 9264 react-dom: 18.3.1(react@18.3.1) 6459 9265 transitivePeerDependencies: 6460 9266 - scheduler 6461 9267 6462 - '@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)': 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)": 6463 9269 dependencies: 6464 - '@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) 6465 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6466 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6467 - '@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) 6468 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6469 - '@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) 6470 - '@fluentui/react-theme': 9.2.0 6471 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6472 - '@griffel/react': 1.5.30(react@18.3.1) 6473 - '@swc/helpers': 0.5.17 6474 - '@types/react': 19.2.0 6475 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6476 9282 react: 18.3.1 6477 9283 react-dom: 18.3.1(react@18.3.1) 6478 9284 transitivePeerDependencies: 6479 9285 - scheduler 6480 9286 6481 - '@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)': 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)": 6482 9288 dependencies: 6483 - '@fluentui/keyboard-keys': 9.0.8 6484 - '@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) 6485 - '@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) 6486 - '@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) 6487 - '@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) 6488 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6489 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6490 - '@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) 6491 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6492 - '@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) 6493 - '@fluentui/react-theme': 9.2.0 6494 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6495 - '@griffel/react': 1.5.30(react@18.3.1) 6496 - '@swc/helpers': 0.5.17 6497 - '@types/react': 18.3.25 6498 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6499 9305 react: 18.3.1 6500 9306 react-dom: 18.3.1(react@18.3.1) 6501 9307 transitivePeerDependencies: 6502 9308 - scheduler 6503 9309 6504 - '@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)': 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)": 6505 9311 dependencies: 6506 - '@fluentui/keyboard-keys': 9.0.8 6507 - '@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) 6508 - '@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) 6509 - '@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) 6510 - '@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) 6511 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6512 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6513 - '@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) 6514 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6515 - '@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) 6516 - '@fluentui/react-theme': 9.2.0 6517 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6518 - '@griffel/react': 1.5.30(react@18.3.1) 6519 - '@swc/helpers': 0.5.17 6520 - '@types/react': 19.2.0 6521 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6522 9328 react: 18.3.1 6523 9329 react-dom: 18.3.1(react@18.3.1) 6524 9330 transitivePeerDependencies: 6525 9331 - scheduler 6526 9332 6527 - '@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)': 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)": 6528 9334 dependencies: 6529 - '@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) 6530 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6531 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6532 - '@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) 6533 - '@fluentui/react-theme': 9.2.0 6534 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6535 - '@griffel/react': 1.5.30(react@18.3.1) 6536 - '@swc/helpers': 0.5.17 6537 - '@types/react': 18.3.25 6538 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6539 9345 react: 18.3.1 6540 9346 react-dom: 18.3.1(react@18.3.1) 6541 9347 transitivePeerDependencies: 6542 9348 - scheduler 6543 9349 6544 - '@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)': 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)": 6545 9351 dependencies: 6546 - '@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) 6547 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6548 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6549 - '@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) 6550 - '@fluentui/react-theme': 9.2.0 6551 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6552 - '@griffel/react': 1.5.30(react@18.3.1) 6553 - '@swc/helpers': 0.5.17 6554 - '@types/react': 19.2.0 6555 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6556 9362 react: 18.3.1 6557 9363 react-dom: 18.3.1(react@18.3.1) 6558 9364 transitivePeerDependencies: 6559 9365 - scheduler 6560 9366 6561 - '@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)': 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)": 6562 9368 dependencies: 6563 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6564 - '@fluentui/react-theme': 9.2.0 6565 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6566 - '@griffel/react': 1.5.30(react@18.3.1) 6567 - '@swc/helpers': 0.5.17 6568 - '@types/react': 18.3.25 6569 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6570 9376 keyborg: 2.6.0 6571 9377 react: 18.3.1 6572 9378 react-dom: 18.3.1(react@18.3.1) 6573 9379 tabster: 8.5.6 6574 9380 6575 - '@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)': 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)": 6576 9382 dependencies: 6577 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6578 - '@fluentui/react-theme': 9.2.0 6579 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6580 - '@griffel/react': 1.5.30(react@18.3.1) 6581 - '@swc/helpers': 0.5.17 6582 - '@types/react': 19.2.0 6583 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6584 9390 keyborg: 2.6.0 6585 9391 react: 18.3.1 6586 9392 react-dom: 18.3.1(react@18.3.1) 6587 9393 tabster: 8.5.6 6588 9394 6589 - '@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)': 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)": 6590 9396 dependencies: 6591 - '@fluentui/keyboard-keys': 9.0.8 6592 - '@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) 6593 - '@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) 6594 - '@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) 6595 - '@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) 6596 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6597 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6598 - '@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) 6599 - '@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) 6600 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6601 - '@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) 6602 - '@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) 6603 - '@fluentui/react-theme': 9.2.0 6604 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6605 - '@griffel/react': 1.5.30(react@18.3.1) 6606 - '@swc/helpers': 0.5.17 6607 - '@types/react': 18.3.25 6608 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6609 9415 react: 18.3.1 6610 9416 react-dom: 18.3.1(react@18.3.1) 6611 9417 transitivePeerDependencies: 6612 9418 - scheduler 6613 9419 6614 - '@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)': 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)": 6615 9421 dependencies: 6616 - '@fluentui/keyboard-keys': 9.0.8 6617 - '@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) 6618 - '@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) 6619 - '@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) 6620 - '@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) 6621 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6622 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6623 - '@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) 6624 - '@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) 6625 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6626 - '@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) 6627 - '@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) 6628 - '@fluentui/react-theme': 9.2.0 6629 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6630 - '@griffel/react': 1.5.30(react@18.3.1) 6631 - '@swc/helpers': 0.5.17 6632 - '@types/react': 19.2.0 6633 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6634 9440 react: 18.3.1 6635 9441 react-dom: 18.3.1(react@18.3.1) 6636 9442 transitivePeerDependencies: 6637 9443 - scheduler 6638 9444 6639 - '@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)': 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)": 6640 9446 dependencies: 6641 - '@fluentui/keyboard-keys': 9.0.8 6642 - '@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) 6643 - '@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) 6644 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6645 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6646 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6647 - '@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) 6648 - '@fluentui/react-theme': 9.2.0 6649 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6650 - '@griffel/react': 1.5.30(react@18.3.1) 6651 - '@swc/helpers': 0.5.17 6652 - '@types/react': 18.3.25 6653 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6654 9460 react: 18.3.1 6655 9461 react-dom: 18.3.1(react@18.3.1) 6656 9462 transitivePeerDependencies: 6657 9463 - scheduler 6658 9464 6659 - '@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)': 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)": 6660 9466 dependencies: 6661 - '@fluentui/keyboard-keys': 9.0.8 6662 - '@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) 6663 - '@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) 6664 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6665 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6666 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6667 - '@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) 6668 - '@fluentui/react-theme': 9.2.0 6669 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6670 - '@griffel/react': 1.5.30(react@18.3.1) 6671 - '@swc/helpers': 0.5.17 6672 - '@types/react': 19.2.0 6673 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6674 9480 react: 18.3.1 6675 9481 react-dom: 18.3.1(react@18.3.1) 6676 9482 transitivePeerDependencies: 6677 9483 - scheduler 6678 9484 6679 - '@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)': 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)": 6680 9486 dependencies: 6681 - '@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) 6682 - '@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) 6683 - '@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) 6684 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6685 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6686 - '@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) 6687 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6688 - '@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) 6689 - '@fluentui/react-theme': 9.2.0 6690 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6691 - '@griffel/react': 1.5.30(react@18.3.1) 6692 - '@swc/helpers': 0.5.17 6693 - '@types/react': 18.3.25 6694 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6695 9501 react: 18.3.1 6696 9502 react-dom: 18.3.1(react@18.3.1) 6697 9503 use-sync-external-store: 1.6.0(react@18.3.1) 6698 9504 transitivePeerDependencies: 6699 9505 - scheduler 6700 9506 6701 - '@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)': 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)": 6702 9508 dependencies: 6703 - '@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) 6704 - '@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) 6705 - '@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) 6706 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6707 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6708 - '@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) 6709 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6710 - '@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) 6711 - '@fluentui/react-theme': 9.2.0 6712 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6713 - '@griffel/react': 1.5.30(react@18.3.1) 6714 - '@swc/helpers': 0.5.17 6715 - '@types/react': 19.2.0 6716 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6717 9523 react: 18.3.1 6718 9524 react-dom: 18.3.1(react@18.3.1) 6719 9525 use-sync-external-store: 1.6.0(react@18.3.1) 6720 9526 transitivePeerDependencies: 6721 9527 - scheduler 6722 9528 6723 - '@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)': 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)": 6724 9530 dependencies: 6725 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6726 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6727 - '@fluentui/react-theme': 9.2.0 6728 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6729 - '@griffel/react': 1.5.30(react@18.3.1) 6730 - '@swc/helpers': 0.5.17 6731 - '@types/react': 18.3.25 6732 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6733 9539 react: 18.3.1 6734 9540 react-dom: 18.3.1(react@18.3.1) 6735 9541 6736 - '@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)': 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)": 6737 9543 dependencies: 6738 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6739 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6740 - '@fluentui/react-theme': 9.2.0 6741 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6742 - '@griffel/react': 1.5.30(react@18.3.1) 6743 - '@swc/helpers': 0.5.17 6744 - '@types/react': 19.2.0 6745 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6746 9552 react: 18.3.1 6747 9553 react-dom: 18.3.1(react@18.3.1) 6748 9554 6749 - '@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)': 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)": 6750 9556 dependencies: 6751 - '@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) 6752 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6753 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6754 - '@fluentui/react-theme': 9.2.0 6755 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6756 - '@griffel/react': 1.5.30(react@18.3.1) 6757 - '@swc/helpers': 0.5.17 6758 - '@types/react': 18.3.25 6759 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6760 9566 react: 18.3.1 6761 9567 react-dom: 18.3.1(react@18.3.1) 6762 9568 transitivePeerDependencies: 6763 9569 - scheduler 6764 9570 6765 - '@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)': 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)": 6766 9572 dependencies: 6767 - '@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) 6768 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6769 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6770 - '@fluentui/react-theme': 9.2.0 6771 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6772 - '@griffel/react': 1.5.30(react@18.3.1) 6773 - '@swc/helpers': 0.5.17 6774 - '@types/react': 19.2.0 6775 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6776 9582 react: 18.3.1 6777 9583 react-dom: 18.3.1(react@18.3.1) 6778 9584 transitivePeerDependencies: 6779 9585 - scheduler 6780 9586 6781 - '@fluentui/react-theme@9.2.0': 9587 + "@fluentui/react-theme@9.2.0": 6782 9588 dependencies: 6783 - '@fluentui/tokens': 1.0.0-alpha.22 6784 - '@swc/helpers': 0.5.17 9589 + "@fluentui/tokens": 1.0.0-alpha.22 9590 + "@swc/helpers": 0.5.17 6785 9591 6786 - '@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)': 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)": 6787 9593 dependencies: 6788 - '@fluentui/keyboard-keys': 9.0.8 6789 - '@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) 6790 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6791 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6792 - '@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) 6793 - '@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) 6794 - '@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) 6795 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6796 - '@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) 6797 - '@fluentui/react-theme': 9.2.0 6798 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6799 - '@griffel/react': 1.5.30(react@18.3.1) 6800 - '@swc/helpers': 0.5.17 6801 - '@types/react': 18.3.25 6802 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6803 9609 react: 18.3.1 6804 9610 react-dom: 18.3.1(react@18.3.1) 6805 9611 6806 - '@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)': 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)": 6807 9613 dependencies: 6808 - '@fluentui/keyboard-keys': 9.0.8 6809 - '@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) 6810 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6811 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6812 - '@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) 6813 - '@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) 6814 - '@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) 6815 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6816 - '@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) 6817 - '@fluentui/react-theme': 9.2.0 6818 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6819 - '@griffel/react': 1.5.30(react@18.3.1) 6820 - '@swc/helpers': 0.5.17 6821 - '@types/react': 19.2.0 6822 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6823 9629 react: 18.3.1 6824 9630 react-dom: 18.3.1(react@18.3.1) 6825 9631 6826 - '@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)': 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)": 6827 9633 dependencies: 6828 - '@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) 6829 - '@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) 6830 - '@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) 6831 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6832 - '@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) 6833 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6834 - '@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) 6835 - '@fluentui/react-theme': 9.2.0 6836 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6837 - '@griffel/react': 1.5.30(react@18.3.1) 6838 - '@swc/helpers': 0.5.17 6839 - '@types/react': 18.3.25 6840 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6841 9647 react: 18.3.1 6842 9648 react-dom: 18.3.1(react@18.3.1) 6843 9649 transitivePeerDependencies: 6844 9650 - scheduler 6845 9651 6846 - '@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)': 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)": 6847 9653 dependencies: 6848 - '@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) 6849 - '@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) 6850 - '@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) 6851 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6852 - '@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) 6853 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6854 - '@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) 6855 - '@fluentui/react-theme': 9.2.0 6856 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6857 - '@griffel/react': 1.5.30(react@18.3.1) 6858 - '@swc/helpers': 0.5.17 6859 - '@types/react': 19.2.0 6860 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6861 9667 react: 18.3.1 6862 9668 react-dom: 18.3.1(react@18.3.1) 6863 9669 transitivePeerDependencies: 6864 9670 - scheduler 6865 9671 6866 - '@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)': 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)": 6867 9673 dependencies: 6868 - '@fluentui/keyboard-keys': 9.0.8 6869 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6870 - '@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) 6871 - '@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) 6872 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6873 - '@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) 6874 - '@fluentui/react-theme': 9.2.0 6875 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6876 - '@griffel/react': 1.5.30(react@18.3.1) 6877 - '@swc/helpers': 0.5.17 6878 - '@types/react': 18.3.25 6879 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6880 9686 react: 18.3.1 6881 9687 react-dom: 18.3.1(react@18.3.1) 6882 9688 6883 - '@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)': 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)": 6884 9690 dependencies: 6885 - '@fluentui/keyboard-keys': 9.0.8 6886 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6887 - '@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) 6888 - '@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) 6889 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6890 - '@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) 6891 - '@fluentui/react-theme': 9.2.0 6892 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6893 - '@griffel/react': 1.5.30(react@18.3.1) 6894 - '@swc/helpers': 0.5.17 6895 - '@types/react': 19.2.0 6896 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6897 9703 react: 18.3.1 6898 9704 react-dom: 18.3.1(react@18.3.1) 6899 9705 6900 - '@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)': 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)": 6901 9707 dependencies: 6902 - '@fluentui/keyboard-keys': 9.0.8 6903 - '@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) 6904 - '@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) 6905 - '@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) 6906 - '@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) 6907 - '@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) 6908 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6909 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6910 - '@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) 6911 - '@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) 6912 - '@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) 6913 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6914 - '@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) 6915 - '@fluentui/react-theme': 9.2.0 6916 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6917 - '@griffel/react': 1.5.30(react@18.3.1) 6918 - '@swc/helpers': 0.5.17 6919 - '@types/react': 18.3.25 6920 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6921 9727 react: 18.3.1 6922 9728 react-dom: 18.3.1(react@18.3.1) 6923 9729 transitivePeerDependencies: 6924 9730 - scheduler 6925 9731 6926 - '@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)': 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)": 6927 9733 dependencies: 6928 - '@fluentui/keyboard-keys': 9.0.8 6929 - '@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) 6930 - '@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) 6931 - '@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) 6932 - '@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) 6933 - '@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) 6934 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 6935 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6936 - '@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) 6937 - '@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) 6938 - '@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) 6939 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6940 - '@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) 6941 - '@fluentui/react-theme': 9.2.0 6942 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6943 - '@griffel/react': 1.5.30(react@18.3.1) 6944 - '@swc/helpers': 0.5.17 6945 - '@types/react': 19.2.0 6946 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6947 9753 react: 18.3.1 6948 9754 react-dom: 18.3.1(react@18.3.1) 6949 9755 transitivePeerDependencies: 6950 9756 - scheduler 6951 9757 6952 - '@fluentui/react-utilities@9.25.0(@types/react@18.3.25)(react@18.3.1)': 9758 + "@fluentui/react-utilities@9.25.0(@types/react@18.3.25)(react@18.3.1)": 6953 9759 dependencies: 6954 - '@fluentui/keyboard-keys': 9.0.8 6955 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6956 - '@swc/helpers': 0.5.17 6957 - '@types/react': 18.3.25 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 6958 9764 react: 18.3.1 6959 9765 6960 - '@fluentui/react-utilities@9.25.0(@types/react@19.2.0)(react@18.3.1)': 9766 + "@fluentui/react-utilities@9.25.0(@types/react@19.2.0)(react@18.3.1)": 6961 9767 dependencies: 6962 - '@fluentui/keyboard-keys': 9.0.8 6963 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6964 - '@swc/helpers': 0.5.17 6965 - '@types/react': 19.2.0 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 6966 9772 react: 18.3.1 6967 9773 6968 - '@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)': 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)": 6969 9775 dependencies: 6970 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@18.3.25)(react@18.3.1) 6971 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@18.3.25)(react@18.3.1) 6972 - '@fluentui/react-utilities': 9.25.0(@types/react@18.3.25)(react@18.3.1) 6973 - '@griffel/react': 1.5.30(react@18.3.1) 6974 - '@swc/helpers': 0.5.17 6975 - '@types/react': 18.3.25 6976 - '@types/react-dom': 18.3.7(@types/react@18.3.25) 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) 6977 9783 react: 18.3.1 6978 9784 react-dom: 18.3.1(react@18.3.1) 6979 9785 6980 - '@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)': 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)": 6981 9787 dependencies: 6982 - '@fluentui/react-jsx-runtime': 9.2.1(@types/react@19.2.0)(react@18.3.1) 6983 - '@fluentui/react-shared-contexts': 9.25.2(@types/react@19.2.0)(react@18.3.1) 6984 - '@fluentui/react-utilities': 9.25.0(@types/react@19.2.0)(react@18.3.1) 6985 - '@griffel/react': 1.5.30(react@18.3.1) 6986 - '@swc/helpers': 0.5.17 6987 - '@types/react': 19.2.0 6988 - '@types/react-dom': 19.2.0(@types/react@19.2.0) 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) 6989 9795 react: 18.3.1 6990 9796 react-dom: 18.3.1(react@18.3.1) 6991 9797 6992 - '@fluentui/tokens@1.0.0-alpha.22': 9798 + "@fluentui/tokens@1.0.0-alpha.22": 6993 9799 dependencies: 6994 - '@swc/helpers': 0.5.17 9800 + "@swc/helpers": 0.5.17 6995 9801 6996 - '@griffel/core@1.19.2': 9802 + "@griffel/core@1.19.2": 6997 9803 dependencies: 6998 - '@emotion/hash': 0.9.2 6999 - '@griffel/style-types': 1.3.0 9804 + "@emotion/hash": 0.9.2 9805 + "@griffel/style-types": 1.3.0 7000 9806 csstype: 3.1.3 7001 9807 rtl-css-js: 1.16.1 7002 9808 stylis: 4.3.6 7003 9809 tslib: 2.8.1 7004 9810 7005 - '@griffel/react@1.5.30(react@18.3.1)': 9811 + "@griffel/react@1.5.30(react@18.3.1)": 7006 9812 dependencies: 7007 - '@griffel/core': 1.19.2 9813 + "@griffel/core": 1.19.2 7008 9814 react: 18.3.1 7009 9815 tslib: 2.8.1 7010 9816 7011 - '@griffel/style-types@1.3.0': 9817 + "@griffel/style-types@1.3.0": 7012 9818 dependencies: 7013 9819 csstype: 3.1.3 7014 9820 7015 - '@img/colour@1.0.0': 9821 + "@img/colour@1.0.0": 7016 9822 optional: true 7017 9823 7018 - '@img/sharp-darwin-arm64@0.34.4': 9824 + "@img/sharp-darwin-arm64@0.34.4": 7019 9825 optionalDependencies: 7020 - '@img/sharp-libvips-darwin-arm64': 1.2.3 9826 + "@img/sharp-libvips-darwin-arm64": 1.2.3 7021 9827 optional: true 7022 9828 7023 - '@img/sharp-darwin-x64@0.34.4': 9829 + "@img/sharp-darwin-x64@0.34.4": 7024 9830 optionalDependencies: 7025 - '@img/sharp-libvips-darwin-x64': 1.2.3 9831 + "@img/sharp-libvips-darwin-x64": 1.2.3 7026 9832 optional: true 7027 9833 7028 - '@img/sharp-libvips-darwin-arm64@1.2.3': 9834 + "@img/sharp-libvips-darwin-arm64@1.2.3": 7029 9835 optional: true 7030 9836 7031 - '@img/sharp-libvips-darwin-x64@1.2.3': 9837 + "@img/sharp-libvips-darwin-x64@1.2.3": 7032 9838 optional: true 7033 9839 7034 - '@img/sharp-libvips-linux-arm64@1.2.3': 9840 + "@img/sharp-libvips-linux-arm64@1.2.3": 7035 9841 optional: true 7036 9842 7037 - '@img/sharp-libvips-linux-arm@1.2.3': 9843 + "@img/sharp-libvips-linux-arm@1.2.3": 7038 9844 optional: true 7039 9845 7040 - '@img/sharp-libvips-linux-ppc64@1.2.3': 9846 + "@img/sharp-libvips-linux-ppc64@1.2.3": 7041 9847 optional: true 7042 9848 7043 - '@img/sharp-libvips-linux-s390x@1.2.3': 9849 + "@img/sharp-libvips-linux-s390x@1.2.3": 7044 9850 optional: true 7045 9851 7046 - '@img/sharp-libvips-linux-x64@1.2.3': 9852 + "@img/sharp-libvips-linux-x64@1.2.3": 7047 9853 optional: true 7048 9854 7049 - '@img/sharp-libvips-linuxmusl-arm64@1.2.3': 9855 + "@img/sharp-libvips-linuxmusl-arm64@1.2.3": 7050 9856 optional: true 7051 9857 7052 - '@img/sharp-libvips-linuxmusl-x64@1.2.3': 9858 + "@img/sharp-libvips-linuxmusl-x64@1.2.3": 7053 9859 optional: true 7054 9860 7055 - '@img/sharp-linux-arm64@0.34.4': 9861 + "@img/sharp-linux-arm64@0.34.4": 7056 9862 optionalDependencies: 7057 - '@img/sharp-libvips-linux-arm64': 1.2.3 9863 + "@img/sharp-libvips-linux-arm64": 1.2.3 7058 9864 optional: true 7059 9865 7060 - '@img/sharp-linux-arm@0.34.4': 9866 + "@img/sharp-linux-arm@0.34.4": 7061 9867 optionalDependencies: 7062 - '@img/sharp-libvips-linux-arm': 1.2.3 9868 + "@img/sharp-libvips-linux-arm": 1.2.3 7063 9869 optional: true 7064 9870 7065 - '@img/sharp-linux-ppc64@0.34.4': 9871 + "@img/sharp-linux-ppc64@0.34.4": 7066 9872 optionalDependencies: 7067 - '@img/sharp-libvips-linux-ppc64': 1.2.3 9873 + "@img/sharp-libvips-linux-ppc64": 1.2.3 7068 9874 optional: true 7069 9875 7070 - '@img/sharp-linux-s390x@0.34.4': 9876 + "@img/sharp-linux-s390x@0.34.4": 7071 9877 optionalDependencies: 7072 - '@img/sharp-libvips-linux-s390x': 1.2.3 9878 + "@img/sharp-libvips-linux-s390x": 1.2.3 7073 9879 optional: true 7074 9880 7075 - '@img/sharp-linux-x64@0.34.4': 9881 + "@img/sharp-linux-x64@0.34.4": 7076 9882 optionalDependencies: 7077 - '@img/sharp-libvips-linux-x64': 1.2.3 9883 + "@img/sharp-libvips-linux-x64": 1.2.3 7078 9884 optional: true 7079 9885 7080 - '@img/sharp-linuxmusl-arm64@0.34.4': 9886 + "@img/sharp-linuxmusl-arm64@0.34.4": 7081 9887 optionalDependencies: 7082 - '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 9888 + "@img/sharp-libvips-linuxmusl-arm64": 1.2.3 7083 9889 optional: true 7084 9890 7085 - '@img/sharp-linuxmusl-x64@0.34.4': 9891 + "@img/sharp-linuxmusl-x64@0.34.4": 7086 9892 optionalDependencies: 7087 - '@img/sharp-libvips-linuxmusl-x64': 1.2.3 9893 + "@img/sharp-libvips-linuxmusl-x64": 1.2.3 7088 9894 optional: true 7089 9895 7090 - '@img/sharp-wasm32@0.34.4': 9896 + "@img/sharp-wasm32@0.34.4": 7091 9897 dependencies: 7092 - '@emnapi/runtime': 1.5.0 9898 + "@emnapi/runtime": 1.5.0 7093 9899 optional: true 7094 9900 7095 - '@img/sharp-win32-arm64@0.34.4': 9901 + "@img/sharp-win32-arm64@0.34.4": 7096 9902 optional: true 7097 9903 7098 - '@img/sharp-win32-ia32@0.34.4': 9904 + "@img/sharp-win32-ia32@0.34.4": 7099 9905 optional: true 7100 9906 7101 - '@img/sharp-win32-x64@0.34.4': 9907 + "@img/sharp-win32-x64@0.34.4": 7102 9908 optional: true 7103 9909 7104 - '@inquirer/ansi@1.0.0': {} 9910 + "@inquirer/ansi@1.0.0": {} 7105 9911 7106 - '@inquirer/checkbox@4.2.4(@types/node@20.19.19)': 9912 + "@inquirer/checkbox@4.2.4(@types/node@20.19.19)": 7107 9913 dependencies: 7108 - '@inquirer/ansi': 1.0.0 7109 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7110 - '@inquirer/figures': 1.0.13 7111 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 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) 7112 9918 yoctocolors-cjs: 2.1.3 7113 9919 optionalDependencies: 7114 - '@types/node': 20.19.19 9920 + "@types/node": 20.19.19 7115 9921 7116 - '@inquirer/confirm@5.1.18(@types/node@20.19.19)': 9922 + "@inquirer/confirm@5.1.18(@types/node@20.19.19)": 7117 9923 dependencies: 7118 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7119 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 9924 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9925 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 7120 9926 optionalDependencies: 7121 - '@types/node': 20.19.19 9927 + "@types/node": 20.19.19 7122 9928 7123 - '@inquirer/core@10.2.2(@types/node@20.19.19)': 9929 + "@inquirer/core@10.2.2(@types/node@20.19.19)": 7124 9930 dependencies: 7125 - '@inquirer/ansi': 1.0.0 7126 - '@inquirer/figures': 1.0.13 7127 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 9931 + "@inquirer/ansi": 1.0.0 9932 + "@inquirer/figures": 1.0.13 9933 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 7128 9934 cli-width: 4.1.0 7129 9935 mute-stream: 2.0.0 7130 9936 signal-exit: 4.1.0 7131 9937 wrap-ansi: 6.2.0 7132 9938 yoctocolors-cjs: 2.1.3 7133 9939 optionalDependencies: 7134 - '@types/node': 20.19.19 9940 + "@types/node": 20.19.19 7135 9941 7136 - '@inquirer/editor@4.2.20(@types/node@20.19.19)': 9942 + "@inquirer/editor@4.2.20(@types/node@20.19.19)": 7137 9943 dependencies: 7138 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7139 - '@inquirer/external-editor': 1.0.2(@types/node@20.19.19) 7140 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 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 9947 optionalDependencies: 7142 - '@types/node': 20.19.19 9948 + "@types/node": 20.19.19 7143 9949 7144 - '@inquirer/expand@4.0.20(@types/node@20.19.19)': 9950 + "@inquirer/expand@4.0.20(@types/node@20.19.19)": 7145 9951 dependencies: 7146 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7147 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 9952 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9953 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 7148 9954 yoctocolors-cjs: 2.1.3 7149 9955 optionalDependencies: 7150 - '@types/node': 20.19.19 9956 + "@types/node": 20.19.19 7151 9957 7152 - '@inquirer/external-editor@1.0.2(@types/node@20.19.19)': 9958 + "@inquirer/external-editor@1.0.2(@types/node@20.19.19)": 7153 9959 dependencies: 7154 9960 chardet: 2.1.0 7155 9961 iconv-lite: 0.7.0 7156 9962 optionalDependencies: 7157 - '@types/node': 20.19.19 9963 + "@types/node": 20.19.19 7158 9964 7159 - '@inquirer/figures@1.0.13': {} 9965 + "@inquirer/figures@1.0.13": {} 7160 9966 7161 - '@inquirer/input@4.2.4(@types/node@20.19.19)': 9967 + "@inquirer/input@4.2.4(@types/node@20.19.19)": 7162 9968 dependencies: 7163 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7164 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 9969 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9970 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 7165 9971 optionalDependencies: 7166 - '@types/node': 20.19.19 9972 + "@types/node": 20.19.19 7167 9973 7168 - '@inquirer/number@3.0.20(@types/node@20.19.19)': 9974 + "@inquirer/number@3.0.20(@types/node@20.19.19)": 7169 9975 dependencies: 7170 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7171 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 9976 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9977 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 7172 9978 optionalDependencies: 7173 - '@types/node': 20.19.19 9979 + "@types/node": 20.19.19 7174 9980 7175 - '@inquirer/password@4.0.20(@types/node@20.19.19)': 9981 + "@inquirer/password@4.0.20(@types/node@20.19.19)": 7176 9982 dependencies: 7177 - '@inquirer/ansi': 1.0.0 7178 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7179 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 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 9986 optionalDependencies: 7181 - '@types/node': 20.19.19 9987 + "@types/node": 20.19.19 7182 9988 7183 - '@inquirer/prompts@7.8.6(@types/node@20.19.19)': 9989 + "@inquirer/prompts@7.8.6(@types/node@20.19.19)": 7184 9990 dependencies: 7185 - '@inquirer/checkbox': 4.2.4(@types/node@20.19.19) 7186 - '@inquirer/confirm': 5.1.18(@types/node@20.19.19) 7187 - '@inquirer/editor': 4.2.20(@types/node@20.19.19) 7188 - '@inquirer/expand': 4.0.20(@types/node@20.19.19) 7189 - '@inquirer/input': 4.2.4(@types/node@20.19.19) 7190 - '@inquirer/number': 3.0.20(@types/node@20.19.19) 7191 - '@inquirer/password': 4.0.20(@types/node@20.19.19) 7192 - '@inquirer/rawlist': 4.1.8(@types/node@20.19.19) 7193 - '@inquirer/search': 3.1.3(@types/node@20.19.19) 7194 - '@inquirer/select': 4.3.4(@types/node@20.19.19) 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) 7195 10001 optionalDependencies: 7196 - '@types/node': 20.19.19 10002 + "@types/node": 20.19.19 7197 10003 7198 - '@inquirer/rawlist@4.1.8(@types/node@20.19.19)': 10004 + "@inquirer/rawlist@4.1.8(@types/node@20.19.19)": 7199 10005 dependencies: 7200 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7201 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 10006 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 10007 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 7202 10008 yoctocolors-cjs: 2.1.3 7203 10009 optionalDependencies: 7204 - '@types/node': 20.19.19 10010 + "@types/node": 20.19.19 7205 10011 7206 - '@inquirer/search@3.1.3(@types/node@20.19.19)': 10012 + "@inquirer/search@3.1.3(@types/node@20.19.19)": 7207 10013 dependencies: 7208 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7209 - '@inquirer/figures': 1.0.13 7210 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 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 10017 yoctocolors-cjs: 2.1.3 7212 10018 optionalDependencies: 7213 - '@types/node': 20.19.19 10019 + "@types/node": 20.19.19 7214 10020 7215 - '@inquirer/select@4.3.4(@types/node@20.19.19)': 10021 + "@inquirer/select@4.3.4(@types/node@20.19.19)": 7216 10022 dependencies: 7217 - '@inquirer/ansi': 1.0.0 7218 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7219 - '@inquirer/figures': 1.0.13 7220 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 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) 7221 10027 yoctocolors-cjs: 2.1.3 7222 10028 optionalDependencies: 7223 - '@types/node': 20.19.19 10029 + "@types/node": 20.19.19 7224 10030 7225 - '@inquirer/type@3.0.8(@types/node@20.19.19)': 10031 + "@inquirer/type@3.0.8(@types/node@20.19.19)": 7226 10032 optionalDependencies: 7227 - '@types/node': 20.19.19 10033 + "@types/node": 20.19.19 7228 10034 7229 - '@ipld/dag-cbor@7.0.3': 10035 + "@ipld/dag-cbor@7.0.3": 7230 10036 dependencies: 7231 10037 cborg: 1.10.2 7232 10038 multiformats: 9.9.0 7233 10039 7234 - '@isaacs/fs-minipass@4.0.1': 10040 + "@isaacs/fs-minipass@4.0.1": 7235 10041 dependencies: 7236 10042 minipass: 7.1.2 7237 10043 7238 - '@jest/schemas@29.6.3': 10044 + "@jest/schemas@29.6.3": 7239 10045 dependencies: 7240 - '@sinclair/typebox': 0.27.8 10046 + "@sinclair/typebox": 0.27.8 7241 10047 7242 - '@jridgewell/gen-mapping@0.3.13': 10048 + "@jridgewell/gen-mapping@0.3.13": 7243 10049 dependencies: 7244 - '@jridgewell/sourcemap-codec': 1.5.5 7245 - '@jridgewell/trace-mapping': 0.3.31 10050 + "@jridgewell/sourcemap-codec": 1.5.5 10051 + "@jridgewell/trace-mapping": 0.3.31 7246 10052 7247 - '@jridgewell/remapping@2.3.5': 10053 + "@jridgewell/remapping@2.3.5": 7248 10054 dependencies: 7249 - '@jridgewell/gen-mapping': 0.3.13 7250 - '@jridgewell/trace-mapping': 0.3.31 10055 + "@jridgewell/gen-mapping": 0.3.13 10056 + "@jridgewell/trace-mapping": 0.3.31 7251 10057 7252 - '@jridgewell/resolve-uri@3.1.2': {} 10058 + "@jridgewell/resolve-uri@3.1.2": {} 7253 10059 7254 - '@jridgewell/sourcemap-codec@1.5.5': {} 10060 + "@jridgewell/sourcemap-codec@1.5.5": {} 7255 10061 7256 - '@jridgewell/trace-mapping@0.3.31': 10062 + "@jridgewell/trace-mapping@0.3.31": 7257 10063 dependencies: 7258 - '@jridgewell/resolve-uri': 3.1.2 7259 - '@jridgewell/sourcemap-codec': 1.5.5 10064 + "@jridgewell/resolve-uri": 3.1.2 10065 + "@jridgewell/sourcemap-codec": 1.5.5 7260 10066 7261 - '@jspm/core@2.1.0': {} 10067 + "@jspm/core@2.1.0": {} 7262 10068 7263 - '@noble/curves@1.9.7': 10069 + "@noble/curves@1.9.7": 7264 10070 dependencies: 7265 - '@noble/hashes': 1.8.0 10071 + "@noble/hashes": 1.8.0 7266 10072 7267 - '@noble/hashes@1.8.0': {} 10073 + "@noble/hashes@1.8.0": {} 7268 10074 7269 - '@nodelib/fs.scandir@2.1.5': 10075 + "@nodelib/fs.scandir@2.1.5": 7270 10076 dependencies: 7271 - '@nodelib/fs.stat': 2.0.5 10077 + "@nodelib/fs.stat": 2.0.5 7272 10078 run-parallel: 1.2.0 7273 10079 7274 - '@nodelib/fs.stat@2.0.5': {} 10080 + "@nodelib/fs.stat@2.0.5": {} 7275 10081 7276 - '@nodelib/fs.walk@1.2.8': 10082 + "@nodelib/fs.walk@1.2.8": 7277 10083 dependencies: 7278 - '@nodelib/fs.scandir': 2.1.5 10084 + "@nodelib/fs.scandir": 2.1.5 7279 10085 fastq: 1.19.1 7280 10086 7281 - '@oslojs/encoding@1.1.0': {} 10087 + "@oslojs/encoding@1.1.0": {} 7282 10088 7283 - '@rolldown/pluginutils@1.0.0-beta.27': {} 10089 + "@rolldown/pluginutils@1.0.0-beta.27": {} 7284 10090 7285 - '@rollup/pluginutils@5.3.0(rollup@4.52.4)': 10091 + "@rollup/pluginutils@5.3.0(rollup@4.52.4)": 7286 10092 dependencies: 7287 - '@types/estree': 1.0.8 10093 + "@types/estree": 1.0.8 7288 10094 estree-walker: 2.0.2 7289 10095 picomatch: 4.0.3 7290 10096 optionalDependencies: 7291 10097 rollup: 4.52.4 7292 10098 7293 - '@rollup/rollup-android-arm-eabi@4.52.4': 10099 + "@rollup/rollup-android-arm-eabi@4.52.4": 7294 10100 optional: true 7295 10101 7296 - '@rollup/rollup-android-arm64@4.52.4': 10102 + "@rollup/rollup-android-arm64@4.52.4": 7297 10103 optional: true 7298 10104 7299 - '@rollup/rollup-darwin-arm64@4.52.4': 10105 + "@rollup/rollup-darwin-arm64@4.52.4": 7300 10106 optional: true 7301 10107 7302 - '@rollup/rollup-darwin-x64@4.52.4': 10108 + "@rollup/rollup-darwin-x64@4.52.4": 7303 10109 optional: true 7304 10110 7305 - '@rollup/rollup-freebsd-arm64@4.52.4': 10111 + "@rollup/rollup-freebsd-arm64@4.52.4": 7306 10112 optional: true 7307 10113 7308 - '@rollup/rollup-freebsd-x64@4.52.4': 10114 + "@rollup/rollup-freebsd-x64@4.52.4": 7309 10115 optional: true 7310 10116 7311 - '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 10117 + "@rollup/rollup-linux-arm-gnueabihf@4.52.4": 7312 10118 optional: true 7313 10119 7314 - '@rollup/rollup-linux-arm-musleabihf@4.52.4': 10120 + "@rollup/rollup-linux-arm-musleabihf@4.52.4": 7315 10121 optional: true 7316 10122 7317 - '@rollup/rollup-linux-arm64-gnu@4.52.4': 10123 + "@rollup/rollup-linux-arm64-gnu@4.52.4": 7318 10124 optional: true 7319 10125 7320 - '@rollup/rollup-linux-arm64-musl@4.52.4': 10126 + "@rollup/rollup-linux-arm64-musl@4.52.4": 7321 10127 optional: true 7322 10128 7323 - '@rollup/rollup-linux-loong64-gnu@4.52.4': 10129 + "@rollup/rollup-linux-loong64-gnu@4.52.4": 7324 10130 optional: true 7325 10131 7326 - '@rollup/rollup-linux-ppc64-gnu@4.52.4': 10132 + "@rollup/rollup-linux-ppc64-gnu@4.52.4": 7327 10133 optional: true 7328 10134 7329 - '@rollup/rollup-linux-riscv64-gnu@4.52.4': 10135 + "@rollup/rollup-linux-riscv64-gnu@4.52.4": 7330 10136 optional: true 7331 10137 7332 - '@rollup/rollup-linux-riscv64-musl@4.52.4': 10138 + "@rollup/rollup-linux-riscv64-musl@4.52.4": 7333 10139 optional: true 7334 10140 7335 - '@rollup/rollup-linux-s390x-gnu@4.52.4': 10141 + "@rollup/rollup-linux-s390x-gnu@4.52.4": 7336 10142 optional: true 7337 10143 7338 - '@rollup/rollup-linux-x64-gnu@4.40.0': 10144 + "@rollup/rollup-linux-x64-gnu@4.40.0": 7339 10145 optional: true 7340 10146 7341 - '@rollup/rollup-linux-x64-gnu@4.52.4': 10147 + "@rollup/rollup-linux-x64-gnu@4.52.4": 7342 10148 optional: true 7343 10149 7344 - '@rollup/rollup-linux-x64-musl@4.52.4': 10150 + "@rollup/rollup-linux-x64-musl@4.52.4": 7345 10151 optional: true 7346 10152 7347 - '@rollup/rollup-openharmony-arm64@4.52.4': 10153 + "@rollup/rollup-openharmony-arm64@4.52.4": 7348 10154 optional: true 7349 10155 7350 - '@rollup/rollup-win32-arm64-msvc@4.52.4': 10156 + "@rollup/rollup-win32-arm64-msvc@4.52.4": 7351 10157 optional: true 7352 10158 7353 - '@rollup/rollup-win32-ia32-msvc@4.52.4': 10159 + "@rollup/rollup-win32-ia32-msvc@4.52.4": 7354 10160 optional: true 7355 10161 7356 - '@rollup/rollup-win32-x64-gnu@4.52.4': 10162 + "@rollup/rollup-win32-x64-gnu@4.52.4": 7357 10163 optional: true 7358 10164 7359 - '@rollup/rollup-win32-x64-msvc@4.52.4': 10165 + "@rollup/rollup-win32-x64-msvc@4.52.4": 7360 10166 optional: true 7361 10167 7362 - '@scarf/scarf@1.4.0': {} 10168 + "@scarf/scarf@1.4.0": {} 7363 10169 7364 - '@shikijs/core@3.13.0': 10170 + "@shikijs/core@3.13.0": 7365 10171 dependencies: 7366 - '@shikijs/types': 3.13.0 7367 - '@shikijs/vscode-textmate': 10.0.2 7368 - '@types/hast': 3.0.4 10172 + "@shikijs/types": 3.13.0 10173 + "@shikijs/vscode-textmate": 10.0.2 10174 + "@types/hast": 3.0.4 7369 10175 hast-util-to-html: 9.0.5 7370 10176 7371 - '@shikijs/engine-javascript@3.13.0': 10177 + "@shikijs/engine-javascript@3.13.0": 7372 10178 dependencies: 7373 - '@shikijs/types': 3.13.0 7374 - '@shikijs/vscode-textmate': 10.0.2 10179 + "@shikijs/types": 3.13.0 10180 + "@shikijs/vscode-textmate": 10.0.2 7375 10181 oniguruma-to-es: 4.3.3 7376 10182 7377 - '@shikijs/engine-oniguruma@3.13.0': 10183 + "@shikijs/engine-oniguruma@3.13.0": 7378 10184 dependencies: 7379 - '@shikijs/types': 3.13.0 7380 - '@shikijs/vscode-textmate': 10.0.2 10185 + "@shikijs/types": 3.13.0 10186 + "@shikijs/vscode-textmate": 10.0.2 7381 10187 7382 - '@shikijs/langs@3.13.0': 10188 + "@shikijs/langs@3.13.0": 7383 10189 dependencies: 7384 - '@shikijs/types': 3.13.0 10190 + "@shikijs/types": 3.13.0 7385 10191 7386 - '@shikijs/themes@3.13.0': 10192 + "@shikijs/themes@3.13.0": 7387 10193 dependencies: 7388 - '@shikijs/types': 3.13.0 10194 + "@shikijs/types": 3.13.0 7389 10195 7390 - '@shikijs/types@3.13.0': 10196 + "@shikijs/types@3.13.0": 7391 10197 dependencies: 7392 - '@shikijs/vscode-textmate': 10.0.2 7393 - '@types/hast': 3.0.4 10198 + "@shikijs/vscode-textmate": 10.0.2 10199 + "@types/hast": 3.0.4 7394 10200 7395 - '@shikijs/vscode-textmate@10.0.2': {} 10201 + "@shikijs/vscode-textmate@10.0.2": {} 7396 10202 7397 - '@sinclair/typebox@0.27.8': {} 10203 + "@sinclair/typebox@0.27.8": {} 7398 10204 7399 - '@sindresorhus/merge-streams@2.3.0': {} 10205 + "@sindresorhus/merge-streams@2.3.0": {} 7400 10206 7401 - '@swc/helpers@0.5.17': 10207 + "@swc/helpers@0.5.17": 7402 10208 dependencies: 7403 10209 tslib: 2.8.1 7404 10210 7405 - '@ts-morph/common@0.25.0': 10211 + "@ts-morph/common@0.25.0": 7406 10212 dependencies: 7407 10213 minimatch: 9.0.5 7408 10214 path-browserify: 1.0.1 7409 10215 tinyglobby: 0.2.15 7410 10216 7411 - '@types/babel__core@7.20.5': 10217 + "@types/babel__core@7.20.5": 7412 10218 dependencies: 7413 - '@babel/parser': 7.28.4 7414 - '@babel/types': 7.28.4 7415 - '@types/babel__generator': 7.27.0 7416 - '@types/babel__template': 7.4.4 7417 - '@types/babel__traverse': 7.28.0 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 7418 10224 7419 - '@types/babel__generator@7.27.0': 10225 + "@types/babel__generator@7.27.0": 7420 10226 dependencies: 7421 - '@babel/types': 7.28.4 10227 + "@babel/types": 7.28.4 7422 10228 7423 - '@types/babel__template@7.4.4': 10229 + "@types/babel__template@7.4.4": 7424 10230 dependencies: 7425 - '@babel/parser': 7.28.4 7426 - '@babel/types': 7.28.4 10231 + "@babel/parser": 7.28.4 10232 + "@babel/types": 7.28.4 7427 10233 7428 - '@types/babel__traverse@7.28.0': 10234 + "@types/babel__traverse@7.28.0": 7429 10235 dependencies: 7430 - '@babel/types': 7.28.4 10236 + "@babel/types": 7.28.4 7431 10237 7432 - '@types/debug@4.1.12': 10238 + "@types/debug@4.1.12": 7433 10239 dependencies: 7434 - '@types/ms': 2.1.0 10240 + "@types/ms": 2.1.0 7435 10241 7436 - '@types/estree@1.0.8': {} 10242 + "@types/estree@1.0.8": {} 7437 10243 7438 - '@types/fontkit@2.0.8': 10244 + "@types/fontkit@2.0.8": 7439 10245 dependencies: 7440 - '@types/node': 20.19.19 10246 + "@types/node": 20.19.19 7441 10247 7442 - '@types/hast@3.0.4': 10248 + "@types/hast@3.0.4": 7443 10249 dependencies: 7444 - '@types/unist': 3.0.3 10250 + "@types/unist": 3.0.3 7445 10251 7446 - '@types/json-schema@7.0.15': {} 10252 + "@types/json-schema@7.0.15": {} 7447 10253 7448 - '@types/mdast@4.0.4': 10254 + "@types/mdast@4.0.4": 7449 10255 dependencies: 7450 - '@types/unist': 3.0.3 10256 + "@types/unist": 3.0.3 7451 10257 7452 - '@types/ms@2.1.0': {} 10258 + "@types/ms@2.1.0": {} 7453 10259 7454 - '@types/nlcst@2.0.3': 10260 + "@types/nlcst@2.0.3": 7455 10261 dependencies: 7456 - '@types/unist': 3.0.3 10262 + "@types/unist": 3.0.3 7457 10263 7458 - '@types/node@20.19.19': 10264 + "@types/node@20.19.19": 7459 10265 dependencies: 7460 10266 undici-types: 6.21.0 7461 10267 7462 - '@types/prop-types@15.7.15': {} 10268 + "@types/prop-types@15.7.15": {} 7463 10269 7464 - '@types/react-dom@18.3.7(@types/react@18.3.25)': 10270 + "@types/react-dom@18.3.7(@types/react@18.3.25)": 7465 10271 dependencies: 7466 - '@types/react': 18.3.25 10272 + "@types/react": 18.3.25 7467 10273 7468 - '@types/react-dom@19.2.0(@types/react@19.2.0)': 10274 + "@types/react-dom@19.2.0(@types/react@19.2.0)": 7469 10275 dependencies: 7470 - '@types/react': 19.2.0 10276 + "@types/react": 19.2.0 7471 10277 7472 - '@types/react@18.3.25': 10278 + "@types/react@18.3.25": 7473 10279 dependencies: 7474 - '@types/prop-types': 15.7.15 10280 + "@types/prop-types": 15.7.15 7475 10281 csstype: 3.1.3 7476 10282 7477 - '@types/react@19.2.0': 10283 + "@types/react@19.2.0": 7478 10284 dependencies: 7479 10285 csstype: 3.1.3 7480 10286 7481 - '@types/unist@3.0.3': {} 10287 + "@types/unist@3.0.3": {} 7482 10288 7483 - '@typespec/asset-emitter@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 10289 + "@typespec/asset-emitter@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 7484 10290 dependencies: 7485 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10291 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7486 10292 7487 - '@typespec/bundler@0.4.4(@types/node@20.19.19)': 10293 + "@typespec/bundler@0.4.4(@types/node@20.19.19)": 7488 10294 dependencies: 7489 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10295 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7490 10296 esbuild: 0.25.10 7491 10297 esbuild-plugins-node-modules-polyfill: 1.7.1(esbuild@0.25.10) 7492 10298 node-stdlib-browser: 1.3.1 7493 10299 picocolors: 1.1.1 7494 10300 yargs: 18.0.0 7495 10301 transitivePeerDependencies: 7496 - - '@types/node' 10302 + - "@types/node" 7497 10303 7498 - '@typespec/compiler@1.4.0(@types/node@20.19.19)': 10304 + "@typespec/compiler@1.4.0(@types/node@20.19.19)": 7499 10305 dependencies: 7500 - '@babel/code-frame': 7.27.1 7501 - '@inquirer/prompts': 7.8.6(@types/node@20.19.19) 10306 + "@babel/code-frame": 7.27.1 10307 + "@inquirer/prompts": 7.8.6(@types/node@20.19.19) 7502 10308 ajv: 8.17.1 7503 10309 change-case: 5.4.4 7504 10310 env-paths: 3.0.0 ··· 7515 10321 yaml: 2.8.1 7516 10322 yargs: 18.0.0 7517 10323 transitivePeerDependencies: 7518 - - '@types/node' 10324 + - "@types/node" 7519 10325 7520 - '@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)': 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)": 7521 10327 dependencies: 7522 - '@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) 7523 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 7524 - '@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) 7525 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 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) 7526 10332 react: 18.3.1 7527 10333 react-dom: 18.3.1(react@18.3.1) 7528 10334 react-hotkeys-hook: 5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7529 10335 transitivePeerDependencies: 7530 - - '@types/react' 7531 - - '@types/react-dom' 10336 + - "@types/react" 10337 + - "@types/react-dom" 7532 10338 - scheduler 7533 10339 7534 - '@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)': 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)": 7535 10341 dependencies: 7536 - '@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) 7537 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 7538 - '@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) 7539 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 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) 7540 10346 react: 18.3.1 7541 10347 react-dom: 18.3.1(react@18.3.1) 7542 10348 react-hotkeys-hook: 5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7543 10349 transitivePeerDependencies: 7544 - - '@types/react' 7545 - - '@types/react-dom' 10350 + - "@types/react" 10351 + - "@types/react-dom" 7546 10352 - scheduler 7547 10353 7548 - '@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 10354 + "@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 7549 10355 dependencies: 7550 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10356 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7551 10357 7552 - '@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)))': 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)))": 7553 10359 dependencies: 7554 - '@apidevtools/swagger-parser': 12.0.0(openapi-types@12.1.3) 7555 - '@typespec/asset-emitter': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7556 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7557 - '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7558 - '@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))) 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))) 7559 10365 openapi-types: 12.1.3 7560 10366 yaml: 2.8.1 7561 10367 optionalDependencies: 7562 - '@typespec/versioning': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10368 + "@typespec/versioning": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7563 10369 7564 - '@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)))': 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)))": 7565 10371 dependencies: 7566 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7567 - '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 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)) 7568 10374 7569 - '@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)': 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)": 7570 10376 dependencies: 7571 - '@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) 7572 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 7573 - '@typespec/bundler': 0.4.4(@types/node@20.19.19) 7574 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7575 - '@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) 7576 - '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7577 - '@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))) 7578 - '@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))) 7579 - '@typespec/protobuf': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7580 - '@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))) 7581 - '@typespec/versioning': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 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)) 7582 10388 clsx: 2.1.1 7583 10389 debounce: 2.2.0 7584 10390 lzutf8: 0.6.3 ··· 7590 10396 vscode-languageserver: 9.0.1 7591 10397 vscode-languageserver-textdocument: 1.0.12 7592 10398 transitivePeerDependencies: 7593 - - '@types/node' 7594 - - '@types/react' 7595 - - '@types/react-dom' 7596 - - '@typespec/json-schema' 7597 - - '@typespec/streams' 7598 - - '@typespec/xml' 10399 + - "@types/node" 10400 + - "@types/react" 10401 + - "@types/react-dom" 10402 + - "@typespec/json-schema" 10403 + - "@typespec/streams" 10404 + - "@typespec/xml" 7599 10405 - scheduler 7600 10406 7601 - '@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)': 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)": 7602 10408 dependencies: 7603 - '@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) 7604 - '@fluentui/react-icons': 2.0.311(react@18.3.1) 7605 - '@typespec/bundler': 0.4.4(@types/node@20.19.19) 7606 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7607 - '@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) 7608 - '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7609 - '@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))) 7610 - '@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))) 7611 - '@typespec/protobuf': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7612 - '@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))) 7613 - '@typespec/versioning': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 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)) 7614 10420 clsx: 2.1.1 7615 10421 debounce: 2.2.0 7616 10422 lzutf8: 0.6.3 ··· 7622 10428 vscode-languageserver: 9.0.1 7623 10429 vscode-languageserver-textdocument: 1.0.12 7624 10430 transitivePeerDependencies: 7625 - - '@types/node' 7626 - - '@types/react' 7627 - - '@types/react-dom' 7628 - - '@typespec/json-schema' 7629 - - '@typespec/streams' 7630 - - '@typespec/xml' 10431 + - "@types/node" 10432 + - "@types/react" 10433 + - "@types/react-dom" 10434 + - "@typespec/json-schema" 10435 + - "@typespec/streams" 10436 + - "@typespec/xml" 7631 10437 - scheduler 7632 10438 7633 - '@typespec/protobuf@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 10439 + "@typespec/protobuf@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 7634 10440 dependencies: 7635 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10441 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7636 10442 7637 - '@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)))': 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)))": 7638 10444 dependencies: 7639 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7640 - '@typespec/http': 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 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)) 7641 10447 7642 - '@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 10448 + "@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 7643 10449 dependencies: 7644 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 10450 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 7645 10451 7646 - '@ungap/structured-clone@1.3.0': {} 10452 + "@ungap/structured-clone@1.3.0": {} 7647 10453 7648 - '@vitejs/plugin-react@4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1))': 10454 + "@vitejs/plugin-react@4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1))": 7649 10455 dependencies: 7650 - '@babel/core': 7.28.4 7651 - '@babel/plugin-transform-react-jsx-self': 7.27.1(@babel/core@7.28.4) 7652 - '@babel/plugin-transform-react-jsx-source': 7.27.1(@babel/core@7.28.4) 7653 - '@rolldown/pluginutils': 1.0.0-beta.27 7654 - '@types/babel__core': 7.20.5 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 7655 10461 react-refresh: 0.17.0 7656 10462 vite: 6.3.6(@types/node@20.19.19)(yaml@2.8.1) 7657 10463 transitivePeerDependencies: 7658 10464 - supports-color 7659 10465 7660 - '@vitest/expect@1.6.1': 10466 + "@vitest/expect@1.6.1": 7661 10467 dependencies: 7662 - '@vitest/spy': 1.6.1 7663 - '@vitest/utils': 1.6.1 10468 + "@vitest/spy": 1.6.1 10469 + "@vitest/utils": 1.6.1 7664 10470 chai: 4.5.0 7665 10471 7666 - '@vitest/runner@1.6.1': 10472 + "@vitest/runner@1.6.1": 7667 10473 dependencies: 7668 - '@vitest/utils': 1.6.1 10474 + "@vitest/utils": 1.6.1 7669 10475 p-limit: 5.0.0 7670 10476 pathe: 1.1.2 7671 10477 7672 - '@vitest/snapshot@1.6.1': 10478 + "@vitest/snapshot@1.6.1": 7673 10479 dependencies: 7674 10480 magic-string: 0.30.19 7675 10481 pathe: 1.1.2 7676 10482 pretty-format: 29.7.0 7677 10483 7678 - '@vitest/spy@1.6.1': 10484 + "@vitest/spy@1.6.1": 7679 10485 dependencies: 7680 10486 tinyspy: 2.2.1 7681 10487 7682 - '@vitest/utils@1.6.1': 10488 + "@vitest/utils@1.6.1": 7683 10489 dependencies: 7684 10490 diff-sequences: 29.6.3 7685 10491 estree-walker: 3.0.3 ··· 7759 10565 7760 10566 astro@5.14.1(@types/node@20.19.19)(rollup@4.52.4)(typescript@5.9.3)(yaml@2.8.1): 7761 10567 dependencies: 7762 - '@astrojs/compiler': 2.13.0 7763 - '@astrojs/internal-helpers': 0.7.3 7764 - '@astrojs/markdown-remark': 6.3.7 7765 - '@astrojs/telemetry': 3.3.0 7766 - '@capsizecss/unpack': 2.4.0 7767 - '@oslojs/encoding': 1.1.0 7768 - '@rollup/pluginutils': 5.3.0(rollup@4.52.4) 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) 7769 10575 acorn: 8.15.0 7770 10576 aria-query: 5.3.2 7771 10577 axobject-query: 4.1.0 ··· 7824 10630 optionalDependencies: 7825 10631 sharp: 0.34.4 7826 10632 transitivePeerDependencies: 7827 - - '@azure/app-configuration' 7828 - - '@azure/cosmos' 7829 - - '@azure/data-tables' 7830 - - '@azure/identity' 7831 - - '@azure/keyvault-secrets' 7832 - - '@azure/storage-blob' 7833 - - '@capacitor/preferences' 7834 - - '@deno/kv' 7835 - - '@netlify/blobs' 7836 - - '@planetscale/database' 7837 - - '@types/node' 7838 - - '@upstash/redis' 7839 - - '@vercel/blob' 7840 - - '@vercel/functions' 7841 - - '@vercel/kv' 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" 7842 10648 - aws4fetch 7843 10649 - db0 7844 10650 - encoding ··· 8026 10832 dependencies: 8027 10833 node-gyp-build-optional-packages: 5.1.1 8028 10834 optionalDependencies: 8029 - '@cbor-extract/cbor-extract-darwin-arm64': 2.2.0 8030 - '@cbor-extract/cbor-extract-darwin-x64': 2.2.0 8031 - '@cbor-extract/cbor-extract-linux-arm': 2.2.0 8032 - '@cbor-extract/cbor-extract-linux-arm64': 2.2.0 8033 - '@cbor-extract/cbor-extract-linux-x64': 2.2.0 8034 - '@cbor-extract/cbor-extract-win32-x64': 2.2.0 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 8035 10841 optional: true 8036 10842 8037 10843 cbor-x@1.6.0: ··· 8352 11158 8353 11159 esbuild-plugins-node-modules-polyfill@1.7.1(esbuild@0.25.10): 8354 11160 dependencies: 8355 - '@jspm/core': 2.1.0 11161 + "@jspm/core": 2.1.0 8356 11162 esbuild: 0.25.10 8357 11163 local-pkg: 1.1.2 8358 11164 resolve.exports: 2.0.3 8359 11165 8360 11166 esbuild@0.21.5: 8361 11167 optionalDependencies: 8362 - '@esbuild/aix-ppc64': 0.21.5 8363 - '@esbuild/android-arm': 0.21.5 8364 - '@esbuild/android-arm64': 0.21.5 8365 - '@esbuild/android-x64': 0.21.5 8366 - '@esbuild/darwin-arm64': 0.21.5 8367 - '@esbuild/darwin-x64': 0.21.5 8368 - '@esbuild/freebsd-arm64': 0.21.5 8369 - '@esbuild/freebsd-x64': 0.21.5 8370 - '@esbuild/linux-arm': 0.21.5 8371 - '@esbuild/linux-arm64': 0.21.5 8372 - '@esbuild/linux-ia32': 0.21.5 8373 - '@esbuild/linux-loong64': 0.21.5 8374 - '@esbuild/linux-mips64el': 0.21.5 8375 - '@esbuild/linux-ppc64': 0.21.5 8376 - '@esbuild/linux-riscv64': 0.21.5 8377 - '@esbuild/linux-s390x': 0.21.5 8378 - '@esbuild/linux-x64': 0.21.5 8379 - '@esbuild/netbsd-x64': 0.21.5 8380 - '@esbuild/openbsd-x64': 0.21.5 8381 - '@esbuild/sunos-x64': 0.21.5 8382 - '@esbuild/win32-arm64': 0.21.5 8383 - '@esbuild/win32-ia32': 0.21.5 8384 - '@esbuild/win32-x64': 0.21.5 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 8385 11191 8386 11192 esbuild@0.25.10: 8387 11193 optionalDependencies: 8388 - '@esbuild/aix-ppc64': 0.25.10 8389 - '@esbuild/android-arm': 0.25.10 8390 - '@esbuild/android-arm64': 0.25.10 8391 - '@esbuild/android-x64': 0.25.10 8392 - '@esbuild/darwin-arm64': 0.25.10 8393 - '@esbuild/darwin-x64': 0.25.10 8394 - '@esbuild/freebsd-arm64': 0.25.10 8395 - '@esbuild/freebsd-x64': 0.25.10 8396 - '@esbuild/linux-arm': 0.25.10 8397 - '@esbuild/linux-arm64': 0.25.10 8398 - '@esbuild/linux-ia32': 0.25.10 8399 - '@esbuild/linux-loong64': 0.25.10 8400 - '@esbuild/linux-mips64el': 0.25.10 8401 - '@esbuild/linux-ppc64': 0.25.10 8402 - '@esbuild/linux-riscv64': 0.25.10 8403 - '@esbuild/linux-s390x': 0.25.10 8404 - '@esbuild/linux-x64': 0.25.10 8405 - '@esbuild/netbsd-arm64': 0.25.10 8406 - '@esbuild/netbsd-x64': 0.25.10 8407 - '@esbuild/openbsd-arm64': 0.25.10 8408 - '@esbuild/openbsd-x64': 0.25.10 8409 - '@esbuild/openharmony-arm64': 0.25.10 8410 - '@esbuild/sunos-x64': 0.25.10 8411 - '@esbuild/win32-arm64': 0.25.10 8412 - '@esbuild/win32-ia32': 0.25.10 8413 - '@esbuild/win32-x64': 0.25.10 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 8414 11220 8415 11221 escalade@3.2.0: {} 8416 11222 ··· 8422 11228 8423 11229 estree-walker@3.0.3: 8424 11230 dependencies: 8425 - '@types/estree': 1.0.8 11231 + "@types/estree": 1.0.8 8426 11232 8427 11233 etag@1.8.1: {} 8428 11234 ··· 8503 11309 8504 11310 fast-glob@3.3.3: 8505 11311 dependencies: 8506 - '@nodelib/fs.stat': 2.0.5 8507 - '@nodelib/fs.walk': 1.2.8 11312 + "@nodelib/fs.stat": 2.0.5 11313 + "@nodelib/fs.walk": 1.2.8 8508 11314 glob-parent: 5.1.2 8509 11315 merge2: 1.4.1 8510 11316 micromatch: 4.0.8 ··· 8546 11352 8547 11353 fontace@0.3.0: 8548 11354 dependencies: 8549 - '@types/fontkit': 2.0.8 11355 + "@types/fontkit": 2.0.8 8550 11356 fontkit: 2.0.4 8551 11357 8552 11358 fontkit@2.0.4: 8553 11359 dependencies: 8554 - '@swc/helpers': 0.5.17 11360 + "@swc/helpers": 0.5.17 8555 11361 brotli: 1.3.3 8556 11362 clone: 2.1.2 8557 11363 dfa: 1.2.0 ··· 8614 11420 8615 11421 globby@14.1.0: 8616 11422 dependencies: 8617 - '@sindresorhus/merge-streams': 2.3.0 11423 + "@sindresorhus/merge-streams": 2.3.0 8618 11424 fast-glob: 3.3.3 8619 11425 ignore: 7.0.5 8620 11426 path-type: 6.0.0 ··· 8672 11478 8673 11479 hast-util-from-html@2.0.3: 8674 11480 dependencies: 8675 - '@types/hast': 3.0.4 11481 + "@types/hast": 3.0.4 8676 11482 devlop: 1.1.0 8677 11483 hast-util-from-parse5: 8.0.3 8678 11484 parse5: 7.3.0 ··· 8681 11487 8682 11488 hast-util-from-parse5@8.0.3: 8683 11489 dependencies: 8684 - '@types/hast': 3.0.4 8685 - '@types/unist': 3.0.3 11490 + "@types/hast": 3.0.4 11491 + "@types/unist": 3.0.3 8686 11492 devlop: 1.1.0 8687 11493 hastscript: 9.0.1 8688 11494 property-information: 7.1.0 ··· 8692 11498 8693 11499 hast-util-is-element@3.0.0: 8694 11500 dependencies: 8695 - '@types/hast': 3.0.4 11501 + "@types/hast": 3.0.4 8696 11502 8697 11503 hast-util-parse-selector@4.0.0: 8698 11504 dependencies: 8699 - '@types/hast': 3.0.4 11505 + "@types/hast": 3.0.4 8700 11506 8701 11507 hast-util-raw@9.1.0: 8702 11508 dependencies: 8703 - '@types/hast': 3.0.4 8704 - '@types/unist': 3.0.3 8705 - '@ungap/structured-clone': 1.3.0 11509 + "@types/hast": 3.0.4 11510 + "@types/unist": 3.0.3 11511 + "@ungap/structured-clone": 1.3.0 8706 11512 hast-util-from-parse5: 8.0.3 8707 11513 hast-util-to-parse5: 8.0.0 8708 11514 html-void-elements: 3.0.0 ··· 8716 11522 8717 11523 hast-util-to-html@9.0.5: 8718 11524 dependencies: 8719 - '@types/hast': 3.0.4 8720 - '@types/unist': 3.0.3 11525 + "@types/hast": 3.0.4 11526 + "@types/unist": 3.0.3 8721 11527 ccount: 2.0.1 8722 11528 comma-separated-tokens: 2.0.3 8723 11529 hast-util-whitespace: 3.0.0 ··· 8730 11536 8731 11537 hast-util-to-parse5@8.0.0: 8732 11538 dependencies: 8733 - '@types/hast': 3.0.4 11539 + "@types/hast": 3.0.4 8734 11540 comma-separated-tokens: 2.0.3 8735 11541 devlop: 1.1.0 8736 11542 property-information: 6.5.0 ··· 8740 11546 8741 11547 hast-util-to-text@4.0.2: 8742 11548 dependencies: 8743 - '@types/hast': 3.0.4 8744 - '@types/unist': 3.0.3 11549 + "@types/hast": 3.0.4 11550 + "@types/unist": 3.0.3 8745 11551 hast-util-is-element: 3.0.0 8746 11552 unist-util-find-after: 5.0.0 8747 11553 8748 11554 hast-util-whitespace@3.0.0: 8749 11555 dependencies: 8750 - '@types/hast': 3.0.4 11556 + "@types/hast": 3.0.4 8751 11557 8752 11558 hastscript@9.0.1: 8753 11559 dependencies: 8754 - '@types/hast': 3.0.4 11560 + "@types/hast": 3.0.4 8755 11561 comma-separated-tokens: 2.0.3 8756 11562 hast-util-parse-selector: 4.0.0 8757 11563 property-information: 7.1.0 ··· 8931 11737 8932 11738 magic-string@0.30.19: 8933 11739 dependencies: 8934 - '@jridgewell/sourcemap-codec': 1.5.5 11740 + "@jridgewell/sourcemap-codec": 1.5.5 8935 11741 8936 11742 magicast@0.3.5: 8937 11743 dependencies: 8938 - '@babel/parser': 7.28.4 8939 - '@babel/types': 7.28.4 11744 + "@babel/parser": 7.28.4 11745 + "@babel/types": 7.28.4 8940 11746 source-map-js: 1.2.1 8941 11747 8942 11748 map-stream@0.1.0: {} ··· 8953 11759 8954 11760 mdast-util-definitions@6.0.0: 8955 11761 dependencies: 8956 - '@types/mdast': 4.0.4 8957 - '@types/unist': 3.0.3 11762 + "@types/mdast": 4.0.4 11763 + "@types/unist": 3.0.3 8958 11764 unist-util-visit: 5.0.0 8959 11765 8960 11766 mdast-util-find-and-replace@3.0.2: 8961 11767 dependencies: 8962 - '@types/mdast': 4.0.4 11768 + "@types/mdast": 4.0.4 8963 11769 escape-string-regexp: 5.0.0 8964 11770 unist-util-is: 6.0.0 8965 11771 unist-util-visit-parents: 6.0.1 8966 11772 8967 11773 mdast-util-from-markdown@2.0.2: 8968 11774 dependencies: 8969 - '@types/mdast': 4.0.4 8970 - '@types/unist': 3.0.3 11775 + "@types/mdast": 4.0.4 11776 + "@types/unist": 3.0.3 8971 11777 decode-named-character-reference: 1.2.0 8972 11778 devlop: 1.1.0 8973 11779 mdast-util-to-string: 4.0.0 ··· 8983 11789 8984 11790 mdast-util-gfm-autolink-literal@2.0.1: 8985 11791 dependencies: 8986 - '@types/mdast': 4.0.4 11792 + "@types/mdast": 4.0.4 8987 11793 ccount: 2.0.1 8988 11794 devlop: 1.1.0 8989 11795 mdast-util-find-and-replace: 3.0.2 ··· 8991 11797 8992 11798 mdast-util-gfm-footnote@2.1.0: 8993 11799 dependencies: 8994 - '@types/mdast': 4.0.4 11800 + "@types/mdast": 4.0.4 8995 11801 devlop: 1.1.0 8996 11802 mdast-util-from-markdown: 2.0.2 8997 11803 mdast-util-to-markdown: 2.1.2 ··· 9001 11807 9002 11808 mdast-util-gfm-strikethrough@2.0.0: 9003 11809 dependencies: 9004 - '@types/mdast': 4.0.4 11810 + "@types/mdast": 4.0.4 9005 11811 mdast-util-from-markdown: 2.0.2 9006 11812 mdast-util-to-markdown: 2.1.2 9007 11813 transitivePeerDependencies: ··· 9009 11815 9010 11816 mdast-util-gfm-table@2.0.0: 9011 11817 dependencies: 9012 - '@types/mdast': 4.0.4 11818 + "@types/mdast": 4.0.4 9013 11819 devlop: 1.1.0 9014 11820 markdown-table: 3.0.4 9015 11821 mdast-util-from-markdown: 2.0.2 ··· 9019 11825 9020 11826 mdast-util-gfm-task-list-item@2.0.0: 9021 11827 dependencies: 9022 - '@types/mdast': 4.0.4 11828 + "@types/mdast": 4.0.4 9023 11829 devlop: 1.1.0 9024 11830 mdast-util-from-markdown: 2.0.2 9025 11831 mdast-util-to-markdown: 2.1.2 ··· 9040 11846 9041 11847 mdast-util-phrasing@4.1.0: 9042 11848 dependencies: 9043 - '@types/mdast': 4.0.4 11849 + "@types/mdast": 4.0.4 9044 11850 unist-util-is: 6.0.0 9045 11851 9046 11852 mdast-util-to-hast@13.2.0: 9047 11853 dependencies: 9048 - '@types/hast': 3.0.4 9049 - '@types/mdast': 4.0.4 9050 - '@ungap/structured-clone': 1.3.0 11854 + "@types/hast": 3.0.4 11855 + "@types/mdast": 4.0.4 11856 + "@ungap/structured-clone": 1.3.0 9051 11857 devlop: 1.1.0 9052 11858 micromark-util-sanitize-uri: 2.0.1 9053 11859 trim-lines: 3.0.1 ··· 9057 11863 9058 11864 mdast-util-to-markdown@2.1.2: 9059 11865 dependencies: 9060 - '@types/mdast': 4.0.4 9061 - '@types/unist': 3.0.3 11866 + "@types/mdast": 4.0.4 11867 + "@types/unist": 3.0.3 9062 11868 longest-streak: 3.1.0 9063 11869 mdast-util-phrasing: 4.1.0 9064 11870 mdast-util-to-string: 4.0.0 ··· 9069 11875 9070 11876 mdast-util-to-string@4.0.0: 9071 11877 dependencies: 9072 - '@types/mdast': 4.0.4 11878 + "@types/mdast": 4.0.4 9073 11879 9074 11880 mdn-data@2.12.2: {} 9075 11881 ··· 9254 12060 9255 12061 micromark@4.0.2: 9256 12062 dependencies: 9257 - '@types/debug': 4.1.12 12063 + "@types/debug": 4.1.12 9258 12064 debug: 4.4.3 9259 12065 decode-named-character-reference: 1.2.0 9260 12066 devlop: 1.1.0 ··· 9337 12143 9338 12144 nlcst-to-string@4.0.0: 9339 12145 dependencies: 9340 - '@types/nlcst': 2.0.3 12146 + "@types/nlcst": 2.0.3 9341 12147 9342 12148 node-cleanup@2.1.2: {} 9343 12149 ··· 9479 12285 9480 12286 parse-latin@7.0.0: 9481 12287 dependencies: 9482 - '@types/nlcst': 2.0.3 9483 - '@types/unist': 3.0.3 12288 + "@types/nlcst": 2.0.3 12289 + "@types/unist": 3.0.3 9484 12290 nlcst-to-string: 4.0.0 9485 12291 unist-util-modify-children: 4.0.0 9486 12292 unist-util-visit-children: 3.0.0 ··· 9582 12388 9583 12389 pretty-format@29.7.0: 9584 12390 dependencies: 9585 - '@jest/schemas': 29.6.3 12391 + "@jest/schemas": 29.6.3 9586 12392 ansi-styles: 5.2.0 9587 12393 react-is: 18.3.1 9588 12394 ··· 9670 12476 9671 12477 react-error-boundary@6.0.0(react@18.3.1): 9672 12478 dependencies: 9673 - '@babel/runtime': 7.28.4 12479 + "@babel/runtime": 7.28.4 9674 12480 react: 18.3.1 9675 12481 9676 12482 react-hotkeys-hook@5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): ··· 9730 12536 9731 12537 rehype-parse@9.0.1: 9732 12538 dependencies: 9733 - '@types/hast': 3.0.4 12539 + "@types/hast": 3.0.4 9734 12540 hast-util-from-html: 2.0.3 9735 12541 unified: 11.0.5 9736 12542 9737 12543 rehype-raw@7.0.0: 9738 12544 dependencies: 9739 - '@types/hast': 3.0.4 12545 + "@types/hast": 3.0.4 9740 12546 hast-util-raw: 9.1.0 9741 12547 vfile: 6.0.3 9742 12548 9743 12549 rehype-stringify@10.0.1: 9744 12550 dependencies: 9745 - '@types/hast': 3.0.4 12551 + "@types/hast": 3.0.4 9746 12552 hast-util-to-html: 9.0.5 9747 12553 unified: 11.0.5 9748 12554 9749 12555 rehype@13.0.2: 9750 12556 dependencies: 9751 - '@types/hast': 3.0.4 12557 + "@types/hast": 3.0.4 9752 12558 rehype-parse: 9.0.1 9753 12559 rehype-stringify: 10.0.1 9754 12560 unified: 11.0.5 9755 12561 9756 12562 remark-gfm@4.0.1: 9757 12563 dependencies: 9758 - '@types/mdast': 4.0.4 12564 + "@types/mdast": 4.0.4 9759 12565 mdast-util-gfm: 3.1.0 9760 12566 micromark-extension-gfm: 3.0.0 9761 12567 remark-parse: 11.0.0 ··· 9766 12572 9767 12573 remark-parse@11.0.0: 9768 12574 dependencies: 9769 - '@types/mdast': 4.0.4 12575 + "@types/mdast": 4.0.4 9770 12576 mdast-util-from-markdown: 2.0.2 9771 12577 micromark-util-types: 2.0.2 9772 12578 unified: 11.0.5 ··· 9775 12581 9776 12582 remark-rehype@11.1.2: 9777 12583 dependencies: 9778 - '@types/hast': 3.0.4 9779 - '@types/mdast': 4.0.4 12584 + "@types/hast": 3.0.4 12585 + "@types/mdast": 4.0.4 9780 12586 mdast-util-to-hast: 13.2.0 9781 12587 unified: 11.0.5 9782 12588 vfile: 6.0.3 ··· 9790 12596 9791 12597 remark-stringify@11.0.0: 9792 12598 dependencies: 9793 - '@types/mdast': 4.0.4 12599 + "@types/mdast": 4.0.4 9794 12600 mdast-util-to-markdown: 2.1.2 9795 12601 unified: 11.0.5 9796 12602 ··· 9810 12616 9811 12617 retext-latin@4.0.0: 9812 12618 dependencies: 9813 - '@types/nlcst': 2.0.3 12619 + "@types/nlcst": 2.0.3 9814 12620 parse-latin: 7.0.0 9815 12621 unified: 11.0.5 9816 12622 9817 12623 retext-smartypants@6.2.0: 9818 12624 dependencies: 9819 - '@types/nlcst': 2.0.3 12625 + "@types/nlcst": 2.0.3 9820 12626 nlcst-to-string: 4.0.0 9821 12627 unist-util-visit: 5.0.0 9822 12628 9823 12629 retext-stringify@4.0.0: 9824 12630 dependencies: 9825 - '@types/nlcst': 2.0.3 12631 + "@types/nlcst": 2.0.3 9826 12632 nlcst-to-string: 4.0.0 9827 12633 unified: 11.0.5 9828 12634 9829 12635 retext@9.0.0: 9830 12636 dependencies: 9831 - '@types/nlcst': 2.0.3 12637 + "@types/nlcst": 2.0.3 9832 12638 retext-latin: 4.0.0 9833 12639 retext-stringify: 4.0.0 9834 12640 unified: 11.0.5 ··· 9842 12648 9843 12649 rollup@4.52.4: 9844 12650 dependencies: 9845 - '@types/estree': 1.0.8 12651 + "@types/estree": 1.0.8 9846 12652 optionalDependencies: 9847 - '@rollup/rollup-android-arm-eabi': 4.52.4 9848 - '@rollup/rollup-android-arm64': 4.52.4 9849 - '@rollup/rollup-darwin-arm64': 4.52.4 9850 - '@rollup/rollup-darwin-x64': 4.52.4 9851 - '@rollup/rollup-freebsd-arm64': 4.52.4 9852 - '@rollup/rollup-freebsd-x64': 4.52.4 9853 - '@rollup/rollup-linux-arm-gnueabihf': 4.52.4 9854 - '@rollup/rollup-linux-arm-musleabihf': 4.52.4 9855 - '@rollup/rollup-linux-arm64-gnu': 4.52.4 9856 - '@rollup/rollup-linux-arm64-musl': 4.52.4 9857 - '@rollup/rollup-linux-loong64-gnu': 4.52.4 9858 - '@rollup/rollup-linux-ppc64-gnu': 4.52.4 9859 - '@rollup/rollup-linux-riscv64-gnu': 4.52.4 9860 - '@rollup/rollup-linux-riscv64-musl': 4.52.4 9861 - '@rollup/rollup-linux-s390x-gnu': 4.52.4 9862 - '@rollup/rollup-linux-x64-gnu': 4.52.4 9863 - '@rollup/rollup-linux-x64-musl': 4.52.4 9864 - '@rollup/rollup-openharmony-arm64': 4.52.4 9865 - '@rollup/rollup-win32-arm64-msvc': 4.52.4 9866 - '@rollup/rollup-win32-ia32-msvc': 4.52.4 9867 - '@rollup/rollup-win32-x64-gnu': 4.52.4 9868 - '@rollup/rollup-win32-x64-msvc': 4.52.4 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 9869 12675 fsevents: 2.3.3 9870 12676 9871 12677 rtl-css-js@1.16.1: 9872 12678 dependencies: 9873 - '@babel/runtime': 7.28.4 12679 + "@babel/runtime": 7.28.4 9874 12680 9875 12681 run-parallel@1.2.0: 9876 12682 dependencies: ··· 9952 12758 9953 12759 sharp@0.34.4: 9954 12760 dependencies: 9955 - '@img/colour': 1.0.0 12761 + "@img/colour": 1.0.0 9956 12762 detect-libc: 2.1.1 9957 12763 semver: 7.7.2 9958 12764 optionalDependencies: 9959 - '@img/sharp-darwin-arm64': 0.34.4 9960 - '@img/sharp-darwin-x64': 0.34.4 9961 - '@img/sharp-libvips-darwin-arm64': 1.2.3 9962 - '@img/sharp-libvips-darwin-x64': 1.2.3 9963 - '@img/sharp-libvips-linux-arm': 1.2.3 9964 - '@img/sharp-libvips-linux-arm64': 1.2.3 9965 - '@img/sharp-libvips-linux-ppc64': 1.2.3 9966 - '@img/sharp-libvips-linux-s390x': 1.2.3 9967 - '@img/sharp-libvips-linux-x64': 1.2.3 9968 - '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 9969 - '@img/sharp-libvips-linuxmusl-x64': 1.2.3 9970 - '@img/sharp-linux-arm': 0.34.4 9971 - '@img/sharp-linux-arm64': 0.34.4 9972 - '@img/sharp-linux-ppc64': 0.34.4 9973 - '@img/sharp-linux-s390x': 0.34.4 9974 - '@img/sharp-linux-x64': 0.34.4 9975 - '@img/sharp-linuxmusl-arm64': 0.34.4 9976 - '@img/sharp-linuxmusl-x64': 0.34.4 9977 - '@img/sharp-wasm32': 0.34.4 9978 - '@img/sharp-win32-arm64': 0.34.4 9979 - '@img/sharp-win32-ia32': 0.34.4 9980 - '@img/sharp-win32-x64': 0.34.4 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 9981 12787 optional: true 9982 12788 9983 12789 shebang-command@2.0.0: ··· 9990 12796 9991 12797 shiki@3.13.0: 9992 12798 dependencies: 9993 - '@shikijs/core': 3.13.0 9994 - '@shikijs/engine-javascript': 3.13.0 9995 - '@shikijs/engine-oniguruma': 3.13.0 9996 - '@shikijs/langs': 3.13.0 9997 - '@shikijs/themes': 3.13.0 9998 - '@shikijs/types': 3.13.0 9999 - '@shikijs/vscode-textmate': 10.0.2 10000 - '@types/hast': 3.0.4 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 10001 12807 10002 12808 side-channel-list@1.0.0: 10003 12809 dependencies: ··· 10128 12934 10129 12935 swagger-ui-dist@5.29.3: 10130 12936 dependencies: 10131 - '@scarf/scarf': 1.4.0 12937 + "@scarf/scarf": 1.4.0 10132 12938 10133 12939 tabster@8.5.6: 10134 12940 dependencies: 10135 12941 keyborg: 2.6.0 10136 12942 tslib: 2.8.1 10137 12943 optionalDependencies: 10138 - '@rollup/rollup-linux-x64-gnu': 4.40.0 12944 + "@rollup/rollup-linux-x64-gnu": 4.40.0 10139 12945 10140 12946 tar@7.5.1: 10141 12947 dependencies: 10142 - '@isaacs/fs-minipass': 4.0.1 12948 + "@isaacs/fs-minipass": 4.0.1 10143 12949 chownr: 3.0.0 10144 12950 minipass: 7.1.2 10145 12951 minizlib: 3.1.0 ··· 10198 13004 10199 13005 ts-morph@24.0.0: 10200 13006 dependencies: 10201 - '@ts-morph/common': 0.25.0 13007 + "@ts-morph/common": 0.25.0 10202 13008 code-block-writer: 13.0.3 10203 13009 10204 13010 tsc-watch@7.2.0(typescript@5.9.3): ··· 10260 13066 10261 13067 unified@11.0.5: 10262 13068 dependencies: 10263 - '@types/unist': 3.0.3 13069 + "@types/unist": 3.0.3 10264 13070 bail: 2.0.2 10265 13071 devlop: 1.1.0 10266 13072 extend: 3.0.2 ··· 10276 13082 10277 13083 unist-util-find-after@5.0.0: 10278 13084 dependencies: 10279 - '@types/unist': 3.0.3 13085 + "@types/unist": 3.0.3 10280 13086 unist-util-is: 6.0.0 10281 13087 10282 13088 unist-util-is@6.0.0: 10283 13089 dependencies: 10284 - '@types/unist': 3.0.3 13090 + "@types/unist": 3.0.3 10285 13091 10286 13092 unist-util-modify-children@4.0.0: 10287 13093 dependencies: 10288 - '@types/unist': 3.0.3 13094 + "@types/unist": 3.0.3 10289 13095 array-iterate: 2.0.1 10290 13096 10291 13097 unist-util-position@5.0.0: 10292 13098 dependencies: 10293 - '@types/unist': 3.0.3 13099 + "@types/unist": 3.0.3 10294 13100 10295 13101 unist-util-remove-position@5.0.0: 10296 13102 dependencies: 10297 - '@types/unist': 3.0.3 13103 + "@types/unist": 3.0.3 10298 13104 unist-util-visit: 5.0.0 10299 13105 10300 13106 unist-util-stringify-position@4.0.0: 10301 13107 dependencies: 10302 - '@types/unist': 3.0.3 13108 + "@types/unist": 3.0.3 10303 13109 10304 13110 unist-util-visit-children@3.0.0: 10305 13111 dependencies: 10306 - '@types/unist': 3.0.3 13112 + "@types/unist": 3.0.3 10307 13113 10308 13114 unist-util-visit-parents@6.0.1: 10309 13115 dependencies: 10310 - '@types/unist': 3.0.3 13116 + "@types/unist": 3.0.3 10311 13117 unist-util-is: 6.0.0 10312 13118 10313 13119 unist-util-visit@5.0.0: 10314 13120 dependencies: 10315 - '@types/unist': 3.0.3 13121 + "@types/unist": 3.0.3 10316 13122 unist-util-is: 6.0.0 10317 13123 unist-util-visit-parents: 6.0.1 10318 13124 ··· 10360 13166 10361 13167 vfile-location@5.0.3: 10362 13168 dependencies: 10363 - '@types/unist': 3.0.3 13169 + "@types/unist": 3.0.3 10364 13170 vfile: 6.0.3 10365 13171 10366 13172 vfile-message@4.0.3: 10367 13173 dependencies: 10368 - '@types/unist': 3.0.3 13174 + "@types/unist": 3.0.3 10369 13175 unist-util-stringify-position: 4.0.0 10370 13176 10371 13177 vfile@6.0.3: 10372 13178 dependencies: 10373 - '@types/unist': 3.0.3 13179 + "@types/unist": 3.0.3 10374 13180 vfile-message: 4.0.3 10375 13181 10376 13182 vite-node@1.6.1(@types/node@20.19.19): ··· 10381 13187 picocolors: 1.1.1 10382 13188 vite: 5.4.20(@types/node@20.19.19) 10383 13189 transitivePeerDependencies: 10384 - - '@types/node' 13190 + - "@types/node" 10385 13191 - less 10386 13192 - lightningcss 10387 13193 - sass ··· 10397 13203 postcss: 8.5.6 10398 13204 rollup: 4.52.4 10399 13205 optionalDependencies: 10400 - '@types/node': 20.19.19 13206 + "@types/node": 20.19.19 10401 13207 fsevents: 2.3.3 10402 13208 10403 13209 vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1): ··· 10409 13215 rollup: 4.52.4 10410 13216 tinyglobby: 0.2.15 10411 13217 optionalDependencies: 10412 - '@types/node': 20.19.19 13218 + "@types/node": 20.19.19 10413 13219 fsevents: 2.3.3 10414 13220 yaml: 2.8.1 10415 13221 ··· 10419 13225 10420 13226 vitest@1.6.1(@types/node@20.19.19): 10421 13227 dependencies: 10422 - '@vitest/expect': 1.6.1 10423 - '@vitest/runner': 1.6.1 10424 - '@vitest/snapshot': 1.6.1 10425 - '@vitest/spy': 1.6.1 10426 - '@vitest/utils': 1.6.1 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 10427 13233 acorn-walk: 8.3.4 10428 13234 chai: 4.5.0 10429 13235 debug: 4.4.3 ··· 10440 13246 vite-node: 1.6.1(@types/node@20.19.19) 10441 13247 why-is-node-running: 2.3.0 10442 13248 optionalDependencies: 10443 - '@types/node': 20.19.19 13249 + "@types/node": 20.19.19 10444 13250 transitivePeerDependencies: 10445 13251 - less 10446 13252 - lightningcss