An experimental TypeSpec syntax for Lexicon

insane

+7833 -4968
+1 -1
.husky/pre-commit
··· 2 . "$(dirname -- "$0")/_/husky.sh" 3 4 # Run tests before commit 5 - npm run test -w @tylex/emitter
··· 2 . "$(dirname -- "$0")/_/husky.sh" 3 4 # Run tests before commit 5 + npm run test -w @typelex/emitter
+1 -1
CLAUDE.md
··· 1 you're working on a TypeSpec emitter for atproto lexicons. you have these commands: `pnpm run build` builds the example (you can inspect the generated lexicons in the `packages/example/lexicon`) and `pnpm test` runs tests (they are in `packages/emitter/test/`). 2 3 - what i want you to do is to gradually keep adding features to tylex so that in the end it's possible to express all Lexicon code with that language. you have the following resources: 4 5 - read `SYNTAX.md`!!! it's the main guideline 6
··· 1 you're working on a TypeSpec emitter for atproto lexicons. you have these commands: `pnpm run build` builds the example (you can inspect the generated lexicons in the `packages/example/lexicon`) and `pnpm test` runs tests (they are in `packages/emitter/test/`). 2 3 + what i want you to do is to gradually keep adding features to typelex so that in the end it's possible to express all Lexicon code with that language. you have the following resources: 4 5 - read `SYNTAX.md`!!! it's the main guideline 6
+2 -2
DOCS.md
··· 1 # TypeSpec to Lexicon Reference 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. 4 5 ## Quick Start 6 7 Every TypeSpec file starts with an import and namespace: 8 9 ```typescript 10 - import "@tylex/emitter"; 11 12 /** Common definitions used by other lexicons */ 13 namespace com.example.defs {
··· 1 # TypeSpec to Lexicon Reference 2 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 5 ## Quick Start 6 7 Every TypeSpec file starts with an import and namespace: 8 9 ```typescript 10 + import "@typelex/emitter"; 11 12 /** Common definitions used by other lexicons */ 13 namespace com.example.defs {
+1 -1
LICENSE
··· 1 MIT License 2 3 - Copyright (c) 2024 tylex Contributors 4 5 Permission is hereby granted, free of charge, to any person obtaining a copy 6 of this software and associated documentation files (the "Software"), to deal
··· 1 MIT License 2 3 + Copyright (c) 2024 typelex Contributors 4 5 Permission is hereby granted, free of charge, to any person obtaining a copy 6 of this software and associated documentation files (the "Software"), to deal
+10 -10
README.md
··· 1 - # tylex 2 3 > TypeSpec-based IDL for ATProto Lexicons 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. 6 7 ## Features 8 ··· 17 # Install TypeSpec compiler 18 npm install -g @typespec/compiler 19 20 - # Install tylex emitter 21 - npm install --save-dev @tylex/emitter 22 ``` 23 24 Create a `main.tsp` file: ··· 43 44 ```yaml 45 emit: 46 - - "@tylex/emitter" 47 options: 48 - "@tylex/emitter": 49 output-dir: "./lexicons" 50 ``` 51 ··· 57 58 ## Output 59 60 - tylex generates standard ATProto lexicon files: 61 62 ```json 63 { ··· 102 103 ```bash 104 # Clone the repository 105 - git clone https://github.com/yourusername/tylex.git 106 - cd tylex 107 108 # Build the emitter 109 pnpm install ··· 115 116 ## Current Status 117 118 - ⚠️ **Early Development** - tylex currently supports basic record types. Support for queries, procedures, and subscriptions is coming soon. 119 120 ### Supported 121
··· 1 + # typelex 2 3 > TypeSpec-based IDL for ATProto Lexicons 4 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 7 ## Features 8 ··· 17 # Install TypeSpec compiler 18 npm install -g @typespec/compiler 19 20 + # Install typelex emitter 21 + npm install --save-dev @typelex/emitter 22 ``` 23 24 Create a `main.tsp` file: ··· 43 44 ```yaml 45 emit: 46 + - "@typelex/emitter" 47 options: 48 + "@typelex/emitter": 49 output-dir: "./lexicons" 50 ``` 51 ··· 57 58 ## Output 59 60 + typelex generates standard ATProto lexicon files: 61 62 ```json 63 { ··· 102 103 ```bash 104 # Clone the repository 105 + git clone https://github.com/yourusername/typelex.git 106 + cd typelex 107 108 # Build the emitter 109 pnpm install ··· 115 116 ## Current Status 117 118 + ⚠️ **Early Development** - typelex currently supports basic record types. Support for queries, procedures, and subscriptions is coming soon. 119 120 ### Supported 121
+6 -6
package.json
··· 1 { 2 - "name": "tylex-monorepo", 3 "version": "0.1.0", 4 "private": true, 5 "description": "TypeSpec-based IDL for ATProto Lexicons", 6 "scripts": { 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", 12 "validate": "pnpm build && pnpm run validate-lexicons && pnpm test", 13 "validate-lexicons": "node scripts/validate-lexicons.js" 14 }, 15 "repository": { 16 "type": "git", 17 - "url": "https://github.com/yourusername/tylex.git" 18 }, 19 "keywords": [ 20 "typespec",
··· 1 { 2 + "name": "typelex-monorepo", 3 "version": "0.1.0", 4 "private": true, 5 "description": "TypeSpec-based IDL for ATProto Lexicons", 6 "scripts": { 7 "build": "pnpm -r build", 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 "validate": "pnpm build && pnpm run validate-lexicons && pnpm test", 13 "validate-lexicons": "node scripts/validate-lexicons.js" 14 }, 15 "repository": { 16 "type": "git", 17 + "url": "https://github.com/yourusername/typelex.git" 18 }, 19 "keywords": [ 20 "typespec",
+4 -4
packages/emitter/README.md
··· 1 - # @tylex/emitter 2 3 TypeSpec emitter for generating ATProto Lexicon definitions. 4 5 ## Installation 6 7 ```bash 8 - npm install @tylex/emitter 9 ``` 10 11 ## Usage ··· 15 ```yaml 16 # tspconfig.yaml 17 emit: 18 - - "@tylex/emitter" 19 options: 20 - "@tylex/emitter": 21 output-dir: "./lexicons" 22 ``` 23
··· 1 + # @typelex/emitter 2 3 TypeSpec emitter for generating ATProto Lexicon definitions. 4 5 ## Installation 6 7 ```bash 8 + npm install @typelex/emitter 9 ``` 10 11 ## Usage ··· 15 ```yaml 16 # tspconfig.yaml 17 emit: 18 + - "@typelex/emitter" 19 options: 20 + "@typelex/emitter": 21 output-dir: "./lexicons" 22 ``` 23
+2 -2
packages/emitter/lib/private.decorators.tsp
··· 1 import "../dist/tsp-index.js"; 2 3 /** 4 - * Private decorators for internal use by the Tylex emitter. 5 * These are not intended for direct use in user code. 6 */ 7 - namespace Tylex.Private;
··· 1 import "../dist/tsp-index.js"; 2 3 /** 4 + * Private decorators for internal use by the Typelex emitter. 5 * These are not intended for direct use in user code. 6 */ 7 + namespace Typelex.Private;
+2 -2
packages/emitter/package-lock.json
··· 1 { 2 - "name": "@tylex/emitter", 3 "version": "0.1.0", 4 "lockfileVersion": 3, 5 "requires": true, 6 "packages": { 7 "": { 8 - "name": "@tylex/emitter", 9 "version": "0.1.0", 10 "license": "MIT", 11 "dependencies": {
··· 1 { 2 + "name": "@typelex/emitter", 3 "version": "0.1.0", 4 "lockfileVersion": 3, 5 "requires": true, 6 "packages": { 7 "": { 8 + "name": "@typelex/emitter", 9 "version": "0.1.0", 10 "license": "MIT", 11 "dependencies": {
+1 -1
packages/emitter/package.json
··· 1 { 2 - "name": "@tylex/emitter", 3 "version": "0.1.0", 4 "description": "TypeSpec emitter for ATProto Lexicon definitions", 5 "main": "dist/index.js",
··· 1 { 2 + "name": "@typelex/emitter", 3 "version": "0.1.0", 4 "description": "TypeSpec emitter for ATProto Lexicon definitions", 5 "main": "dist/index.js",
+1 -1
packages/emitter/src/emitter.ts
··· 90 atIdentifier: "at-identifier", 91 }; 92 93 - export class TylexEmitter { 94 private lexicons = new Map<string, LexiconDoc>(); 95 private currentLexiconId: string | null = null; 96
··· 90 atIdentifier: "at-identifier", 91 }; 92 93 + export class TypelexEmitter { 94 private lexicons = new Map<string, LexiconDoc>(); 95 private currentLexiconId: string | null = null; 96
+4 -4
packages/emitter/src/index.ts
··· 1 import type { EmitContext } from "@typespec/compiler"; 2 - import { TylexEmitter } from "./emitter.js"; 3 4 - export interface TylexEmitterOptions { 5 "output-dir"?: string; 6 } 7 8 - export async function $onEmit(context: EmitContext<TylexEmitterOptions>) { 9 // Use custom output-dir from options if provided, otherwise use emitterOutputDir 10 const outputDir = context.options["output-dir"] || context.emitterOutputDir; 11 12 - const emitter = new TylexEmitter(context.program, { 13 outputDir, 14 }); 15
··· 1 import type { EmitContext } from "@typespec/compiler"; 2 + import { TypelexEmitter } from "./emitter.js"; 3 4 + export interface TypelexEmitterOptions { 5 "output-dir"?: string; 6 } 7 8 + export async function $onEmit(context: EmitContext<TypelexEmitterOptions>) { 9 // Use custom output-dir from options if provided, otherwise use emitterOutputDir 10 const outputDir = context.options["output-dir"] || context.emitterOutputDir; 11 12 + const emitter = new TypelexEmitter(context.program, { 13 outputDir, 14 }); 15
+11 -11
packages/emitter/test/integration.test.ts
··· 18 const pkgRoot = await findTestPackageRoot(import.meta.url); 19 const TESTS_DIR = resolvePath(pkgRoot, "test/integration"); 20 21 - const TylexTestLibrary: TypeSpecTestLibrary = { 22 - name: "@tylex/emitter", 23 packageRoot: await findTestPackageRoot(import.meta.url), 24 files: [ 25 { 26 realDir: "", 27 pattern: "package.json", 28 - virtualPath: "./node_modules/@tylex/emitter", 29 }, 30 { 31 realDir: "dist", 32 pattern: "**/*.js", 33 - virtualPath: "./node_modules/@tylex/emitter/dist", 34 }, 35 { 36 realDir: "lib/", 37 pattern: "*.tsp", 38 - virtualPath: "./node_modules/@tylex/emitter/lib", 39 }, 40 ], 41 }; ··· 63 if (tspFiles.length > 0) { 64 // Create a virtual main.tsp that imports all other files 65 const mainContent = 66 - 'import "@tylex/emitter";\n' + 67 tspFiles.map((f) => `import "./${f}";`).join("\n"); 68 const filesWithMain = { ...inputFiles, "main.tsp": mainContent }; 69 emitResult = await doEmit(filesWithMain, "main.tsp"); ··· 124 const baseOutputPath = resolveVirtualPath("test-output/"); 125 126 const host = await createTestHost({ 127 - libraries: [TylexTestLibrary], 128 }); 129 130 for (const [fileName, content] of Object.entries(files)) { ··· 134 const [, diagnostics] = await host.compileAndDiagnose(entryPoint, { 135 outputDir: baseOutputPath, 136 noEmit: false, 137 - emit: ["@tylex/emitter"], 138 }); 139 140 const outputFiles = Object.fromEntries( ··· 142 .filter(([name]) => name.startsWith(baseOutputPath)) 143 .map(([name, value]) => { 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/", ""); 148 } 149 return [relativePath, value]; 150 }),
··· 18 const pkgRoot = await findTestPackageRoot(import.meta.url); 19 const TESTS_DIR = resolvePath(pkgRoot, "test/integration"); 20 21 + const TypelexTestLibrary: TypeSpecTestLibrary = { 22 + name: "@typelex/emitter", 23 packageRoot: await findTestPackageRoot(import.meta.url), 24 files: [ 25 { 26 realDir: "", 27 pattern: "package.json", 28 + virtualPath: "./node_modules/@typelex/emitter", 29 }, 30 { 31 realDir: "dist", 32 pattern: "**/*.js", 33 + virtualPath: "./node_modules/@typelex/emitter/dist", 34 }, 35 { 36 realDir: "lib/", 37 pattern: "*.tsp", 38 + virtualPath: "./node_modules/@typelex/emitter/lib", 39 }, 40 ], 41 }; ··· 63 if (tspFiles.length > 0) { 64 // Create a virtual main.tsp that imports all other files 65 const mainContent = 66 + 'import "@typelex/emitter";\n' + 67 tspFiles.map((f) => `import "./${f}";`).join("\n"); 68 const filesWithMain = { ...inputFiles, "main.tsp": mainContent }; 69 emitResult = await doEmit(filesWithMain, "main.tsp"); ··· 124 const baseOutputPath = resolveVirtualPath("test-output/"); 125 126 const host = await createTestHost({ 127 + libraries: [TypelexTestLibrary], 128 }); 129 130 for (const [fileName, content] of Object.entries(files)) { ··· 134 const [, diagnostics] = await host.compileAndDiagnose(entryPoint, { 135 outputDir: baseOutputPath, 136 noEmit: false, 137 + emit: ["@typelex/emitter"], 138 }); 139 140 const outputFiles = Object.fromEntries( ··· 142 .filter(([name]) => name.startsWith(baseOutputPath)) 143 .map(([name, value]) => { 144 let relativePath = name.replace(baseOutputPath, ""); 145 + // Strip the @typelex/emitter/ prefix if present 146 + if (relativePath.startsWith("@typelex/emitter/")) { 147 + relativePath = relativePath.replace("@typelex/emitter/", ""); 148 } 149 return [relativePath, value]; 150 }),
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.actor.defs { 4 model ProfileViewBasic {
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.defs { 4 model ProfileViewBasic {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/getPreferences.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.actor.getPreferences { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.getPreferences { 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"; 2 3 namespace app.bsky.actor.getProfile { 4 @doc("Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.getProfile { 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"; 2 3 namespace app.bsky.actor.getProfiles { 4 @doc("Get detailed profile views of multiple actors.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.getProfiles { 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"; 2 3 namespace app.bsky.actor.getSuggestions { 4 @doc("Get a list of suggested actors. Expected use is discovery of accounts to follow during new account onboarding.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.getSuggestions { 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"; 2 3 namespace app.bsky.actor.profile { 4 @rec("literal:self")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.profile { 4 @rec("literal:self")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/actor/putPreferences.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.actor.putPreferences { 4 @doc("Set the private preferences attached to the account.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.putPreferences { 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"; 2 3 namespace app.bsky.actor.searchActors { 4 @doc("Find actors (profiles) matching search criteria. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.searchActors { 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"; 2 3 namespace app.bsky.actor.searchActorsTypeahead { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.searchActorsTypeahead { 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"; 2 3 namespace app.bsky.actor.status { 4 @doc("A declaration of a Bluesky account status.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.actor.status { 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"; 2 3 namespace app.bsky.bookmark.createBookmark { 4 @doc("Creates a private bookmark for the specified record. Currently, only `app.bsky.feed.post` records are supported. Requires authentication.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.bookmark.createBookmark { 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"; 2 3 namespace app.bsky.bookmark.defs { 4 @doc("Object used to store bookmark data in stash.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.bookmark.defs { 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"; 2 3 namespace app.bsky.bookmark.deleteBookmark { 4 @doc("Deletes a private bookmark for the specified record. Currently, only `app.bsky.feed.post` records are supported. Requires authentication.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.bookmark.deleteBookmark { 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"; 2 3 namespace app.bsky.bookmark.getBookmarks { 4 @doc("Gets views of records bookmarked by the authenticated user. Requires authentication.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.bookmark.getBookmarks { 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"; 2 3 namespace app.bsky.embed.defs { 4 // Description goes on the model for defs, unlike standalone lexicons where it goes at lexicon level
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.embed.defs { 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"; 2 3 namespace app.bsky.embed.external { 4 @doc("A representation of some externally linked content (eg, a URL and 'card'), embedded in a Bluesky record (eg, a post).")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.embed.external { 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"; 2 3 @doc("A set of images embedded in a Bluesky record (eg, a post).") 4 namespace app.bsky.embed.images {
··· 1 + import "@typelex/emitter"; 2 3 @doc("A set of images embedded in a Bluesky record (eg, a post).") 4 namespace app.bsky.embed.images {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/record.tsp
··· 1 - import "@tylex/emitter"; 2 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 namespace app.bsky.embed.`record` {
··· 1 + import "@typelex/emitter"; 2 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 namespace app.bsky.embed.`record` {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/recordWithMedia.tsp
··· 1 - import "@tylex/emitter"; 2 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 namespace app.bsky.embed.recordWithMedia {
··· 1 + import "@typelex/emitter"; 2 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 namespace app.bsky.embed.recordWithMedia {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/embed/video.tsp
··· 1 - import "@tylex/emitter"; 2 3 @doc("A video embedded in a Bluesky record (eg, a post).") 4 namespace app.bsky.embed.video {
··· 1 + import "@typelex/emitter"; 2 3 @doc("A video embedded in a Bluesky record (eg, a post).") 4 namespace app.bsky.embed.video {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.defs { 4 model PostView {
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.defs { 4 model PostView {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/describeFeedGenerator.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.describeFeedGenerator { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.describeFeedGenerator { 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"; 2 3 namespace app.bsky.feed.generator { 4 @doc("Record declaring of the existence of a feed generator, and containing metadata about it. The record can exist in any repository.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.generator { 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"; 2 3 namespace app.bsky.feed.getActorFeeds { 4 @doc("Get a list of feeds (feed generator records) created by the actor (in the actor's repo).")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getActorFeeds { 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"; 2 3 namespace app.bsky.feed.getActorLikes { 4 model BlockedActor {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getActorLikes { 4 model BlockedActor {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getAuthorFeed.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.getAuthorFeed { 4 model BlockedActor {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getAuthorFeed { 4 model BlockedActor {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getFeed.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.getFeed { 4 model UnknownFeed {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getFeed { 4 model UnknownFeed {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getFeedGenerator.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.getFeedGenerator { 4 @doc("Get information about a feed generator. Implemented by AppView.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getFeedGenerator { 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"; 2 3 namespace app.bsky.feed.getFeedGenerators { 4 @doc("Get information about a list of feed generators.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getFeedGenerators { 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"; 2 3 namespace app.bsky.feed.getFeedSkeleton { 4 model UnknownFeed {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getFeedSkeleton { 4 model UnknownFeed {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getLikes.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.getLikes { 4 @doc("Get like records which reference a subject (by AT-URI and CID).")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getLikes { 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"; 2 3 namespace app.bsky.feed.getListFeed { 4 model UnknownList {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getListFeed { 4 model UnknownList {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getPostThread.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.getPostThread { 4 model NotFound {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getPostThread { 4 model NotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/getPosts.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.getPosts { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getPosts { 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"; 2 3 namespace app.bsky.feed.getQuotes { 4 @doc("Get a list of quotes for a given post.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getQuotes { 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"; 2 3 namespace app.bsky.feed.getRepostedBy { 4 @doc("Get a list of reposts for a given post.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getRepostedBy { 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"; 2 3 namespace app.bsky.feed.getSuggestedFeeds { 4 @doc("Get a list of suggested feeds (feed generators) for the requesting account.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getSuggestedFeeds { 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"; 2 3 namespace app.bsky.feed.getTimeline { 4 @doc("Get a view of the requesting account's home timeline. This is expected to be some form of reverse-chronological feed.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.getTimeline { 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"; 2 3 namespace app.bsky.feed.like { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.like { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/post.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.post { 4 @doc("Record containing a Bluesky post.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.post { 4 @doc("Record containing a Bluesky post.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/postgate.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.postgate { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.postgate { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/repost.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.repost { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.repost { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/searchPosts.tsp
··· 1 - import "@tylex/emitter"; 2 3 @maxLength(640) 4 @maxGraphemes(64)
··· 1 + import "@typelex/emitter"; 2 3 @maxLength(640) 4 @maxGraphemes(64)
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/feed/sendInteractions.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.feed.sendInteractions { 4 @doc("Send information about interactions with feed items back to the feed generator that served them.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.sendInteractions { 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"; 2 3 namespace app.bsky.feed.threadgate { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.feed.threadgate { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/block.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.graph.block { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.block { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.graph.defs { 4 model ListViewBasic {
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.defs { 4 model ListViewBasic {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/follow.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.graph.follow { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.follow { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/getActorStarterPacks.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.graph.getActorStarterPacks { 4 @doc("Get a list of starter packs created by the actor.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getActorStarterPacks { 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"; 2 3 namespace app.bsky.graph.getBlocks { 4 @doc("Enumerates which accounts the requesting account is currently blocking. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getBlocks { 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"; 2 3 namespace app.bsky.graph.getFollowers { 4 @doc("Enumerates accounts which follow a specified account (actor).")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getFollowers { 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"; 2 3 namespace app.bsky.graph.getFollows { 4 @doc("Enumerates accounts which a specified account (actor) follows.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getFollows { 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"; 2 3 namespace app.bsky.graph.getKnownFollowers { 4 @doc("Enumerates accounts which follow a specified account (actor) and are followed by the viewer.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getKnownFollowers { 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"; 2 3 namespace app.bsky.graph.getList { 4 @doc("Gets a 'view' (with additional context) of a specified list.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getList { 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"; 2 3 namespace app.bsky.graph.getListBlocks { 4 @doc("Get mod lists that the requesting account (actor) is blocking. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getListBlocks { 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"; 2 3 namespace app.bsky.graph.getListMutes { 4 @doc("Enumerates mod lists that the requesting account (actor) currently has muted. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getListMutes { 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"; 2 3 namespace app.bsky.graph.getLists { 4 @doc("Enumerates the lists created by a specified account (actor).")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getLists { 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"; 2 3 namespace app.bsky.graph.getListsWithMembership { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getListsWithMembership { 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"; 2 3 namespace app.bsky.graph.getMutes { 4 @doc("Enumerates accounts that the requesting account (actor) currently has muted. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getMutes { 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"; 2 3 namespace app.bsky.graph.getRelationships { 4 @doc("Enumerates public relationships between one account, and a list of other accounts. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getRelationships { 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"; 2 3 namespace app.bsky.graph.getStarterPack { 4 @doc("Gets a view of a starter pack.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getStarterPack { 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"; 2 3 namespace app.bsky.graph.getStarterPacks { 4 @doc("Get views for a list of starter packs.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getStarterPacks { 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"; 2 3 namespace app.bsky.graph.getStarterPacksWithMembership { 4 @doc("Enumerates the starter packs created by the session user, and includes membership information about `actor` in those starter packs. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getStarterPacksWithMembership { 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"; 2 3 namespace app.bsky.graph.getSuggestedFollowsByActor { 4 @doc("Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.getSuggestedFollowsByActor { 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"; 2 3 namespace app.bsky.graph.list { 4 @doc("Record representing a list of accounts (actors). Scope includes both moderation-oriented lists and curration-oriented lists.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.list { 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"; 2 3 namespace app.bsky.graph.listblock { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.listblock { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/listitem.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.graph.listitem { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.listitem { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/muteActor.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.graph.muteActor { 4 @doc("Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.muteActor { 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"; 2 3 namespace app.bsky.graph.muteActorList { 4 @doc("Creates a mute relationship for the specified list of accounts. Mutes are private in Bluesky. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.muteActorList { 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"; 2 3 namespace app.bsky.graph.muteThread { 4 @doc("Mutes a thread preventing notifications from the thread and any of its children. Mutes are private in Bluesky. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.muteThread { 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"; 2 3 namespace app.bsky.graph.searchStarterPacks { 4 @doc("Find starter packs matching search criteria. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.searchStarterPacks { 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"; 2 3 namespace app.bsky.graph.starterpack { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.starterpack { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/graph/unmuteActor.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.graph.unmuteActor { 4 @doc("Unmutes the specified account. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.unmuteActor { 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"; 2 3 namespace app.bsky.graph.unmuteActorList { 4 @doc("Unmutes the specified list of accounts. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.unmuteActorList { 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"; 2 3 namespace app.bsky.graph.unmuteThread { 4 @doc("Unmutes the specified thread. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.unmuteThread { 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"; 2 3 namespace app.bsky.graph.verification { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.graph.verification { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/labeler/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.labeler.defs { 4 model LabelerView {
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.labeler.defs { 4 model LabelerView {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/labeler/getServices.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.labeler.getServices { 4 @doc("Get information about a list of labeler services.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.labeler.getServices { 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"; 2 3 namespace app.bsky.labeler.service { 4 @doc("A declaration of the existence of labeler service.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.labeler.service { 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"; 2 3 namespace app.bsky.notification.declaration { 4 @rec("literal:self")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.declaration { 4 @rec("literal:self")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.notification.defs { 4 model RecordDeleted {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.defs { 4 model RecordDeleted {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/getPreferences.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.notification.getPreferences { 4 @doc("Get notification-related preferences for an account. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.getPreferences { 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"; 2 3 namespace app.bsky.notification.getUnreadCount { 4 @doc("Count the number of unread notifications for the requesting account. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.getUnreadCount { 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"; 2 3 namespace app.bsky.notification.listActivitySubscriptions { 4 @doc("Enumerate all accounts to which the requesting account is subscribed to receive notifications for. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.listActivitySubscriptions { 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"; 2 3 @doc("A reason that matches the reason property of #notification.") 4 scalar ReasonString extends string;
··· 1 + import "@typelex/emitter"; 2 3 @doc("A reason that matches the reason property of #notification.") 4 scalar ReasonString extends string;
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/notification/putActivitySubscription.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.notification.putActivitySubscription { 4 @doc("Puts an activity subscription entry. The key should be omitted for creation and provided for updates. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.putActivitySubscription { 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"; 2 3 namespace app.bsky.notification.putPreferences { 4 @doc("Set notification-related preferences for an account. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.putPreferences { 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"; 2 3 namespace app.bsky.notification.putPreferencesV2 { 4 @doc("Set notification-related preferences for an account. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.putPreferencesV2 { 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"; 2 3 namespace app.bsky.notification.registerPush { 4 @doc("Register to receive push notifications, via a specified service, for the requesting account. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.registerPush { 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"; 2 3 namespace app.bsky.notification.unregisterPush { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.unregisterPush { 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"; 2 3 namespace app.bsky.notification.updateSeen { 4 @doc("Notify server that the requesting account has seen notifications. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.notification.updateSeen { 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"; 2 3 namespace app.bsky.richtext.facet { 4 @doc("Annotation of a sub-string within rich text.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.richtext.facet { 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"; 2 3 namespace app.bsky.unspecced.defs { 4 model SkeletonSearchPost {
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.defs { 4 model SkeletonSearchPost {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getAgeAssuranceState.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.unspecced.getAgeAssuranceState { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getAgeAssuranceState { 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"; 2 3 namespace app.bsky.unspecced.getConfig { 4 @doc("Get miscellaneous runtime configuration.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getConfig { 4 @doc("Get miscellaneous runtime configuration.")
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/getOnboardingSuggestedStarterPacks.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.unspecced.getOnboardingSuggestedStarterPacks { 4 @doc("Get a list of suggested starterpacks for onboarding")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getOnboardingSuggestedStarterPacks { 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"; 2 3 namespace app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton { 4 @doc("Get a skeleton of suggested starterpacks for onboarding. Intended to be called and hydrated by app.bsky.unspecced.getOnboardingSuggestedStarterPacks")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getOnboardingSuggestedStarterPacksSkeleton { 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"; 2 3 namespace app.bsky.unspecced.getPopularFeedGenerators { 4 @doc("An unspecced view of globally popular feed generators.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getPopularFeedGenerators { 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"; 2 3 namespace app.bsky.unspecced.getPostThreadOtherV2 { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getPostThreadOtherV2 { 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"; 2 3 namespace app.bsky.unspecced.getPostThreadV2 { 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 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getPostThreadV2 { 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"; 2 3 namespace app.bsky.unspecced.getSuggestedFeeds { 4 @doc("Get a list of suggested feeds")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getSuggestedFeeds { 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"; 2 3 namespace app.bsky.unspecced.getSuggestedFeedsSkeleton { 4 @doc("Get a skeleton of suggested feeds. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedFeeds")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getSuggestedFeedsSkeleton { 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"; 2 3 namespace app.bsky.unspecced.getSuggestedStarterPacks { 4 @doc("Get a list of suggested starterpacks")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getSuggestedStarterPacks { 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"; 2 3 namespace app.bsky.unspecced.getSuggestedStarterPacksSkeleton { 4 @doc("Get a skeleton of suggested starterpacks. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedStarterpacks")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getSuggestedStarterPacksSkeleton { 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"; 2 3 namespace app.bsky.unspecced.getSuggestedUsers { 4 @doc("Get a list of suggested users")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getSuggestedUsers { 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"; 2 3 namespace app.bsky.unspecced.getSuggestedUsersSkeleton { 4 @doc("Get a skeleton of suggested users. Intended to be called and hydrated by app.bsky.unspecced.getSuggestedUsers")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getSuggestedUsersSkeleton { 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"; 2 3 namespace app.bsky.unspecced.getSuggestionsSkeleton { 4 @doc("Get a skeleton of suggested actors. Intended to be called and then hydrated through app.bsky.actor.getSuggestions")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getSuggestionsSkeleton { 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"; 2 3 namespace app.bsky.unspecced.getTaggedSuggestions { 4 @doc("Get a list of suggestions (feeds and users) tagged with categories")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getTaggedSuggestions { 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"; 2 3 namespace app.bsky.unspecced.getTrendingTopics { 4 @doc("Get a list of trending topics")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getTrendingTopics { 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"; 2 3 namespace app.bsky.unspecced.getTrends { 4 @doc("Get the current trends on the network")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getTrends { 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"; 2 3 namespace app.bsky.unspecced.getTrendsSkeleton { 4 @doc("Get the skeleton of trends on the network. Intended to be called and then hydrated through app.bsky.unspecced.getTrends")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.getTrendsSkeleton { 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"; 2 3 namespace app.bsky.unspecced.initAgeAssurance { 4 model InvalidEmail {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.initAgeAssurance { 4 model InvalidEmail {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/searchActorsSkeleton.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.unspecced.searchActorsSkeleton { 4 model BadQueryString {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.searchActorsSkeleton { 4 model BadQueryString {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/searchPostsSkeleton.tsp
··· 1 - import "@tylex/emitter"; 2 3 @maxLength(640) 4 @maxGraphemes(64)
··· 1 + import "@typelex/emitter"; 2 3 @maxLength(640) 4 @maxGraphemes(64)
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/unspecced/searchStarterPacksSkeleton.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.unspecced.searchStarterPacksSkeleton { 4 model BadQueryString {}
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.unspecced.searchStarterPacksSkeleton { 4 model BadQueryString {}
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/video/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.video.defs { 4 model JobStatus {
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.video.defs { 4 model JobStatus {
+1 -1
packages/emitter/test/integration/atproto/input/app/bsky/video/getJobStatus.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace app.bsky.video.getJobStatus { 4 @doc("Get status details for a video processing job.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.video.getJobStatus { 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"; 2 3 namespace app.bsky.video.getUploadLimits { 4 @doc("Get video upload limits for the authenticated user.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.video.getUploadLimits { 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"; 2 3 namespace app.bsky.video.uploadVideo { 4 @doc("Upload a video to be processed then stored on the PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace app.bsky.video.uploadVideo { 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"; 2 3 namespace chat.bsky.actor.declaration { 4 @rec("literal:self")
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.actor.declaration { 4 @rec("literal:self")
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/actor/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.actor.defs { 4 model ProfileViewBasic {
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.actor.defs { 4 model ProfileViewBasic {
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/actor/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.actor.deleteAccount { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.actor.deleteAccount { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/actor/exportAccountData.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.actor.exportAccountData { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.actor.exportAccountData { 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/acceptConvo.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.acceptConvo { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.acceptConvo { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/addReaction.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.addReaction { 4 @doc("Indicates that the message has been deleted and reactions can no longer be added/removed.")
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.addReaction { 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"; 2 3 namespace chat.bsky.convo.defs { 4 model MessageRef {
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.defs { 4 model MessageRef {
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/deleteMessageForSelf.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.deleteMessageForSelf { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.deleteMessageForSelf { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getConvo.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.getConvo { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.getConvo { 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getConvoAvailability.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.getConvoAvailability { 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 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.getConvoAvailability { 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"; 2 3 namespace chat.bsky.convo.getConvoForMembers { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.getConvoForMembers { 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getLog.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.getLog { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.getLog { 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/getMessages.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.getMessages { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.getMessages { 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/leaveConvo.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.leaveConvo { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.leaveConvo { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/listConvos.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.listConvos { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.listConvos { 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/muteConvo.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.muteConvo { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.muteConvo { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/removeReaction.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.removeReaction { 4 @doc("Indicates that the message has been deleted and reactions can no longer be added/removed.")
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.removeReaction { 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"; 2 3 namespace chat.bsky.convo.sendMessage { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.sendMessage { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/sendMessageBatch.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.sendMessageBatch { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.sendMessageBatch { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/unmuteConvo.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.unmuteConvo { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.unmuteConvo { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/updateAllRead.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.updateAllRead { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.updateAllRead { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/convo/updateRead.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.convo.updateRead { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.convo.updateRead { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/moderation/getActorMetadata.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.moderation.getActorMetadata { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.moderation.getActorMetadata { 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/moderation/getMessageContext.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.moderation.getMessageContext { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.moderation.getMessageContext { 4 @query
+1 -1
packages/emitter/test/integration/atproto/input/chat/bsky/moderation/updateActorAccess.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace chat.bsky.moderation.updateActorAccess { 4 @procedure
··· 1 + import "@typelex/emitter"; 2 3 namespace chat.bsky.moderation.updateActorAccess { 4 @procedure
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.admin.defs { 4 model StatusAttr {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.defs { 4 model StatusAttr {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.admin.deleteAccount { 4 @doc("Delete a user account as an administrator.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.deleteAccount { 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"; 2 3 namespace com.atproto.admin.disableAccountInvites { 4 @doc("Disable an account from receiving new invite codes, but does not invalidate existing codes.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.disableAccountInvites { 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"; 2 3 namespace com.atproto.admin.disableInviteCodes { 4 @doc("Disable some set of codes and/or all codes associated with a set of users.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.disableInviteCodes { 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"; 2 3 namespace com.atproto.admin.enableAccountInvites { 4 @doc("Re-enable an account's ability to receive invite codes.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.enableAccountInvites { 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"; 2 3 namespace com.atproto.admin.getAccountInfo { 4 @doc("Get details about an account.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.getAccountInfo { 4 @doc("Get details about an account.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/getAccountInfos.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.admin.getAccountInfos { 4 @doc("Get details about some accounts.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.getAccountInfos { 4 @doc("Get details about some accounts.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/admin/getInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.admin.getInviteCodes { 4 @doc("Get an admin view of invite codes.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.getInviteCodes { 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"; 2 3 namespace com.atproto.admin.getSubjectStatus { 4 @doc("Get the service-specific admin status of a subject (account, record, or blob).")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.getSubjectStatus { 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"; 2 3 namespace com.atproto.admin.searchAccounts { 4 @doc("Get list of accounts that matches your search query.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.searchAccounts { 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"; 2 3 namespace com.atproto.admin.sendEmail { 4 @doc("Send email to a user's account email address.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.sendEmail { 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"; 2 3 namespace com.atproto.admin.updateAccountEmail { 4 @doc("Administrative action to update an account's email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateAccountEmail { 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"; 2 3 namespace com.atproto.admin.updateAccountHandle { 4 @doc("Administrative action to update an account's handle.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateAccountHandle { 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"; 2 3 namespace com.atproto.admin.updateAccountPassword { 4 @doc("Update the password for a user account as an administrator.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateAccountPassword { 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"; 2 3 namespace com.atproto.admin.updateAccountSigningKey { 4 @doc("Administrative action to update an account's signing key in their Did document.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateAccountSigningKey { 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"; 2 3 namespace com.atproto.admin.updateSubjectStatus { 4 @doc("Update the service-specific admin status of a subject (account, record, or blob).")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateSubjectStatus { 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"; 2 3 namespace com.atproto.identity.defs { 4 model IdentityInfo {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.defs { 4 model IdentityInfo {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/identity/getRecommendedDidCredentials.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.identity.getRecommendedDidCredentials { 4 @doc("Describe the credentials that should be included in the DID doc of an account that is migrating to this service.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.getRecommendedDidCredentials { 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"; 2 3 namespace com.atproto.identity.refreshIdentity { 4 @doc("The resolution process confirmed that the handle does not resolve to any DID.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.refreshIdentity { 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"; 2 3 namespace com.atproto.identity.requestPlcOperationSignature { 4 @doc("Request an email with a code to in order to request a signed PLC operation. Requires Auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.requestPlcOperationSignature { 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"; 2 3 namespace com.atproto.identity.resolveDid { 4 @doc("Resolves DID to DID document. Does not bi-directionally verify handle.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.resolveDid { 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"; 2 3 namespace com.atproto.identity.resolveHandle { 4 @doc("Resolves an atproto handle (hostname) to a DID. Does not necessarily bi-directionally verify against the the DID document.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.resolveHandle { 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"; 2 3 namespace com.atproto.identity.resolveIdentity { 4 @doc("The resolution process confirmed that the handle does not resolve to any DID.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.resolveIdentity { 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"; 2 3 namespace com.atproto.identity.signPlcOperation { 4 @doc("Signs a PLC operation to update some value(s) in the requesting DID's document.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.signPlcOperation { 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"; 2 3 namespace com.atproto.identity.submitPlcOperation { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.submitPlcOperation { 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"; 2 3 namespace com.atproto.identity.updateHandle { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.updateHandle { 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"; 2 3 namespace com.atproto.label.defs { 4 @doc("Metadata tag on an atproto resource (eg, repo or record).")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.label.defs { 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"; 2 3 namespace com.atproto.label.queryLabels { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.label.queryLabels { 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"; 2 3 namespace com.atproto.label.subscribeLabels { 4 model FutureCursor {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.label.subscribeLabels { 4 model FutureCursor {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/lexicon/schema.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.lexicon.schema { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.lexicon.schema { 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"; 2 3 namespace com.atproto.moderation.createReport { 4 @doc("Submit a moderation report regarding an atproto account or record. Implemented by moderation services (with PDS proxying), and requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.moderation.createReport { 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"; 2 3 namespace com.atproto.moderation.defs { 4 union ReasonType {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.moderation.defs { 4 union ReasonType {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/applyWrites.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.repo.applyWrites { 4 @doc("Indicates that the 'swapCommit' parameter did not match current commit.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.applyWrites { 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"; 2 3 namespace com.atproto.repo.createRecord { 4 @doc("Create a single new repository record. Requires auth, implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.createRecord { 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"; 2 3 namespace com.atproto.repo.defs { 4 model CommitMeta {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.defs { 4 model CommitMeta {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/deleteRecord.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.repo.deleteRecord { 4 @doc("Delete a repository record, or ensure it doesn't exist. Requires auth, implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.deleteRecord { 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"; 2 3 namespace com.atproto.repo.describeRepo { 4 @doc("Get information about an account and repository, including the list of collections. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.describeRepo { 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"; 2 3 namespace com.atproto.repo.getRecord { 4 @doc("Get a single record from a repository. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.getRecord { 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"; 2 3 namespace com.atproto.repo.importRepo { 4 @doc("Import a repo in the form of a CAR file. Requires Content-Length HTTP header to be set.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.importRepo { 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"; 2 3 namespace com.atproto.repo.listMissingBlobs { 4 @doc("Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.listMissingBlobs { 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"; 2 3 namespace com.atproto.repo.listRecords { 4 @doc("List a range of records in a repository, matching a specific collection. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.listRecords { 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"; 2 3 namespace com.atproto.repo.putRecord { 4 @doc("Write a repository record, creating or updating it as needed. Requires auth, implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.putRecord { 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"; 2 3 @doc("A URI with a content-hash fingerprint.") 4 namespace com.atproto.repo.strongRef {
··· 1 + import "@typelex/emitter"; 2 3 @doc("A URI with a content-hash fingerprint.") 4 namespace com.atproto.repo.strongRef {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/repo/uploadBlob.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.repo.uploadBlob { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.uploadBlob { 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"; 2 3 namespace com.atproto.server.activateAccount { 4 @doc("Activates a currently deactivated account. Used to finalize account migration after the account's repo is imported and identity is setup.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.activateAccount { 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"; 2 3 namespace com.atproto.server.checkAccountStatus { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.checkAccountStatus { 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"; 2 3 namespace com.atproto.server.confirmEmail { 4 model AccountNotFound {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.confirmEmail { 4 model AccountNotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createAccount { 4 model InvalidHandle {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createAccount { 4 model InvalidHandle {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createAppPassword.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createAppPassword { 4 model AccountTakedown {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createAppPassword { 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createInviteCode.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createInviteCode { 4 @doc("Create an invite code.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createInviteCode { 4 @doc("Create an invite code.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createInviteCodes { 4 model AccountCodes {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createInviteCodes { 4 model AccountCodes {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/createSession.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createSession { 4 model AccountTakedown {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createSession { 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/deactivateAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.deactivateAccount { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.deactivateAccount { 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"; 2 3 namespace com.atproto.server.defs { 4 model InviteCode {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.defs { 4 model InviteCode {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.deleteAccount { 4 model ExpiredToken {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.deleteAccount { 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/deleteSession.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.deleteSession { 4 @doc("Delete the current session. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.deleteSession { 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"; 2 3 namespace com.atproto.server.describeServer { 4 @doc("Describes the server's account creation requirements and capabilities. Implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.describeServer { 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"; 2 3 namespace com.atproto.server.getAccountInviteCodes { 4 model DuplicateCreate {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.getAccountInviteCodes { 4 model DuplicateCreate {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/getServiceAuth.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.getServiceAuth { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.getServiceAuth { 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"; 2 3 namespace com.atproto.server.getSession { 4 @doc("Get information about the current auth session. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.getSession { 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"; 2 3 namespace com.atproto.server.listAppPasswords { 4 model AccountTakedown {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.listAppPasswords { 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/refreshSession.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.refreshSession { 4 model AccountTakedown {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.refreshSession { 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/requestAccountDelete.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.requestAccountDelete { 4 @doc("Initiate a user account deletion via email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.requestAccountDelete { 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"; 2 3 namespace com.atproto.server.requestEmailConfirmation { 4 @doc("Request an email with a code to confirm ownership of email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.requestEmailConfirmation { 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"; 2 3 namespace com.atproto.server.requestEmailUpdate { 4 @doc("Request a token in order to update email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.requestEmailUpdate { 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"; 2 3 namespace com.atproto.server.requestPasswordReset { 4 @doc("Initiate a user account password reset via email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.requestPasswordReset { 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"; 2 3 namespace com.atproto.server.reserveSigningKey { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.reserveSigningKey { 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"; 2 3 namespace com.atproto.server.resetPassword { 4 model ExpiredToken {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.resetPassword { 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/server/revokeAppPassword.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.revokeAppPassword { 4 @doc("Revoke an App Password by name.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.revokeAppPassword { 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"; 2 3 namespace com.atproto.server.updateEmail { 4 model ExpiredToken {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.updateEmail { 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.sync.defs { 4 union HostStatus {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.defs { 4 union HostStatus {
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/sync/getBlob.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.sync.getBlob { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getBlob { 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"; 2 3 namespace com.atproto.sync.getBlocks { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getBlocks { 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"; 2 3 namespace com.atproto.sync.getCheckout { 4 @doc("DEPRECATED - please use com.atproto.sync.getRepo instead")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getCheckout { 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"; 2 3 namespace com.atproto.sync.getHead { 4 @doc("DEPRECATED - please use com.atproto.sync.getLatestCommit instead")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getHead { 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"; 2 3 namespace com.atproto.sync.getHostStatus { 4 @doc("Returns information about a specified upstream host, as consumed by the server. Implemented by relays.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getHostStatus { 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"; 2 3 namespace com.atproto.sync.getLatestCommit { 4 @doc("Get the current commit CID & revision of the specified repo. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getLatestCommit { 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"; 2 3 namespace com.atproto.sync.getRecord { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getRecord { 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"; 2 3 namespace com.atproto.sync.getRepo { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getRepo { 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"; 2 3 namespace com.atproto.sync.getRepoStatus { 4 @doc("Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getRepoStatus { 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"; 2 3 namespace com.atproto.sync.listBlobs { 4 @doc("List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.listBlobs { 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"; 2 3 namespace com.atproto.sync.listHosts { 4 @doc("Enumerates upstream hosts (eg, PDS or relay instances) that this service consumes from. Implemented by relays.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.listHosts { 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"; 2 3 namespace com.atproto.sync.listRepos { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.listRepos { 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"; 2 3 namespace com.atproto.sync.listReposByCollection { 4 @doc("Enumerates all the DIDs which have records with the given collection NSID.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.listReposByCollection { 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"; 2 3 namespace com.atproto.sync.notifyOfUpdate { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.notifyOfUpdate { 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"; 2 3 namespace com.atproto.sync.requestCrawl { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.requestCrawl { 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"; 2 3 namespace com.atproto.sync.subscribeRepos { 4 @subscription
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.subscribeRepos { 4 @subscription
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/addReservedHandle.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.temp.addReservedHandle { 4 @doc("Add a handle to the set of reserved handles.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.addReservedHandle { 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"; 2 3 namespace com.atproto.temp.checkHandleAvailability { 4 @doc("An invalid email was provided.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.checkHandleAvailability { 4 @doc("An invalid email was provided.")
+1 -1
packages/emitter/test/integration/atproto/input/com/atproto/temp/checkSignupQueue.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.temp.checkSignupQueue { 4 @doc("Check accounts location in signup queue.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.checkSignupQueue { 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"; 2 3 namespace com.atproto.temp.dereferenceScope { 4 @doc("An invalid scope reference was provided.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.dereferenceScope { 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"; 2 3 namespace com.atproto.temp.fetchLabels { 4 @doc("DEPRECATED: use queryLabels or subscribeLabels instead -- Fetch all labels from a labeler created after a certain date.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.fetchLabels { 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"; 2 3 namespace com.atproto.temp.requestPhoneVerification { 4 @doc("Request a verification code to be sent to the supplied phone number")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.requestPhoneVerification { 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"; 2 3 namespace com.atproto.temp.revokeAccountCredentials { 4 @doc("Revoke sessions, password, and app passwords associated with account. May be resolved by a password reset.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.revokeAccountCredentials { 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"; 2 3 namespace tools.ozone.communication.createTemplate { 4 model DuplicateTemplateName {}
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.communication.createTemplate { 4 model DuplicateTemplateName {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/communication/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.communication.defs { 4 model TemplateView {
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.communication.defs { 4 model TemplateView {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/communication/deleteTemplate.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.communication.deleteTemplate { 4 @doc("Delete a communication template.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.communication.deleteTemplate { 4 @doc("Delete a communication template.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/communication/listTemplates.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.communication.listTemplates { 4 @doc("Get list of all communication templates.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.communication.listTemplates { 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"; 2 3 namespace tools.ozone.communication.updateTemplate { 4 model DuplicateTemplateName {}
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.communication.updateTemplate { 4 model DuplicateTemplateName {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/hosting/getAccountHistory.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.hosting.getAccountHistory { 4 @doc("Get account history, e.g. log of updated email addresses or other identity information.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.hosting.getAccountHistory { 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"; 2 3 namespace tools.ozone.moderation.defs { 4 model ModEventView {
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.defs { 4 model ModEventView {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/emitEvent.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.emitEvent { 4 model SubjectHasAction {}
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.emitEvent { 4 model SubjectHasAction {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getAccountTimeline.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.getAccountTimeline { 4 model RepoNotFound {}
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.getAccountTimeline { 4 model RepoNotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getEvent.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.getEvent { 4 @doc("Get details about a moderation event.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.getEvent { 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"; 2 3 namespace tools.ozone.moderation.getRecord { 4 model RecordNotFound {}
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.getRecord { 4 model RecordNotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getRecords.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.getRecords { 4 @doc("Get details about some records.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.getRecords { 4 @doc("Get details about some records.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getRepo.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.getRepo { 4 model RepoNotFound {}
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.getRepo { 4 model RepoNotFound {}
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getReporterStats.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.getReporterStats { 4 @doc("Get reporter stats for a list of users.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.getReporterStats { 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"; 2 3 namespace tools.ozone.moderation.getRepos { 4 @doc("Get details about some repositories.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.getRepos { 4 @doc("Get details about some repositories.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/getSubjects.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.getSubjects { 4 @doc("Get details about subjects.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.getSubjects { 4 @doc("Get details about subjects.")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/queryEvents.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.queryEvents { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.queryEvents { 4 @closed
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/queryStatuses.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.queryStatuses { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.queryStatuses { 4 @closed
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/moderation/searchRepos.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.moderation.searchRepos { 4 @doc("Find repositories based on a search term.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.moderation.searchRepos { 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"; 2 3 namespace tools.ozone.report.defs { 4 union ReasonType {
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.report.defs { 4 union ReasonType {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/addRule.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.safelink.addRule { 4 @doc("The provided URL is invalid")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.safelink.addRule { 4 @doc("The provided URL is invalid")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.safelink.defs { 4 @doc("An event for URL safety decisions")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.safelink.defs { 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"; 2 3 namespace tools.ozone.safelink.queryEvents { 4 @doc("Query URL safety audit events")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.safelink.queryEvents { 4 @doc("Query URL safety audit events")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/queryRules.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.safelink.queryRules { 4 @doc("Query URL safety rules")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.safelink.queryRules { 4 @doc("Query URL safety rules")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/safelink/removeRule.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.safelink.removeRule { 4 @doc("No active rule found for this URL/domain")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.safelink.removeRule { 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"; 2 3 namespace tools.ozone.safelink.updateRule { 4 @doc("No active rule found for this URL/domain")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.safelink.updateRule { 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"; 2 3 namespace tools.ozone.server.getConfig { 4 @doc("Get details about ozone's server configuration.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.server.getConfig { 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"; 2 3 namespace tools.ozone.set.addValues { 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 + import "@typelex/emitter"; 2 3 namespace tools.ozone.set.addValues { 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"; 2 3 namespace tools.ozone.set.defs { 4 model Set {
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.set.defs { 4 model Set {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/deleteSet.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.set.deleteSet { 4 @doc("set with the given name does not exist")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.set.deleteSet { 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"; 2 3 namespace tools.ozone.set.deleteValues { 4 @doc("set with the given name does not exist")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.set.deleteValues { 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"; 2 3 namespace tools.ozone.set.getValues { 4 @doc("set with the given name does not exist")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.set.getValues { 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"; 2 3 namespace tools.ozone.set.querySets { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.set.querySets { 4 @closed
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/set/upsertSet.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.set.upsertSet { 4 @doc("Create or update set metadata")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.set.upsertSet { 4 @doc("Create or update set metadata")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/setting/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.setting.defs { 4 model Option {
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.setting.defs { 4 model Option {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/setting/listOptions.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.setting.listOptions { 4 @doc("List settings with optional filtering")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.setting.listOptions { 4 @doc("List settings with optional filtering")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/setting/removeOptions.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.setting.removeOptions { 4 @doc("Delete settings by key")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.setting.removeOptions { 4 @doc("Delete settings by key")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/setting/upsertOption.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.setting.upsertOption { 4 @doc("Create or update setting option")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.setting.upsertOption { 4 @doc("Create or update setting option")
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/signature/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.signature.defs { 4 model SigDetail {
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.signature.defs { 4 model SigDetail {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/signature/findCorrelation.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.signature.findCorrelation { 4 @doc("Find all correlated threat signatures between 2 or more accounts.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.signature.findCorrelation { 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"; 2 3 namespace tools.ozone.signature.findRelatedAccounts { 4 @doc("Get accounts that share some matching threat signatures with the root account.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.signature.findRelatedAccounts { 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"; 2 3 namespace tools.ozone.signature.searchAccounts { 4 @doc("Search for accounts that match one or more threat signature values.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.signature.searchAccounts { 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"; 2 3 namespace tools.ozone.team.addMember { 4 @doc("Member already exists in the team.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.team.addMember { 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"; 2 3 namespace tools.ozone.team.defs { 4 model Member {
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.team.defs { 4 model Member {
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/team/deleteMember.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.team.deleteMember { 4 @doc("The member being deleted does not exist")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.team.deleteMember { 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"; 2 3 namespace tools.ozone.team.listMembers { 4 @doc("List all members with access to the ozone service.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.team.listMembers { 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"; 2 3 namespace tools.ozone.team.updateMember { 4 @doc("The member being updated does not exist in the team")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.team.updateMember { 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"; 2 3 namespace tools.ozone.verification.defs { 4 @doc("Verification data for the associated subject.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.verification.defs { 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"; 2 3 namespace tools.ozone.verification.grantVerifications { 4 @doc("Grant verifications to multiple subjects. Allows batch processing of up to 100 verifications at once.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.verification.grantVerifications { 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"; 2 3 namespace tools.ozone.verification.listVerifications { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.verification.listVerifications { 4 @closed
+1 -1
packages/emitter/test/integration/atproto/input/tools/ozone/verification/revokeVerifications.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace tools.ozone.verification.revokeVerifications { 4 @doc("Revoke previously granted verifications in batches of up to 100.")
··· 1 + import "@typelex/emitter"; 2 3 namespace tools.ozone.verification.revokeVerifications { 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"; 2 3 namespace com.atproto.admin.defs { 4 model StatusAttr {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.defs { 4 model StatusAttr {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/admin/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.admin.deleteAccount { 4 @doc("Delete a user account as an administrator.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.deleteAccount { 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"; 2 3 namespace com.atproto.admin.disableAccountInvites { 4 @doc("Disable an account from receiving new invite codes, but does not invalidate existing codes.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.disableAccountInvites { 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"; 2 3 namespace com.atproto.admin.disableInviteCodes { 4 @doc("Disable some set of codes and/or all codes associated with a set of users.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.disableInviteCodes { 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"; 2 3 namespace com.atproto.admin.enableAccountInvites { 4 @doc("Re-enable an account's ability to receive invite codes.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.enableAccountInvites { 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"; 2 3 namespace com.atproto.admin.getAccountInfo { 4 @doc("Get details about an account.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.getAccountInfo { 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"; 2 3 namespace com.atproto.admin.getAccountInfos { 4 @doc("Get details about some accounts.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.getAccountInfos { 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"; 2 3 namespace com.atproto.admin.getInviteCodes { 4 @doc("Get an admin view of invite codes.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.getInviteCodes { 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"; 2 3 namespace com.atproto.admin.getSubjectStatus { 4 @doc("Get the service-specific admin status of a subject (account, record, or blob).")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.getSubjectStatus { 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"; 2 3 namespace com.atproto.admin.searchAccounts { 4 @doc("Get list of accounts that matches your search query.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.searchAccounts { 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"; 2 3 namespace com.atproto.admin.sendEmail { 4 @doc("Send email to a user's account email address.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.sendEmail { 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"; 2 3 namespace com.atproto.admin.updateAccountEmail { 4 @doc("Administrative action to update an account's email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateAccountEmail { 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"; 2 3 namespace com.atproto.admin.updateAccountHandle { 4 @doc("Administrative action to update an account's handle.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateAccountHandle { 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"; 2 3 namespace com.atproto.admin.updateAccountPassword { 4 @doc("Update the password for a user account as an administrator.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateAccountPassword { 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"; 2 3 namespace com.atproto.admin.updateAccountSigningKey { 4 @doc("Administrative action to update an account's signing key in their Did document.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateAccountSigningKey { 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"; 2 3 namespace com.atproto.admin.updateSubjectStatus { 4 @doc("Update the service-specific admin status of a subject (account, record, or blob).")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.admin.updateSubjectStatus { 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"; 2 3 namespace com.atproto.identity.defs { 4 model IdentityInfo {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.defs { 4 model IdentityInfo {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/identity/getRecommendedDidCredentials.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.identity.getRecommendedDidCredentials { 4 @doc("Describe the credentials that should be included in the DID doc of an account that is migrating to this service.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.getRecommendedDidCredentials { 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"; 2 3 namespace com.atproto.identity.refreshIdentity { 4 @doc("The resolution process confirmed that the handle does not resolve to any DID.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.refreshIdentity { 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"; 2 3 namespace com.atproto.identity.requestPlcOperationSignature { 4 @doc("Request an email with a code to in order to request a signed PLC operation. Requires Auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.requestPlcOperationSignature { 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"; 2 3 namespace com.atproto.identity.resolveDid { 4 @doc("Resolves DID to DID document. Does not bi-directionally verify handle.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.resolveDid { 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"; 2 3 namespace com.atproto.identity.resolveHandle { 4 @doc("Resolves an atproto handle (hostname) to a DID. Does not necessarily bi-directionally verify against the the DID document.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.resolveHandle { 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"; 2 3 namespace com.atproto.identity.resolveIdentity { 4 @doc("The resolution process confirmed that the handle does not resolve to any DID.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.resolveIdentity { 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"; 2 3 namespace com.atproto.identity.signPlcOperation { 4 @doc("Signs a PLC operation to update some value(s) in the requesting DID's document.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.signPlcOperation { 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"; 2 3 namespace com.atproto.identity.submitPlcOperation { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.submitPlcOperation { 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"; 2 3 namespace com.atproto.identity.updateHandle { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.identity.updateHandle { 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"; 2 3 namespace com.atproto.label.defs { 4 @doc("Metadata tag on an atproto resource (eg, repo or record).")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.label.defs { 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"; 2 3 namespace com.atproto.label.queryLabels { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.label.queryLabels { 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"; 2 3 namespace com.atproto.label.subscribeLabels { 4 model FutureCursor {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.label.subscribeLabels { 4 model FutureCursor {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/lexicon/schema.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.lexicon.schema { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.lexicon.schema { 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"; 2 3 namespace com.atproto.moderation.createReport { 4 @doc("Submit a moderation report regarding an atproto account or record. Implemented by moderation services (with PDS proxying), and requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.moderation.createReport { 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"; 2 3 namespace com.atproto.moderation.defs { 4 union ReasonType {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.moderation.defs { 4 union ReasonType {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/applyWrites.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.repo.applyWrites { 4 @doc("Indicates that the 'swapCommit' parameter did not match current commit.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.applyWrites { 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"; 2 3 namespace com.atproto.repo.createRecord { 4 @doc("Create a single new repository record. Requires auth, implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.createRecord { 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"; 2 3 namespace com.atproto.repo.defs { 4 model CommitMeta {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.defs { 4 model CommitMeta {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/deleteRecord.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.repo.deleteRecord { 4 @doc("Delete a repository record, or ensure it doesn't exist. Requires auth, implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.deleteRecord { 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"; 2 3 namespace com.atproto.repo.describeRepo { 4 @doc("Get information about an account and repository, including the list of collections. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.describeRepo { 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"; 2 3 namespace com.atproto.repo.getRecord { 4 @doc("Get a single record from a repository. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.getRecord { 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"; 2 3 namespace com.atproto.repo.importRepo { 4 @doc("Import a repo in the form of a CAR file. Requires Content-Length HTTP header to be set.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.importRepo { 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"; 2 3 namespace com.atproto.repo.listMissingBlobs { 4 @doc("Returns a list of missing blobs for the requesting account. Intended to be used in the account migration flow.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.listMissingBlobs { 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"; 2 3 namespace com.atproto.repo.listRecords { 4 @doc("List a range of records in a repository, matching a specific collection. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.listRecords { 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"; 2 3 namespace com.atproto.repo.putRecord { 4 @doc("Write a repository record, creating or updating it as needed. Requires auth, implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.putRecord { 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"; 2 3 @doc("A URI with a content-hash fingerprint.") 4 namespace com.atproto.repo.strongRef {
··· 1 + import "@typelex/emitter"; 2 3 @doc("A URI with a content-hash fingerprint.") 4 namespace com.atproto.repo.strongRef {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/repo/uploadBlob.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.repo.uploadBlob { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.repo.uploadBlob { 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"; 2 3 namespace com.atproto.server.activateAccount { 4 @doc("Activates a currently deactivated account. Used to finalize account migration after the account's repo is imported and identity is setup.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.activateAccount { 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"; 2 3 namespace com.atproto.server.checkAccountStatus { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.checkAccountStatus { 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"; 2 3 namespace com.atproto.server.confirmEmail { 4 model AccountNotFound {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.confirmEmail { 4 model AccountNotFound {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createAccount { 4 model InvalidHandle {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createAccount { 4 model InvalidHandle {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createAppPassword.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createAppPassword { 4 model AccountTakedown {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createAppPassword { 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createInviteCode.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createInviteCode { 4 @doc("Create an invite code.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createInviteCode { 4 @doc("Create an invite code.")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createInviteCodes.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createInviteCodes { 4 model AccountCodes {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createInviteCodes { 4 model AccountCodes {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/createSession.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.createSession { 4 model AccountTakedown {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.createSession { 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/deactivateAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.deactivateAccount { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.deactivateAccount { 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"; 2 3 namespace com.atproto.server.defs { 4 model InviteCode {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.defs { 4 model InviteCode {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/deleteAccount.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.deleteAccount { 4 model ExpiredToken {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.deleteAccount { 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/deleteSession.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.deleteSession { 4 @doc("Delete the current session. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.deleteSession { 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"; 2 3 namespace com.atproto.server.describeServer { 4 @doc("Describes the server's account creation requirements and capabilities. Implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.describeServer { 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"; 2 3 namespace com.atproto.server.getAccountInviteCodes { 4 model DuplicateCreate {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.getAccountInviteCodes { 4 model DuplicateCreate {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/getServiceAuth.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.getServiceAuth { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.getServiceAuth { 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"; 2 3 namespace com.atproto.server.getSession { 4 @doc("Get information about the current auth session. Requires auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.getSession { 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"; 2 3 namespace com.atproto.server.listAppPasswords { 4 model AccountTakedown {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.listAppPasswords { 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/refreshSession.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.refreshSession { 4 model AccountTakedown {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.refreshSession { 4 model AccountTakedown {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/requestAccountDelete.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.requestAccountDelete { 4 @doc("Initiate a user account deletion via email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.requestAccountDelete { 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"; 2 3 namespace com.atproto.server.requestEmailConfirmation { 4 @doc("Request an email with a code to confirm ownership of email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.requestEmailConfirmation { 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"; 2 3 namespace com.atproto.server.requestEmailUpdate { 4 @doc("Request a token in order to update email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.requestEmailUpdate { 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"; 2 3 namespace com.atproto.server.requestPasswordReset { 4 @doc("Initiate a user account password reset via email.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.requestPasswordReset { 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"; 2 3 namespace com.atproto.server.reserveSigningKey { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.reserveSigningKey { 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"; 2 3 namespace com.atproto.server.resetPassword { 4 model ExpiredToken {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.resetPassword { 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/server/revokeAppPassword.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.server.revokeAppPassword { 4 @doc("Revoke an App Password by name.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.revokeAppPassword { 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"; 2 3 namespace com.atproto.server.updateEmail { 4 model ExpiredToken {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.server.updateEmail { 4 model ExpiredToken {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.sync.defs { 4 union HostStatus {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.defs { 4 union HostStatus {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/sync/getBlob.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.sync.getBlob { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getBlob { 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"; 2 3 namespace com.atproto.sync.getBlocks { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getBlocks { 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"; 2 3 namespace com.atproto.sync.getCheckout { 4 @doc("DEPRECATED - please use com.atproto.sync.getRepo instead")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getCheckout { 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"; 2 3 namespace com.atproto.sync.getHead { 4 @doc("DEPRECATED - please use com.atproto.sync.getLatestCommit instead")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getHead { 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"; 2 3 namespace com.atproto.sync.getHostStatus { 4 @doc("Returns information about a specified upstream host, as consumed by the server. Implemented by relays.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getHostStatus { 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"; 2 3 namespace com.atproto.sync.getLatestCommit { 4 @doc("Get the current commit CID & revision of the specified repo. Does not require auth.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getLatestCommit { 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"; 2 3 namespace com.atproto.sync.getRecord { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getRecord { 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"; 2 3 namespace com.atproto.sync.getRepo { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getRepo { 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"; 2 3 namespace com.atproto.sync.getRepoStatus { 4 @doc("Get the hosting status for a repository, on this server. Expected to be implemented by PDS and Relay.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.getRepoStatus { 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"; 2 3 namespace com.atproto.sync.listBlobs { 4 @doc("List blob CIDs for an account, since some repo revision. Does not require auth; implemented by PDS.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.listBlobs { 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"; 2 3 namespace com.atproto.sync.listHosts { 4 @doc("Enumerates upstream hosts (eg, PDS or relay instances) that this service consumes from. Implemented by relays.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.listHosts { 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"; 2 3 namespace com.atproto.sync.listRepos { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.listRepos { 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"; 2 3 namespace com.atproto.sync.listReposByCollection { 4 @doc("Enumerates all the DIDs which have records with the given collection NSID.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.listReposByCollection { 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"; 2 3 namespace com.atproto.sync.notifyOfUpdate { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.notifyOfUpdate { 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"; 2 3 namespace com.atproto.sync.requestCrawl { 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 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.requestCrawl { 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"; 2 3 namespace com.atproto.sync.subscribeRepos { 4 @subscription
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.sync.subscribeRepos { 4 @subscription
+1 -1
packages/emitter/test/integration/lexicon-examples/input/com/atproto/temp/addReservedHandle.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.atproto.temp.addReservedHandle { 4 @doc("Add a handle to the set of reserved handles.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.addReservedHandle { 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"; 2 3 namespace com.atproto.temp.checkHandleAvailability { 4 @doc("An invalid email was provided.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.checkHandleAvailability { 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"; 2 3 namespace com.atproto.temp.checkSignupQueue { 4 @doc("Check accounts location in signup queue.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.checkSignupQueue { 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"; 2 3 namespace com.atproto.temp.dereferenceScope { 4 @doc("An invalid scope reference was provided.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.dereferenceScope { 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"; 2 3 namespace com.atproto.temp.fetchLabels { 4 @doc("DEPRECATED: use queryLabels or subscribeLabels instead -- Fetch all labels from a labeler created after a certain date.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.fetchLabels { 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"; 2 3 namespace com.atproto.temp.requestPhoneVerification { 4 @doc("Request a verification code to be sent to the supplied phone number")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.requestPhoneVerification { 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"; 2 3 namespace com.atproto.temp.revokeAccountCredentials { 4 @doc("Revoke sessions, password, and app passwords associated with account. May be resolved by a password reset.")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.atproto.temp.revokeAccountCredentials { 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"; 2 3 namespace `pub`.leaflet.blocks.blockquote { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.blockquote { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/bskyPost.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.bskyPost { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.bskyPost { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/code.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.code { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.code { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/header.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.header { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.header { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/horizontalRule.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.horizontalRule { 4 model Main {}
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.horizontalRule { 4 model Main {}
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/iframe.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.iframe { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.iframe { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/image.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.image { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.image { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/math.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.math { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.math { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/text.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.text { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.text { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/unorderedList.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.unorderedList { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.unorderedList { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/blocks/website.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.blocks.website { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.blocks.website { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/comment.tsp
··· 1 - import "@tylex/emitter"; 2 3 @doc("A lexicon for comments on documents") 4 namespace `pub`.leaflet.comment {
··· 1 + import "@typelex/emitter"; 2 3 @doc("A lexicon for comments on documents") 4 namespace `pub`.leaflet.comment {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/document.tsp
··· 1 - import "@tylex/emitter"; 2 3 @doc("A lexicon for long form rich media documents") 4 namespace `pub`.leaflet.document {
··· 1 + import "@typelex/emitter"; 2 3 @doc("A lexicon for long form rich media documents") 4 namespace `pub`.leaflet.document {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/graph/subscription.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.graph.subscription { 4 @doc("Record declaring a subscription to a publication")
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.graph.subscription { 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"; 2 3 namespace `pub`.leaflet.pages.linearDocument { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.pages.linearDocument { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/publication.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.publication { 4 @doc("Record declaring a publication")
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.publication { 4 @doc("Record declaring a publication")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/richtext/facet.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.richtext.facet { 4 @doc("Annotation of a sub-string within rich text.")
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.richtext.facet { 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"; 2 3 namespace `pub`.leaflet.theme.backgroundImage { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.theme.backgroundImage { 4 model Main {
+1 -1
packages/emitter/test/integration/lexicon-examples/input/pub/leaflet/theme/color.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace `pub`.leaflet.theme.color { 4 // Dummy Main to satisfy namespace requirements - actual defs are Rgba and Rgb
··· 1 + import "@typelex/emitter"; 2 3 namespace `pub`.leaflet.theme.color { 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"; 2 3 namespace sh.tangled.actor.profile { 4 @doc("A declaration of a Tangled account profile.")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.actor.profile { 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"; 2 3 namespace sh.tangled.feed.reaction { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.feed.reaction { 4 @closed
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/feed/star.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.feed.star { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.feed.star { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/git/refUpdate.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.git.refUpdate { 4 @doc("An update to a git repository, emitted by knots.")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.git.refUpdate { 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"; 2 3 namespace sh.tangled.graph.follow { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.graph.follow { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/knot.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.knot { 4 @rec("any")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.knot { 4 @rec("any")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/knot/listKeys.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.knot.listKeys { 4 @doc("List all public keys stored in the knot server")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.knot.listKeys { 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"; 2 3 namespace sh.tangled.knot.member { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.knot.member { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/knot/version.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.knot.version { 4 @doc("Get the version of a knot")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.knot.version { 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"; 2 3 namespace sh.tangled.label.`op` { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.label.`op` { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/label/definition.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.label.definition { 4 @rec("any")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.label.definition { 4 @rec("any")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/owner.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.owner { 4 @doc("Get the owner of a service")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.owner { 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"; 2 3 namespace sh.tangled.pipeline { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.pipeline { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/pipeline/status.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.pipeline.status { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.pipeline.status { 4 @closed
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/publicKey.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.publicKey { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.publicKey { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/comment.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.issue.comment { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.issue.comment { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/issue.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.issue { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.issue { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/state.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.issue.state { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.issue.state { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/state/closed.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.issue.state.closed { 4 @doc("closed issue")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.issue.state.closed { 4 @doc("closed issue")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/issue/state/open.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.issue.state.open { 4 @doc("open issue")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.issue.state.open { 4 @doc("open issue")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/comment.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.pull.comment { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.pull.comment { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/pull.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.pull { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.pull { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/status.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.pull.status { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.pull.status { 4 @rec("tid")
+1 -1
packages/emitter/test/integration/lexicon-examples/input/sh/tangled/repo/pull/status/closed.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace sh.tangled.repo.pull.status.closed { 4 @doc("closed pull request")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.pull.status.closed { 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"; 2 3 namespace sh.tangled.repo.pull.status.merged { 4 @doc("merged pull request")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.pull.status.merged { 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"; 2 3 namespace sh.tangled.repo.pull.status.open { 4 @doc("open pull request")
··· 1 + import "@typelex/emitter"; 2 3 namespace sh.tangled.repo.pull.status.open { 4 @doc("open pull request")
+11 -11
packages/emitter/test/spec.test.ts
··· 18 const pkgRoot = await findTestPackageRoot(import.meta.url); 19 const TESTS_DIR = resolvePath(pkgRoot, "test/spec"); 20 21 - const TylexTestLibrary: TypeSpecTestLibrary = { 22 - name: "@tylex/emitter", 23 packageRoot: await findTestPackageRoot(import.meta.url), 24 files: [ 25 { 26 realDir: "", 27 pattern: "package.json", 28 - virtualPath: "./node_modules/@tylex/emitter", 29 }, 30 { 31 realDir: "dist", 32 pattern: "**/*.js", 33 - virtualPath: "./node_modules/@tylex/emitter/dist", 34 }, 35 { 36 realDir: "lib/", 37 pattern: "*.tsp", 38 - virtualPath: "./node_modules/@tylex/emitter/lib", 39 }, 40 ], 41 }; ··· 63 if (tspFiles.length > 0) { 64 // Create a virtual main.tsp that imports all other files 65 const mainContent = 66 - 'import "@tylex/emitter";\n' + 67 tspFiles.map((f) => `import "./${f}";`).join("\n"); 68 const filesWithMain = { ...inputFiles, "main.tsp": mainContent }; 69 emitResult = await doEmit(filesWithMain, "main.tsp"); ··· 124 const baseOutputPath = resolveVirtualPath("test-output/"); 125 126 const host = await createTestHost({ 127 - libraries: [TylexTestLibrary], 128 }); 129 130 for (const [fileName, content] of Object.entries(files)) { ··· 134 const [, diagnostics] = await host.compileAndDiagnose(entryPoint, { 135 outputDir: baseOutputPath, 136 noEmit: false, 137 - emit: ["@tylex/emitter"], 138 }); 139 140 const outputFiles = Object.fromEntries( ··· 142 .filter(([name]) => name.startsWith(baseOutputPath)) 143 .map(([name, value]) => { 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/", ""); 148 } 149 return [relativePath, value]; 150 }),
··· 18 const pkgRoot = await findTestPackageRoot(import.meta.url); 19 const TESTS_DIR = resolvePath(pkgRoot, "test/spec"); 20 21 + const TypelexTestLibrary: TypeSpecTestLibrary = { 22 + name: "@typelex/emitter", 23 packageRoot: await findTestPackageRoot(import.meta.url), 24 files: [ 25 { 26 realDir: "", 27 pattern: "package.json", 28 + virtualPath: "./node_modules/@typelex/emitter", 29 }, 30 { 31 realDir: "dist", 32 pattern: "**/*.js", 33 + virtualPath: "./node_modules/@typelex/emitter/dist", 34 }, 35 { 36 realDir: "lib/", 37 pattern: "*.tsp", 38 + virtualPath: "./node_modules/@typelex/emitter/lib", 39 }, 40 ], 41 }; ··· 63 if (tspFiles.length > 0) { 64 // Create a virtual main.tsp that imports all other files 65 const mainContent = 66 + 'import "@typelex/emitter";\n' + 67 tspFiles.map((f) => `import "./${f}";`).join("\n"); 68 const filesWithMain = { ...inputFiles, "main.tsp": mainContent }; 69 emitResult = await doEmit(filesWithMain, "main.tsp"); ··· 124 const baseOutputPath = resolveVirtualPath("test-output/"); 125 126 const host = await createTestHost({ 127 + libraries: [TypelexTestLibrary], 128 }); 129 130 for (const [fileName, content] of Object.entries(files)) { ··· 134 const [, diagnostics] = await host.compileAndDiagnose(entryPoint, { 135 outputDir: baseOutputPath, 136 noEmit: false, 137 + emit: ["@typelex/emitter"], 138 }); 139 140 const outputFiles = Object.fromEntries( ··· 142 .filter(([name]) => name.startsWith(baseOutputPath)) 143 .map(([name, value]) => { 144 let relativePath = name.replace(baseOutputPath, ""); 145 + // Strip the @typelex/emitter/ prefix if present 146 + if (relativePath.startsWith("@typelex/emitter/")) { 147 + relativePath = relativePath.replace("@typelex/emitter/", ""); 148 } 149 return [relativePath, value]; 150 }),
+1 -1
packages/emitter/test/spec/basic/input/com/example/allOptionalFields.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.allOptionalFields { 4 @doc("Object with all optional fields (no required)")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.allOptionalFields { 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"; 2 3 namespace com.example.arrayOfUnions { 4 model Main {
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.arrayOfUnions { 4 model Main {
+1 -1
packages/emitter/test/spec/basic/input/com/example/arrays.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.arrays { 4 @doc("Array container types")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.arrays { 4 @doc("Array container types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/blobs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.blobs { 4 @doc("Blob type examples")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.blobs { 4 @doc("Blob type examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/booleanConstraints.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.booleanConstraints { 4 @doc("Boolean field constraints")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.booleanConstraints { 4 @doc("Boolean field constraints")
+1 -1
packages/emitter/test/spec/basic/input/com/example/bytesConstraints.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.bytesConstraints { 4 @doc("Bytes field constraints")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.bytesConstraints { 4 @doc("Bytes field constraints")
+1 -1
packages/emitter/test/spec/basic/input/com/example/cidLinks.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.cidLinks { 4 @doc("CID link examples")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.cidLinks { 4 @doc("CID link examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/constValues.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.constValues { 4 @doc("Tests const values on all supported types")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.constValues { 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"; 2 3 namespace com.example.createRecord { 4 @doc("The provided text is invalid")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.createRecord { 4 @doc("The provided text is invalid")
+1 -1
packages/emitter/test/spec/basic/input/com/example/datetimeExamples.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.datetimeExamples { 4 @doc("Datetime format usage examples")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.datetimeExamples { 4 @doc("Datetime format usage examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/deeplyNested.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.deeplyNested { 4 @doc("Tests deeply nested object structures")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.deeplyNested { 4 @doc("Tests deeply nested object structures")
+1 -1
packages/emitter/test/spec/basic/input/com/example/defs.tsp
··· 1 - import "@tylex/emitter"; 2 3 @doc("Common definitions used by other lexicons") 4 namespace com.example.defs {
··· 1 + import "@typelex/emitter"; 2 3 @doc("Common definitions used by other lexicons") 4 namespace com.example.defs {
+1 -1
packages/emitter/test/spec/basic/input/com/example/deleteRecord.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.deleteRecord { 4 @doc("Delete a record (no output)")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.deleteRecord { 4 @doc("Delete a record (no output)")
+1 -1
packages/emitter/test/spec/basic/input/com/example/eventStream.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.eventStream { 4 @doc("Cursor is in the future")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.eventStream { 4 @doc("Cursor is in the future")
+1 -1
packages/emitter/test/spec/basic/input/com/example/flexibleRecord.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.flexibleRecord { 4 @rec("any")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.flexibleRecord { 4 @rec("any")
+1 -1
packages/emitter/test/spec/basic/input/com/example/getRecord.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.getRecord { 4 @doc("Retrieve a record by ID")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.getRecord { 4 @doc("Retrieve a record by ID")
+1 -1
packages/emitter/test/spec/basic/input/com/example/getStatus.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.getStatus { 4 @doc("Get system status (no parameters)")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.getStatus { 4 @doc("Get system status (no parameters)")
+1 -1
packages/emitter/test/spec/basic/input/com/example/identifierExamples.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.identifierExamples { 4 @doc("Identifier format examples")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.identifierExamples { 4 @doc("Identifier format examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/integerConstraints.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.integerConstraints { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.integerConstraints { 4 @closed
+1 -1
packages/emitter/test/spec/basic/input/com/example/nestedUnions.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.nestedUnions { 4 @doc("Tests unions nested within objects and arrays")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.nestedUnions { 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"; 2 3 namespace com.example.nullType { 4 @doc("Demonstrates the null primitive type")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.nullType { 4 @doc("Demonstrates the null primitive type")
+1 -1
packages/emitter/test/spec/basic/input/com/example/nullableFields.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.nullableFields { 4 @doc("Demonstrates nullable field semantics")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.nullableFields { 4 @doc("Demonstrates nullable field semantics")
+1 -1
packages/emitter/test/spec/basic/input/com/example/objects.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.objects { 4 @doc("Object with various property configurations")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.objects { 4 @doc("Object with various property configurations")
+1 -1
packages/emitter/test/spec/basic/input/com/example/other.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.other { 4 model Main {}
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.other { 4 model Main {}
+1 -1
packages/emitter/test/spec/basic/input/com/example/outputWithoutSchema.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.outputWithoutSchema { 4 @query
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.outputWithoutSchema { 4 @query
+1 -1
packages/emitter/test/spec/basic/input/com/example/paramsWithArrays.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.paramsWithArrays { 4 @doc("Tests query parameters with array types")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.paramsWithArrays { 4 @doc("Tests query parameters with array types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/primitives.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.primitives { 4 @doc("All primitive field types")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.primitives { 4 @doc("All primitive field types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/procedureWithBoth.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.procedureWithBoth { 4 @doc("Procedure with both input body and query parameters")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.procedureWithBoth { 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"; 2 3 namespace com.example.profile { 4 @rec("literal:self")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.profile { 4 @rec("literal:self")
+1 -1
packages/emitter/test/spec/basic/input/com/example/queryParams.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.queryParams { 4 @doc("Query with various parameter types")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.queryParams { 4 @doc("Query with various parameter types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/record.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.`record` { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.`record` { 4 @rec("tid")
+1 -1
packages/emitter/test/spec/basic/input/com/example/recordWithNsidKey.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.recordWithNsidKey { 4 @rec("nsid")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.recordWithNsidKey { 4 @rec("nsid")
+1 -1
packages/emitter/test/spec/basic/input/com/example/refInOutput.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.refInOutput { 4 @doc("Procedure with ref in output schema")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.refInOutput { 4 @doc("Procedure with ref in output schema")
+1 -1
packages/emitter/test/spec/basic/input/com/example/refs.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.refs { 4 @doc("Reference examples")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.refs { 4 @doc("Reference examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/stringConstraints.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.stringConstraints { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.stringConstraints { 4 @closed
+1 -1
packages/emitter/test/spec/basic/input/com/example/stringFormats.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.stringFormats { 4 @doc("All string format types")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.stringFormats { 4 @doc("All string format types")
+1 -1
packages/emitter/test/spec/basic/input/com/example/subscribeRecords.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.subscribeRecords { 4 @doc("Subscribe to record updates")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.subscribeRecords { 4 @doc("Subscribe to record updates")
+1 -1
packages/emitter/test/spec/basic/input/com/example/subscriptionWithErrors.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.subscriptionWithErrors { 4 @doc("Subscription with error definitions")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.subscriptionWithErrors { 4 @doc("Subscription with error definitions")
+1 -1
packages/emitter/test/spec/basic/input/com/example/tidRecord.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.tidRecord { 4 @rec("tid")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.tidRecord { 4 @rec("tid")
+1 -1
packages/emitter/test/spec/basic/input/com/example/tokens.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.tokens { 4 @doc("Token usage example")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.tokens { 4 @doc("Token usage example")
+1 -1
packages/emitter/test/spec/basic/input/com/example/unionClosed.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.unionClosed { 4 @closed
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.unionClosed { 4 @closed
+1 -1
packages/emitter/test/spec/basic/input/com/example/unionEmpty.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.unionEmpty { 4 @doc("Empty open union (similar to unknown but requires $type)")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.unionEmpty { 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"; 2 3 namespace com.example.unionOpen { 4 @doc("Open union example (default)")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.unionOpen { 4 @doc("Open union example (default)")
+1 -1
packages/emitter/test/spec/basic/input/com/example/unionWithTokens.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.unionWithTokens { 4 @doc("Tests union with token references")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.unionWithTokens { 4 @doc("Tests union with token references")
+1 -1
packages/emitter/test/spec/basic/input/com/example/unknown.tsp
··· 1 - import "@tylex/emitter"; 2 3 using TypeSpec.Reflection; 4
··· 1 + import "@typelex/emitter"; 2 3 using TypeSpec.Reflection; 4
+1 -1
packages/emitter/test/spec/basic/input/com/example/uriExamples.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.uriExamples { 4 @doc("Various URI format examples")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.uriExamples { 4 @doc("Various URI format examples")
+1 -1
packages/emitter/test/spec/basic/input/com/example/withErrors.tsp
··· 1 - import "@tylex/emitter"; 2 3 namespace com.example.withErrors { 4 @doc("The provided value is invalid")
··· 1 + import "@typelex/emitter"; 2 3 namespace com.example.withErrors { 4 @doc("The provided value is invalid")
+4 -4
packages/example/package.json
··· 1 { 2 - "name": "@tylex/example", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", 6 "scripts": { 7 - "build": "pnpm run build:tylex && pnpm run build:codegen", 8 - "build:tylex": "tsp compile tylex/main.tsp", 9 "build:codegen": "lex gen-server --yes ./src lexicon/app/example/*.json" 10 }, 11 "dependencies": { 12 "@atproto/lex-cli": "^0.9.5", 13 "@atproto/xrpc-server": "^0.9.5", 14 "@typespec/compiler": "^1.4.0", 15 - "@tylex/emitter": "workspace:*" 16 }, 17 "devDependencies": { 18 "typescript": "^5.0.0"
··· 1 { 2 + "name": "@typelex/example", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", 6 "scripts": { 7 + "build": "pnpm run build:typelex && pnpm run build:codegen", 8 + "build:typelex": "tsp compile typelex/main.tsp", 9 "build:codegen": "lex gen-server --yes ./src lexicon/app/example/*.json" 10 }, 11 "dependencies": { 12 "@atproto/lex-cli": "^0.9.5", 13 "@atproto/xrpc-server": "^0.9.5", 14 "@typespec/compiler": "^1.4.0", 15 + "@typelex/emitter": "workspace:*" 16 }, 17 "devDependencies": { 18 "typescript": "^5.0.0"
+2 -2
packages/example/tspconfig.yaml
··· 1 emit: 2 - - "@tylex/emitter" 3 options: 4 - "@tylex/emitter": 5 output-dir: "./lexicon"
··· 1 emit: 2 + - "@typelex/emitter" 3 options: 4 + "@typelex/emitter": 5 output-dir: "./lexicon"
+2 -2
packages/example/tylex/main.tsp packages/example/typelex/main.tsp
··· 1 - import "@tylex/emitter"; 2 3 - // Example showing tylex as source of truth for atproto lexicons 4 5 // ============ Common Types ============ 6
··· 1 + import "@typelex/emitter"; 2 3 + // Example showing typelex as source of truth for atproto lexicons 4 5 // ============ Common Types ============ 6
+2 -2
packages/playground/README.md
··· 1 - # Tylex Playground 2 3 - An interactive playground for the Tylex TypeSpec emitter. 4 5 ## Development 6
··· 1 + # Typelex Playground 2 3 + An interactive playground for the Typelex TypeSpec emitter. 4 5 ## Development 6
+2 -2
packages/playground/index.html
··· 1 - <!DOCTYPE html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 - <title>Tylex Playground</title> 7 </head> 8 <body> 9 <div id="root"></div>
··· 1 + <!doctype html> 2 <html lang="en"> 3 <head> 4 <meta charset="utf-8" /> 5 <meta name="viewport" content="width=device-width, initial-scale=1" /> 6 + <title>Typelex Playground</title> 7 </head> 8 <body> 9 <div id="root"></div>
+2 -2
packages/playground/package.json
··· 1 { 2 - "name": "@tylex/playground", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", ··· 12 "dependencies": { 13 "@typespec/compiler": "^1.4.0", 14 "@typespec/playground": "^0.11.0", 15 - "@tylex/emitter": "workspace:*", 16 "react": "^18.3.1", 17 "react-dom": "^18.3.1" 18 },
··· 1 { 2 + "name": "@typelex/playground", 3 "version": "0.1.0", 4 "private": true, 5 "type": "module", ··· 12 "dependencies": { 13 "@typespec/compiler": "^1.4.0", 14 "@typespec/playground": "^0.11.0", 15 + "@typelex/emitter": "workspace:*", 16 "react": "^18.3.1", 17 "react-dom": "^18.3.1" 18 },
+20 -1
packages/playground/samples/build.js
··· 13 // Write each bundled lexicon to disk 14 const samplesList = {}; 15 16 for (const [namespace, lexicon] of lexicons) { 17 const bundled = bundleLexicon(namespace); 18 const filename = `${namespace}.tsp`; 19 const filepath = join(outputDir, filename); ··· 22 23 samplesList[namespace] = { 24 filename: `samples/dist/${filename}`, 25 - preferredEmitter: "@tylex/emitter", 26 }; 27 } 28
··· 13 // Write each bundled lexicon to disk 14 const samplesList = {}; 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 33 for (const [namespace, lexicon] of lexicons) { 34 + if (namespace === defaultSample) continue; // Already added 35 + 36 const bundled = bundleLexicon(namespace); 37 const filename = `${namespace}.tsp`; 38 const filepath = join(outputDir, filename); ··· 41 42 samplesList[namespace] = { 43 filename: `samples/dist/${filename}`, 44 + preferredEmitter: "@typelex/emitter", 45 }; 46 } 47
+31 -14
packages/playground/samples/index.js
··· 16 17 if (stat.isDirectory()) { 18 files.push(...getAllTspFiles(fullPath, baseDir)); 19 - } else if (entry.endsWith('.tsp')) { 20 files.push(relative(baseDir, fullPath)); 21 } 22 } ··· 29 const deps = new Set(); 30 // Match namespace references like "com.atproto.label.defs.Label" or "com.atproto.repo.strongRef.Main" 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*\{/, ''); 34 35 const matches = withoutDeclaration.matchAll(pattern); 36 for (const match of matches) { ··· 40 return Array.from(deps); 41 } 42 43 - const atprotoInputDir = join(__dirname, "../../emitter/test/integration/atproto/input"); 44 - const lexiconExamplesDir = join(__dirname, "../../emitter/test/integration/lexicon-examples/input"); 45 46 const atprotoFiles = getAllTspFiles(atprotoInputDir); 47 const lexiconExampleFiles = getAllTspFiles(lexiconExamplesDir); ··· 52 // Process atproto files 53 for (const file of atprotoFiles) { 54 const fullPath = join(atprotoInputDir, file); 55 - const content = readFileSync(fullPath, 'utf-8'); 56 - const namespace = file.replace(/\.tsp$/, '').replace(/\//g, '.'); 57 const deps = extractDependencies(content); 58 59 lexicons.set(namespace, { file: `atproto/${file}`, content, deps }); ··· 62 // Process lexicon-examples files 63 for (const file of lexiconExampleFiles) { 64 const fullPath = join(lexiconExamplesDir, file); 65 - const content = readFileSync(fullPath, 'utf-8'); 66 - const namespace = file.replace(/\.tsp$/, '').replace(/\//g, '.'); 67 const deps = extractDependencies(content); 68 69 lexicons.set(namespace, { file: `examples/${file}`, content, deps }); 70 } 71 72 // Recursively collect all dependencies (topological sort) 73 - function collectDependencies(namespace, collected = new Set(), visiting = new Set()) { 74 if (collected.has(namespace)) return; 75 if (visiting.has(namespace)) return; // circular dependency 76 ··· 95 96 // Put the main lexicon FIRST, then its dependencies 97 const mainLexicon = lexicons.get(namespace); 98 - const deps = Array.from(collected).filter(ns => ns !== namespace); 99 100 - let bundled = 'import "@tylex/emitter";\n\n'; 101 102 // Main lexicon first (so it shows in the playground) 103 if (mainLexicon) { 104 - const contentWithoutImport = mainLexicon.content.replace(/^import "@tylex\/emitter";\s*\n/, ''); 105 bundled += `// ${mainLexicon.file}\n${contentWithoutImport}\n`; 106 } 107 ··· 110 const lexicon = lexicons.get(ns); 111 if (!lexicon) continue; 112 113 - const contentWithoutImport = lexicon.content.replace(/^import "@tylex\/emitter";\s*\n/, ''); 114 bundled += `// ${lexicon.file}\n${contentWithoutImport}\n`; 115 } 116
··· 16 17 if (stat.isDirectory()) { 18 files.push(...getAllTspFiles(fullPath, baseDir)); 19 + } else if (entry.endsWith(".tsp")) { 20 files.push(relative(baseDir, fullPath)); 21 } 22 } ··· 29 const deps = new Set(); 30 // Match namespace references like "com.atproto.label.defs.Label" or "com.atproto.repo.strongRef.Main" 31 // Pattern: word.word.word... followed by dot and identifier starting with capital letter 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*\{/, ""); 35 36 const matches = withoutDeclaration.matchAll(pattern); 37 for (const match of matches) { ··· 41 return Array.from(deps); 42 } 43 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 + ); 52 53 const atprotoFiles = getAllTspFiles(atprotoInputDir); 54 const lexiconExampleFiles = getAllTspFiles(lexiconExamplesDir); ··· 59 // Process atproto files 60 for (const file of atprotoFiles) { 61 const fullPath = join(atprotoInputDir, file); 62 + const content = readFileSync(fullPath, "utf-8"); 63 + const namespace = file.replace(/\.tsp$/, "").replace(/\//g, "."); 64 const deps = extractDependencies(content); 65 66 lexicons.set(namespace, { file: `atproto/${file}`, content, deps }); ··· 69 // Process lexicon-examples files 70 for (const file of lexiconExampleFiles) { 71 const fullPath = join(lexiconExamplesDir, file); 72 + const content = readFileSync(fullPath, "utf-8"); 73 + const namespace = file.replace(/\.tsp$/, "").replace(/\//g, "."); 74 const deps = extractDependencies(content); 75 76 lexicons.set(namespace, { file: `examples/${file}`, content, deps }); 77 } 78 79 // Recursively collect all dependencies (topological sort) 80 + function collectDependencies( 81 + namespace, 82 + collected = new Set(), 83 + visiting = new Set(), 84 + ) { 85 if (collected.has(namespace)) return; 86 if (visiting.has(namespace)) return; // circular dependency 87 ··· 106 107 // Put the main lexicon FIRST, then its dependencies 108 const mainLexicon = lexicons.get(namespace); 109 + const deps = Array.from(collected).filter((ns) => ns !== namespace); 110 111 + let bundled = 'import "@typelex/emitter";\n\n'; 112 113 // Main lexicon first (so it shows in the playground) 114 if (mainLexicon) { 115 + const contentWithoutImport = mainLexicon.content.replace( 116 + /^import "@typelex\/emitter";\s*\n/, 117 + "", 118 + ); 119 bundled += `// ${mainLexicon.file}\n${contentWithoutImport}\n`; 120 } 121 ··· 124 const lexicon = lexicons.get(ns); 125 if (!lexicon) continue; 126 127 + const contentWithoutImport = lexicon.content.replace( 128 + /^import "@typelex\/emitter";\s*\n/, 129 + "", 130 + ); 131 bundled += `// ${lexicon.file}\n${contentWithoutImport}\n`; 132 } 133
+5
packages/playground/src/main.tsx
··· 4 import "@typespec/playground/styles.css"; 5 import "./style.css"; 6 7 registerMonacoDefaultWorkersForVite(); 8 9 await renderReactPlayground({
··· 4 import "@typespec/playground/styles.css"; 5 import "./style.css"; 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 + 12 registerMonacoDefaultWorkersForVite(); 13 14 await renderReactPlayground({
+2 -2
packages/playground/src/style.css
··· 1 /* Hide the emitter dropdown since we only have one emitter */ 2 - .sample-dropdown { 3 - /*display: none !important;*/ 4 }
··· 1 /* Hide the emitter dropdown since we only have one emitter */ 2 + :has(> select[aria-label="Select an emitter"]) { 3 + display: none !important; 4 }
+6 -9
packages/playground/vite.config.ts
··· 3 import samples from "./samples/dist/samples.js"; 4 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 - }, 13 samples, 14 links: { 15 documentationUrl: "https://tangled.org/@danabra.mov/typlex", 16 }, 17 - enableSwaggerUI: false, 18 }); 19 20 export default defineConfig({ 21 ...playgroundConfig, 22 optimizeDeps: { 23 ...playgroundConfig.optimizeDeps, 24 - exclude: [...(playgroundConfig.optimizeDeps?.exclude || []), "monaco-editor"], 25 esbuildOptions: { 26 target: "esnext", 27 },
··· 3 import samples from "./samples/dist/samples.js"; 4 5 const playgroundConfig = definePlaygroundViteConfig({ 6 + defaultEmitter: "@typelex/emitter", 7 + libraries: ["@typespec/compiler", "@typelex/emitter"], 8 samples, 9 links: { 10 documentationUrl: "https://tangled.org/@danabra.mov/typlex", 11 }, 12 }); 13 14 export default defineConfig({ 15 ...playgroundConfig, 16 optimizeDeps: { 17 ...playgroundConfig.optimizeDeps, 18 + exclude: [ 19 + ...(playgroundConfig.optimizeDeps?.exclude || []), 20 + "monaco-editor", 21 + ], 22 esbuildOptions: { 23 target: "esnext", 24 },
+3 -3
packages/website/README.md
··· 1 - # Tylex Website 2 3 - Landing page for tylex - TypeSpec for AT Protocol Lexicons. 4 5 ## Features 6 7 - **Live Examples**: TypeSpec examples are compiled during build to show real Lexicon JSON output 8 - **Syntax Highlighting**: Using Shiki for beautiful code highlighting 9 - - **Interactive Playground**: Try tylex in the browser (coming soon) 10 11 ## Development 12
··· 1 + # Typelex Website 2 3 + Landing page for typelex - TypeSpec for AT Protocol Lexicons. 4 5 ## Features 6 7 - **Live Examples**: TypeSpec examples are compiled during build to show real Lexicon JSON output 8 - **Syntax Highlighting**: Using Shiki for beautiful code highlighting 9 + - **Interactive Playground**: Try typelex in the browser (coming soon) 10 11 ## Development 12
+2 -2
packages/website/package.json
··· 10 }, 11 "dependencies": { 12 "@astrojs/react": "^4.4.0", 13 - "@tylex/emitter": "workspace:*", 14 "@typespec/bundler": "^0.4.4", 15 "@typespec/playground": "^0.11.0", 16 "astro": "^5.14.1", ··· 24 "@types/react-dom": "^19.2.0", 25 "@typespec/compiler": "^1.4.0" 26 } 27 - }
··· 10 }, 11 "dependencies": { 12 "@astrojs/react": "^4.4.0", 13 + "@typelex/emitter": "workspace:*", 14 "@typespec/bundler": "^0.4.4", 15 "@typespec/playground": "^0.11.0", 16 "astro": "^5.14.1", ··· 24 "@types/react-dom": "^19.2.0", 25 "@typespec/compiler": "^1.4.0" 26 } 27 + }
+44 -26
packages/website/src/components/Playground.tsx
··· 1 export default function Playground() { 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 }}> 18 Try it in the Playground 19 </h3> 20 - <p style={{ fontSize: '1.125rem', marginBottom: '2rem', lineHeight: '1.6' }}> 21 - Experience tylex with syntax highlighting, live compilation, and instant Lexicon output. 22 </p> 23 <a 24 href="http://localhost:5174" 25 target="_blank" 26 rel="noopener noreferrer" 27 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', 34 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', 38 }} 39 > 40 Open Playground →
··· 1 export default function Playground() { 2 return ( 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 + > 27 Try it in the Playground 28 </h3> 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. 38 </p> 39 <a 40 href="http://localhost:5174" 41 target="_blank" 42 rel="noopener noreferrer" 43 style={{ 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", 51 fontWeight: 700, 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", 56 }} 57 > 58 Open Playground →
+13 -13
packages/website/src/pages/index.astro
··· 11 const examples = [ 12 { 13 title: "Records and properties", 14 - tylex: `import "@tylex/emitter"; 15 16 namespace fm.teal.alpha.feed.play { 17 @rec("tid") ··· 31 }, 32 { 33 title: "Refs and unions", 34 - tylex: `import "@tylex/emitter"; 35 36 namespace app.bsky.feed.post { 37 @rec("tid") ··· 66 }, 67 { 68 title: "Queries and params", 69 - tylex: `import "@tylex/emitter"; 70 71 namespace com.atproto.repo.listRecords { 72 @query ··· 103 const highlighted = await Promise.all( 104 examples.map(async (ex) => { 105 // Create temporary file for compilation 106 - const tmpDir = mkdtempSync(join(tmpdir(), 'tylex-')); 107 const tmpFile = join(tmpDir, 'example.tsp'); 108 - writeFileSync(tmpFile, ex.tylex); 109 110 try { 111 const lexiconJson = await compileToJson(tmpFile); ··· 113 114 return { 115 ...ex, 116 - tylexHtml: await highlightCode(ex.tylex, 'typespec'), 117 lexiconHtml: await highlightCode(lexicon, 'json'), 118 }; 119 } finally { ··· 130 <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 131 <meta name="viewport" content="width=device-width" /> 132 <meta name="generator" content={Astro.generator} /> 133 - <title>tylex – TypeSpec for AT protocol Lexicons</title> 134 </head> 135 <body> 136 <div class="container"> ··· 144 <h3 class="hero-header"> 145 Typelex 146 </h3> 147 - <div class="hero-code" set:html={await highlightCode(`import "@tylex/emitter"; 148 149 namespace app.bsky.actor.profile { 150 @rec("self") ··· 207 208 <div class="separator"></div> 209 210 - {highlighted.map(({ title, tylexHtml, lexiconHtml }) => ( 211 <section> 212 <h2>{title}</h2> 213 <div class="comparison"> ··· 216 <h3 class="code-header"> 217 Typelex 218 </h3> 219 - <div class="code-block" set:html={tylexHtml} /> 220 </div> 221 <div class="code-panel"> 222 <h3 class="code-header"> ··· 252 <div class="step-number">1</div> 253 <div class="step-content"> 254 <h3>Install packages</h3> 255 - <div class="install-box" set:html={await highlightCode('npm install -D @typespec/compiler @tylex/emitter', 'bash')} /> 256 </div> 257 </div> 258 ··· 261 <div class="step-content"> 262 <h3>Add <a href="https://typespec.io/docs/handbook/configuration/configuration/" target="_blank" rel="noopener noreferrer">tspconfig.yaml</a></h3> 263 <div class="install-box" set:html={await highlightCode(`emit: 264 - - "@tylex/emitter" 265 options: 266 - "@tylex/emitter": 267 output-dir: "./lexicon"`, 'yaml')} /> 268 </div> 269 </div>
··· 11 const examples = [ 12 { 13 title: "Records and properties", 14 + typelex: `import "@typelex/emitter"; 15 16 namespace fm.teal.alpha.feed.play { 17 @rec("tid") ··· 31 }, 32 { 33 title: "Refs and unions", 34 + typelex: `import "@typelex/emitter"; 35 36 namespace app.bsky.feed.post { 37 @rec("tid") ··· 66 }, 67 { 68 title: "Queries and params", 69 + typelex: `import "@typelex/emitter"; 70 71 namespace com.atproto.repo.listRecords { 72 @query ··· 103 const highlighted = await Promise.all( 104 examples.map(async (ex) => { 105 // Create temporary file for compilation 106 + const tmpDir = mkdtempSync(join(tmpdir(), 'typelex-')); 107 const tmpFile = join(tmpDir, 'example.tsp'); 108 + writeFileSync(tmpFile, ex.typelex); 109 110 try { 111 const lexiconJson = await compileToJson(tmpFile); ··· 113 114 return { 115 ...ex, 116 + typelexHtml: await highlightCode(ex.typelex, 'typespec'), 117 lexiconHtml: await highlightCode(lexicon, 'json'), 118 }; 119 } finally { ··· 130 <link rel="icon" type="image/svg+xml" href="/favicon.svg" /> 131 <meta name="viewport" content="width=device-width" /> 132 <meta name="generator" content={Astro.generator} /> 133 + <title>typelex – TypeSpec for AT protocol Lexicons</title> 134 </head> 135 <body> 136 <div class="container"> ··· 144 <h3 class="hero-header"> 145 Typelex 146 </h3> 147 + <div class="hero-code" set:html={await highlightCode(`import "@typelex/emitter"; 148 149 namespace app.bsky.actor.profile { 150 @rec("self") ··· 207 208 <div class="separator"></div> 209 210 + {highlighted.map(({ title, typelexHtml, lexiconHtml }) => ( 211 <section> 212 <h2>{title}</h2> 213 <div class="comparison"> ··· 216 <h3 class="code-header"> 217 Typelex 218 </h3> 219 + <div class="code-block" set:html={typelexHtml} /> 220 </div> 221 <div class="code-panel"> 222 <h3 class="code-header"> ··· 252 <div class="step-number">1</div> 253 <div class="step-content"> 254 <h3>Install packages</h3> 255 + <div class="install-box" set:html={await highlightCode('npm install -D @typespec/compiler @typelex/emitter', 'bash')} /> 256 </div> 257 </div> 258 ··· 261 <div class="step-content"> 262 <h3>Add <a href="https://typespec.io/docs/handbook/configuration/configuration/" target="_blank" rel="noopener noreferrer">tspconfig.yaml</a></h3> 263 <div class="install-box" set:html={await highlightCode(`emit: 264 + - "@typelex/emitter" 265 options: 266 + "@typelex/emitter": 267 output-dir: "./lexicon"`, 'yaml')} /> 268 </div> 269 </div>
+14 -11
packages/website/src/utils/compile.ts
··· 12 // Get the emitter package root 13 const emitterRoot = resolve(__dirname, "../../../emitter"); 14 15 - const TylexTestLibrary: TypeSpecTestLibrary = { 16 - name: "@tylex/emitter", 17 packageRoot: emitterRoot, 18 files: [ 19 { 20 realDir: "", 21 pattern: "package.json", 22 - virtualPath: "./node_modules/@tylex/emitter", 23 }, 24 { 25 realDir: "dist", 26 pattern: "**/*.js", 27 - virtualPath: "./node_modules/@tylex/emitter/dist", 28 }, 29 { 30 realDir: "lib/", 31 pattern: "*.tsp", 32 - virtualPath: "./node_modules/@tylex/emitter/lib", 33 }, 34 ], 35 }; ··· 39 40 // Create test host 41 const host = await createTestHost({ 42 - libraries: [TylexTestLibrary], 43 }); 44 45 // Read the TypeSpec file ··· 53 const [, diagnostics] = await host.compileAndDiagnose(fileName, { 54 outputDir: baseOutputPath, 55 noEmit: false, 56 - emit: ["@tylex/emitter"], 57 }); 58 59 // Check for errors 60 - const errors = diagnostics.filter(d => d.severity === "error"); 61 if (errors.length > 0) { 62 - throw new Error(`TypeSpec compilation failed: ${errors.map(e => e.message).join(", ")}`); 63 } 64 65 // Extract the generated JSON from the virtual filesystem 66 - const outputEntries = [...host.fs.entries()] 67 - .filter(([name]) => name.startsWith(baseOutputPath) && name.endsWith('.json')); 68 69 if (outputEntries.length === 0) { 70 throw new Error("No JSON output found from TypeSpec compilation");
··· 12 // Get the emitter package root 13 const emitterRoot = resolve(__dirname, "../../../emitter"); 14 15 + const TypelexTestLibrary: TypeSpecTestLibrary = { 16 + name: "@typelex/emitter", 17 packageRoot: emitterRoot, 18 files: [ 19 { 20 realDir: "", 21 pattern: "package.json", 22 + virtualPath: "./node_modules/@typelex/emitter", 23 }, 24 { 25 realDir: "dist", 26 pattern: "**/*.js", 27 + virtualPath: "./node_modules/@typelex/emitter/dist", 28 }, 29 { 30 realDir: "lib/", 31 pattern: "*.tsp", 32 + virtualPath: "./node_modules/@typelex/emitter/lib", 33 }, 34 ], 35 }; ··· 39 40 // Create test host 41 const host = await createTestHost({ 42 + libraries: [TypelexTestLibrary], 43 }); 44 45 // Read the TypeSpec file ··· 53 const [, diagnostics] = await host.compileAndDiagnose(fileName, { 54 outputDir: baseOutputPath, 55 noEmit: false, 56 + emit: ["@typelex/emitter"], 57 }); 58 59 // Check for errors 60 + const errors = diagnostics.filter((d) => d.severity === "error"); 61 if (errors.length > 0) { 62 + throw new Error( 63 + `TypeSpec compilation failed: ${errors.map((e) => e.message).join(", ")}`, 64 + ); 65 } 66 67 // Extract the generated JSON from the virtual filesystem 68 + const outputEntries = [...host.fs.entries()].filter( 69 + ([name]) => name.startsWith(baseOutputPath) && name.endsWith(".json"), 70 + ); 71 72 if (outputEntries.length === 0) { 73 throw new Error("No JSON output found from TypeSpec compilation");
+7147 -4341
pnpm-lock.yaml
··· 1 - lockfileVersion: '9.0' 2 3 settings: 4 autoInstallPeers: true 5 excludeLinksFromLockfile: false 6 7 importers: 8 - 9 .: 10 devDependencies: 11 typescript: ··· 14 15 packages/emitter: 16 dependencies: 17 - '@typespec/compiler': 18 specifier: ^1.4.0 19 version: 1.4.0(@types/node@20.19.19) 20 devDependencies: 21 - '@types/node': 22 specifier: ^20.0.0 23 version: 20.19.19 24 - '@typespec/http': 25 specifier: ^1.4.0 26 version: 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 27 - '@typespec/openapi': 28 specifier: ^1.4.0 29 version: 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 30 concurrently: ··· 42 43 packages/example: 44 dependencies: 45 - '@atproto/lex-cli': 46 specifier: ^0.9.5 47 version: 0.9.5 48 - '@atproto/xrpc-server': 49 specifier: ^0.9.5 50 version: 0.9.5 51 - '@tylex/emitter': 52 specifier: workspace:* 53 version: link:../emitter 54 - '@typespec/compiler': 55 specifier: ^1.4.0 56 version: 1.4.0(@types/node@20.19.19) 57 devDependencies: ··· 61 62 packages/playground: 63 dependencies: 64 - '@tylex/emitter': 65 specifier: workspace:* 66 version: link:../emitter 67 - '@typespec/compiler': 68 specifier: ^1.4.0 69 version: 1.4.0(@types/node@20.19.19) 70 - '@typespec/playground': 71 specifier: ^0.11.0 72 version: 0.11.0(@types/node@20.19.19)(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(scheduler@0.27.0) 73 react: ··· 77 specifier: ^18.3.1 78 version: 18.3.1(react@18.3.1) 79 devDependencies: 80 - '@types/react': 81 specifier: ^18.3.12 82 version: 18.3.25 83 - '@types/react-dom': 84 specifier: ^18.3.1 85 version: 18.3.7(@types/react@18.3.25) 86 vite: ··· 89 90 packages/website: 91 dependencies: 92 - '@astrojs/react': 93 specifier: ^4.4.0 94 version: 4.4.0(@types/node@20.19.19)(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@19.2.0(react@19.2.0))(react@19.2.0)(yaml@2.8.1) 95 - '@tylex/emitter': 96 specifier: workspace:* 97 version: link:../emitter 98 - '@typespec/bundler': 99 specifier: ^0.4.4 100 version: 0.4.4(@types/node@20.19.19) 101 - '@typespec/playground': 102 specifier: ^0.11.0 103 version: 0.11.0(@types/node@20.19.19)(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(scheduler@0.27.0) 104 astro: ··· 117 specifier: ^3.13.0 118 version: 3.13.0 119 devDependencies: 120 - '@types/react': 121 specifier: ^19.2.0 122 version: 19.2.0 123 - '@types/react-dom': 124 specifier: ^19.2.0 125 version: 19.2.0(@types/react@19.2.0) 126 - '@typespec/compiler': 127 specifier: ^1.4.0 128 version: 1.4.0(@types/node@20.19.19) 129 130 packages: 131 - 132 - '@apidevtools/json-schema-ref-parser@14.0.1': 133 - resolution: {integrity: sha512-Oc96zvmxx1fqoSEdUmfmvvb59/KDOnUoJ7s2t7bISyAn0XEz57LCCw8k2Y4Pf3mwKaZLMciESALORLgfe2frCw==} 134 - engines: {node: '>= 16'} 135 136 - '@apidevtools/openapi-schemas@2.1.0': 137 - resolution: {integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==} 138 - engines: {node: '>=10'} 139 140 - '@apidevtools/swagger-methods@3.0.2': 141 - resolution: {integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==} 142 143 - '@apidevtools/swagger-parser@12.0.0': 144 - resolution: {integrity: sha512-WLJIWcfOXrSKlZEM+yhA2Xzatgl488qr1FoOxixYmtWapBzwSC0gVGq4WObr4hHClMIiFFdOBdixNkvWqkWIWA==} 145 peerDependencies: 146 - openapi-types: '>=7' 147 148 - '@astrojs/compiler@2.13.0': 149 - resolution: {integrity: sha512-mqVORhUJViA28fwHYaWmsXSzLO9osbdZ5ImUfxBarqsYdMlPbqAqGJCxsNzvppp1BEzc1mJNjOVvQqeDN8Vspw==} 150 151 - '@astrojs/internal-helpers@0.7.3': 152 - resolution: {integrity: sha512-6Pl0bQEIChuW5wqN7jdKrzWfCscW2rG/Cz+fzt4PhSQX2ivBpnhXgFUCs0M3DCYvjYHnPVG2W36X5rmFjZ62sw==} 153 154 - '@astrojs/markdown-remark@6.3.7': 155 - resolution: {integrity: sha512-KXGdq6/BC18doBCYXp08alHlWChH0hdD2B1qv9wIyOHbvwI5K6I7FhSta8dq1hBQNdun8YkKPR013D/Hm8xd0g==} 156 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} 160 161 - '@astrojs/react@4.4.0': 162 - resolution: {integrity: sha512-RzblkVImAFdV1C0AWsSWzS70Z0FMtW2p0XXkNYu3QePfyVJta3JIy8m8jY8271etaCZtpFjsE2UaiHGZIBm6nw==} 163 - engines: {node: 18.20.8 || ^20.3.0 || >=22.0.0} 164 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 167 react: ^17.0.2 || ^18.0.0 || ^19.0.0 168 react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0 169 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} 173 174 - '@atproto/common-web@0.4.3': 175 - resolution: {integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==} 176 177 - '@atproto/common@0.4.12': 178 - resolution: {integrity: sha512-NC+TULLQiqs6MvNymhQS5WDms3SlbIKGLf4n33tpftRJcalh507rI+snbcUb7TLIkKw7VO17qMqxEXtIdd5auQ==} 179 - engines: {node: '>=18.7.0'} 180 181 - '@atproto/crypto@0.4.4': 182 - resolution: {integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==} 183 - engines: {node: '>=18.7.0'} 184 185 - '@atproto/lex-cli@0.9.5': 186 - resolution: {integrity: sha512-zun4jhD1dbjD7IHtLIjh/1UsMx+6E8+OyOT2GXYAKIj9N6wmLKM/v2OeQBKxcyqUmtRi57lxWnGikWjjU7pplQ==} 187 - engines: {node: '>=18.7.0'} 188 hasBin: true 189 190 - '@atproto/lexicon@0.5.1': 191 - resolution: {integrity: sha512-y8AEtYmfgVl4fqFxqXAeGvhesiGkxiy3CWoJIfsFDDdTlZUC8DFnZrYhcqkIop3OlCkkljvpSJi1hbeC1tbi8A==} 192 193 - '@atproto/syntax@0.4.1': 194 - resolution: {integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==} 195 196 - '@atproto/xrpc-server@0.9.5': 197 - resolution: {integrity: sha512-V0srjUgy6mQ5yf9+MSNBLs457m4qclEaWZsnqIE7RfYywvntexTAbMoo7J7ONfTNwdmA9Gw4oLak2z2cDAET4w==} 198 - engines: {node: '>=18.7.0'} 199 200 - '@atproto/xrpc@0.7.5': 201 - resolution: {integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==} 202 203 - '@babel/code-frame@7.27.1': 204 - resolution: {integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==} 205 - engines: {node: '>=6.9.0'} 206 207 - '@babel/compat-data@7.28.4': 208 - resolution: {integrity: sha512-YsmSKC29MJwf0gF8Rjjrg5LQCmyh+j/nD8/eP7f+BeoQTKYqs9RoWbjGOdy0+1Ekr68RJZMUOPVQaQisnIo4Rw==} 209 - engines: {node: '>=6.9.0'} 210 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'} 214 215 - '@babel/generator@7.28.3': 216 - resolution: {integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==} 217 - engines: {node: '>=6.9.0'} 218 219 - '@babel/helper-compilation-targets@7.27.2': 220 - resolution: {integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==} 221 - engines: {node: '>=6.9.0'} 222 223 - '@babel/helper-globals@7.28.0': 224 - resolution: {integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==} 225 - engines: {node: '>=6.9.0'} 226 227 - '@babel/helper-module-imports@7.27.1': 228 - resolution: {integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==} 229 - engines: {node: '>=6.9.0'} 230 231 - '@babel/helper-module-transforms@7.28.3': 232 - resolution: {integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==} 233 - engines: {node: '>=6.9.0'} 234 peerDependencies: 235 - '@babel/core': ^7.0.0 236 237 - '@babel/helper-plugin-utils@7.27.1': 238 - resolution: {integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==} 239 - engines: {node: '>=6.9.0'} 240 241 - '@babel/helper-string-parser@7.27.1': 242 - resolution: {integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==} 243 - engines: {node: '>=6.9.0'} 244 245 - '@babel/helper-validator-identifier@7.27.1': 246 - resolution: {integrity: sha512-D2hP9eA+Sqx1kBZgzxZh0y1trbuU+JoDkiEwqhQ36nodYqJwyEIhPSdMNd7lOm/4io72luTPWH20Yda0xOuUow==} 247 - engines: {node: '>=6.9.0'} 248 249 - '@babel/helper-validator-option@7.27.1': 250 - resolution: {integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==} 251 - engines: {node: '>=6.9.0'} 252 253 - '@babel/helpers@7.28.4': 254 - resolution: {integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==} 255 - engines: {node: '>=6.9.0'} 256 257 - '@babel/parser@7.28.4': 258 - resolution: {integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==} 259 - engines: {node: '>=6.0.0'} 260 hasBin: true 261 262 - '@babel/plugin-transform-react-jsx-self@7.27.1': 263 - resolution: {integrity: sha512-6UzkCs+ejGdZ5mFFC/OCUrv028ab2fp1znZmCZjAOBKiBK2jXD1O+BPSfX8X2qjJ75fZBMSnQn3Rq2mrBJK2mw==} 264 - engines: {node: '>=6.9.0'} 265 peerDependencies: 266 - '@babel/core': ^7.0.0-0 267 268 - '@babel/plugin-transform-react-jsx-source@7.27.1': 269 - resolution: {integrity: sha512-zbwoTsBruTeKB9hSq73ha66iFeJHuaFkUbwvqElnygoNbj/jHRsSeokowZFN3CZ64IvEqcmmkVe89OPXc7ldAw==} 270 - engines: {node: '>=6.9.0'} 271 peerDependencies: 272 - '@babel/core': ^7.0.0-0 273 274 - '@babel/runtime@7.28.4': 275 - resolution: {integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==} 276 - engines: {node: '>=6.9.0'} 277 278 - '@babel/template@7.27.2': 279 - resolution: {integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==} 280 - engines: {node: '>=6.9.0'} 281 282 - '@babel/traverse@7.28.4': 283 - resolution: {integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==} 284 - engines: {node: '>=6.9.0'} 285 286 - '@babel/types@7.28.4': 287 - resolution: {integrity: sha512-bkFqkLhh3pMBUQQkpVgWDWq/lqzc2678eUyDlTBhRqhCHFguYYGM0Efga7tYk4TogG/3x0EEl66/OQ+WGbWB/Q==} 288 - engines: {node: '>=6.9.0'} 289 290 - '@capsizecss/unpack@2.4.0': 291 - resolution: {integrity: sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==} 292 293 - '@cbor-extract/cbor-extract-darwin-arm64@2.2.0': 294 - resolution: {integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==} 295 cpu: [arm64] 296 os: [darwin] 297 298 - '@cbor-extract/cbor-extract-darwin-x64@2.2.0': 299 - resolution: {integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==} 300 cpu: [x64] 301 os: [darwin] 302 303 - '@cbor-extract/cbor-extract-linux-arm64@2.2.0': 304 - resolution: {integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==} 305 cpu: [arm64] 306 os: [linux] 307 308 - '@cbor-extract/cbor-extract-linux-arm@2.2.0': 309 - resolution: {integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==} 310 cpu: [arm] 311 os: [linux] 312 313 - '@cbor-extract/cbor-extract-linux-x64@2.2.0': 314 - resolution: {integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==} 315 cpu: [x64] 316 os: [linux] 317 318 - '@cbor-extract/cbor-extract-win32-x64@2.2.0': 319 - resolution: {integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==} 320 cpu: [x64] 321 os: [win32] 322 323 - '@ctrl/tinycolor@3.6.1': 324 - resolution: {integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==} 325 - engines: {node: '>=10'} 326 327 - '@emnapi/runtime@1.5.0': 328 - resolution: {integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==} 329 330 - '@emotion/hash@0.9.2': 331 - resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==} 332 333 - '@esbuild/aix-ppc64@0.21.5': 334 - resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==} 335 - engines: {node: '>=12'} 336 cpu: [ppc64] 337 os: [aix] 338 339 - '@esbuild/aix-ppc64@0.25.10': 340 - resolution: {integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==} 341 - engines: {node: '>=18'} 342 cpu: [ppc64] 343 os: [aix] 344 345 - '@esbuild/android-arm64@0.21.5': 346 - resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==} 347 - engines: {node: '>=12'} 348 cpu: [arm64] 349 os: [android] 350 351 - '@esbuild/android-arm64@0.25.10': 352 - resolution: {integrity: sha512-LSQa7eDahypv/VO6WKohZGPSJDq5OVOo3UoFR1E4t4Gj1W7zEQMUhI+lo81H+DtB+kP+tDgBp+M4oNCwp6kffg==} 353 - engines: {node: '>=18'} 354 cpu: [arm64] 355 os: [android] 356 357 - '@esbuild/android-arm@0.21.5': 358 - resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==} 359 - engines: {node: '>=12'} 360 cpu: [arm] 361 os: [android] 362 363 - '@esbuild/android-arm@0.25.10': 364 - resolution: {integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==} 365 - engines: {node: '>=18'} 366 cpu: [arm] 367 os: [android] 368 369 - '@esbuild/android-x64@0.21.5': 370 - resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==} 371 - engines: {node: '>=12'} 372 cpu: [x64] 373 os: [android] 374 375 - '@esbuild/android-x64@0.25.10': 376 - resolution: {integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==} 377 - engines: {node: '>=18'} 378 cpu: [x64] 379 os: [android] 380 381 - '@esbuild/darwin-arm64@0.21.5': 382 - resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==} 383 - engines: {node: '>=12'} 384 cpu: [arm64] 385 os: [darwin] 386 387 - '@esbuild/darwin-arm64@0.25.10': 388 - resolution: {integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==} 389 - engines: {node: '>=18'} 390 cpu: [arm64] 391 os: [darwin] 392 393 - '@esbuild/darwin-x64@0.21.5': 394 - resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==} 395 - engines: {node: '>=12'} 396 cpu: [x64] 397 os: [darwin] 398 399 - '@esbuild/darwin-x64@0.25.10': 400 - resolution: {integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==} 401 - engines: {node: '>=18'} 402 cpu: [x64] 403 os: [darwin] 404 405 - '@esbuild/freebsd-arm64@0.21.5': 406 - resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==} 407 - engines: {node: '>=12'} 408 cpu: [arm64] 409 os: [freebsd] 410 411 - '@esbuild/freebsd-arm64@0.25.10': 412 - resolution: {integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==} 413 - engines: {node: '>=18'} 414 cpu: [arm64] 415 os: [freebsd] 416 417 - '@esbuild/freebsd-x64@0.21.5': 418 - resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==} 419 - engines: {node: '>=12'} 420 cpu: [x64] 421 os: [freebsd] 422 423 - '@esbuild/freebsd-x64@0.25.10': 424 - resolution: {integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==} 425 - engines: {node: '>=18'} 426 cpu: [x64] 427 os: [freebsd] 428 429 - '@esbuild/linux-arm64@0.21.5': 430 - resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==} 431 - engines: {node: '>=12'} 432 cpu: [arm64] 433 os: [linux] 434 435 - '@esbuild/linux-arm64@0.25.10': 436 - resolution: {integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==} 437 - engines: {node: '>=18'} 438 cpu: [arm64] 439 os: [linux] 440 441 - '@esbuild/linux-arm@0.21.5': 442 - resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==} 443 - engines: {node: '>=12'} 444 cpu: [arm] 445 os: [linux] 446 447 - '@esbuild/linux-arm@0.25.10': 448 - resolution: {integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==} 449 - engines: {node: '>=18'} 450 cpu: [arm] 451 os: [linux] 452 453 - '@esbuild/linux-ia32@0.21.5': 454 - resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==} 455 - engines: {node: '>=12'} 456 cpu: [ia32] 457 os: [linux] 458 459 - '@esbuild/linux-ia32@0.25.10': 460 - resolution: {integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==} 461 - engines: {node: '>=18'} 462 cpu: [ia32] 463 os: [linux] 464 465 - '@esbuild/linux-loong64@0.21.5': 466 - resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==} 467 - engines: {node: '>=12'} 468 cpu: [loong64] 469 os: [linux] 470 471 - '@esbuild/linux-loong64@0.25.10': 472 - resolution: {integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==} 473 - engines: {node: '>=18'} 474 cpu: [loong64] 475 os: [linux] 476 477 - '@esbuild/linux-mips64el@0.21.5': 478 - resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==} 479 - engines: {node: '>=12'} 480 cpu: [mips64el] 481 os: [linux] 482 483 - '@esbuild/linux-mips64el@0.25.10': 484 - resolution: {integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==} 485 - engines: {node: '>=18'} 486 cpu: [mips64el] 487 os: [linux] 488 489 - '@esbuild/linux-ppc64@0.21.5': 490 - resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==} 491 - engines: {node: '>=12'} 492 cpu: [ppc64] 493 os: [linux] 494 495 - '@esbuild/linux-ppc64@0.25.10': 496 - resolution: {integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==} 497 - engines: {node: '>=18'} 498 cpu: [ppc64] 499 os: [linux] 500 501 - '@esbuild/linux-riscv64@0.21.5': 502 - resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==} 503 - engines: {node: '>=12'} 504 cpu: [riscv64] 505 os: [linux] 506 507 - '@esbuild/linux-riscv64@0.25.10': 508 - resolution: {integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==} 509 - engines: {node: '>=18'} 510 cpu: [riscv64] 511 os: [linux] 512 513 - '@esbuild/linux-s390x@0.21.5': 514 - resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==} 515 - engines: {node: '>=12'} 516 cpu: [s390x] 517 os: [linux] 518 519 - '@esbuild/linux-s390x@0.25.10': 520 - resolution: {integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==} 521 - engines: {node: '>=18'} 522 cpu: [s390x] 523 os: [linux] 524 525 - '@esbuild/linux-x64@0.21.5': 526 - resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==} 527 - engines: {node: '>=12'} 528 cpu: [x64] 529 os: [linux] 530 531 - '@esbuild/linux-x64@0.25.10': 532 - resolution: {integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==} 533 - engines: {node: '>=18'} 534 cpu: [x64] 535 os: [linux] 536 537 - '@esbuild/netbsd-arm64@0.25.10': 538 - resolution: {integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==} 539 - engines: {node: '>=18'} 540 cpu: [arm64] 541 os: [netbsd] 542 543 - '@esbuild/netbsd-x64@0.21.5': 544 - resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==} 545 - engines: {node: '>=12'} 546 cpu: [x64] 547 os: [netbsd] 548 549 - '@esbuild/netbsd-x64@0.25.10': 550 - resolution: {integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==} 551 - engines: {node: '>=18'} 552 cpu: [x64] 553 os: [netbsd] 554 555 - '@esbuild/openbsd-arm64@0.25.10': 556 - resolution: {integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==} 557 - engines: {node: '>=18'} 558 cpu: [arm64] 559 os: [openbsd] 560 561 - '@esbuild/openbsd-x64@0.21.5': 562 - resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==} 563 - engines: {node: '>=12'} 564 cpu: [x64] 565 os: [openbsd] 566 567 - '@esbuild/openbsd-x64@0.25.10': 568 - resolution: {integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==} 569 - engines: {node: '>=18'} 570 cpu: [x64] 571 os: [openbsd] 572 573 - '@esbuild/openharmony-arm64@0.25.10': 574 - resolution: {integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==} 575 - engines: {node: '>=18'} 576 cpu: [arm64] 577 os: [openharmony] 578 579 - '@esbuild/sunos-x64@0.21.5': 580 - resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==} 581 - engines: {node: '>=12'} 582 cpu: [x64] 583 os: [sunos] 584 585 - '@esbuild/sunos-x64@0.25.10': 586 - resolution: {integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==} 587 - engines: {node: '>=18'} 588 cpu: [x64] 589 os: [sunos] 590 591 - '@esbuild/win32-arm64@0.21.5': 592 - resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==} 593 - engines: {node: '>=12'} 594 cpu: [arm64] 595 os: [win32] 596 597 - '@esbuild/win32-arm64@0.25.10': 598 - resolution: {integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==} 599 - engines: {node: '>=18'} 600 cpu: [arm64] 601 os: [win32] 602 603 - '@esbuild/win32-ia32@0.21.5': 604 - resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==} 605 - engines: {node: '>=12'} 606 cpu: [ia32] 607 os: [win32] 608 609 - '@esbuild/win32-ia32@0.25.10': 610 - resolution: {integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==} 611 - engines: {node: '>=18'} 612 cpu: [ia32] 613 os: [win32] 614 615 - '@esbuild/win32-x64@0.21.5': 616 - resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==} 617 - engines: {node: '>=12'} 618 cpu: [x64] 619 os: [win32] 620 621 - '@esbuild/win32-x64@0.25.10': 622 - resolution: {integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==} 623 - engines: {node: '>=18'} 624 cpu: [x64] 625 os: [win32] 626 627 - '@floating-ui/core@1.7.3': 628 - resolution: {integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==} 629 630 - '@floating-ui/devtools@0.2.3': 631 - resolution: {integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==} 632 peerDependencies: 633 - '@floating-ui/dom': ^1.0.0 634 635 - '@floating-ui/dom@1.7.4': 636 - resolution: {integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==} 637 638 - '@floating-ui/utils@0.2.10': 639 - resolution: {integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==} 640 641 - '@fluentui/keyboard-keys@9.0.8': 642 - resolution: {integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==} 643 644 - '@fluentui/priority-overflow@9.2.0': 645 - resolution: {integrity: sha512-uwB5drtNGeEdLO3CEzM/VolyzkywIgpNhuOzFrLbKFxq20kCqteRDkUJIySgYu/+rK+Cyl8xiKmLzey49nlocg==} 646 647 - '@fluentui/react-accordion@9.8.8': 648 - resolution: {integrity: sha512-jicuHHlFK7Tsh0gx1FWKpgZixaZMBU1Nw751cGerL7XGF1OODBXCPqbmvZBSe/xLzfKj250EfDQ3V/5EGt6tcg==} 649 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' 654 655 - '@fluentui/react-alert@9.0.0-beta.124': 656 - resolution: {integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==} 657 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' 662 663 - '@fluentui/react-aria@9.17.1': 664 - resolution: {integrity: sha512-OmHqfHpVQZV6M8pZpl7QYmEoQuKbrDMboLWUzvAH9FxCjYQljNfgYyUKy5aP+gPJIKsO90mUUIbGY1LRH4e3fQ==} 665 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' 670 671 - '@fluentui/react-avatar@9.9.7': 672 - resolution: {integrity: sha512-T5zZGXta1sWbnxG5Dr+DzV9oxbab5Diws9V4ztcBWsBCowViPh8sZ6y/dSd/dnML3uWhMwNeW6dwPubA94pdAQ==} 673 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' 678 679 - '@fluentui/react-badge@9.4.6': 680 - resolution: {integrity: sha512-WxmUMcw5VthyeZrNAaSPLaMp+0F5g+Z9KZXH2ENAh0xM+BoWQjfruWUlTuMVT4rlmQcUEd7rz4rXjyflMoFzIQ==} 681 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' 686 687 - '@fluentui/react-breadcrumb@9.3.7': 688 - resolution: {integrity: sha512-NbSHxHpEKvTC0IeLIZg+NM8Kf6sL0VeMd8DgId1Py+XnUI4PpI7glJ1JovhSenMWL3kPNX7qPeFcxbtHn3BowA==} 689 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' 694 695 - '@fluentui/react-button@9.6.7': 696 - resolution: {integrity: sha512-les2Fwej/nCOpf+jZigqX/+cspdwZLZgKuGbbOQ/70f8bOOBB+pXft795wpFKcjncRIGLa+ABjZbc4eTbUYuJQ==} 697 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' 702 703 - '@fluentui/react-card@9.5.1': 704 - resolution: {integrity: sha512-ZaNkQFjsmaDFKD+EsOwpCcLWOt+ZHZ2AWRkW4OK3cUzPSpqa/7Wa6eMUpsvOeSfritLnwTv9XFfrpmFSgXV8PQ==} 705 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' 710 711 - '@fluentui/react-carousel@9.8.7': 712 - resolution: {integrity: sha512-Bdw0yAA4U7X+nzhjgtTeL/Xmupu4uYurO38VmZiC7jmKLq1jqE8YjA+u5eFuyEG/Nc9auThFkES6vhDcPnezDw==} 713 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' 718 719 - '@fluentui/react-checkbox@9.5.6': 720 - resolution: {integrity: sha512-nUOnn0MMrIZAEFkB664qYdXzUG7G6pA4IWCd1KtS5/jn01s29+nDLDuwgNXVD6jGZ+VLGo0ZEJ8+SJowsddFCA==} 721 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' 726 727 - '@fluentui/react-color-picker@9.2.6': 728 - resolution: {integrity: sha512-CYgSbG8yTTEW1Jf2LVJS6dvFN8NQFB24HazmU42+ZmnSJX/qAYMAmxOA0F3apV2ziOitnjrdUYeRqHPMsaAdqA==} 729 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' 734 735 - '@fluentui/react-combobox@9.16.7': 736 - resolution: {integrity: sha512-n3Y+bqD1c9fCUY8kbdsteMJT8VMuwr3pn0JvdCXsDiRxL7z9W1j/vFn+9gIAVC6okRhhwLwoi4wXoXDnPD907g==} 737 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' 742 743 - '@fluentui/react-components@9.69.0': 744 - resolution: {integrity: sha512-iw6gZVdAMPgPLbAwwAcA+2wRfeHdV27tRMPfrNYnFlXMAYfcXQvWjxeD8XTL5j2PYfOhRJjnWvjL0srJjjMcfA==} 745 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' 750 751 - '@fluentui/react-context-selector@9.2.8': 752 - resolution: {integrity: sha512-mh7Phvz6S4LQGuoRLCtqoAOP66JrbHyzrUynSK5yR4V+WRhBH0QNC/eOeivocV8wSQWV9YlCmRYm9hNEvOqi1Q==} 753 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' 759 760 - '@fluentui/react-dialog@9.15.3': 761 - resolution: {integrity: sha512-GtGUXVoNttsI7NuHMkhtLbJpjUw5ovIWKH3CMpdlgmnispdd4jYYYyTVDapG+9VJvYesHXI00yOoBM1ymtVrJA==} 762 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' 767 768 - '@fluentui/react-divider@9.4.6': 769 - resolution: {integrity: sha512-pIk5mvkXQRR+rZkOg62vn2rWS//eikvm+jLn3E4e+qy59BQhXufI1aGw2gcZG3WTpeHHtRMbDD/xauEkMdrg7A==} 770 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' 775 776 - '@fluentui/react-drawer@9.10.3': 777 - resolution: {integrity: sha512-HLr41jlQ1QFgk1iD0u/Cu+2uoQl2lMaMj7/CERina0SIneof+skt61WQdUtntEKidM0fyHfU41PUDySWXYKLtg==} 778 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' 783 784 - '@fluentui/react-field@9.4.6': 785 - resolution: {integrity: sha512-Xk/bNYhL2bLMO/mdoZrGX05Ga51QQVVC0wyqvcv5yv4l3s3oLcxb9pZCVgexzQOOUNUAaxz5QDOBHRjv7KT2xg==} 786 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' 791 792 - '@fluentui/react-icons@2.0.311': 793 - resolution: {integrity: sha512-njTCiHki4gxtB0ebFFIy8jC+9xFqIbnqzFGO+3mixSjUIn/wl0NKUVzXiXcaYUx6d0okEAiYgciuT7eQjJhW8Q==} 794 peerDependencies: 795 - react: '>=16.8.0 <20.0.0' 796 797 - '@fluentui/react-image@9.3.6': 798 - resolution: {integrity: sha512-khdxM+h+A+d5fcFZG+mZinTGy6x38QBkjxvhly4TFJHIVziuF+mbB3vpf4J0TwynZOMiza3D174kvrK3x5yyvw==} 799 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' 804 805 - '@fluentui/react-infobutton@9.0.0-beta.102': 806 - resolution: {integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==} 807 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' 812 813 - '@fluentui/react-infolabel@9.4.7': 814 - resolution: {integrity: sha512-JHhIML6Wv+X0w+qyRYDx9GH8tUU0dCN3lAodI/02w+3do2a6ychRjoEa/7Aa9gA2wYxAuz7TC6hzfdcI4ec//Q==} 815 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' 820 821 - '@fluentui/react-input@9.7.6': 822 - resolution: {integrity: sha512-s+f5kznbm2McheAAz868Lre1+xzCinVJm4eNiuKXJzTSCiLsdlE27xWjv2+Lzh1du4HLC+arUkdZ+HCLg5Kvug==} 823 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' 828 829 - '@fluentui/react-jsx-runtime@9.2.1': 830 - resolution: {integrity: sha512-qfkqqYqKbqMEXk+yxnQ+L88yEi9CWzCmYHyZQ5Xhk6wfKyNAWYv/otConKLzbWJWnbpEq0zgysqqeJT/LYAoDg==} 831 peerDependencies: 832 - '@types/react': '>=16.14.0 <20.0.0' 833 - react: '>=16.14.0 <20.0.0' 834 835 - '@fluentui/react-label@9.3.6': 836 - resolution: {integrity: sha512-3mnDaoZrPuMTeJdXUQkNBMvhrq/qYw3UFKO6lfqu4701FCggLk2kdqcUqx5ViKEgEtRELrDjbilOYapagZvpag==} 837 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' 842 843 - '@fluentui/react-link@9.6.6': 844 - resolution: {integrity: sha512-b6hQLNK7L/HJ85XneVszKmnEhxf20DQImcRlMUcdHediJTFuCjoat3DHE6mFNjZEZSfQJTbDsH7rqwA0TOiuvg==} 845 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' 850 851 - '@fluentui/react-list@9.6.1': 852 - resolution: {integrity: sha512-eoYupnsGDGKfpfcOfXhyCHuXz9jiIRmEYZXcrk1fCK+9KYEaSZ3gAqPFY/FWq5xDLs0+exyECfDPAstb7R1fxg==} 853 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' 858 859 - '@fluentui/react-menu@9.20.0': 860 - resolution: {integrity: sha512-zKgavux8mhd+H6544hACS+OYG8fi53ndZtocJqTF85ebBA/ndHY2GFZcHLemifRKctjKQsYKNAekg2Bxu4QmgA==} 861 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' 866 867 - '@fluentui/react-message-bar@9.6.8': 868 - resolution: {integrity: sha512-XSPOSLtXzW7xXqA5I1gJa88xyV+kwOPhgadmYfPEfTAOeqYYzCqnJnI5ZSnMgjDQuCotzgvLT/hGxTGIhb9MFw==} 869 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' 874 875 - '@fluentui/react-motion-components-preview@0.11.0': 876 - resolution: {integrity: sha512-IIG3FI31AUaiyp56+4g9gx1J4W2UqUj0s6vpMB9zkIZ+KCFEq1x47H7b0kARHdGUc0voMY2OGPQQeewFcukUaw==} 877 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' 882 883 - '@fluentui/react-motion@9.11.0': 884 - resolution: {integrity: sha512-X6MAw4zXsV9RwpE9WCVjz3Uwkjgl7A+q2lT+hy0wKSprASQ1g3HZJwTtS6cCuBNijUKge2wIhIquUuk0WCcWqA==} 885 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' 890 891 - '@fluentui/react-nav@9.3.8': 892 - resolution: {integrity: sha512-UwFxa5qlBJLS7nNXLBVo9bhbxjIbIOSe2shAEJcOFK1ziPfOTUIBFalYvmSZGK1bNAq2lvuSY2lVMkiMHS7Y2Q==} 893 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' 898 899 - '@fluentui/react-overflow@9.6.0': 900 - resolution: {integrity: sha512-ZzjBuNQXHEp84lGPzJOeZjPcsStugUEzzDiDp/0v9LdF3EZoBmq8/4Z7nZfqoTU+oHXOy2mGkhpCKTrXgawXOw==} 901 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' 906 907 - '@fluentui/react-persona@9.5.7': 908 - resolution: {integrity: sha512-4dPcmnE4jX8IUgOxZu+aWQ+XhqTcJ5ISK1VwDxujH3JQbjOK/4aQjUBTwQWfRej0/lfT74ktD/CorcdB7Wz6CA==} 909 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' 914 915 - '@fluentui/react-popover@9.12.7': 916 - resolution: {integrity: sha512-AkbtGCEG6OwpeXQ4RjorOw56Qnlh7ndf5Lb7P8x/2jmXyi2BusJy0qAJ9cqpt3n5Y31dt1dJ2e+DNk7A1tu23w==} 917 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' 922 923 - '@fluentui/react-portal@9.8.3': 924 - resolution: {integrity: sha512-+i2TW9pQ/Oz7PAKxssbonStD4kcgkzsaKZrhTfK9rynSpy3YR4DpyHPzd/5ioJgSKFlqTnoBBCu5zVFohXI6gw==} 925 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' 930 931 - '@fluentui/react-positioning@9.20.6': 932 - resolution: {integrity: sha512-g4/XRftuW/MztCC2pYVvlfHExmWRqOqgwQu9MoWglTuZFz9rSTTonCNSKJLIsZQYV9BpqFXDHUe8v+pqyDNZ2g==} 933 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' 938 939 - '@fluentui/react-progress@9.4.6': 940 - resolution: {integrity: sha512-zDmSmsTGaM9rPk9lQ6wKcG8kkM9UHtzJdsXPfvPKj8K7gP1Oyha7yb5hIlX45q0YeWG+3nweQYz9WNnoAAAsQQ==} 941 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' 946 947 - '@fluentui/react-provider@9.22.6': 948 - resolution: {integrity: sha512-vHShKHYeZptf+Jc6O+ZVGTjU0fo0OzqrzSpcEeQ9iuRF2XPvhTldE0Q67KYeCe5eQJsiDH7wYM6Hjt7UihNmOA==} 949 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' 954 955 - '@fluentui/react-radio@9.5.6': 956 - resolution: {integrity: sha512-MT6AFJ3GuL5JgZ22xSbHlxO0RUVaJJUW5eq96zy2kqSSzyJxDLLhuNxkoMI/nnlEGlzkSipM5WOxutYfOhJTwQ==} 957 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' 962 963 - '@fluentui/react-rating@9.3.6': 964 - resolution: {integrity: sha512-0mvmcyDDnUUrFOIrM15K1Ie+UTBF3iFL/FDaiTTelL3xlAHSOUksVKStkj4pFsvXb8xNgFjoACvM+COV7DRSLg==} 965 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' 970 971 - '@fluentui/react-search@9.3.6': 972 - resolution: {integrity: sha512-pvmzcBOqvrQaLiw0gk+Yg0YxFX/qGod3NhoZrXXAI7YrHItMbkqEcECZbtiyoPG+WV+IiSzTGzFw2BlTJq7FCg==} 973 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' 978 979 - '@fluentui/react-select@9.4.6': 980 - resolution: {integrity: sha512-LJ0cl7w6TDsDK6TKQDij3O1TI8mwt3nzuoTcsMlgSQRJZMC/n4nSGRUmX0GHbLCtcWxfFJ3Vy+1e/9NydxLJqA==} 981 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' 986 987 - '@fluentui/react-shared-contexts@9.25.2': 988 - resolution: {integrity: sha512-PxDVy6RPps3gqee/RESIMXzOlrlVOQ/uQffFMeVniqjW0IPwCs/d2TwJT1Sfh9DCFgnI9onD0GGlBelszzRjmA==} 989 peerDependencies: 990 - '@types/react': '>=16.14.0 <20.0.0' 991 - react: '>=16.14.0 <20.0.0' 992 993 - '@fluentui/react-skeleton@9.4.6': 994 - resolution: {integrity: sha512-AnGvW28A4equQ0j2uxZHDpwrOrqeE8ZqELhI7pIyRgSwQaIjaxjb0C3tlqQS9jl6456g8NE1hpoanb41ojtqNw==} 995 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' 1000 1001 - '@fluentui/react-slider@9.5.6': 1002 - resolution: {integrity: sha512-JoIDXA1GHB9n99EvxOxcxwy6nUVk/p2GYoQ9sWoAvf5QOEQjOsD2QHymtDoVoNWWUKfBE51A8XGnJ80uk0qAcA==} 1003 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' 1008 1009 - '@fluentui/react-spinbutton@9.5.6': 1010 - resolution: {integrity: sha512-D+cDKaZjVh+3P/u+G9mcZSKO3riyYYr/D6n7zVhWaFxC2dZxHQpvtCG+8cj1Jgt8FjhZWby4wXKoQfEeja2Yzw==} 1011 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' 1016 1017 - '@fluentui/react-spinner@9.7.6': 1018 - resolution: {integrity: sha512-vOJIXA3GI75n2hoVCWm10ZzqmCqKR5ZQV4naSd3koJ4cb/6AMYHGVzfy41KTuybTUtkPbN1RRfjFcwv9HGncew==} 1019 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' 1024 1025 - '@fluentui/react-swatch-picker@9.4.6': 1026 - resolution: {integrity: sha512-c1ZJqjcpb+PjzqkHh9G3N3iXUq9t31b7HXdNwQJ2gKzi8kiGL8LFgmGCzhbUeGsZNmV0rkQAxfp6nzKGXSSr7g==} 1027 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' 1032 1033 - '@fluentui/react-switch@9.4.6': 1034 - resolution: {integrity: sha512-FNMWwHbD7GxwtOZJArSc2wRo2Dg4l2VUjHTYBL5yeS4cmDnVjCaChMCDPHxocv86upw3Uom1VSWLssUzXRNN1w==} 1035 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' 1040 1041 - '@fluentui/react-table@9.19.0': 1042 - resolution: {integrity: sha512-4XR2XNp5iq4sY3MtkEnuUBLu7BZ4xhGnyrnZ3eFb23TP3ERZTXx0oewpyURscERSv05czV3fwFjvT2gsQPy4Pw==} 1043 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' 1048 1049 - '@fluentui/react-tabs@9.10.2': 1050 - resolution: {integrity: sha512-aK4QVtCN3LQ40MR2/5LGb/reyBsCPsPnEjkifSQn8YrhJbkt0XRFMyIgJJ+EOOUadvQxEXEDDbz/PNpZFWoQCQ==} 1051 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' 1056 1057 - '@fluentui/react-tabster@9.26.6': 1058 - resolution: {integrity: sha512-4uk8O7S3qEkixjP2PnB4FvXxNqFKMVRetS3bCsc0T7MLufWtFYMqIfxSrdqyxvtLKMPdMohWmdeOu7E4X+ef6Q==} 1059 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' 1064 1065 - '@fluentui/react-tag-picker@9.7.7': 1066 - resolution: {integrity: sha512-yN8x01vvEt4C9SZHtF4OyUmIP2wFjjAcEqWY1ofwyICKsI9Xc23OANsIWBR9QdvM6jISJ7slwcwcgfP8JmyOSA==} 1067 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' 1072 1073 - '@fluentui/react-tags@9.7.7': 1074 - resolution: {integrity: sha512-TZ9Cc73hdCFzOBDvL3pQthndlVnGByn+l3vKyAu5kT6pWzrC7gfiWXHsUVUDzLQ8XyFDq1G4vCYfq+949OYyAg==} 1075 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' 1080 1081 - '@fluentui/react-teaching-popover@9.6.7': 1082 - resolution: {integrity: sha512-SIXQLP4NKhv5E6hUCR2eMgg+MBehfuHWSygvf8yEZKaoGjgN/4bg/4Rn64Ld6cELcXcHpg7/0tFmDxgxycSU4w==} 1083 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' 1088 1089 - '@fluentui/react-text@9.6.6': 1090 - resolution: {integrity: sha512-WfxzfE3LnGLAy+7w1elVkUwcnCgoVtGVysfYNbQYqs7eEDp7c7asRkVn++nWYGFALu2S0OCthYj98JT5VZlccA==} 1091 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' 1096 1097 - '@fluentui/react-textarea@9.6.6': 1098 - resolution: {integrity: sha512-opxqQg+6IexnjW4XJrrueaU66dznDq7h5zjg6KoVR6RscYaqWpythrW2ragZujXQifouUHcrkw+BnwmnAuollw==} 1099 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' 1104 1105 - '@fluentui/react-theme@9.2.0': 1106 - resolution: {integrity: sha512-Q0zp/MY1m5RjlkcwMcjn/PQRT2T+q3bgxuxWbhgaD07V+tLzBhGROvuqbsdg4YWF/IK21zPfLhmGyifhEu0DnQ==} 1107 1108 - '@fluentui/react-toast@9.7.3': 1109 - resolution: {integrity: sha512-JuuOwvzCT+RK3X6IuZGLS3267cg3/DWQ9hlmP3ZThkHKabO/MYyFYTvry+Id5IDBBzFfyoV5M3L7T8MVwAbhYg==} 1110 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' 1115 1116 - '@fluentui/react-toolbar@9.6.7': 1117 - resolution: {integrity: sha512-EaBT312aP3WXCwc9vUP/6diNdGUEtFSBbPupolkvM7l3Hqt2NaEgN86RMPubykCbwV4SoJvOQCTxgtsYKCK0gg==} 1118 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' 1123 1124 - '@fluentui/react-tooltip@9.8.6': 1125 - resolution: {integrity: sha512-ue72LCnpTyLUvTNA+KWao0zt8T2BQsQdigY1rXwXUu6PQi4X8TKdZsOMaXCe/pzBDKWk9Du0ClZq7JWw3/mKig==} 1126 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' 1131 1132 - '@fluentui/react-tree@9.14.1': 1133 - resolution: {integrity: sha512-SEo96G127Zkd8lsy84vgZNwI92B2B54C7dSOttYihIv9EjVTjcEY8NzwYLacblc6HZX+l+5e1n6rY6iaZq67rg==} 1134 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' 1139 1140 - '@fluentui/react-utilities@9.25.0': 1141 - resolution: {integrity: sha512-ZuQ1jjNZ9DKxnnwPnQFTnjgt7qEWHttgaNdAoJlbqk1MG9zZYcuglEMLzj0wajPdkVuOOuS9LhSbbdCoW1aSsA==} 1142 peerDependencies: 1143 - '@types/react': '>=16.14.0 <20.0.0' 1144 - react: '>=16.14.0 <20.0.0' 1145 1146 - '@fluentui/react-virtualizer@9.0.0-alpha.102': 1147 - resolution: {integrity: sha512-kt/kuAMTKTTY/00ToUlgUwUCty2HGj4Tnr+fxKRmr7Ziy5VWhi1YoNJ8vcgmxog5J90t4tS29LB0LP0KztQUVg==} 1148 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' 1153 1154 - '@fluentui/tokens@1.0.0-alpha.22': 1155 - resolution: {integrity: sha512-i9fgYyyCWFRdUi+vQwnV6hp7wpLGK4p09B+O/f2u71GBXzPuniubPYvrIJYtl444DD6shLjYToJhQ1S6XTFwLg==} 1156 1157 - '@griffel/core@1.19.2': 1158 - resolution: {integrity: sha512-WkB/QQkjy9dE4vrNYGhQvRRUHFkYVOuaznVOMNTDT4pS9aTJ9XPrMTXXlkpcwaf0D3vNKoerj4zAwnU2lBzbOg==} 1159 1160 - '@griffel/react@1.5.30': 1161 - resolution: {integrity: sha512-1q4ojbEVFY5YA0j1NamP0WWF4BKh+GHsVugltDYeEgEaVbH3odJ7tJabuhQgY+7Nhka0pyEFWSiHJev0K3FSew==} 1162 peerDependencies: 1163 - react: '>=16.8.0 <20.0.0' 1164 1165 - '@griffel/style-types@1.3.0': 1166 - resolution: {integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==} 1167 1168 - '@img/colour@1.0.0': 1169 - resolution: {integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==} 1170 - engines: {node: '>=18'} 1171 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} 1175 cpu: [arm64] 1176 os: [darwin] 1177 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} 1181 cpu: [x64] 1182 os: [darwin] 1183 1184 - '@img/sharp-libvips-darwin-arm64@1.2.3': 1185 - resolution: {integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==} 1186 cpu: [arm64] 1187 os: [darwin] 1188 1189 - '@img/sharp-libvips-darwin-x64@1.2.3': 1190 - resolution: {integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==} 1191 cpu: [x64] 1192 os: [darwin] 1193 1194 - '@img/sharp-libvips-linux-arm64@1.2.3': 1195 - resolution: {integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==} 1196 cpu: [arm64] 1197 os: [linux] 1198 1199 - '@img/sharp-libvips-linux-arm@1.2.3': 1200 - resolution: {integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==} 1201 cpu: [arm] 1202 os: [linux] 1203 1204 - '@img/sharp-libvips-linux-ppc64@1.2.3': 1205 - resolution: {integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==} 1206 cpu: [ppc64] 1207 os: [linux] 1208 1209 - '@img/sharp-libvips-linux-s390x@1.2.3': 1210 - resolution: {integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==} 1211 cpu: [s390x] 1212 os: [linux] 1213 1214 - '@img/sharp-libvips-linux-x64@1.2.3': 1215 - resolution: {integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==} 1216 cpu: [x64] 1217 os: [linux] 1218 1219 - '@img/sharp-libvips-linuxmusl-arm64@1.2.3': 1220 - resolution: {integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==} 1221 cpu: [arm64] 1222 os: [linux] 1223 1224 - '@img/sharp-libvips-linuxmusl-x64@1.2.3': 1225 - resolution: {integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==} 1226 cpu: [x64] 1227 os: [linux] 1228 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} 1232 cpu: [arm64] 1233 os: [linux] 1234 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} 1238 cpu: [arm] 1239 os: [linux] 1240 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} 1244 cpu: [ppc64] 1245 os: [linux] 1246 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} 1250 cpu: [s390x] 1251 os: [linux] 1252 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} 1256 cpu: [x64] 1257 os: [linux] 1258 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} 1262 cpu: [arm64] 1263 os: [linux] 1264 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} 1268 cpu: [x64] 1269 os: [linux] 1270 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} 1274 cpu: [wasm32] 1275 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} 1279 cpu: [arm64] 1280 os: [win32] 1281 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} 1285 cpu: [ia32] 1286 os: [win32] 1287 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} 1291 cpu: [x64] 1292 os: [win32] 1293 1294 - '@inquirer/ansi@1.0.0': 1295 - resolution: {integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==} 1296 - engines: {node: '>=18'} 1297 1298 - '@inquirer/checkbox@4.2.4': 1299 - resolution: {integrity: sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==} 1300 - engines: {node: '>=18'} 1301 peerDependencies: 1302 - '@types/node': '>=18' 1303 peerDependenciesMeta: 1304 - '@types/node': 1305 optional: true 1306 1307 - '@inquirer/confirm@5.1.18': 1308 - resolution: {integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==} 1309 - engines: {node: '>=18'} 1310 peerDependencies: 1311 - '@types/node': '>=18' 1312 peerDependenciesMeta: 1313 - '@types/node': 1314 optional: true 1315 1316 - '@inquirer/core@10.2.2': 1317 - resolution: {integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==} 1318 - engines: {node: '>=18'} 1319 peerDependencies: 1320 - '@types/node': '>=18' 1321 peerDependenciesMeta: 1322 - '@types/node': 1323 optional: true 1324 1325 - '@inquirer/editor@4.2.20': 1326 - resolution: {integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==} 1327 - engines: {node: '>=18'} 1328 peerDependencies: 1329 - '@types/node': '>=18' 1330 peerDependenciesMeta: 1331 - '@types/node': 1332 optional: true 1333 1334 - '@inquirer/expand@4.0.20': 1335 - resolution: {integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==} 1336 - engines: {node: '>=18'} 1337 peerDependencies: 1338 - '@types/node': '>=18' 1339 peerDependenciesMeta: 1340 - '@types/node': 1341 optional: true 1342 1343 - '@inquirer/external-editor@1.0.2': 1344 - resolution: {integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==} 1345 - engines: {node: '>=18'} 1346 peerDependencies: 1347 - '@types/node': '>=18' 1348 peerDependenciesMeta: 1349 - '@types/node': 1350 optional: true 1351 1352 - '@inquirer/figures@1.0.13': 1353 - resolution: {integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==} 1354 - engines: {node: '>=18'} 1355 1356 - '@inquirer/input@4.2.4': 1357 - resolution: {integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==} 1358 - engines: {node: '>=18'} 1359 peerDependencies: 1360 - '@types/node': '>=18' 1361 peerDependenciesMeta: 1362 - '@types/node': 1363 optional: true 1364 1365 - '@inquirer/number@3.0.20': 1366 - resolution: {integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==} 1367 - engines: {node: '>=18'} 1368 peerDependencies: 1369 - '@types/node': '>=18' 1370 peerDependenciesMeta: 1371 - '@types/node': 1372 optional: true 1373 1374 - '@inquirer/password@4.0.20': 1375 - resolution: {integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==} 1376 - engines: {node: '>=18'} 1377 peerDependencies: 1378 - '@types/node': '>=18' 1379 peerDependenciesMeta: 1380 - '@types/node': 1381 optional: true 1382 1383 - '@inquirer/prompts@7.8.6': 1384 - resolution: {integrity: sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==} 1385 - engines: {node: '>=18'} 1386 peerDependencies: 1387 - '@types/node': '>=18' 1388 peerDependenciesMeta: 1389 - '@types/node': 1390 optional: true 1391 1392 - '@inquirer/rawlist@4.1.8': 1393 - resolution: {integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==} 1394 - engines: {node: '>=18'} 1395 peerDependencies: 1396 - '@types/node': '>=18' 1397 peerDependenciesMeta: 1398 - '@types/node': 1399 optional: true 1400 1401 - '@inquirer/search@3.1.3': 1402 - resolution: {integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==} 1403 - engines: {node: '>=18'} 1404 peerDependencies: 1405 - '@types/node': '>=18' 1406 peerDependenciesMeta: 1407 - '@types/node': 1408 optional: true 1409 1410 - '@inquirer/select@4.3.4': 1411 - resolution: {integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==} 1412 - engines: {node: '>=18'} 1413 peerDependencies: 1414 - '@types/node': '>=18' 1415 peerDependenciesMeta: 1416 - '@types/node': 1417 optional: true 1418 1419 - '@inquirer/type@3.0.8': 1420 - resolution: {integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==} 1421 - engines: {node: '>=18'} 1422 peerDependencies: 1423 - '@types/node': '>=18' 1424 peerDependenciesMeta: 1425 - '@types/node': 1426 optional: true 1427 1428 - '@ipld/dag-cbor@7.0.3': 1429 - resolution: {integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==} 1430 1431 - '@isaacs/fs-minipass@4.0.1': 1432 - resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==} 1433 - engines: {node: '>=18.0.0'} 1434 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} 1438 1439 - '@jridgewell/gen-mapping@0.3.13': 1440 - resolution: {integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==} 1441 1442 - '@jridgewell/remapping@2.3.5': 1443 - resolution: {integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==} 1444 1445 - '@jridgewell/resolve-uri@3.1.2': 1446 - resolution: {integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==} 1447 - engines: {node: '>=6.0.0'} 1448 1449 - '@jridgewell/sourcemap-codec@1.5.5': 1450 - resolution: {integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==} 1451 1452 - '@jridgewell/trace-mapping@0.3.31': 1453 - resolution: {integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==} 1454 1455 - '@jspm/core@2.1.0': 1456 - resolution: {integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==} 1457 1458 - '@noble/curves@1.9.7': 1459 - resolution: {integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==} 1460 - engines: {node: ^14.21.3 || >=16} 1461 1462 - '@noble/hashes@1.8.0': 1463 - resolution: {integrity: sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==} 1464 - engines: {node: ^14.21.3 || >=16} 1465 1466 - '@nodelib/fs.scandir@2.1.5': 1467 - resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==} 1468 - engines: {node: '>= 8'} 1469 1470 - '@nodelib/fs.stat@2.0.5': 1471 - resolution: {integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==} 1472 - engines: {node: '>= 8'} 1473 1474 - '@nodelib/fs.walk@1.2.8': 1475 - resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==} 1476 - engines: {node: '>= 8'} 1477 1478 - '@oslojs/encoding@1.1.0': 1479 - resolution: {integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==} 1480 1481 - '@rolldown/pluginutils@1.0.0-beta.27': 1482 - resolution: {integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==} 1483 1484 - '@rollup/pluginutils@5.3.0': 1485 - resolution: {integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==} 1486 - engines: {node: '>=14.0.0'} 1487 peerDependencies: 1488 rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 1489 peerDependenciesMeta: 1490 rollup: 1491 optional: true 1492 1493 - '@rollup/rollup-android-arm-eabi@4.52.4': 1494 - resolution: {integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==} 1495 cpu: [arm] 1496 os: [android] 1497 1498 - '@rollup/rollup-android-arm64@4.52.4': 1499 - resolution: {integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==} 1500 cpu: [arm64] 1501 os: [android] 1502 1503 - '@rollup/rollup-darwin-arm64@4.52.4': 1504 - resolution: {integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==} 1505 cpu: [arm64] 1506 os: [darwin] 1507 1508 - '@rollup/rollup-darwin-x64@4.52.4': 1509 - resolution: {integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==} 1510 cpu: [x64] 1511 os: [darwin] 1512 1513 - '@rollup/rollup-freebsd-arm64@4.52.4': 1514 - resolution: {integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==} 1515 cpu: [arm64] 1516 os: [freebsd] 1517 1518 - '@rollup/rollup-freebsd-x64@4.52.4': 1519 - resolution: {integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==} 1520 cpu: [x64] 1521 os: [freebsd] 1522 1523 - '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 1524 - resolution: {integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==} 1525 cpu: [arm] 1526 os: [linux] 1527 1528 - '@rollup/rollup-linux-arm-musleabihf@4.52.4': 1529 - resolution: {integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==} 1530 cpu: [arm] 1531 os: [linux] 1532 1533 - '@rollup/rollup-linux-arm64-gnu@4.52.4': 1534 - resolution: {integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==} 1535 cpu: [arm64] 1536 os: [linux] 1537 1538 - '@rollup/rollup-linux-arm64-musl@4.52.4': 1539 - resolution: {integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==} 1540 cpu: [arm64] 1541 os: [linux] 1542 1543 - '@rollup/rollup-linux-loong64-gnu@4.52.4': 1544 - resolution: {integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==} 1545 cpu: [loong64] 1546 os: [linux] 1547 1548 - '@rollup/rollup-linux-ppc64-gnu@4.52.4': 1549 - resolution: {integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==} 1550 cpu: [ppc64] 1551 os: [linux] 1552 1553 - '@rollup/rollup-linux-riscv64-gnu@4.52.4': 1554 - resolution: {integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==} 1555 cpu: [riscv64] 1556 os: [linux] 1557 1558 - '@rollup/rollup-linux-riscv64-musl@4.52.4': 1559 - resolution: {integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==} 1560 cpu: [riscv64] 1561 os: [linux] 1562 1563 - '@rollup/rollup-linux-s390x-gnu@4.52.4': 1564 - resolution: {integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==} 1565 cpu: [s390x] 1566 os: [linux] 1567 1568 - '@rollup/rollup-linux-x64-gnu@4.40.0': 1569 - resolution: {integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==} 1570 cpu: [x64] 1571 os: [linux] 1572 1573 - '@rollup/rollup-linux-x64-gnu@4.52.4': 1574 - resolution: {integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==} 1575 cpu: [x64] 1576 os: [linux] 1577 1578 - '@rollup/rollup-linux-x64-musl@4.52.4': 1579 - resolution: {integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==} 1580 cpu: [x64] 1581 os: [linux] 1582 1583 - '@rollup/rollup-openharmony-arm64@4.52.4': 1584 - resolution: {integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==} 1585 cpu: [arm64] 1586 os: [openharmony] 1587 1588 - '@rollup/rollup-win32-arm64-msvc@4.52.4': 1589 - resolution: {integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==} 1590 cpu: [arm64] 1591 os: [win32] 1592 1593 - '@rollup/rollup-win32-ia32-msvc@4.52.4': 1594 - resolution: {integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==} 1595 cpu: [ia32] 1596 os: [win32] 1597 1598 - '@rollup/rollup-win32-x64-gnu@4.52.4': 1599 - resolution: {integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==} 1600 cpu: [x64] 1601 os: [win32] 1602 1603 - '@rollup/rollup-win32-x64-msvc@4.52.4': 1604 - resolution: {integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==} 1605 cpu: [x64] 1606 os: [win32] 1607 1608 - '@scarf/scarf@1.4.0': 1609 - resolution: {integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==} 1610 1611 - '@shikijs/core@3.13.0': 1612 - resolution: {integrity: sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==} 1613 1614 - '@shikijs/engine-javascript@3.13.0': 1615 - resolution: {integrity: sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==} 1616 1617 - '@shikijs/engine-oniguruma@3.13.0': 1618 - resolution: {integrity: sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==} 1619 1620 - '@shikijs/langs@3.13.0': 1621 - resolution: {integrity: sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==} 1622 1623 - '@shikijs/themes@3.13.0': 1624 - resolution: {integrity: sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==} 1625 1626 - '@shikijs/types@3.13.0': 1627 - resolution: {integrity: sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==} 1628 1629 - '@shikijs/vscode-textmate@10.0.2': 1630 - resolution: {integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==} 1631 1632 - '@sinclair/typebox@0.27.8': 1633 - resolution: {integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==} 1634 1635 - '@sindresorhus/merge-streams@2.3.0': 1636 - resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==} 1637 - engines: {node: '>=18'} 1638 1639 - '@swc/helpers@0.5.17': 1640 - resolution: {integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==} 1641 1642 - '@ts-morph/common@0.25.0': 1643 - resolution: {integrity: sha512-kMnZz+vGGHi4GoHnLmMhGNjm44kGtKUXGnOvrKmMwAuvNjM/PgKVGfUnL7IDvK7Jb2QQ82jq3Zmp04Gy+r3Dkg==} 1644 1645 - '@types/babel__core@7.20.5': 1646 - resolution: {integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==} 1647 1648 - '@types/babel__generator@7.27.0': 1649 - resolution: {integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==} 1650 1651 - '@types/babel__template@7.4.4': 1652 - resolution: {integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==} 1653 1654 - '@types/babel__traverse@7.28.0': 1655 - resolution: {integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==} 1656 1657 - '@types/debug@4.1.12': 1658 - resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==} 1659 1660 - '@types/estree@1.0.8': 1661 - resolution: {integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==} 1662 1663 - '@types/fontkit@2.0.8': 1664 - resolution: {integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==} 1665 1666 - '@types/hast@3.0.4': 1667 - resolution: {integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==} 1668 1669 - '@types/json-schema@7.0.15': 1670 - resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==} 1671 1672 - '@types/mdast@4.0.4': 1673 - resolution: {integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==} 1674 1675 - '@types/ms@2.1.0': 1676 - resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==} 1677 1678 - '@types/nlcst@2.0.3': 1679 - resolution: {integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==} 1680 1681 - '@types/node@20.19.19': 1682 - resolution: {integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==} 1683 1684 - '@types/prop-types@15.7.15': 1685 - resolution: {integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==} 1686 1687 - '@types/react-dom@18.3.7': 1688 - resolution: {integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==} 1689 peerDependencies: 1690 - '@types/react': ^18.0.0 1691 1692 - '@types/react-dom@19.2.0': 1693 - resolution: {integrity: sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==} 1694 peerDependencies: 1695 - '@types/react': ^19.2.0 1696 1697 - '@types/react@18.3.25': 1698 - resolution: {integrity: sha512-oSVZmGtDPmRZtVDqvdKUi/qgCsWp5IDY29wp8na8Bj4B3cc99hfNzvNhlMkVVxctkAOGUA3Km7MMpBHAnWfcIA==} 1699 1700 - '@types/react@19.2.0': 1701 - resolution: {integrity: sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==} 1702 1703 - '@types/unist@3.0.3': 1704 - resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==} 1705 1706 - '@typespec/asset-emitter@0.74.0': 1707 - resolution: {integrity: sha512-DWIdlSNhRgBeZ8exfqubfUn0H6mRg4gr0s7zLTdBMUEDHL3Yh0ljnRPkd8AXTZhoW3maTFT69loWTrqx09T5oQ==} 1708 - engines: {node: '>=20.0.0'} 1709 peerDependencies: 1710 - '@typespec/compiler': ^1.4.0 1711 1712 - '@typespec/bundler@0.4.4': 1713 - resolution: {integrity: sha512-yj6X2gTktZ3NmiksdKfEmuYX+oo3yLTvfE+IYPWkveoKGqP4HpGM5OctY9d4y2iqPZ2acG4LemR6064pQ0SIVA==} 1714 - engines: {node: '>=20.0.0'} 1715 1716 - '@typespec/compiler@1.4.0': 1717 - resolution: {integrity: sha512-/AFiU3ImuhH/vHKzSGv7I2peewdJ7YLhgMCfFDNk6Ae0a5Ylrc8R1GOATVilisEPBFG9lnjHn3uUcyaZs5VWRw==} 1718 - engines: {node: '>=20.0.0'} 1719 hasBin: true 1720 1721 - '@typespec/html-program-viewer@0.74.0': 1722 - resolution: {integrity: sha512-VJdVe4z4h367bJkTwx7KpOl1Mm9hbF2Yy0EHHYvTVg/gOIqDRfLOgoHSMITWQgxK/AqzX/xPAA44eWc7eeXGQQ==} 1723 - engines: {node: '>=14.0.0'} 1724 peerDependencies: 1725 - '@typespec/compiler': ^1.4.0 1726 1727 - '@typespec/http@1.4.0': 1728 - resolution: {integrity: sha512-Y0PDDtBu+oZnwivfhbL0lN6Mk3QiCxZ66DgB5kFjcgKNpnXf0u440PPyaL42a8lbchzz5lVwz+cinyIMI89FIQ==} 1729 - engines: {node: '>=20.0.0'} 1730 peerDependencies: 1731 - '@typespec/compiler': ^1.4.0 1732 - '@typespec/streams': ^0.74.0 1733 peerDependenciesMeta: 1734 - '@typespec/streams': 1735 optional: true 1736 1737 - '@typespec/openapi3@1.4.0': 1738 - resolution: {integrity: sha512-krMSBe23NU42qXiLTmkr7T2NRfsIVv70pp3w/+uyWbrxdwdLEdb8PpbHeYV417D/YU+JLj00fQ7uYzEQGZX82w==} 1739 - engines: {node: '>=20.0.0'} 1740 hasBin: true 1741 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': '*' 1748 peerDependenciesMeta: 1749 - '@typespec/json-schema': 1750 optional: true 1751 - '@typespec/versioning': 1752 optional: true 1753 - '@typespec/xml': 1754 optional: true 1755 1756 - '@typespec/openapi@1.4.0': 1757 - resolution: {integrity: sha512-ZfrCsmZG/Zt1laLaWC0pKvnZr4jqrm/YS/YuZe/gVrSYKBxGLopXle7H0wrSSMYkIVCNCLiC68/HqRxV6XTfoA==} 1758 - engines: {node: '>=20.0.0'} 1759 peerDependencies: 1760 - '@typespec/compiler': ^1.4.0 1761 - '@typespec/http': ^1.4.0 1762 1763 - '@typespec/playground@0.11.0': 1764 - resolution: {integrity: sha512-rtKK/GprMyBEupXRrvtrKqgT+qp8McZy+V/CLx+mhZN8F5Yh4FuLtppAGwSflzsSMPx2rD4YZveeNakaZAO70A==} 1765 - engines: {node: '>=20.0.0'} 1766 1767 - '@typespec/protobuf@0.74.0': 1768 - resolution: {integrity: sha512-9Mn/gGgrrPrFG46t7DyUztUwLDOfjrksC3q2KjkSqGK5xw744/76OsqY51iAnd4DMKUg7twMqNFrKrTr6AqH2g==} 1769 peerDependencies: 1770 - '@typespec/compiler': ^1.4.0 1771 1772 - '@typespec/rest@0.74.0': 1773 - resolution: {integrity: sha512-dE+Xmv01AQ7m8jUvEbGsUQLSVo3sLzMpnHRbQEOnJX42oDqtIsz/2GEOXKQpNm1AKBISK66E2FFB5boz999Ziw==} 1774 - engines: {node: '>=20.0.0'} 1775 peerDependencies: 1776 - '@typespec/compiler': ^1.4.0 1777 - '@typespec/http': ^1.4.0 1778 1779 - '@typespec/versioning@0.74.0': 1780 - resolution: {integrity: sha512-eFIa23tycWJgv3Lxyu6jUlRi02dhtQE4Jjx3Ui5vEbwHW8pMEzuyF7ALt1c+V9HOLkfDkS4dJkiOVIoikZHPvQ==} 1781 - engines: {node: '>=20.0.0'} 1782 peerDependencies: 1783 - '@typespec/compiler': ^1.4.0 1784 1785 - '@ungap/structured-clone@1.3.0': 1786 - resolution: {integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==} 1787 1788 - '@vitejs/plugin-react@4.7.0': 1789 - resolution: {integrity: sha512-gUu9hwfWvvEDBBmgtAowQCojwZmJ5mcLn3aufeCsitijs3+f2NsrPtlAWIR6OPiqljl96GVCUbLe0HyqIpVaoA==} 1790 - engines: {node: ^14.18.0 || >=16.0.0} 1791 peerDependencies: 1792 vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 1793 1794 - '@vitest/expect@1.6.1': 1795 - resolution: {integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==} 1796 1797 - '@vitest/runner@1.6.1': 1798 - resolution: {integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==} 1799 1800 - '@vitest/snapshot@1.6.1': 1801 - resolution: {integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==} 1802 1803 - '@vitest/spy@1.6.1': 1804 - resolution: {integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==} 1805 1806 - '@vitest/utils@1.6.1': 1807 - resolution: {integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==} 1808 1809 abort-controller@3.0.0: 1810 - resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==} 1811 - engines: {node: '>=6.5'} 1812 1813 accepts@1.3.8: 1814 - resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==} 1815 - engines: {node: '>= 0.6'} 1816 1817 acorn-walk@8.3.4: 1818 - resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==} 1819 - engines: {node: '>=0.4.0'} 1820 1821 acorn@8.15.0: 1822 - resolution: {integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==} 1823 - engines: {node: '>=0.4.0'} 1824 hasBin: true 1825 1826 ajv-draft-04@1.0.0: 1827 - resolution: {integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==} 1828 peerDependencies: 1829 ajv: ^8.5.0 1830 peerDependenciesMeta: ··· 1832 optional: true 1833 1834 ajv@8.17.1: 1835 - resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==} 1836 1837 ansi-align@3.0.1: 1838 - resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==} 1839 1840 ansi-regex@5.0.1: 1841 - resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==} 1842 - engines: {node: '>=8'} 1843 1844 ansi-regex@6.2.2: 1845 - resolution: {integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==} 1846 - engines: {node: '>=12'} 1847 1848 ansi-styles@4.3.0: 1849 - resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==} 1850 - engines: {node: '>=8'} 1851 1852 ansi-styles@5.2.0: 1853 - resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 1854 - engines: {node: '>=10'} 1855 1856 ansi-styles@6.2.3: 1857 - resolution: {integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==} 1858 - engines: {node: '>=12'} 1859 1860 anymatch@3.1.3: 1861 - resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==} 1862 - engines: {node: '>= 8'} 1863 1864 argparse@2.0.1: 1865 - resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 1866 1867 aria-query@5.3.2: 1868 - resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==} 1869 - engines: {node: '>= 0.4'} 1870 1871 array-flatten@1.1.1: 1872 - resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==} 1873 1874 array-iterate@2.0.1: 1875 - resolution: {integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==} 1876 1877 asn1.js@4.10.1: 1878 - resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==} 1879 1880 assert@2.1.0: 1881 - resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==} 1882 1883 assertion-error@1.1.0: 1884 - resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==} 1885 1886 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'} 1889 hasBin: true 1890 1891 atomic-sleep@1.0.0: 1892 - resolution: {integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==} 1893 - engines: {node: '>=8.0.0'} 1894 1895 available-typed-arrays@1.0.7: 1896 - resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==} 1897 - engines: {node: '>= 0.4'} 1898 1899 axobject-query@4.1.0: 1900 - resolution: {integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==} 1901 - engines: {node: '>= 0.4'} 1902 1903 bail@2.0.2: 1904 - resolution: {integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==} 1905 1906 balanced-match@1.0.2: 1907 - resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==} 1908 1909 base-64@1.0.0: 1910 - resolution: {integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==} 1911 1912 base64-js@1.5.1: 1913 - resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==} 1914 1915 baseline-browser-mapping@2.8.12: 1916 - resolution: {integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==} 1917 hasBin: true 1918 1919 blob-to-buffer@1.2.9: 1920 - resolution: {integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==} 1921 1922 bn.js@4.12.2: 1923 - resolution: {integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==} 1924 1925 bn.js@5.2.2: 1926 - resolution: {integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==} 1927 1928 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} 1931 1932 boxen@8.0.1: 1933 - resolution: {integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==} 1934 - engines: {node: '>=18'} 1935 1936 brace-expansion@2.0.2: 1937 - resolution: {integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==} 1938 1939 braces@3.0.3: 1940 - resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==} 1941 - engines: {node: '>=8'} 1942 1943 brorand@1.1.0: 1944 - resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==} 1945 1946 brotli@1.3.3: 1947 - resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==} 1948 1949 browser-resolve@2.0.0: 1950 - resolution: {integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==} 1951 1952 browserify-aes@1.2.0: 1953 - resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==} 1954 1955 browserify-cipher@1.0.1: 1956 - resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==} 1957 1958 browserify-des@1.0.2: 1959 - resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==} 1960 1961 browserify-rsa@4.1.1: 1962 - resolution: {integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==} 1963 - engines: {node: '>= 0.10'} 1964 1965 browserify-sign@4.2.5: 1966 - resolution: {integrity: sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==} 1967 - engines: {node: '>= 0.10'} 1968 1969 browserify-zlib@0.2.0: 1970 - resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==} 1971 1972 browserslist@4.26.3: 1973 - resolution: {integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==} 1974 - engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 1975 hasBin: true 1976 1977 buffer-xor@1.0.3: 1978 - resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==} 1979 1980 buffer@5.7.1: 1981 - resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==} 1982 1983 buffer@6.0.3: 1984 - resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==} 1985 1986 builtin-status-codes@3.0.0: 1987 - resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==} 1988 1989 bytes@3.1.2: 1990 - resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==} 1991 - engines: {node: '>= 0.8'} 1992 1993 cac@6.7.14: 1994 - resolution: {integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==} 1995 - engines: {node: '>=8'} 1996 1997 call-bind-apply-helpers@1.0.2: 1998 - resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==} 1999 - engines: {node: '>= 0.4'} 2000 2001 call-bind@1.0.8: 2002 - resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==} 2003 - engines: {node: '>= 0.4'} 2004 2005 call-bound@1.0.4: 2006 - resolution: {integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==} 2007 - engines: {node: '>= 0.4'} 2008 2009 call-me-maybe@1.0.2: 2010 - resolution: {integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==} 2011 2012 camelcase@8.0.0: 2013 - resolution: {integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==} 2014 - engines: {node: '>=16'} 2015 2016 caniuse-lite@1.0.30001747: 2017 - resolution: {integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==} 2018 2019 cbor-extract@2.2.0: 2020 - resolution: {integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==} 2021 hasBin: true 2022 2023 cbor-x@1.6.0: 2024 - resolution: {integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==} 2025 2026 cborg@1.10.2: 2027 - resolution: {integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==} 2028 hasBin: true 2029 2030 ccount@2.0.1: 2031 - resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==} 2032 2033 chai@4.5.0: 2034 - resolution: {integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==} 2035 - engines: {node: '>=4'} 2036 2037 chalk@4.1.2: 2038 - resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==} 2039 - engines: {node: '>=10'} 2040 2041 chalk@5.6.2: 2042 - resolution: {integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==} 2043 - engines: {node: ^12.17.0 || ^14.13 || >=16.0.0} 2044 2045 change-case@5.4.4: 2046 - resolution: {integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==} 2047 2048 character-entities-html4@2.1.0: 2049 - resolution: {integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==} 2050 2051 character-entities-legacy@3.0.0: 2052 - resolution: {integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==} 2053 2054 character-entities@2.0.2: 2055 - resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==} 2056 2057 chardet@2.1.0: 2058 - resolution: {integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==} 2059 2060 check-error@1.0.3: 2061 - resolution: {integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==} 2062 2063 chokidar@4.0.3: 2064 - resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==} 2065 - engines: {node: '>= 14.16.0'} 2066 2067 chownr@3.0.0: 2068 - resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==} 2069 - engines: {node: '>=18'} 2070 2071 ci-info@4.3.0: 2072 - resolution: {integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==} 2073 - engines: {node: '>=8'} 2074 2075 cipher-base@1.0.7: 2076 - resolution: {integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==} 2077 - engines: {node: '>= 0.10'} 2078 2079 cli-boxes@3.0.0: 2080 - resolution: {integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==} 2081 - engines: {node: '>=10'} 2082 2083 cli-width@4.1.0: 2084 - resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==} 2085 - engines: {node: '>= 12'} 2086 2087 cliui@8.0.1: 2088 - resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==} 2089 - engines: {node: '>=12'} 2090 2091 cliui@9.0.1: 2092 - resolution: {integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==} 2093 - engines: {node: '>=20'} 2094 2095 clone@2.1.2: 2096 - resolution: {integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==} 2097 - engines: {node: '>=0.8'} 2098 2099 clsx@2.1.1: 2100 - resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==} 2101 - engines: {node: '>=6'} 2102 2103 code-block-writer@13.0.3: 2104 - resolution: {integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==} 2105 2106 color-convert@2.0.1: 2107 - resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==} 2108 - engines: {node: '>=7.0.0'} 2109 2110 color-name@1.1.4: 2111 - resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==} 2112 2113 comma-separated-tokens@2.0.3: 2114 - resolution: {integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==} 2115 2116 commander@9.5.0: 2117 - resolution: {integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==} 2118 - engines: {node: ^12.20.0 || >=14} 2119 2120 common-ancestor-path@1.0.1: 2121 - resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==} 2122 2123 concurrently@9.2.1: 2124 - resolution: {integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==} 2125 - engines: {node: '>=18'} 2126 hasBin: true 2127 2128 confbox@0.1.8: 2129 - resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==} 2130 2131 confbox@0.2.2: 2132 - resolution: {integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==} 2133 2134 console-browserify@1.2.0: 2135 - resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==} 2136 2137 constants-browserify@1.0.0: 2138 - resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==} 2139 2140 content-disposition@0.5.4: 2141 - resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==} 2142 - engines: {node: '>= 0.6'} 2143 2144 content-type@1.0.5: 2145 - resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==} 2146 - engines: {node: '>= 0.6'} 2147 2148 convert-source-map@2.0.0: 2149 - resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==} 2150 2151 cookie-es@1.2.2: 2152 - resolution: {integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==} 2153 2154 cookie-signature@1.0.6: 2155 - resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==} 2156 2157 cookie@0.7.1: 2158 - resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==} 2159 - engines: {node: '>= 0.6'} 2160 2161 cookie@1.0.2: 2162 - resolution: {integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==} 2163 - engines: {node: '>=18'} 2164 2165 core-util-is@1.0.3: 2166 - resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 2167 2168 create-ecdh@4.0.4: 2169 - resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==} 2170 2171 create-hash@1.2.0: 2172 - resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==} 2173 2174 create-hmac@1.1.7: 2175 - resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==} 2176 2177 create-require@1.1.1: 2178 - resolution: {integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==} 2179 2180 cross-fetch@3.2.0: 2181 - resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==} 2182 2183 cross-spawn@7.0.6: 2184 - resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==} 2185 - engines: {node: '>= 8'} 2186 2187 crossws@0.3.5: 2188 - resolution: {integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==} 2189 2190 crypto-browserify@3.12.1: 2191 - resolution: {integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==} 2192 - engines: {node: '>= 0.10'} 2193 2194 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} 2197 2198 cssesc@3.0.0: 2199 - resolution: {integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==} 2200 - engines: {node: '>=4'} 2201 hasBin: true 2202 2203 csstype@3.1.3: 2204 - resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==} 2205 2206 debounce@2.2.0: 2207 - resolution: {integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==} 2208 - engines: {node: '>=18'} 2209 2210 debug@2.6.9: 2211 - resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==} 2212 peerDependencies: 2213 - supports-color: '*' 2214 peerDependenciesMeta: 2215 supports-color: 2216 optional: true 2217 2218 debug@4.4.3: 2219 - resolution: {integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==} 2220 - engines: {node: '>=6.0'} 2221 peerDependencies: 2222 - supports-color: '*' 2223 peerDependenciesMeta: 2224 supports-color: 2225 optional: true 2226 2227 decode-named-character-reference@1.2.0: 2228 - resolution: {integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==} 2229 2230 deep-eql@4.1.4: 2231 - resolution: {integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==} 2232 - engines: {node: '>=6'} 2233 2234 define-data-property@1.1.4: 2235 - resolution: {integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==} 2236 - engines: {node: '>= 0.4'} 2237 2238 define-properties@1.2.1: 2239 - resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==} 2240 - engines: {node: '>= 0.4'} 2241 2242 defu@6.1.4: 2243 - resolution: {integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==} 2244 2245 depd@2.0.0: 2246 - resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==} 2247 - engines: {node: '>= 0.8'} 2248 2249 dequal@2.0.3: 2250 - resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==} 2251 - engines: {node: '>=6'} 2252 2253 des.js@1.1.0: 2254 - resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==} 2255 2256 destr@2.0.5: 2257 - resolution: {integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==} 2258 2259 destroy@1.2.0: 2260 - resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==} 2261 - engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16} 2262 2263 detect-libc@2.1.1: 2264 - resolution: {integrity: sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==} 2265 - engines: {node: '>=8'} 2266 2267 deterministic-object-hash@2.0.2: 2268 - resolution: {integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==} 2269 - engines: {node: '>=18'} 2270 2271 devalue@5.3.2: 2272 - resolution: {integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==} 2273 2274 devlop@1.1.0: 2275 - resolution: {integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==} 2276 2277 dfa@1.2.0: 2278 - resolution: {integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==} 2279 2280 diff-sequences@29.6.3: 2281 - resolution: {integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==} 2282 - engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 2283 2284 diff@5.2.0: 2285 - resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==} 2286 - engines: {node: '>=0.3.1'} 2287 2288 diffie-hellman@5.0.3: 2289 - resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==} 2290 2291 dlv@1.1.3: 2292 - resolution: {integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==} 2293 2294 domain-browser@4.22.0: 2295 - resolution: {integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==} 2296 - engines: {node: '>=10'} 2297 2298 dset@3.1.4: 2299 - resolution: {integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==} 2300 - engines: {node: '>=4'} 2301 2302 dunder-proto@1.0.1: 2303 - resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==} 2304 - engines: {node: '>= 0.4'} 2305 2306 duplexer@0.1.2: 2307 - resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==} 2308 2309 ee-first@1.1.1: 2310 - resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 2311 2312 electron-to-chromium@1.5.230: 2313 - resolution: {integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==} 2314 2315 elliptic@6.6.1: 2316 - resolution: {integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==} 2317 2318 embla-carousel-autoplay@8.6.0: 2319 - resolution: {integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==} 2320 peerDependencies: 2321 embla-carousel: 8.6.0 2322 2323 embla-carousel-fade@8.6.0: 2324 - resolution: {integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==} 2325 peerDependencies: 2326 embla-carousel: 8.6.0 2327 2328 embla-carousel@8.6.0: 2329 - resolution: {integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==} 2330 2331 emoji-regex@10.5.0: 2332 - resolution: {integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==} 2333 2334 emoji-regex@8.0.0: 2335 - resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==} 2336 2337 encodeurl@1.0.2: 2338 - resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==} 2339 - engines: {node: '>= 0.8'} 2340 2341 encodeurl@2.0.0: 2342 - resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==} 2343 - engines: {node: '>= 0.8'} 2344 2345 entities@6.0.1: 2346 - resolution: {integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==} 2347 - engines: {node: '>=0.12'} 2348 2349 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} 2352 2353 es-define-property@1.0.1: 2354 - resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==} 2355 - engines: {node: '>= 0.4'} 2356 2357 es-errors@1.3.0: 2358 - resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==} 2359 - engines: {node: '>= 0.4'} 2360 2361 es-module-lexer@1.7.0: 2362 - resolution: {integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==} 2363 2364 es-object-atoms@1.1.1: 2365 - resolution: {integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==} 2366 - engines: {node: '>= 0.4'} 2367 2368 esbuild-plugins-node-modules-polyfill@1.7.1: 2369 - resolution: {integrity: sha512-IEaUhaS1RukGGcatDzqJmR+AzUWJ2upTJZP2i7FzR37Iw5Lk0LReCTnWnPMWnGG9lO4MWTGKEGGLWEOPegTRJA==} 2370 - engines: {node: '>=14.0.0'} 2371 peerDependencies: 2372 - esbuild: '>=0.14.0 <=0.25.x' 2373 2374 esbuild@0.21.5: 2375 - resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==} 2376 - engines: {node: '>=12'} 2377 hasBin: true 2378 2379 esbuild@0.25.10: 2380 - resolution: {integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==} 2381 - engines: {node: '>=18'} 2382 hasBin: true 2383 2384 escalade@3.2.0: 2385 - resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==} 2386 - engines: {node: '>=6'} 2387 2388 escape-html@1.0.3: 2389 - resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==} 2390 2391 escape-string-regexp@5.0.0: 2392 - resolution: {integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==} 2393 - engines: {node: '>=12'} 2394 2395 estree-walker@2.0.2: 2396 - resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==} 2397 2398 estree-walker@3.0.3: 2399 - resolution: {integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==} 2400 2401 etag@1.8.1: 2402 - resolution: {integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==} 2403 - engines: {node: '>= 0.6'} 2404 2405 event-stream@3.3.4: 2406 - resolution: {integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==} 2407 2408 event-target-shim@5.0.1: 2409 - resolution: {integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==} 2410 - engines: {node: '>=6'} 2411 2412 eventemitter3@5.0.1: 2413 - resolution: {integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==} 2414 2415 events@3.3.0: 2416 - resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==} 2417 - engines: {node: '>=0.8.x'} 2418 2419 evp_bytestokey@1.0.3: 2420 - resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==} 2421 2422 execa@8.0.1: 2423 - resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==} 2424 - engines: {node: '>=16.17'} 2425 2426 express@4.21.2: 2427 - resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==} 2428 - engines: {node: '>= 0.10.0'} 2429 2430 exsolve@1.0.7: 2431 - resolution: {integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==} 2432 2433 extend@3.0.2: 2434 - resolution: {integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==} 2435 2436 fast-deep-equal@3.1.3: 2437 - resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==} 2438 2439 fast-glob@3.3.3: 2440 - resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==} 2441 - engines: {node: '>=8.6.0'} 2442 2443 fast-redact@3.5.0: 2444 - resolution: {integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==} 2445 - engines: {node: '>=6'} 2446 2447 fast-uri@3.1.0: 2448 - resolution: {integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==} 2449 2450 fastq@1.19.1: 2451 - resolution: {integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==} 2452 2453 fdir@6.5.0: 2454 - resolution: {integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==} 2455 - engines: {node: '>=12.0.0'} 2456 peerDependencies: 2457 picomatch: ^3 || ^4 2458 peerDependenciesMeta: ··· 2460 optional: true 2461 2462 fill-range@7.1.1: 2463 - resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==} 2464 - engines: {node: '>=8'} 2465 2466 finalhandler@1.3.1: 2467 - resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==} 2468 - engines: {node: '>= 0.8'} 2469 2470 find-up@5.0.0: 2471 - resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==} 2472 - engines: {node: '>=10'} 2473 2474 flattie@1.1.1: 2475 - resolution: {integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==} 2476 - engines: {node: '>=8'} 2477 2478 fontace@0.3.0: 2479 - resolution: {integrity: sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==} 2480 2481 fontkit@2.0.4: 2482 - resolution: {integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==} 2483 2484 for-each@0.3.5: 2485 - resolution: {integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==} 2486 - engines: {node: '>= 0.4'} 2487 2488 forwarded@0.2.0: 2489 - resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==} 2490 - engines: {node: '>= 0.6'} 2491 2492 fresh@0.5.2: 2493 - resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==} 2494 - engines: {node: '>= 0.6'} 2495 2496 from@0.1.7: 2497 - resolution: {integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==} 2498 2499 fsevents@2.3.3: 2500 - resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==} 2501 - engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0} 2502 os: [darwin] 2503 2504 function-bind@1.1.2: 2505 - resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==} 2506 2507 generator-function@2.0.1: 2508 - resolution: {integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==} 2509 - engines: {node: '>= 0.4'} 2510 2511 gensync@1.0.0-beta.2: 2512 - resolution: {integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==} 2513 - engines: {node: '>=6.9.0'} 2514 2515 get-caller-file@2.0.5: 2516 - resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==} 2517 - engines: {node: 6.* || 8.* || >= 10.*} 2518 2519 get-east-asian-width@1.4.0: 2520 - resolution: {integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==} 2521 - engines: {node: '>=18'} 2522 2523 get-func-name@2.0.2: 2524 - resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==} 2525 2526 get-intrinsic@1.3.0: 2527 - resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==} 2528 - engines: {node: '>= 0.4'} 2529 2530 get-proto@1.0.1: 2531 - resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==} 2532 - engines: {node: '>= 0.4'} 2533 2534 get-stream@8.0.1: 2535 - resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==} 2536 - engines: {node: '>=16'} 2537 2538 github-slugger@2.0.0: 2539 - resolution: {integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==} 2540 2541 glob-parent@5.1.2: 2542 - resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==} 2543 - engines: {node: '>= 6'} 2544 2545 globby@14.1.0: 2546 - resolution: {integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==} 2547 - engines: {node: '>=18'} 2548 2549 gopd@1.2.0: 2550 - resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==} 2551 - engines: {node: '>= 0.4'} 2552 2553 graphemer@1.4.0: 2554 - resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==} 2555 2556 h3@1.15.4: 2557 - resolution: {integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==} 2558 2559 has-flag@4.0.0: 2560 - resolution: {integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==} 2561 - engines: {node: '>=8'} 2562 2563 has-property-descriptors@1.0.2: 2564 - resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==} 2565 2566 has-symbols@1.1.0: 2567 - resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==} 2568 - engines: {node: '>= 0.4'} 2569 2570 has-tostringtag@1.0.2: 2571 - resolution: {integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==} 2572 - engines: {node: '>= 0.4'} 2573 2574 hash-base@3.0.5: 2575 - resolution: {integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==} 2576 - engines: {node: '>= 0.10'} 2577 2578 hash-base@3.1.2: 2579 - resolution: {integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==} 2580 - engines: {node: '>= 0.8'} 2581 2582 hash.js@1.1.7: 2583 - resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==} 2584 2585 hasown@2.0.2: 2586 - resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==} 2587 - engines: {node: '>= 0.4'} 2588 2589 hast-util-from-html@2.0.3: 2590 - resolution: {integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==} 2591 2592 hast-util-from-parse5@8.0.3: 2593 - resolution: {integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==} 2594 2595 hast-util-is-element@3.0.0: 2596 - resolution: {integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==} 2597 2598 hast-util-parse-selector@4.0.0: 2599 - resolution: {integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==} 2600 2601 hast-util-raw@9.1.0: 2602 - resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==} 2603 2604 hast-util-to-html@9.0.5: 2605 - resolution: {integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==} 2606 2607 hast-util-to-parse5@8.0.0: 2608 - resolution: {integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==} 2609 2610 hast-util-to-text@4.0.2: 2611 - resolution: {integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==} 2612 2613 hast-util-whitespace@3.0.0: 2614 - resolution: {integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==} 2615 2616 hastscript@9.0.1: 2617 - resolution: {integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==} 2618 2619 hmac-drbg@1.0.1: 2620 - resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==} 2621 2622 html-escaper@3.0.3: 2623 - resolution: {integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==} 2624 2625 html-void-elements@3.0.0: 2626 - resolution: {integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==} 2627 2628 http-cache-semantics@4.2.0: 2629 - resolution: {integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==} 2630 2631 http-errors@2.0.0: 2632 - resolution: {integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==} 2633 - engines: {node: '>= 0.8'} 2634 2635 https-browserify@1.0.0: 2636 - resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==} 2637 2638 human-signals@5.0.0: 2639 - resolution: {integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==} 2640 - engines: {node: '>=16.17.0'} 2641 2642 iconv-lite@0.4.24: 2643 - resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==} 2644 - engines: {node: '>=0.10.0'} 2645 2646 iconv-lite@0.7.0: 2647 - resolution: {integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==} 2648 - engines: {node: '>=0.10.0'} 2649 2650 ieee754@1.2.1: 2651 - resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 2652 2653 ignore@7.0.5: 2654 - resolution: {integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==} 2655 - engines: {node: '>= 4'} 2656 2657 import-meta-resolve@4.2.0: 2658 - resolution: {integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==} 2659 2660 inherits@2.0.4: 2661 - resolution: {integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==} 2662 2663 ipaddr.js@1.9.1: 2664 - resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==} 2665 - engines: {node: '>= 0.10'} 2666 2667 iron-webcrypto@1.2.1: 2668 - resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==} 2669 2670 is-arguments@1.2.0: 2671 - resolution: {integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==} 2672 - engines: {node: '>= 0.4'} 2673 2674 is-callable@1.2.7: 2675 - resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==} 2676 - engines: {node: '>= 0.4'} 2677 2678 is-core-module@2.16.1: 2679 - resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==} 2680 - engines: {node: '>= 0.4'} 2681 2682 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} 2685 hasBin: true 2686 2687 is-extglob@2.1.1: 2688 - resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==} 2689 - engines: {node: '>=0.10.0'} 2690 2691 is-fullwidth-code-point@3.0.0: 2692 - resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==} 2693 - engines: {node: '>=8'} 2694 2695 is-generator-function@1.1.2: 2696 - resolution: {integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==} 2697 - engines: {node: '>= 0.4'} 2698 2699 is-glob@4.0.3: 2700 - resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==} 2701 - engines: {node: '>=0.10.0'} 2702 2703 is-inside-container@1.0.0: 2704 - resolution: {integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==} 2705 - engines: {node: '>=14.16'} 2706 hasBin: true 2707 2708 is-nan@1.3.2: 2709 - resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==} 2710 - engines: {node: '>= 0.4'} 2711 2712 is-number@7.0.0: 2713 - resolution: {integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==} 2714 - engines: {node: '>=0.12.0'} 2715 2716 is-plain-obj@4.1.0: 2717 - resolution: {integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==} 2718 - engines: {node: '>=12'} 2719 2720 is-regex@1.2.1: 2721 - resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==} 2722 - engines: {node: '>= 0.4'} 2723 2724 is-stream@3.0.0: 2725 - resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==} 2726 - engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 2727 2728 is-typed-array@1.1.15: 2729 - resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==} 2730 - engines: {node: '>= 0.4'} 2731 2732 is-unicode-supported@2.1.0: 2733 - resolution: {integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==} 2734 - engines: {node: '>=18'} 2735 2736 is-wsl@3.1.0: 2737 - resolution: {integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==} 2738 - engines: {node: '>=16'} 2739 2740 isarray@1.0.0: 2741 - resolution: {integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==} 2742 2743 isarray@2.0.5: 2744 - resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==} 2745 2746 isexe@2.0.0: 2747 - resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==} 2748 2749 iso-datestring-validator@2.2.2: 2750 - resolution: {integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==} 2751 2752 isomorphic-timers-promises@1.0.1: 2753 - resolution: {integrity: sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ==} 2754 - engines: {node: '>=10'} 2755 2756 js-tokens@4.0.0: 2757 - resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==} 2758 2759 js-tokens@9.0.1: 2760 - resolution: {integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==} 2761 2762 js-yaml@4.1.0: 2763 - resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==} 2764 hasBin: true 2765 2766 jsesc@3.1.0: 2767 - resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==} 2768 - engines: {node: '>=6'} 2769 hasBin: true 2770 2771 json-schema-traverse@1.0.0: 2772 - resolution: {integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==} 2773 2774 json-stringify-pretty-compact@4.0.0: 2775 - resolution: {integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==} 2776 2777 json5@2.2.3: 2778 - resolution: {integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==} 2779 - engines: {node: '>=6'} 2780 hasBin: true 2781 2782 keyborg@2.6.0: 2783 - resolution: {integrity: sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==} 2784 2785 kleur@3.0.3: 2786 - resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==} 2787 - engines: {node: '>=6'} 2788 2789 kleur@4.1.5: 2790 - resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==} 2791 - engines: {node: '>=6'} 2792 2793 local-pkg@0.5.1: 2794 - resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==} 2795 - engines: {node: '>=14'} 2796 2797 local-pkg@1.1.2: 2798 - resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==} 2799 - engines: {node: '>=14'} 2800 2801 locate-path@6.0.0: 2802 - resolution: {integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==} 2803 - engines: {node: '>=10'} 2804 2805 longest-streak@3.1.0: 2806 - resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==} 2807 2808 loose-envify@1.4.0: 2809 - resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==} 2810 hasBin: true 2811 2812 loupe@2.3.7: 2813 - resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==} 2814 2815 lru-cache@10.4.3: 2816 - resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==} 2817 2818 lru-cache@5.1.1: 2819 - resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==} 2820 2821 lzutf8@0.6.3: 2822 - resolution: {integrity: sha512-CAkF9HKrM+XpB0f3DepQ2to2iUEo0zrbh+XgBqgNBc1+k8HMM3u/YSfHI3Dr4GmoTIez2Pr/If1XFl3rU26AwA==} 2823 2824 magic-string@0.30.19: 2825 - resolution: {integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==} 2826 2827 magicast@0.3.5: 2828 - resolution: {integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==} 2829 2830 map-stream@0.1.0: 2831 - resolution: {integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==} 2832 2833 markdown-table@3.0.4: 2834 - resolution: {integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==} 2835 2836 math-intrinsics@1.1.0: 2837 - resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==} 2838 - engines: {node: '>= 0.4'} 2839 2840 md5.js@1.3.5: 2841 - resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==} 2842 2843 mdast-util-definitions@6.0.0: 2844 - resolution: {integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==} 2845 2846 mdast-util-find-and-replace@3.0.2: 2847 - resolution: {integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==} 2848 2849 mdast-util-from-markdown@2.0.2: 2850 - resolution: {integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==} 2851 2852 mdast-util-gfm-autolink-literal@2.0.1: 2853 - resolution: {integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==} 2854 2855 mdast-util-gfm-footnote@2.1.0: 2856 - resolution: {integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==} 2857 2858 mdast-util-gfm-strikethrough@2.0.0: 2859 - resolution: {integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==} 2860 2861 mdast-util-gfm-table@2.0.0: 2862 - resolution: {integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==} 2863 2864 mdast-util-gfm-task-list-item@2.0.0: 2865 - resolution: {integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==} 2866 2867 mdast-util-gfm@3.1.0: 2868 - resolution: {integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==} 2869 2870 mdast-util-phrasing@4.1.0: 2871 - resolution: {integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==} 2872 2873 mdast-util-to-hast@13.2.0: 2874 - resolution: {integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==} 2875 2876 mdast-util-to-markdown@2.1.2: 2877 - resolution: {integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==} 2878 2879 mdast-util-to-string@4.0.0: 2880 - resolution: {integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==} 2881 2882 mdn-data@2.12.2: 2883 - resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==} 2884 2885 media-typer@0.3.0: 2886 - resolution: {integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==} 2887 - engines: {node: '>= 0.6'} 2888 2889 merge-descriptors@1.0.3: 2890 - resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==} 2891 2892 merge-stream@2.0.0: 2893 - resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==} 2894 2895 merge2@1.4.1: 2896 - resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==} 2897 - engines: {node: '>= 8'} 2898 2899 methods@1.1.2: 2900 - resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==} 2901 - engines: {node: '>= 0.6'} 2902 2903 micromark-core-commonmark@2.0.3: 2904 - resolution: {integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==} 2905 2906 micromark-extension-gfm-autolink-literal@2.1.0: 2907 - resolution: {integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==} 2908 2909 micromark-extension-gfm-footnote@2.1.0: 2910 - resolution: {integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==} 2911 2912 micromark-extension-gfm-strikethrough@2.1.0: 2913 - resolution: {integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==} 2914 2915 micromark-extension-gfm-table@2.1.1: 2916 - resolution: {integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==} 2917 2918 micromark-extension-gfm-tagfilter@2.0.0: 2919 - resolution: {integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==} 2920 2921 micromark-extension-gfm-task-list-item@2.1.0: 2922 - resolution: {integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==} 2923 2924 micromark-extension-gfm@3.0.0: 2925 - resolution: {integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==} 2926 2927 micromark-factory-destination@2.0.1: 2928 - resolution: {integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==} 2929 2930 micromark-factory-label@2.0.1: 2931 - resolution: {integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==} 2932 2933 micromark-factory-space@2.0.1: 2934 - resolution: {integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==} 2935 2936 micromark-factory-title@2.0.1: 2937 - resolution: {integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==} 2938 2939 micromark-factory-whitespace@2.0.1: 2940 - resolution: {integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==} 2941 2942 micromark-util-character@2.1.1: 2943 - resolution: {integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==} 2944 2945 micromark-util-chunked@2.0.1: 2946 - resolution: {integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==} 2947 2948 micromark-util-classify-character@2.0.1: 2949 - resolution: {integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==} 2950 2951 micromark-util-combine-extensions@2.0.1: 2952 - resolution: {integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==} 2953 2954 micromark-util-decode-numeric-character-reference@2.0.2: 2955 - resolution: {integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==} 2956 2957 micromark-util-decode-string@2.0.1: 2958 - resolution: {integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==} 2959 2960 micromark-util-encode@2.0.1: 2961 - resolution: {integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==} 2962 2963 micromark-util-html-tag-name@2.0.1: 2964 - resolution: {integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==} 2965 2966 micromark-util-normalize-identifier@2.0.1: 2967 - resolution: {integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==} 2968 2969 micromark-util-resolve-all@2.0.1: 2970 - resolution: {integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==} 2971 2972 micromark-util-sanitize-uri@2.0.1: 2973 - resolution: {integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==} 2974 2975 micromark-util-subtokenize@2.1.0: 2976 - resolution: {integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==} 2977 2978 micromark-util-symbol@2.0.1: 2979 - resolution: {integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==} 2980 2981 micromark-util-types@2.0.2: 2982 - resolution: {integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==} 2983 2984 micromark@4.0.2: 2985 - resolution: {integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==} 2986 2987 micromatch@4.0.8: 2988 - resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==} 2989 - engines: {node: '>=8.6'} 2990 2991 miller-rabin@4.0.1: 2992 - resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==} 2993 hasBin: true 2994 2995 mime-db@1.52.0: 2996 - resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==} 2997 - engines: {node: '>= 0.6'} 2998 2999 mime-types@2.1.35: 3000 - resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==} 3001 - engines: {node: '>= 0.6'} 3002 3003 mime@1.6.0: 3004 - resolution: {integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==} 3005 - engines: {node: '>=4'} 3006 hasBin: true 3007 3008 mimic-fn@4.0.0: 3009 - resolution: {integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==} 3010 - engines: {node: '>=12'} 3011 3012 minimalistic-assert@1.0.1: 3013 - resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==} 3014 3015 minimalistic-crypto-utils@1.0.1: 3016 - resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==} 3017 3018 minimatch@9.0.5: 3019 - resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==} 3020 - engines: {node: '>=16 || 14 >=14.17'} 3021 3022 minipass@7.1.2: 3023 - resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==} 3024 - engines: {node: '>=16 || 14 >=14.17'} 3025 3026 minizlib@3.1.0: 3027 - resolution: {integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==} 3028 - engines: {node: '>= 18'} 3029 3030 mlly@1.8.0: 3031 - resolution: {integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==} 3032 3033 monaco-editor@0.52.2: 3034 - resolution: {integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==} 3035 3036 mrmime@2.0.1: 3037 - resolution: {integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==} 3038 - engines: {node: '>=10'} 3039 3040 ms@2.0.0: 3041 - resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==} 3042 3043 ms@2.1.3: 3044 - resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==} 3045 3046 multiformats@9.9.0: 3047 - resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==} 3048 3049 mustache@4.2.0: 3050 - resolution: {integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==} 3051 hasBin: true 3052 3053 mute-stream@2.0.0: 3054 - resolution: {integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==} 3055 - engines: {node: ^18.17.0 || >=20.5.0} 3056 3057 nanoid@3.3.11: 3058 - resolution: {integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==} 3059 - engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1} 3060 hasBin: true 3061 3062 negotiator@0.6.3: 3063 - resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==} 3064 - engines: {node: '>= 0.6'} 3065 3066 neotraverse@0.6.18: 3067 - resolution: {integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==} 3068 - engines: {node: '>= 10'} 3069 3070 nlcst-to-string@4.0.0: 3071 - resolution: {integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==} 3072 3073 node-cleanup@2.1.2: 3074 - resolution: {integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==} 3075 3076 node-fetch-native@1.6.7: 3077 - resolution: {integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==} 3078 3079 node-fetch@2.7.0: 3080 - resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==} 3081 - engines: {node: 4.x || >=6.0.0} 3082 peerDependencies: 3083 encoding: ^0.1.0 3084 peerDependenciesMeta: ··· 3086 optional: true 3087 3088 node-gyp-build-optional-packages@5.1.1: 3089 - resolution: {integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==} 3090 hasBin: true 3091 3092 node-mock-http@1.0.3: 3093 - resolution: {integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==} 3094 3095 node-releases@2.0.23: 3096 - resolution: {integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==} 3097 3098 node-stdlib-browser@1.3.1: 3099 - resolution: {integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==} 3100 - engines: {node: '>=10'} 3101 3102 normalize-path@3.0.0: 3103 - resolution: {integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==} 3104 - engines: {node: '>=0.10.0'} 3105 3106 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} 3109 3110 object-inspect@1.13.4: 3111 - resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==} 3112 - engines: {node: '>= 0.4'} 3113 3114 object-is@1.1.6: 3115 - resolution: {integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==} 3116 - engines: {node: '>= 0.4'} 3117 3118 object-keys@1.1.1: 3119 - resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 3120 - engines: {node: '>= 0.4'} 3121 3122 object.assign@4.1.7: 3123 - resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==} 3124 - engines: {node: '>= 0.4'} 3125 3126 ofetch@1.4.1: 3127 - resolution: {integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==} 3128 3129 ohash@2.0.11: 3130 - resolution: {integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==} 3131 3132 on-exit-leak-free@2.1.2: 3133 - resolution: {integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==} 3134 - engines: {node: '>=14.0.0'} 3135 3136 on-finished@2.4.1: 3137 - resolution: {integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==} 3138 - engines: {node: '>= 0.8'} 3139 3140 onetime@6.0.0: 3141 - resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==} 3142 - engines: {node: '>=12'} 3143 3144 oniguruma-parser@0.12.1: 3145 - resolution: {integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==} 3146 3147 oniguruma-to-es@4.3.3: 3148 - resolution: {integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==} 3149 3150 openapi-types@12.1.3: 3151 - resolution: {integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==} 3152 3153 os-browserify@0.3.0: 3154 - resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==} 3155 3156 p-limit@3.1.0: 3157 - resolution: {integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==} 3158 - engines: {node: '>=10'} 3159 3160 p-limit@5.0.0: 3161 - resolution: {integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==} 3162 - engines: {node: '>=18'} 3163 3164 p-limit@6.2.0: 3165 - resolution: {integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==} 3166 - engines: {node: '>=18'} 3167 3168 p-locate@5.0.0: 3169 - resolution: {integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==} 3170 - engines: {node: '>=10'} 3171 3172 p-queue@8.1.1: 3173 - resolution: {integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==} 3174 - engines: {node: '>=18'} 3175 3176 p-timeout@6.1.4: 3177 - resolution: {integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==} 3178 - engines: {node: '>=14.16'} 3179 3180 package-manager-detector@1.3.0: 3181 - resolution: {integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==} 3182 3183 pako@0.2.9: 3184 - resolution: {integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==} 3185 3186 pako@1.0.11: 3187 - resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==} 3188 3189 parse-asn1@5.1.9: 3190 - resolution: {integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==} 3191 - engines: {node: '>= 0.10'} 3192 3193 parse-latin@7.0.0: 3194 - resolution: {integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==} 3195 3196 parse5@7.3.0: 3197 - resolution: {integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==} 3198 3199 parseurl@1.3.3: 3200 - resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==} 3201 - engines: {node: '>= 0.8'} 3202 3203 path-browserify@1.0.1: 3204 - resolution: {integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==} 3205 3206 path-exists@4.0.0: 3207 - resolution: {integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==} 3208 - engines: {node: '>=8'} 3209 3210 path-key@3.1.1: 3211 - resolution: {integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==} 3212 - engines: {node: '>=8'} 3213 3214 path-key@4.0.0: 3215 - resolution: {integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==} 3216 - engines: {node: '>=12'} 3217 3218 path-parse@1.0.7: 3219 - resolution: {integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==} 3220 3221 path-to-regexp@0.1.12: 3222 - resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==} 3223 3224 path-type@6.0.0: 3225 - resolution: {integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==} 3226 - engines: {node: '>=18'} 3227 3228 pathe@1.1.2: 3229 - resolution: {integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==} 3230 3231 pathe@2.0.3: 3232 - resolution: {integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==} 3233 3234 pathval@1.1.1: 3235 - resolution: {integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==} 3236 3237 pause-stream@0.0.11: 3238 - resolution: {integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==} 3239 3240 pbkdf2@3.1.5: 3241 - resolution: {integrity: sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==} 3242 - engines: {node: '>= 0.10'} 3243 3244 picocolors@1.1.1: 3245 - resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==} 3246 3247 picomatch@2.3.1: 3248 - resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==} 3249 - engines: {node: '>=8.6'} 3250 3251 picomatch@4.0.3: 3252 - resolution: {integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==} 3253 - engines: {node: '>=12'} 3254 3255 pino-abstract-transport@1.2.0: 3256 - resolution: {integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==} 3257 3258 pino-std-serializers@6.2.2: 3259 - resolution: {integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==} 3260 3261 pino@8.21.0: 3262 - resolution: {integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==} 3263 hasBin: true 3264 3265 pkg-dir@5.0.0: 3266 - resolution: {integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==} 3267 - engines: {node: '>=10'} 3268 3269 pkg-types@1.3.1: 3270 - resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==} 3271 3272 pkg-types@2.3.0: 3273 - resolution: {integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==} 3274 3275 possible-typed-array-names@1.1.0: 3276 - resolution: {integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==} 3277 - engines: {node: '>= 0.4'} 3278 3279 postcss@8.5.6: 3280 - resolution: {integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==} 3281 - engines: {node: ^10 || ^12 || >=14} 3282 3283 prettier@3.3.3: 3284 - resolution: {integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==} 3285 - engines: {node: '>=14'} 3286 hasBin: true 3287 3288 prettier@3.6.2: 3289 - resolution: {integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==} 3290 - engines: {node: '>=14'} 3291 hasBin: true 3292 3293 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} 3296 3297 prismjs@1.30.0: 3298 - resolution: {integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==} 3299 - engines: {node: '>=6'} 3300 3301 process-nextick-args@2.0.1: 3302 - resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==} 3303 3304 process-warning@3.0.0: 3305 - resolution: {integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==} 3306 3307 process@0.11.10: 3308 - resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==} 3309 - engines: {node: '>= 0.6.0'} 3310 3311 prompts@2.4.2: 3312 - resolution: {integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==} 3313 - engines: {node: '>= 6'} 3314 3315 property-information@6.5.0: 3316 - resolution: {integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==} 3317 3318 property-information@7.1.0: 3319 - resolution: {integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==} 3320 3321 proxy-addr@2.0.7: 3322 - resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==} 3323 - engines: {node: '>= 0.10'} 3324 3325 ps-tree@1.2.0: 3326 - resolution: {integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==} 3327 - engines: {node: '>= 0.10'} 3328 hasBin: true 3329 3330 public-encrypt@4.0.3: 3331 - resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==} 3332 3333 punycode@1.4.1: 3334 - resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==} 3335 3336 qs@6.13.0: 3337 - resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==} 3338 - engines: {node: '>=0.6'} 3339 3340 quansync@0.2.11: 3341 - resolution: {integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==} 3342 3343 querystring-es3@0.2.1: 3344 - resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==} 3345 - engines: {node: '>=0.4.x'} 3346 3347 queue-microtask@1.2.3: 3348 - resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} 3349 3350 quick-format-unescaped@4.0.4: 3351 - resolution: {integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==} 3352 3353 radix3@1.1.2: 3354 - resolution: {integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==} 3355 3356 randombytes@2.1.0: 3357 - resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==} 3358 3359 randomfill@1.0.4: 3360 - resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==} 3361 3362 range-parser@1.2.1: 3363 - resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==} 3364 - engines: {node: '>= 0.6'} 3365 3366 rate-limiter-flexible@2.4.2: 3367 - resolution: {integrity: sha512-rMATGGOdO1suFyf/mI5LYhts71g1sbdhmd6YvdiXO2gJnd42Tt6QS4JUKJKSWVVkMtBacm6l40FR7Trjo6Iruw==} 3368 3369 raw-body@2.5.2: 3370 - resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} 3371 - engines: {node: '>= 0.8'} 3372 3373 react-dom@18.3.1: 3374 - resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==} 3375 peerDependencies: 3376 react: ^18.3.1 3377 3378 react-dom@19.2.0: 3379 - resolution: {integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==} 3380 peerDependencies: 3381 react: ^19.2.0 3382 3383 react-error-boundary@6.0.0: 3384 - resolution: {integrity: sha512-gdlJjD7NWr0IfkPlaREN2d9uUZUlksrfOx7SX62VRerwXbMY6ftGCIZua1VG1aXFNOimhISsTq+Owp725b9SiA==} 3385 peerDependencies: 3386 - react: '>=16.13.1' 3387 3388 react-hotkeys-hook@5.1.0: 3389 - resolution: {integrity: sha512-GCNGXjBzV9buOS3REoQFmSmE4WTvBhYQ0YrAeeMZI83bhXg3dRWsLHXDutcVDdEjwJqJCxk5iewWYX5LtFUd7g==} 3390 peerDependencies: 3391 - react: '>=16.8.0' 3392 - react-dom: '>=16.8.0' 3393 3394 react-is@17.0.2: 3395 - resolution: {integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==} 3396 3397 react-is@18.3.1: 3398 - resolution: {integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==} 3399 3400 react-refresh@0.17.0: 3401 - resolution: {integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==} 3402 - engines: {node: '>=0.10.0'} 3403 3404 react@18.3.1: 3405 - resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==} 3406 - engines: {node: '>=0.10.0'} 3407 3408 react@19.2.0: 3409 - resolution: {integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==} 3410 - engines: {node: '>=0.10.0'} 3411 3412 readable-stream@2.3.8: 3413 - resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==} 3414 3415 readable-stream@3.6.2: 3416 - resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 3417 - engines: {node: '>= 6'} 3418 3419 readable-stream@4.7.0: 3420 - resolution: {integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==} 3421 - engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3422 3423 readdirp@4.1.2: 3424 - resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==} 3425 - engines: {node: '>= 14.18.0'} 3426 3427 real-require@0.2.0: 3428 - resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==} 3429 - engines: {node: '>= 12.13.0'} 3430 3431 regex-recursion@6.0.2: 3432 - resolution: {integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==} 3433 3434 regex-utilities@2.3.0: 3435 - resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==} 3436 3437 regex@6.0.1: 3438 - resolution: {integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==} 3439 3440 rehype-parse@9.0.1: 3441 - resolution: {integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==} 3442 3443 rehype-raw@7.0.0: 3444 - resolution: {integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==} 3445 3446 rehype-stringify@10.0.1: 3447 - resolution: {integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==} 3448 3449 rehype@13.0.2: 3450 - resolution: {integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==} 3451 3452 remark-gfm@4.0.1: 3453 - resolution: {integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==} 3454 3455 remark-parse@11.0.0: 3456 - resolution: {integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==} 3457 3458 remark-rehype@11.1.2: 3459 - resolution: {integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==} 3460 3461 remark-smartypants@3.0.2: 3462 - resolution: {integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==} 3463 - engines: {node: '>=16.0.0'} 3464 3465 remark-stringify@11.0.0: 3466 - resolution: {integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==} 3467 3468 require-directory@2.1.1: 3469 - resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==} 3470 - engines: {node: '>=0.10.0'} 3471 3472 require-from-string@2.0.2: 3473 - resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==} 3474 - engines: {node: '>=0.10.0'} 3475 3476 resolve.exports@2.0.3: 3477 - resolution: {integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==} 3478 - engines: {node: '>=10'} 3479 3480 resolve@1.22.10: 3481 - resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==} 3482 - engines: {node: '>= 0.4'} 3483 hasBin: true 3484 3485 restructure@3.0.2: 3486 - resolution: {integrity: sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==} 3487 3488 retext-latin@4.0.0: 3489 - resolution: {integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==} 3490 3491 retext-smartypants@6.2.0: 3492 - resolution: {integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==} 3493 3494 retext-stringify@4.0.0: 3495 - resolution: {integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==} 3496 3497 retext@9.0.0: 3498 - resolution: {integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==} 3499 3500 reusify@1.1.0: 3501 - resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==} 3502 - engines: {iojs: '>=1.0.0', node: '>=0.10.0'} 3503 3504 ripemd160@2.0.3: 3505 - resolution: {integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==} 3506 - engines: {node: '>= 0.8'} 3507 3508 rollup@4.52.4: 3509 - resolution: {integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==} 3510 - engines: {node: '>=18.0.0', npm: '>=8.0.0'} 3511 hasBin: true 3512 3513 rtl-css-js@1.16.1: 3514 - resolution: {integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==} 3515 3516 run-parallel@1.2.0: 3517 - resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==} 3518 3519 rxjs@7.8.2: 3520 - resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==} 3521 3522 safe-buffer@5.1.2: 3523 - resolution: {integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==} 3524 3525 safe-buffer@5.2.1: 3526 - resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==} 3527 3528 safe-regex-test@1.1.0: 3529 - resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==} 3530 - engines: {node: '>= 0.4'} 3531 3532 safe-stable-stringify@2.5.0: 3533 - resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==} 3534 - engines: {node: '>=10'} 3535 3536 safer-buffer@2.1.2: 3537 - resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==} 3538 3539 scheduler@0.23.2: 3540 - resolution: {integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==} 3541 3542 scheduler@0.27.0: 3543 - resolution: {integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==} 3544 3545 semver@6.3.1: 3546 - resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 3547 hasBin: true 3548 3549 semver@7.7.2: 3550 - resolution: {integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==} 3551 - engines: {node: '>=10'} 3552 hasBin: true 3553 3554 send@0.19.0: 3555 - resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==} 3556 - engines: {node: '>= 0.8.0'} 3557 3558 serve-static@1.16.2: 3559 - resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==} 3560 - engines: {node: '>= 0.8.0'} 3561 3562 set-function-length@1.2.2: 3563 - resolution: {integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==} 3564 - engines: {node: '>= 0.4'} 3565 3566 setimmediate@1.0.5: 3567 - resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==} 3568 3569 setprototypeof@1.2.0: 3570 - resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==} 3571 3572 sha.js@2.4.12: 3573 - resolution: {integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==} 3574 - engines: {node: '>= 0.10'} 3575 hasBin: true 3576 3577 sharp@0.34.4: 3578 - resolution: {integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==} 3579 - engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0} 3580 3581 shebang-command@2.0.0: 3582 - resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==} 3583 - engines: {node: '>=8'} 3584 3585 shebang-regex@3.0.0: 3586 - resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==} 3587 - engines: {node: '>=8'} 3588 3589 shell-quote@1.8.3: 3590 - resolution: {integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==} 3591 - engines: {node: '>= 0.4'} 3592 3593 shiki@3.13.0: 3594 - resolution: {integrity: sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==} 3595 3596 side-channel-list@1.0.0: 3597 - resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==} 3598 - engines: {node: '>= 0.4'} 3599 3600 side-channel-map@1.0.1: 3601 - resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==} 3602 - engines: {node: '>= 0.4'} 3603 3604 side-channel-weakmap@1.0.2: 3605 - resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==} 3606 - engines: {node: '>= 0.4'} 3607 3608 side-channel@1.1.0: 3609 - resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==} 3610 - engines: {node: '>= 0.4'} 3611 3612 siginfo@2.0.0: 3613 - resolution: {integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==} 3614 3615 signal-exit@4.1.0: 3616 - resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 3617 - engines: {node: '>=14'} 3618 3619 sisteransi@1.0.5: 3620 - resolution: {integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==} 3621 3622 slash@5.1.0: 3623 - resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==} 3624 - engines: {node: '>=14.16'} 3625 3626 smol-toml@1.4.2: 3627 - resolution: {integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==} 3628 - engines: {node: '>= 18'} 3629 3630 sonic-boom@3.8.1: 3631 - resolution: {integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==} 3632 3633 source-map-js@1.2.1: 3634 - resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==} 3635 - engines: {node: '>=0.10.0'} 3636 3637 space-separated-tokens@2.0.2: 3638 - resolution: {integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==} 3639 3640 split2@4.2.0: 3641 - resolution: {integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==} 3642 - engines: {node: '>= 10.x'} 3643 3644 split@0.3.3: 3645 - resolution: {integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==} 3646 3647 stackback@0.0.2: 3648 - resolution: {integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==} 3649 3650 statuses@2.0.1: 3651 - resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==} 3652 - engines: {node: '>= 0.8'} 3653 3654 std-env@3.9.0: 3655 - resolution: {integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==} 3656 3657 stream-browserify@3.0.0: 3658 - resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==} 3659 3660 stream-combiner@0.0.4: 3661 - resolution: {integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==} 3662 3663 stream-http@3.2.0: 3664 - resolution: {integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==} 3665 3666 string-argv@0.3.2: 3667 - resolution: {integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==} 3668 - engines: {node: '>=0.6.19'} 3669 3670 string-width@4.2.3: 3671 - resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==} 3672 - engines: {node: '>=8'} 3673 3674 string-width@7.2.0: 3675 - resolution: {integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==} 3676 - engines: {node: '>=18'} 3677 3678 string_decoder@1.1.1: 3679 - resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==} 3680 3681 string_decoder@1.3.0: 3682 - resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==} 3683 3684 stringify-entities@4.0.4: 3685 - resolution: {integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==} 3686 3687 strip-ansi@6.0.1: 3688 - resolution: {integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==} 3689 - engines: {node: '>=8'} 3690 3691 strip-ansi@7.1.2: 3692 - resolution: {integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==} 3693 - engines: {node: '>=12'} 3694 3695 strip-final-newline@3.0.0: 3696 - resolution: {integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==} 3697 - engines: {node: '>=12'} 3698 3699 strip-literal@2.1.1: 3700 - resolution: {integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==} 3701 3702 stylis@4.3.6: 3703 - resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==} 3704 3705 supports-color@7.2.0: 3706 - resolution: {integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==} 3707 - engines: {node: '>=8'} 3708 3709 supports-color@8.1.1: 3710 - resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==} 3711 - engines: {node: '>=10'} 3712 3713 supports-preserve-symlinks-flag@1.0.0: 3714 - resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==} 3715 - engines: {node: '>= 0.4'} 3716 3717 swagger-ui-dist@5.29.3: 3718 - resolution: {integrity: sha512-U99f/2YocRA2Mxqx3eUBRhQonWVtE5dIvMs0Zlsn4a4ip8awMq0JxXhU+Sidtna2WlZrHbK2Rro3RZvYUymRbA==} 3719 3720 tabster@8.5.6: 3721 - resolution: {integrity: sha512-2vfrRGrx8O9BjdrtSlVA5fvpmbq5HQBRN13XFRg6LAvZ1Fr3QdBnswgT4YgFS5Bhoo5nxwgjRaRueI2Us/dv7g==} 3722 3723 tar@7.5.1: 3724 - resolution: {integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==} 3725 - engines: {node: '>=18'} 3726 3727 temporal-polyfill@0.3.0: 3728 - resolution: {integrity: sha512-qNsTkX9K8hi+FHDfHmf22e/OGuXmfBm9RqNismxBrnSmZVJKegQ+HYYXT+R7Ha8F/YSm2Y34vmzD4cxMu2u95g==} 3729 3730 temporal-spec@0.3.0: 3731 - resolution: {integrity: sha512-n+noVpIqz4hYgFSMOSiINNOUOMFtV5cZQNCmmszA6GiVFVRt3G7AqVyhXjhCSmowvQn+NsGn+jMDMKJYHd3bSQ==} 3732 3733 thread-stream@2.7.0: 3734 - resolution: {integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==} 3735 3736 through@2.3.8: 3737 - resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==} 3738 3739 timers-browserify@2.0.12: 3740 - resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==} 3741 - engines: {node: '>=0.6.0'} 3742 3743 tiny-inflate@1.0.3: 3744 - resolution: {integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==} 3745 3746 tinybench@2.9.0: 3747 - resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==} 3748 3749 tinyexec@0.3.2: 3750 - resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==} 3751 3752 tinyglobby@0.2.15: 3753 - resolution: {integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==} 3754 - engines: {node: '>=12.0.0'} 3755 3756 tinypool@0.8.4: 3757 - resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==} 3758 - engines: {node: '>=14.0.0'} 3759 3760 tinyspy@2.2.1: 3761 - resolution: {integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==} 3762 - engines: {node: '>=14.0.0'} 3763 3764 to-buffer@1.2.2: 3765 - resolution: {integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==} 3766 - engines: {node: '>= 0.4'} 3767 3768 to-regex-range@5.0.1: 3769 - resolution: {integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==} 3770 - engines: {node: '>=8.0'} 3771 3772 toidentifier@1.0.1: 3773 - resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==} 3774 - engines: {node: '>=0.6'} 3775 3776 tr46@0.0.3: 3777 - resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==} 3778 3779 tree-kill@1.2.2: 3780 - resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==} 3781 hasBin: true 3782 3783 trim-lines@3.0.1: 3784 - resolution: {integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==} 3785 3786 trough@2.2.0: 3787 - resolution: {integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==} 3788 3789 ts-morph@24.0.0: 3790 - resolution: {integrity: sha512-2OAOg/Ob5yx9Et7ZX4CvTCc0UFoZHwLEJ+dpDPSUi5TgwwlTlX47w+iFRrEwzUZwYACjq83cgjS/Da50Ga37uw==} 3791 3792 tsc-watch@7.2.0: 3793 - resolution: {integrity: sha512-4gRFawQD1cVSaILvG7wl2x6NtteKbS2dGBMbL7Q6n1ldLIOKXCJUoEwUXdGuee4dp+zcnA6tukBBLz1lZrNI9w==} 3794 - engines: {node: '>=12.12.0'} 3795 hasBin: true 3796 peerDependencies: 3797 - typescript: '*' 3798 3799 tsconfck@3.1.6: 3800 - resolution: {integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==} 3801 - engines: {node: ^18 || >=20} 3802 hasBin: true 3803 peerDependencies: 3804 typescript: ^5.0.0 ··· 3807 optional: true 3808 3809 tslib@2.8.1: 3810 - resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==} 3811 3812 tty-browserify@0.0.1: 3813 - resolution: {integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==} 3814 3815 type-detect@4.1.0: 3816 - resolution: {integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==} 3817 - engines: {node: '>=4'} 3818 3819 type-fest@4.41.0: 3820 - resolution: {integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==} 3821 - engines: {node: '>=16'} 3822 3823 type-is@1.6.18: 3824 - resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==} 3825 - engines: {node: '>= 0.6'} 3826 3827 typed-array-buffer@1.0.3: 3828 - resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==} 3829 - engines: {node: '>= 0.4'} 3830 3831 typescript@5.9.3: 3832 - resolution: {integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==} 3833 - engines: {node: '>=14.17'} 3834 hasBin: true 3835 3836 ufo@1.6.1: 3837 - resolution: {integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==} 3838 3839 uint8arrays@3.0.0: 3840 - resolution: {integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==} 3841 3842 ultrahtml@1.6.0: 3843 - resolution: {integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==} 3844 3845 uncrypto@0.1.3: 3846 - resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==} 3847 3848 undici-types@6.21.0: 3849 - resolution: {integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==} 3850 3851 unicode-properties@1.4.1: 3852 - resolution: {integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==} 3853 3854 unicode-trie@2.0.0: 3855 - resolution: {integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==} 3856 3857 unicorn-magic@0.3.0: 3858 - resolution: {integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==} 3859 - engines: {node: '>=18'} 3860 3861 unified@11.0.5: 3862 - resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==} 3863 3864 unifont@0.5.2: 3865 - resolution: {integrity: sha512-LzR4WUqzH9ILFvjLAUU7dK3Lnou/qd5kD+IakBtBK4S15/+x2y9VX+DcWQv6s551R6W+vzwgVS6tFg3XggGBgg==} 3866 3867 unist-util-find-after@5.0.0: 3868 - resolution: {integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==} 3869 3870 unist-util-is@6.0.0: 3871 - resolution: {integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==} 3872 3873 unist-util-modify-children@4.0.0: 3874 - resolution: {integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==} 3875 3876 unist-util-position@5.0.0: 3877 - resolution: {integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==} 3878 3879 unist-util-remove-position@5.0.0: 3880 - resolution: {integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==} 3881 3882 unist-util-stringify-position@4.0.0: 3883 - resolution: {integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==} 3884 3885 unist-util-visit-children@3.0.0: 3886 - resolution: {integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==} 3887 3888 unist-util-visit-parents@6.0.1: 3889 - resolution: {integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==} 3890 3891 unist-util-visit@5.0.0: 3892 - resolution: {integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==} 3893 3894 unpipe@1.0.0: 3895 - resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==} 3896 - engines: {node: '>= 0.8'} 3897 3898 unstorage@1.17.1: 3899 - resolution: {integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==} 3900 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 3915 aws4fetch: ^1.0.20 3916 - db0: '>=0.2.1' 3917 idb-keyval: ^6.2.1 3918 ioredis: ^5.4.2 3919 uploadthing: ^7.4.4 3920 peerDependenciesMeta: 3921 - '@azure/app-configuration': 3922 optional: true 3923 - '@azure/cosmos': 3924 optional: true 3925 - '@azure/data-tables': 3926 optional: true 3927 - '@azure/identity': 3928 optional: true 3929 - '@azure/keyvault-secrets': 3930 optional: true 3931 - '@azure/storage-blob': 3932 optional: true 3933 - '@capacitor/preferences': 3934 optional: true 3935 - '@deno/kv': 3936 optional: true 3937 - '@netlify/blobs': 3938 optional: true 3939 - '@planetscale/database': 3940 optional: true 3941 - '@upstash/redis': 3942 optional: true 3943 - '@vercel/blob': 3944 optional: true 3945 - '@vercel/functions': 3946 optional: true 3947 - '@vercel/kv': 3948 optional: true 3949 aws4fetch: 3950 optional: true ··· 3958 optional: true 3959 3960 update-browserslist-db@1.1.3: 3961 - resolution: {integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==} 3962 hasBin: true 3963 peerDependencies: 3964 - browserslist: '>= 4.21.0' 3965 3966 url@0.11.4: 3967 - resolution: {integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==} 3968 - engines: {node: '>= 0.4'} 3969 3970 use-sync-external-store@1.6.0: 3971 - resolution: {integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==} 3972 peerDependencies: 3973 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 3974 3975 util-deprecate@1.0.2: 3976 - resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==} 3977 3978 util@0.12.5: 3979 - resolution: {integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==} 3980 3981 utils-merge@1.0.1: 3982 - resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==} 3983 - engines: {node: '>= 0.4.0'} 3984 3985 vary@1.1.2: 3986 - resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} 3987 - engines: {node: '>= 0.8'} 3988 3989 vfile-location@5.0.3: 3990 - resolution: {integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==} 3991 3992 vfile-message@4.0.3: 3993 - resolution: {integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==} 3994 3995 vfile@6.0.3: 3996 - resolution: {integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==} 3997 3998 vite-node@1.6.1: 3999 - resolution: {integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==} 4000 - engines: {node: ^18.0.0 || >=20.0.0} 4001 hasBin: true 4002 4003 vite@5.4.20: 4004 - resolution: {integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==} 4005 - engines: {node: ^18.0.0 || >=20.0.0} 4006 hasBin: true 4007 peerDependencies: 4008 - '@types/node': ^18.0.0 || >=20.0.0 4009 - less: '*' 4010 lightningcss: ^1.21.0 4011 - sass: '*' 4012 - sass-embedded: '*' 4013 - stylus: '*' 4014 - sugarss: '*' 4015 terser: ^5.4.0 4016 peerDependenciesMeta: 4017 - '@types/node': 4018 optional: true 4019 less: 4020 optional: true ··· 4032 optional: true 4033 4034 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} 4037 hasBin: true 4038 peerDependencies: 4039 - '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0 4040 - jiti: '>=1.21.0' 4041 - less: '*' 4042 lightningcss: ^1.21.0 4043 - sass: '*' 4044 - sass-embedded: '*' 4045 - stylus: '*' 4046 - sugarss: '*' 4047 terser: ^5.16.0 4048 tsx: ^4.8.1 4049 yaml: ^2.4.2 4050 peerDependenciesMeta: 4051 - '@types/node': 4052 optional: true 4053 jiti: 4054 optional: true ··· 4072 optional: true 4073 4074 vitefu@1.1.1: 4075 - resolution: {integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==} 4076 peerDependencies: 4077 vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 4078 peerDependenciesMeta: ··· 4080 optional: true 4081 4082 vitest@1.6.1: 4083 - resolution: {integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==} 4084 - engines: {node: ^18.0.0 || >=20.0.0} 4085 hasBin: true 4086 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: '*' 4093 peerDependenciesMeta: 4094 - '@edge-runtime/vm': 4095 optional: true 4096 - '@types/node': 4097 optional: true 4098 - '@vitest/browser': 4099 optional: true 4100 - '@vitest/ui': 4101 optional: true 4102 happy-dom: 4103 optional: true ··· 4105 optional: true 4106 4107 vm-browserify@1.1.2: 4108 - resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==} 4109 4110 vscode-jsonrpc@8.2.0: 4111 - resolution: {integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==} 4112 - engines: {node: '>=14.0.0'} 4113 4114 vscode-languageserver-protocol@3.17.5: 4115 - resolution: {integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==} 4116 4117 vscode-languageserver-textdocument@1.0.12: 4118 - resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==} 4119 4120 vscode-languageserver-types@3.17.5: 4121 - resolution: {integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==} 4122 4123 vscode-languageserver@9.0.1: 4124 - resolution: {integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==} 4125 hasBin: true 4126 4127 web-namespaces@2.0.1: 4128 - resolution: {integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==} 4129 4130 webidl-conversions@3.0.1: 4131 - resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==} 4132 4133 whatwg-url@5.0.0: 4134 - resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==} 4135 4136 which-pm-runs@1.1.0: 4137 - resolution: {integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==} 4138 - engines: {node: '>=4'} 4139 4140 which-typed-array@1.1.19: 4141 - resolution: {integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==} 4142 - engines: {node: '>= 0.4'} 4143 4144 which@2.0.2: 4145 - resolution: {integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==} 4146 - engines: {node: '>= 8'} 4147 hasBin: true 4148 4149 why-is-node-running@2.3.0: 4150 - resolution: {integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==} 4151 - engines: {node: '>=8'} 4152 hasBin: true 4153 4154 widest-line@5.0.0: 4155 - resolution: {integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==} 4156 - engines: {node: '>=18'} 4157 4158 wrap-ansi@6.2.0: 4159 - resolution: {integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==} 4160 - engines: {node: '>=8'} 4161 4162 wrap-ansi@7.0.0: 4163 - resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==} 4164 - engines: {node: '>=10'} 4165 4166 wrap-ansi@9.0.2: 4167 - resolution: {integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==} 4168 - engines: {node: '>=18'} 4169 4170 ws@8.18.3: 4171 - resolution: {integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==} 4172 - engines: {node: '>=10.0.0'} 4173 peerDependencies: 4174 bufferutil: ^4.0.1 4175 - utf-8-validate: '>=5.0.2' 4176 peerDependenciesMeta: 4177 bufferutil: 4178 optional: true ··· 4180 optional: true 4181 4182 xtend@4.0.2: 4183 - resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==} 4184 - engines: {node: '>=0.4'} 4185 4186 xxhash-wasm@1.1.0: 4187 - resolution: {integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==} 4188 4189 y18n@5.0.8: 4190 - resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==} 4191 - engines: {node: '>=10'} 4192 4193 yallist@3.1.1: 4194 - resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==} 4195 4196 yallist@5.0.0: 4197 - resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==} 4198 - engines: {node: '>=18'} 4199 4200 yaml@2.8.1: 4201 - resolution: {integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==} 4202 - engines: {node: '>= 14.6'} 4203 hasBin: true 4204 4205 yargs-parser@21.1.1: 4206 - resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==} 4207 - engines: {node: '>=12'} 4208 4209 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} 4212 4213 yargs@17.7.2: 4214 - resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==} 4215 - engines: {node: '>=12'} 4216 4217 yargs@18.0.0: 4218 - resolution: {integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==} 4219 - engines: {node: ^20.19.0 || ^22.12.0 || >=23} 4220 4221 yesno@0.4.0: 4222 - resolution: {integrity: sha512-tdBxmHvbXPBKYIg81bMCB7bVeDmHkRzk5rVJyYYXurwKkHq/MCd8rz4HSJUP7hW0H2NlXiq8IFiWvYKEHhlotA==} 4223 4224 yocto-queue@0.1.0: 4225 - resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==} 4226 - engines: {node: '>=10'} 4227 4228 yocto-queue@1.2.1: 4229 - resolution: {integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==} 4230 - engines: {node: '>=12.20'} 4231 4232 yocto-spinner@0.2.3: 4233 - resolution: {integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==} 4234 - engines: {node: '>=18.19'} 4235 4236 yoctocolors-cjs@2.1.3: 4237 - resolution: {integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==} 4238 - engines: {node: '>=18'} 4239 4240 yoctocolors@2.1.2: 4241 - resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==} 4242 - engines: {node: '>=18'} 4243 4244 zod-to-json-schema@3.24.6: 4245 - resolution: {integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==} 4246 peerDependencies: 4247 zod: ^3.24.1 4248 4249 zod-to-ts@1.2.0: 4250 - resolution: {integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==} 4251 peerDependencies: 4252 typescript: ^4.9.4 || ^5.0.2 4253 zod: ^3 4254 4255 zod@3.25.76: 4256 - resolution: {integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==} 4257 4258 zwitch@2.0.4: 4259 - resolution: {integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==} 4260 4261 snapshots: 4262 - 4263 - '@apidevtools/json-schema-ref-parser@14.0.1': 4264 dependencies: 4265 - '@types/json-schema': 7.0.15 4266 js-yaml: 4.1.0 4267 4268 - '@apidevtools/openapi-schemas@2.1.0': {} 4269 4270 - '@apidevtools/swagger-methods@3.0.2': {} 4271 4272 - '@apidevtools/swagger-parser@12.0.0(openapi-types@12.1.3)': 4273 dependencies: 4274 - '@apidevtools/json-schema-ref-parser': 14.0.1 4275 - '@apidevtools/openapi-schemas': 2.1.0 4276 - '@apidevtools/swagger-methods': 3.0.2 4277 ajv: 8.17.1 4278 ajv-draft-04: 1.0.0(ajv@8.17.1) 4279 call-me-maybe: 1.0.2 4280 openapi-types: 12.1.3 4281 4282 - '@astrojs/compiler@2.13.0': {} 4283 4284 - '@astrojs/internal-helpers@0.7.3': {} 4285 4286 - '@astrojs/markdown-remark@6.3.7': 4287 dependencies: 4288 - '@astrojs/internal-helpers': 0.7.3 4289 - '@astrojs/prism': 3.3.0 4290 github-slugger: 2.0.0 4291 hast-util-from-html: 2.0.3 4292 hast-util-to-text: 4.0.2 ··· 4309 transitivePeerDependencies: 4310 - supports-color 4311 4312 - '@astrojs/prism@3.3.0': 4313 dependencies: 4314 prismjs: 1.30.0 4315 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)': 4317 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)) 4321 react: 19.2.0 4322 react-dom: 19.2.0(react@19.2.0) 4323 ultrahtml: 1.6.0 4324 vite: 6.3.6(@types/node@20.19.19)(yaml@2.8.1) 4325 transitivePeerDependencies: 4326 - - '@types/node' 4327 - jiti 4328 - less 4329 - lightningcss ··· 4336 - tsx 4337 - yaml 4338 4339 - '@astrojs/telemetry@3.3.0': 4340 dependencies: 4341 ci-info: 4.3.0 4342 debug: 4.4.3 ··· 4348 transitivePeerDependencies: 4349 - supports-color 4350 4351 - '@atproto/common-web@0.4.3': 4352 dependencies: 4353 graphemer: 1.4.0 4354 multiformats: 9.9.0 4355 uint8arrays: 3.0.0 4356 zod: 3.25.76 4357 4358 - '@atproto/common@0.4.12': 4359 dependencies: 4360 - '@atproto/common-web': 0.4.3 4361 - '@ipld/dag-cbor': 7.0.3 4362 cbor-x: 1.6.0 4363 iso-datestring-validator: 2.2.2 4364 multiformats: 9.9.0 4365 pino: 8.21.0 4366 4367 - '@atproto/crypto@0.4.4': 4368 dependencies: 4369 - '@noble/curves': 1.9.7 4370 - '@noble/hashes': 1.8.0 4371 uint8arrays: 3.0.0 4372 4373 - '@atproto/lex-cli@0.9.5': 4374 dependencies: 4375 - '@atproto/lexicon': 0.5.1 4376 - '@atproto/syntax': 0.4.1 4377 chalk: 4.1.2 4378 commander: 9.5.0 4379 prettier: 3.3.3 ··· 4381 yesno: 0.4.0 4382 zod: 3.25.76 4383 4384 - '@atproto/lexicon@0.5.1': 4385 dependencies: 4386 - '@atproto/common-web': 0.4.3 4387 - '@atproto/syntax': 0.4.1 4388 iso-datestring-validator: 2.2.2 4389 multiformats: 9.9.0 4390 zod: 3.25.76 4391 4392 - '@atproto/syntax@0.4.1': {} 4393 4394 - '@atproto/xrpc-server@0.9.5': 4395 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 4400 cbor-x: 1.6.0 4401 express: 4.21.2 4402 http-errors: 2.0.0 ··· 4410 - supports-color 4411 - utf-8-validate 4412 4413 - '@atproto/xrpc@0.7.5': 4414 dependencies: 4415 - '@atproto/lexicon': 0.5.1 4416 zod: 3.25.76 4417 4418 - '@babel/code-frame@7.27.1': 4419 dependencies: 4420 - '@babel/helper-validator-identifier': 7.27.1 4421 js-tokens: 4.0.0 4422 picocolors: 1.1.1 4423 4424 - '@babel/compat-data@7.28.4': {} 4425 4426 - '@babel/core@7.28.4': 4427 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 4438 convert-source-map: 2.0.0 4439 debug: 4.4.3 4440 gensync: 1.0.0-beta.2 ··· 4443 transitivePeerDependencies: 4444 - supports-color 4445 4446 - '@babel/generator@7.28.3': 4447 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 4452 jsesc: 3.1.0 4453 4454 - '@babel/helper-compilation-targets@7.27.2': 4455 dependencies: 4456 - '@babel/compat-data': 7.28.4 4457 - '@babel/helper-validator-option': 7.27.1 4458 browserslist: 4.26.3 4459 lru-cache: 5.1.1 4460 semver: 6.3.1 4461 4462 - '@babel/helper-globals@7.28.0': {} 4463 4464 - '@babel/helper-module-imports@7.27.1': 4465 dependencies: 4466 - '@babel/traverse': 7.28.4 4467 - '@babel/types': 7.28.4 4468 transitivePeerDependencies: 4469 - supports-color 4470 4471 - '@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)': 4472 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 4477 transitivePeerDependencies: 4478 - supports-color 4479 4480 - '@babel/helper-plugin-utils@7.27.1': {} 4481 4482 - '@babel/helper-string-parser@7.27.1': {} 4483 4484 - '@babel/helper-validator-identifier@7.27.1': {} 4485 4486 - '@babel/helper-validator-option@7.27.1': {} 4487 4488 - '@babel/helpers@7.28.4': 4489 dependencies: 4490 - '@babel/template': 7.27.2 4491 - '@babel/types': 7.28.4 4492 4493 - '@babel/parser@7.28.4': 4494 dependencies: 4495 - '@babel/types': 7.28.4 4496 4497 - '@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)': 4498 dependencies: 4499 - '@babel/core': 7.28.4 4500 - '@babel/helper-plugin-utils': 7.27.1 4501 4502 - '@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)': 4503 dependencies: 4504 - '@babel/core': 7.28.4 4505 - '@babel/helper-plugin-utils': 7.27.1 4506 4507 - '@babel/runtime@7.28.4': {} 4508 4509 - '@babel/template@7.27.2': 4510 dependencies: 4511 - '@babel/code-frame': 7.27.1 4512 - '@babel/parser': 7.28.4 4513 - '@babel/types': 7.28.4 4514 4515 - '@babel/traverse@7.28.4': 4516 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 4523 debug: 4.4.3 4524 transitivePeerDependencies: 4525 - supports-color 4526 4527 - '@babel/types@7.28.4': 4528 dependencies: 4529 - '@babel/helper-string-parser': 7.27.1 4530 - '@babel/helper-validator-identifier': 7.27.1 4531 4532 - '@capsizecss/unpack@2.4.0': 4533 dependencies: 4534 blob-to-buffer: 1.2.9 4535 cross-fetch: 3.2.0 ··· 4537 transitivePeerDependencies: 4538 - encoding 4539 4540 - '@cbor-extract/cbor-extract-darwin-arm64@2.2.0': 4541 optional: true 4542 4543 - '@cbor-extract/cbor-extract-darwin-x64@2.2.0': 4544 optional: true 4545 4546 - '@cbor-extract/cbor-extract-linux-arm64@2.2.0': 4547 optional: true 4548 4549 - '@cbor-extract/cbor-extract-linux-arm@2.2.0': 4550 optional: true 4551 4552 - '@cbor-extract/cbor-extract-linux-x64@2.2.0': 4553 optional: true 4554 4555 - '@cbor-extract/cbor-extract-win32-x64@2.2.0': 4556 optional: true 4557 4558 - '@ctrl/tinycolor@3.6.1': {} 4559 4560 - '@emnapi/runtime@1.5.0': 4561 dependencies: 4562 tslib: 2.8.1 4563 optional: true 4564 4565 - '@emotion/hash@0.9.2': {} 4566 4567 - '@esbuild/aix-ppc64@0.21.5': 4568 optional: true 4569 4570 - '@esbuild/aix-ppc64@0.25.10': 4571 optional: true 4572 4573 - '@esbuild/android-arm64@0.21.5': 4574 optional: true 4575 4576 - '@esbuild/android-arm64@0.25.10': 4577 optional: true 4578 4579 - '@esbuild/android-arm@0.21.5': 4580 optional: true 4581 4582 - '@esbuild/android-arm@0.25.10': 4583 optional: true 4584 4585 - '@esbuild/android-x64@0.21.5': 4586 optional: true 4587 4588 - '@esbuild/android-x64@0.25.10': 4589 optional: true 4590 4591 - '@esbuild/darwin-arm64@0.21.5': 4592 optional: true 4593 4594 - '@esbuild/darwin-arm64@0.25.10': 4595 optional: true 4596 4597 - '@esbuild/darwin-x64@0.21.5': 4598 optional: true 4599 4600 - '@esbuild/darwin-x64@0.25.10': 4601 optional: true 4602 4603 - '@esbuild/freebsd-arm64@0.21.5': 4604 optional: true 4605 4606 - '@esbuild/freebsd-arm64@0.25.10': 4607 optional: true 4608 4609 - '@esbuild/freebsd-x64@0.21.5': 4610 optional: true 4611 4612 - '@esbuild/freebsd-x64@0.25.10': 4613 optional: true 4614 4615 - '@esbuild/linux-arm64@0.21.5': 4616 optional: true 4617 4618 - '@esbuild/linux-arm64@0.25.10': 4619 optional: true 4620 4621 - '@esbuild/linux-arm@0.21.5': 4622 optional: true 4623 4624 - '@esbuild/linux-arm@0.25.10': 4625 optional: true 4626 4627 - '@esbuild/linux-ia32@0.21.5': 4628 optional: true 4629 4630 - '@esbuild/linux-ia32@0.25.10': 4631 optional: true 4632 4633 - '@esbuild/linux-loong64@0.21.5': 4634 optional: true 4635 4636 - '@esbuild/linux-loong64@0.25.10': 4637 optional: true 4638 4639 - '@esbuild/linux-mips64el@0.21.5': 4640 optional: true 4641 4642 - '@esbuild/linux-mips64el@0.25.10': 4643 optional: true 4644 4645 - '@esbuild/linux-ppc64@0.21.5': 4646 optional: true 4647 4648 - '@esbuild/linux-ppc64@0.25.10': 4649 optional: true 4650 4651 - '@esbuild/linux-riscv64@0.21.5': 4652 optional: true 4653 4654 - '@esbuild/linux-riscv64@0.25.10': 4655 optional: true 4656 4657 - '@esbuild/linux-s390x@0.21.5': 4658 optional: true 4659 4660 - '@esbuild/linux-s390x@0.25.10': 4661 optional: true 4662 4663 - '@esbuild/linux-x64@0.21.5': 4664 optional: true 4665 4666 - '@esbuild/linux-x64@0.25.10': 4667 optional: true 4668 4669 - '@esbuild/netbsd-arm64@0.25.10': 4670 optional: true 4671 4672 - '@esbuild/netbsd-x64@0.21.5': 4673 optional: true 4674 4675 - '@esbuild/netbsd-x64@0.25.10': 4676 optional: true 4677 4678 - '@esbuild/openbsd-arm64@0.25.10': 4679 optional: true 4680 4681 - '@esbuild/openbsd-x64@0.21.5': 4682 optional: true 4683 4684 - '@esbuild/openbsd-x64@0.25.10': 4685 optional: true 4686 4687 - '@esbuild/openharmony-arm64@0.25.10': 4688 optional: true 4689 4690 - '@esbuild/sunos-x64@0.21.5': 4691 optional: true 4692 4693 - '@esbuild/sunos-x64@0.25.10': 4694 optional: true 4695 4696 - '@esbuild/win32-arm64@0.21.5': 4697 optional: true 4698 4699 - '@esbuild/win32-arm64@0.25.10': 4700 optional: true 4701 4702 - '@esbuild/win32-ia32@0.21.5': 4703 optional: true 4704 4705 - '@esbuild/win32-ia32@0.25.10': 4706 optional: true 4707 4708 - '@esbuild/win32-x64@0.21.5': 4709 optional: true 4710 4711 - '@esbuild/win32-x64@0.25.10': 4712 optional: true 4713 4714 - '@floating-ui/core@1.7.3': 4715 dependencies: 4716 - '@floating-ui/utils': 0.2.10 4717 4718 - '@floating-ui/devtools@0.2.3(@floating-ui/dom@1.7.4)': 4719 dependencies: 4720 - '@floating-ui/dom': 1.7.4 4721 4722 - '@floating-ui/dom@1.7.4': 4723 dependencies: 4724 - '@floating-ui/core': 1.7.3 4725 - '@floating-ui/utils': 0.2.10 4726 4727 - '@floating-ui/utils@0.2.10': {} 4728 4729 - '@fluentui/keyboard-keys@9.0.8': 4730 dependencies: 4731 - '@swc/helpers': 0.5.17 4732 4733 - '@fluentui/priority-overflow@9.2.0': 4734 dependencies: 4735 - '@swc/helpers': 0.5.17 4736 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)': 4738 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) 4753 react: 18.3.1 4754 react-dom: 18.3.1(react@18.3.1) 4755 transitivePeerDependencies: 4756 - scheduler 4757 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)': 4759 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) 4774 react: 18.3.1 4775 react-dom: 18.3.1(react@18.3.1) 4776 transitivePeerDependencies: 4777 - scheduler 4778 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)': 4780 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) 4792 react: 18.3.1 4793 react-dom: 18.3.1(react@18.3.1) 4794 transitivePeerDependencies: 4795 - scheduler 4796 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)': 4798 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) 4810 react: 18.3.1 4811 react-dom: 18.3.1(react@18.3.1) 4812 transitivePeerDependencies: 4813 - scheduler 4814 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)': 4816 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) 4825 react: 18.3.1 4826 react-dom: 18.3.1(react@18.3.1) 4827 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)': 4829 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) 4838 react: 18.3.1 4839 react-dom: 18.3.1(react@18.3.1) 4840 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)': 4842 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) 4857 react: 18.3.1 4858 react-dom: 18.3.1(react@18.3.1) 4859 transitivePeerDependencies: 4860 - scheduler 4861 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)': 4863 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) 4878 react: 18.3.1 4879 react-dom: 18.3.1(react@18.3.1) 4880 transitivePeerDependencies: 4881 - scheduler 4882 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)': 4884 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) 4894 react: 18.3.1 4895 react-dom: 18.3.1(react@18.3.1) 4896 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)': 4898 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) 4908 react: 18.3.1 4909 react-dom: 18.3.1(react@18.3.1) 4910 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)': 4912 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) 4926 react: 18.3.1 4927 react-dom: 18.3.1(react@18.3.1) 4928 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)': 4930 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) 4944 react: 18.3.1 4945 react-dom: 18.3.1(react@18.3.1) 4946 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)': 4948 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) 4961 react: 18.3.1 4962 react-dom: 18.3.1(react@18.3.1) 4963 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)': 4965 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) 4978 react: 18.3.1 4979 react-dom: 18.3.1(react@18.3.1) 4980 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)': 4982 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) 4994 react: 18.3.1 4995 react-dom: 18.3.1(react@18.3.1) 4996 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)': 4998 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) 5010 react: 18.3.1 5011 react-dom: 18.3.1(react@18.3.1) 5012 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)': 5014 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) 5029 embla-carousel: 8.6.0 5030 embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 5031 embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) ··· 5034 transitivePeerDependencies: 5035 - scheduler 5036 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)': 5038 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) 5053 embla-carousel: 8.6.0 5054 embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 5055 embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) ··· 5058 transitivePeerDependencies: 5059 - scheduler 5060 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)': 5062 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) 5075 react: 18.3.1 5076 react-dom: 18.3.1(react@18.3.1) 5077 transitivePeerDependencies: 5078 - scheduler 5079 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)': 5081 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) 5094 react: 18.3.1 5095 react-dom: 18.3.1(react@18.3.1) 5096 transitivePeerDependencies: 5097 - scheduler 5098 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)': 5100 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) 5112 react: 18.3.1 5113 react-dom: 18.3.1(react@18.3.1) 5114 transitivePeerDependencies: 5115 - scheduler 5116 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)': 5118 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) 5130 react: 18.3.1 5131 react-dom: 18.3.1(react@18.3.1) 5132 transitivePeerDependencies: 5133 - scheduler 5134 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)': 5136 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) 5153 react: 18.3.1 5154 react-dom: 18.3.1(react@18.3.1) 5155 transitivePeerDependencies: 5156 - scheduler 5157 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)': 5159 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) 5176 react: 18.3.1 5177 react-dom: 18.3.1(react@18.3.1) 5178 transitivePeerDependencies: 5179 - scheduler 5180 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)': 5182 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) 5247 react: 18.3.1 5248 react-dom: 18.3.1(react@18.3.1) 5249 transitivePeerDependencies: 5250 - scheduler 5251 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)': 5253 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) 5318 react: 18.3.1 5319 react-dom: 18.3.1(react@18.3.1) 5320 transitivePeerDependencies: 5321 - scheduler 5322 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)': 5324 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) 5329 react: 18.3.1 5330 react-dom: 18.3.1(react@18.3.1) 5331 scheduler: 0.27.0 5332 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)': 5334 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) 5339 react: 18.3.1 5340 react-dom: 18.3.1(react@18.3.1) 5341 scheduler: 0.27.0 5342 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)': 5344 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) 5361 react: 18.3.1 5362 react-dom: 18.3.1(react@18.3.1) 5363 transitivePeerDependencies: 5364 - scheduler 5365 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)': 5367 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) 5384 react: 18.3.1 5385 react-dom: 18.3.1(react@18.3.1) 5386 transitivePeerDependencies: 5387 - scheduler 5388 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)': 5390 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) 5399 react: 18.3.1 5400 react-dom: 18.3.1(react@18.3.1) 5401 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)': 5403 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) 5412 react: 18.3.1 5413 react-dom: 18.3.1(react@18.3.1) 5414 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)': 5416 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) 5429 react: 18.3.1 5430 react-dom: 18.3.1(react@18.3.1) 5431 transitivePeerDependencies: 5432 - scheduler 5433 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)': 5435 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) 5448 react: 18.3.1 5449 react-dom: 18.3.1(react@18.3.1) 5450 transitivePeerDependencies: 5451 - scheduler 5452 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)': 5454 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) 5466 react: 18.3.1 5467 react-dom: 18.3.1(react@18.3.1) 5468 transitivePeerDependencies: 5469 - scheduler 5470 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)': 5472 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) 5484 react: 18.3.1 5485 react-dom: 18.3.1(react@18.3.1) 5486 transitivePeerDependencies: 5487 - scheduler 5488 5489 - '@fluentui/react-icons@2.0.311(react@18.3.1)': 5490 dependencies: 5491 - '@griffel/react': 1.5.30(react@18.3.1) 5492 react: 18.3.1 5493 tslib: 2.8.1 5494 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)': 5496 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) 5505 react: 18.3.1 5506 react-dom: 18.3.1(react@18.3.1) 5507 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)': 5509 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) 5518 react: 18.3.1 5519 react-dom: 18.3.1(react@18.3.1) 5520 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)': 5522 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) 5534 react: 18.3.1 5535 react-dom: 18.3.1(react@18.3.1) 5536 transitivePeerDependencies: 5537 - scheduler 5538 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)': 5540 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) 5552 react: 18.3.1 5553 react-dom: 18.3.1(react@18.3.1) 5554 transitivePeerDependencies: 5555 - scheduler 5556 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)': 5558 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) 5571 react: 18.3.1 5572 react-dom: 18.3.1(react@18.3.1) 5573 transitivePeerDependencies: 5574 - scheduler 5575 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)': 5577 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) 5590 react: 18.3.1 5591 react-dom: 18.3.1(react@18.3.1) 5592 transitivePeerDependencies: 5593 - scheduler 5594 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)': 5596 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) 5606 react: 18.3.1 5607 react-dom: 18.3.1(react@18.3.1) 5608 transitivePeerDependencies: 5609 - scheduler 5610 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)': 5612 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) 5622 react: 18.3.1 5623 react-dom: 18.3.1(react@18.3.1) 5624 transitivePeerDependencies: 5625 - scheduler 5626 5627 - '@fluentui/react-jsx-runtime@9.2.1(@types/react@18.3.25)(react@18.3.1)': 5628 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 5632 react: 18.3.1 5633 react-is: 17.0.2 5634 5635 - '@fluentui/react-jsx-runtime@9.2.1(@types/react@19.2.0)(react@18.3.1)': 5636 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 5640 react: 18.3.1 5641 react-is: 17.0.2 5642 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)': 5644 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) 5653 react: 18.3.1 5654 react-dom: 18.3.1(react@18.3.1) 5655 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)': 5657 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) 5666 react: 18.3.1 5667 react-dom: 18.3.1(react@18.3.1) 5668 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)': 5670 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) 5681 react: 18.3.1 5682 react-dom: 18.3.1(react@18.3.1) 5683 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)': 5685 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) 5696 react: 18.3.1 5697 react-dom: 18.3.1(react@18.3.1) 5698 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)': 5700 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) 5713 react: 18.3.1 5714 react-dom: 18.3.1(react@18.3.1) 5715 transitivePeerDependencies: 5716 - scheduler 5717 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)': 5719 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) 5732 react: 18.3.1 5733 react-dom: 18.3.1(react@18.3.1) 5734 transitivePeerDependencies: 5735 - scheduler 5736 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)': 5738 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) 5754 react: 18.3.1 5755 react-dom: 18.3.1(react@18.3.1) 5756 transitivePeerDependencies: 5757 - scheduler 5758 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)': 5760 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) 5776 react: 18.3.1 5777 react-dom: 18.3.1(react@18.3.1) 5778 transitivePeerDependencies: 5779 - scheduler 5780 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)': 5782 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) 5796 react: 18.3.1 5797 react-dom: 18.3.1(react@18.3.1) 5798 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)': 5800 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) 5814 react: 18.3.1 5815 react-dom: 18.3.1(react@18.3.1) 5816 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)': 5818 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) 5823 react: 18.3.1 5824 react-dom: 18.3.1(react@18.3.1) 5825 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)': 5827 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) 5832 react: 18.3.1 5833 react-dom: 18.3.1(react@18.3.1) 5834 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)': 5836 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) 5842 react: 18.3.1 5843 react-dom: 18.3.1(react@18.3.1) 5844 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)': 5846 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) 5852 react: 18.3.1 5853 react-dom: 18.3.1(react@18.3.1) 5854 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)': 5856 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) 5874 react: 18.3.1 5875 react-dom: 18.3.1(react@18.3.1) 5876 transitivePeerDependencies: 5877 - scheduler 5878 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)': 5880 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) 5898 react: 18.3.1 5899 react-dom: 18.3.1(react@18.3.1) 5900 transitivePeerDependencies: 5901 - scheduler 5902 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)': 5904 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) 5913 react: 18.3.1 5914 react-dom: 18.3.1(react@18.3.1) 5915 transitivePeerDependencies: 5916 - scheduler 5917 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)': 5919 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) 5928 react: 18.3.1 5929 react-dom: 18.3.1(react@18.3.1) 5930 transitivePeerDependencies: 5931 - scheduler 5932 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)': 5934 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) 5945 react: 18.3.1 5946 react-dom: 18.3.1(react@18.3.1) 5947 transitivePeerDependencies: 5948 - scheduler 5949 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)': 5951 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) 5962 react: 18.3.1 5963 react-dom: 18.3.1(react@18.3.1) 5964 transitivePeerDependencies: 5965 - scheduler 5966 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)': 5968 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) 5983 react: 18.3.1 5984 react-dom: 18.3.1(react@18.3.1) 5985 transitivePeerDependencies: 5986 - scheduler 5987 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)': 5989 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) 6004 react: 18.3.1 6005 react-dom: 18.3.1(react@18.3.1) 6006 transitivePeerDependencies: 6007 - scheduler 6008 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)': 6010 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) 6018 react: 18.3.1 6019 react-dom: 18.3.1(react@18.3.1) 6020 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)': 6022 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) 6030 react: 18.3.1 6031 react-dom: 18.3.1(react@18.3.1) 6032 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)': 6034 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) 6044 react: 18.3.1 6045 react-dom: 18.3.1(react@18.3.1) 6046 use-sync-external-store: 1.6.0(react@18.3.1) 6047 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)': 6049 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) 6059 react: 18.3.1 6060 react-dom: 18.3.1(react@18.3.1) 6061 use-sync-external-store: 1.6.0(react@18.3.1) 6062 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)': 6064 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) 6074 react: 18.3.1 6075 react-dom: 18.3.1(react@18.3.1) 6076 transitivePeerDependencies: 6077 - scheduler 6078 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)': 6080 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) 6090 react: 18.3.1 6091 react-dom: 18.3.1(react@18.3.1) 6092 transitivePeerDependencies: 6093 - scheduler 6094 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)': 6096 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) 6108 react: 18.3.1 6109 react-dom: 18.3.1(react@18.3.1) 6110 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)': 6112 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) 6124 react: 18.3.1 6125 react-dom: 18.3.1(react@18.3.1) 6126 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)': 6128 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) 6140 react: 18.3.1 6141 react-dom: 18.3.1(react@18.3.1) 6142 transitivePeerDependencies: 6143 - scheduler 6144 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)': 6146 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) 6158 react: 18.3.1 6159 react-dom: 18.3.1(react@18.3.1) 6160 transitivePeerDependencies: 6161 - scheduler 6162 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)': 6164 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) 6175 react: 18.3.1 6176 react-dom: 18.3.1(react@18.3.1) 6177 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)': 6179 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) 6190 react: 18.3.1 6191 react-dom: 18.3.1(react@18.3.1) 6192 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)': 6194 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) 6205 react: 18.3.1 6206 react-dom: 18.3.1(react@18.3.1) 6207 transitivePeerDependencies: 6208 - scheduler 6209 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)': 6211 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) 6222 react: 18.3.1 6223 react-dom: 18.3.1(react@18.3.1) 6224 transitivePeerDependencies: 6225 - scheduler 6226 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)': 6228 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) 6239 react: 18.3.1 6240 react-dom: 18.3.1(react@18.3.1) 6241 transitivePeerDependencies: 6242 - scheduler 6243 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)': 6245 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) 6256 react: 18.3.1 6257 react-dom: 18.3.1(react@18.3.1) 6258 transitivePeerDependencies: 6259 - scheduler 6260 6261 - '@fluentui/react-shared-contexts@9.25.2(@types/react@18.3.25)(react@18.3.1)': 6262 dependencies: 6263 - '@fluentui/react-theme': 9.2.0 6264 - '@swc/helpers': 0.5.17 6265 - '@types/react': 18.3.25 6266 react: 18.3.1 6267 6268 - '@fluentui/react-shared-contexts@9.25.2(@types/react@19.2.0)(react@18.3.1)': 6269 dependencies: 6270 - '@fluentui/react-theme': 9.2.0 6271 - '@swc/helpers': 0.5.17 6272 - '@types/react': 19.2.0 6273 react: 18.3.1 6274 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)': 6276 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) 6286 react: 18.3.1 6287 react-dom: 18.3.1(react@18.3.1) 6288 transitivePeerDependencies: 6289 - scheduler 6290 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)': 6292 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) 6302 react: 18.3.1 6303 react-dom: 18.3.1(react@18.3.1) 6304 transitivePeerDependencies: 6305 - scheduler 6306 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)': 6308 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) 6319 react: 18.3.1 6320 react-dom: 18.3.1(react@18.3.1) 6321 transitivePeerDependencies: 6322 - scheduler 6323 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)': 6325 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) 6336 react: 18.3.1 6337 react-dom: 18.3.1(react@18.3.1) 6338 transitivePeerDependencies: 6339 - scheduler 6340 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)': 6342 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) 6354 react: 18.3.1 6355 react-dom: 18.3.1(react@18.3.1) 6356 transitivePeerDependencies: 6357 - scheduler 6358 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)': 6360 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) 6372 react: 18.3.1 6373 react-dom: 18.3.1(react@18.3.1) 6374 transitivePeerDependencies: 6375 - scheduler 6376 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)': 6378 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) 6388 react: 18.3.1 6389 react-dom: 18.3.1(react@18.3.1) 6390 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)': 6392 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) 6402 react: 18.3.1 6403 react-dom: 18.3.1(react@18.3.1) 6404 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)': 6406 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) 6419 react: 18.3.1 6420 react-dom: 18.3.1(react@18.3.1) 6421 transitivePeerDependencies: 6422 - scheduler 6423 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)': 6425 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) 6438 react: 18.3.1 6439 react-dom: 18.3.1(react@18.3.1) 6440 transitivePeerDependencies: 6441 - scheduler 6442 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)': 6444 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) 6457 react: 18.3.1 6458 react-dom: 18.3.1(react@18.3.1) 6459 transitivePeerDependencies: 6460 - scheduler 6461 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)': 6463 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) 6476 react: 18.3.1 6477 react-dom: 18.3.1(react@18.3.1) 6478 transitivePeerDependencies: 6479 - scheduler 6480 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)': 6482 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) 6499 react: 18.3.1 6500 react-dom: 18.3.1(react@18.3.1) 6501 transitivePeerDependencies: 6502 - scheduler 6503 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)': 6505 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) 6522 react: 18.3.1 6523 react-dom: 18.3.1(react@18.3.1) 6524 transitivePeerDependencies: 6525 - scheduler 6526 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)': 6528 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) 6539 react: 18.3.1 6540 react-dom: 18.3.1(react@18.3.1) 6541 transitivePeerDependencies: 6542 - scheduler 6543 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)': 6545 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) 6556 react: 18.3.1 6557 react-dom: 18.3.1(react@18.3.1) 6558 transitivePeerDependencies: 6559 - scheduler 6560 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)': 6562 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) 6570 keyborg: 2.6.0 6571 react: 18.3.1 6572 react-dom: 18.3.1(react@18.3.1) 6573 tabster: 8.5.6 6574 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)': 6576 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) 6584 keyborg: 2.6.0 6585 react: 18.3.1 6586 react-dom: 18.3.1(react@18.3.1) 6587 tabster: 8.5.6 6588 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)': 6590 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) 6609 react: 18.3.1 6610 react-dom: 18.3.1(react@18.3.1) 6611 transitivePeerDependencies: 6612 - scheduler 6613 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)': 6615 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) 6634 react: 18.3.1 6635 react-dom: 18.3.1(react@18.3.1) 6636 transitivePeerDependencies: 6637 - scheduler 6638 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)': 6640 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) 6654 react: 18.3.1 6655 react-dom: 18.3.1(react@18.3.1) 6656 transitivePeerDependencies: 6657 - scheduler 6658 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)': 6660 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) 6674 react: 18.3.1 6675 react-dom: 18.3.1(react@18.3.1) 6676 transitivePeerDependencies: 6677 - scheduler 6678 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)': 6680 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) 6695 react: 18.3.1 6696 react-dom: 18.3.1(react@18.3.1) 6697 use-sync-external-store: 1.6.0(react@18.3.1) 6698 transitivePeerDependencies: 6699 - scheduler 6700 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)': 6702 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) 6717 react: 18.3.1 6718 react-dom: 18.3.1(react@18.3.1) 6719 use-sync-external-store: 1.6.0(react@18.3.1) 6720 transitivePeerDependencies: 6721 - scheduler 6722 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)': 6724 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) 6733 react: 18.3.1 6734 react-dom: 18.3.1(react@18.3.1) 6735 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)': 6737 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) 6746 react: 18.3.1 6747 react-dom: 18.3.1(react@18.3.1) 6748 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)': 6750 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) 6760 react: 18.3.1 6761 react-dom: 18.3.1(react@18.3.1) 6762 transitivePeerDependencies: 6763 - scheduler 6764 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)': 6766 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) 6776 react: 18.3.1 6777 react-dom: 18.3.1(react@18.3.1) 6778 transitivePeerDependencies: 6779 - scheduler 6780 6781 - '@fluentui/react-theme@9.2.0': 6782 dependencies: 6783 - '@fluentui/tokens': 1.0.0-alpha.22 6784 - '@swc/helpers': 0.5.17 6785 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)': 6787 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) 6803 react: 18.3.1 6804 react-dom: 18.3.1(react@18.3.1) 6805 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)': 6807 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) 6823 react: 18.3.1 6824 react-dom: 18.3.1(react@18.3.1) 6825 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)': 6827 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) 6841 react: 18.3.1 6842 react-dom: 18.3.1(react@18.3.1) 6843 transitivePeerDependencies: 6844 - scheduler 6845 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)': 6847 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) 6861 react: 18.3.1 6862 react-dom: 18.3.1(react@18.3.1) 6863 transitivePeerDependencies: 6864 - scheduler 6865 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)': 6867 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) 6880 react: 18.3.1 6881 react-dom: 18.3.1(react@18.3.1) 6882 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)': 6884 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) 6897 react: 18.3.1 6898 react-dom: 18.3.1(react@18.3.1) 6899 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)': 6901 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) 6921 react: 18.3.1 6922 react-dom: 18.3.1(react@18.3.1) 6923 transitivePeerDependencies: 6924 - scheduler 6925 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)': 6927 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) 6947 react: 18.3.1 6948 react-dom: 18.3.1(react@18.3.1) 6949 transitivePeerDependencies: 6950 - scheduler 6951 6952 - '@fluentui/react-utilities@9.25.0(@types/react@18.3.25)(react@18.3.1)': 6953 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 6958 react: 18.3.1 6959 6960 - '@fluentui/react-utilities@9.25.0(@types/react@19.2.0)(react@18.3.1)': 6961 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 6966 react: 18.3.1 6967 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)': 6969 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) 6977 react: 18.3.1 6978 react-dom: 18.3.1(react@18.3.1) 6979 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)': 6981 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) 6989 react: 18.3.1 6990 react-dom: 18.3.1(react@18.3.1) 6991 6992 - '@fluentui/tokens@1.0.0-alpha.22': 6993 dependencies: 6994 - '@swc/helpers': 0.5.17 6995 6996 - '@griffel/core@1.19.2': 6997 dependencies: 6998 - '@emotion/hash': 0.9.2 6999 - '@griffel/style-types': 1.3.0 7000 csstype: 3.1.3 7001 rtl-css-js: 1.16.1 7002 stylis: 4.3.6 7003 tslib: 2.8.1 7004 7005 - '@griffel/react@1.5.30(react@18.3.1)': 7006 dependencies: 7007 - '@griffel/core': 1.19.2 7008 react: 18.3.1 7009 tslib: 2.8.1 7010 7011 - '@griffel/style-types@1.3.0': 7012 dependencies: 7013 csstype: 3.1.3 7014 7015 - '@img/colour@1.0.0': 7016 optional: true 7017 7018 - '@img/sharp-darwin-arm64@0.34.4': 7019 optionalDependencies: 7020 - '@img/sharp-libvips-darwin-arm64': 1.2.3 7021 optional: true 7022 7023 - '@img/sharp-darwin-x64@0.34.4': 7024 optionalDependencies: 7025 - '@img/sharp-libvips-darwin-x64': 1.2.3 7026 optional: true 7027 7028 - '@img/sharp-libvips-darwin-arm64@1.2.3': 7029 optional: true 7030 7031 - '@img/sharp-libvips-darwin-x64@1.2.3': 7032 optional: true 7033 7034 - '@img/sharp-libvips-linux-arm64@1.2.3': 7035 optional: true 7036 7037 - '@img/sharp-libvips-linux-arm@1.2.3': 7038 optional: true 7039 7040 - '@img/sharp-libvips-linux-ppc64@1.2.3': 7041 optional: true 7042 7043 - '@img/sharp-libvips-linux-s390x@1.2.3': 7044 optional: true 7045 7046 - '@img/sharp-libvips-linux-x64@1.2.3': 7047 optional: true 7048 7049 - '@img/sharp-libvips-linuxmusl-arm64@1.2.3': 7050 optional: true 7051 7052 - '@img/sharp-libvips-linuxmusl-x64@1.2.3': 7053 optional: true 7054 7055 - '@img/sharp-linux-arm64@0.34.4': 7056 optionalDependencies: 7057 - '@img/sharp-libvips-linux-arm64': 1.2.3 7058 optional: true 7059 7060 - '@img/sharp-linux-arm@0.34.4': 7061 optionalDependencies: 7062 - '@img/sharp-libvips-linux-arm': 1.2.3 7063 optional: true 7064 7065 - '@img/sharp-linux-ppc64@0.34.4': 7066 optionalDependencies: 7067 - '@img/sharp-libvips-linux-ppc64': 1.2.3 7068 optional: true 7069 7070 - '@img/sharp-linux-s390x@0.34.4': 7071 optionalDependencies: 7072 - '@img/sharp-libvips-linux-s390x': 1.2.3 7073 optional: true 7074 7075 - '@img/sharp-linux-x64@0.34.4': 7076 optionalDependencies: 7077 - '@img/sharp-libvips-linux-x64': 1.2.3 7078 optional: true 7079 7080 - '@img/sharp-linuxmusl-arm64@0.34.4': 7081 optionalDependencies: 7082 - '@img/sharp-libvips-linuxmusl-arm64': 1.2.3 7083 optional: true 7084 7085 - '@img/sharp-linuxmusl-x64@0.34.4': 7086 optionalDependencies: 7087 - '@img/sharp-libvips-linuxmusl-x64': 1.2.3 7088 optional: true 7089 7090 - '@img/sharp-wasm32@0.34.4': 7091 dependencies: 7092 - '@emnapi/runtime': 1.5.0 7093 optional: true 7094 7095 - '@img/sharp-win32-arm64@0.34.4': 7096 optional: true 7097 7098 - '@img/sharp-win32-ia32@0.34.4': 7099 optional: true 7100 7101 - '@img/sharp-win32-x64@0.34.4': 7102 optional: true 7103 7104 - '@inquirer/ansi@1.0.0': {} 7105 7106 - '@inquirer/checkbox@4.2.4(@types/node@20.19.19)': 7107 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) 7112 yoctocolors-cjs: 2.1.3 7113 optionalDependencies: 7114 - '@types/node': 20.19.19 7115 7116 - '@inquirer/confirm@5.1.18(@types/node@20.19.19)': 7117 dependencies: 7118 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7119 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 7120 optionalDependencies: 7121 - '@types/node': 20.19.19 7122 7123 - '@inquirer/core@10.2.2(@types/node@20.19.19)': 7124 dependencies: 7125 - '@inquirer/ansi': 1.0.0 7126 - '@inquirer/figures': 1.0.13 7127 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 7128 cli-width: 4.1.0 7129 mute-stream: 2.0.0 7130 signal-exit: 4.1.0 7131 wrap-ansi: 6.2.0 7132 yoctocolors-cjs: 2.1.3 7133 optionalDependencies: 7134 - '@types/node': 20.19.19 7135 7136 - '@inquirer/editor@4.2.20(@types/node@20.19.19)': 7137 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) 7141 optionalDependencies: 7142 - '@types/node': 20.19.19 7143 7144 - '@inquirer/expand@4.0.20(@types/node@20.19.19)': 7145 dependencies: 7146 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7147 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 7148 yoctocolors-cjs: 2.1.3 7149 optionalDependencies: 7150 - '@types/node': 20.19.19 7151 7152 - '@inquirer/external-editor@1.0.2(@types/node@20.19.19)': 7153 dependencies: 7154 chardet: 2.1.0 7155 iconv-lite: 0.7.0 7156 optionalDependencies: 7157 - '@types/node': 20.19.19 7158 7159 - '@inquirer/figures@1.0.13': {} 7160 7161 - '@inquirer/input@4.2.4(@types/node@20.19.19)': 7162 dependencies: 7163 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7164 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 7165 optionalDependencies: 7166 - '@types/node': 20.19.19 7167 7168 - '@inquirer/number@3.0.20(@types/node@20.19.19)': 7169 dependencies: 7170 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7171 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 7172 optionalDependencies: 7173 - '@types/node': 20.19.19 7174 7175 - '@inquirer/password@4.0.20(@types/node@20.19.19)': 7176 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) 7180 optionalDependencies: 7181 - '@types/node': 20.19.19 7182 7183 - '@inquirer/prompts@7.8.6(@types/node@20.19.19)': 7184 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) 7195 optionalDependencies: 7196 - '@types/node': 20.19.19 7197 7198 - '@inquirer/rawlist@4.1.8(@types/node@20.19.19)': 7199 dependencies: 7200 - '@inquirer/core': 10.2.2(@types/node@20.19.19) 7201 - '@inquirer/type': 3.0.8(@types/node@20.19.19) 7202 yoctocolors-cjs: 2.1.3 7203 optionalDependencies: 7204 - '@types/node': 20.19.19 7205 7206 - '@inquirer/search@3.1.3(@types/node@20.19.19)': 7207 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) 7211 yoctocolors-cjs: 2.1.3 7212 optionalDependencies: 7213 - '@types/node': 20.19.19 7214 7215 - '@inquirer/select@4.3.4(@types/node@20.19.19)': 7216 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) 7221 yoctocolors-cjs: 2.1.3 7222 optionalDependencies: 7223 - '@types/node': 20.19.19 7224 7225 - '@inquirer/type@3.0.8(@types/node@20.19.19)': 7226 optionalDependencies: 7227 - '@types/node': 20.19.19 7228 7229 - '@ipld/dag-cbor@7.0.3': 7230 dependencies: 7231 cborg: 1.10.2 7232 multiformats: 9.9.0 7233 7234 - '@isaacs/fs-minipass@4.0.1': 7235 dependencies: 7236 minipass: 7.1.2 7237 7238 - '@jest/schemas@29.6.3': 7239 dependencies: 7240 - '@sinclair/typebox': 0.27.8 7241 7242 - '@jridgewell/gen-mapping@0.3.13': 7243 dependencies: 7244 - '@jridgewell/sourcemap-codec': 1.5.5 7245 - '@jridgewell/trace-mapping': 0.3.31 7246 7247 - '@jridgewell/remapping@2.3.5': 7248 dependencies: 7249 - '@jridgewell/gen-mapping': 0.3.13 7250 - '@jridgewell/trace-mapping': 0.3.31 7251 7252 - '@jridgewell/resolve-uri@3.1.2': {} 7253 7254 - '@jridgewell/sourcemap-codec@1.5.5': {} 7255 7256 - '@jridgewell/trace-mapping@0.3.31': 7257 dependencies: 7258 - '@jridgewell/resolve-uri': 3.1.2 7259 - '@jridgewell/sourcemap-codec': 1.5.5 7260 7261 - '@jspm/core@2.1.0': {} 7262 7263 - '@noble/curves@1.9.7': 7264 dependencies: 7265 - '@noble/hashes': 1.8.0 7266 7267 - '@noble/hashes@1.8.0': {} 7268 7269 - '@nodelib/fs.scandir@2.1.5': 7270 dependencies: 7271 - '@nodelib/fs.stat': 2.0.5 7272 run-parallel: 1.2.0 7273 7274 - '@nodelib/fs.stat@2.0.5': {} 7275 7276 - '@nodelib/fs.walk@1.2.8': 7277 dependencies: 7278 - '@nodelib/fs.scandir': 2.1.5 7279 fastq: 1.19.1 7280 7281 - '@oslojs/encoding@1.1.0': {} 7282 7283 - '@rolldown/pluginutils@1.0.0-beta.27': {} 7284 7285 - '@rollup/pluginutils@5.3.0(rollup@4.52.4)': 7286 dependencies: 7287 - '@types/estree': 1.0.8 7288 estree-walker: 2.0.2 7289 picomatch: 4.0.3 7290 optionalDependencies: 7291 rollup: 4.52.4 7292 7293 - '@rollup/rollup-android-arm-eabi@4.52.4': 7294 optional: true 7295 7296 - '@rollup/rollup-android-arm64@4.52.4': 7297 optional: true 7298 7299 - '@rollup/rollup-darwin-arm64@4.52.4': 7300 optional: true 7301 7302 - '@rollup/rollup-darwin-x64@4.52.4': 7303 optional: true 7304 7305 - '@rollup/rollup-freebsd-arm64@4.52.4': 7306 optional: true 7307 7308 - '@rollup/rollup-freebsd-x64@4.52.4': 7309 optional: true 7310 7311 - '@rollup/rollup-linux-arm-gnueabihf@4.52.4': 7312 optional: true 7313 7314 - '@rollup/rollup-linux-arm-musleabihf@4.52.4': 7315 optional: true 7316 7317 - '@rollup/rollup-linux-arm64-gnu@4.52.4': 7318 optional: true 7319 7320 - '@rollup/rollup-linux-arm64-musl@4.52.4': 7321 optional: true 7322 7323 - '@rollup/rollup-linux-loong64-gnu@4.52.4': 7324 optional: true 7325 7326 - '@rollup/rollup-linux-ppc64-gnu@4.52.4': 7327 optional: true 7328 7329 - '@rollup/rollup-linux-riscv64-gnu@4.52.4': 7330 optional: true 7331 7332 - '@rollup/rollup-linux-riscv64-musl@4.52.4': 7333 optional: true 7334 7335 - '@rollup/rollup-linux-s390x-gnu@4.52.4': 7336 optional: true 7337 7338 - '@rollup/rollup-linux-x64-gnu@4.40.0': 7339 optional: true 7340 7341 - '@rollup/rollup-linux-x64-gnu@4.52.4': 7342 optional: true 7343 7344 - '@rollup/rollup-linux-x64-musl@4.52.4': 7345 optional: true 7346 7347 - '@rollup/rollup-openharmony-arm64@4.52.4': 7348 optional: true 7349 7350 - '@rollup/rollup-win32-arm64-msvc@4.52.4': 7351 optional: true 7352 7353 - '@rollup/rollup-win32-ia32-msvc@4.52.4': 7354 optional: true 7355 7356 - '@rollup/rollup-win32-x64-gnu@4.52.4': 7357 optional: true 7358 7359 - '@rollup/rollup-win32-x64-msvc@4.52.4': 7360 optional: true 7361 7362 - '@scarf/scarf@1.4.0': {} 7363 7364 - '@shikijs/core@3.13.0': 7365 dependencies: 7366 - '@shikijs/types': 3.13.0 7367 - '@shikijs/vscode-textmate': 10.0.2 7368 - '@types/hast': 3.0.4 7369 hast-util-to-html: 9.0.5 7370 7371 - '@shikijs/engine-javascript@3.13.0': 7372 dependencies: 7373 - '@shikijs/types': 3.13.0 7374 - '@shikijs/vscode-textmate': 10.0.2 7375 oniguruma-to-es: 4.3.3 7376 7377 - '@shikijs/engine-oniguruma@3.13.0': 7378 dependencies: 7379 - '@shikijs/types': 3.13.0 7380 - '@shikijs/vscode-textmate': 10.0.2 7381 7382 - '@shikijs/langs@3.13.0': 7383 dependencies: 7384 - '@shikijs/types': 3.13.0 7385 7386 - '@shikijs/themes@3.13.0': 7387 dependencies: 7388 - '@shikijs/types': 3.13.0 7389 7390 - '@shikijs/types@3.13.0': 7391 dependencies: 7392 - '@shikijs/vscode-textmate': 10.0.2 7393 - '@types/hast': 3.0.4 7394 7395 - '@shikijs/vscode-textmate@10.0.2': {} 7396 7397 - '@sinclair/typebox@0.27.8': {} 7398 7399 - '@sindresorhus/merge-streams@2.3.0': {} 7400 7401 - '@swc/helpers@0.5.17': 7402 dependencies: 7403 tslib: 2.8.1 7404 7405 - '@ts-morph/common@0.25.0': 7406 dependencies: 7407 minimatch: 9.0.5 7408 path-browserify: 1.0.1 7409 tinyglobby: 0.2.15 7410 7411 - '@types/babel__core@7.20.5': 7412 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 7418 7419 - '@types/babel__generator@7.27.0': 7420 dependencies: 7421 - '@babel/types': 7.28.4 7422 7423 - '@types/babel__template@7.4.4': 7424 dependencies: 7425 - '@babel/parser': 7.28.4 7426 - '@babel/types': 7.28.4 7427 7428 - '@types/babel__traverse@7.28.0': 7429 dependencies: 7430 - '@babel/types': 7.28.4 7431 7432 - '@types/debug@4.1.12': 7433 dependencies: 7434 - '@types/ms': 2.1.0 7435 7436 - '@types/estree@1.0.8': {} 7437 7438 - '@types/fontkit@2.0.8': 7439 dependencies: 7440 - '@types/node': 20.19.19 7441 7442 - '@types/hast@3.0.4': 7443 dependencies: 7444 - '@types/unist': 3.0.3 7445 7446 - '@types/json-schema@7.0.15': {} 7447 7448 - '@types/mdast@4.0.4': 7449 dependencies: 7450 - '@types/unist': 3.0.3 7451 7452 - '@types/ms@2.1.0': {} 7453 7454 - '@types/nlcst@2.0.3': 7455 dependencies: 7456 - '@types/unist': 3.0.3 7457 7458 - '@types/node@20.19.19': 7459 dependencies: 7460 undici-types: 6.21.0 7461 7462 - '@types/prop-types@15.7.15': {} 7463 7464 - '@types/react-dom@18.3.7(@types/react@18.3.25)': 7465 dependencies: 7466 - '@types/react': 18.3.25 7467 7468 - '@types/react-dom@19.2.0(@types/react@19.2.0)': 7469 dependencies: 7470 - '@types/react': 19.2.0 7471 7472 - '@types/react@18.3.25': 7473 dependencies: 7474 - '@types/prop-types': 15.7.15 7475 csstype: 3.1.3 7476 7477 - '@types/react@19.2.0': 7478 dependencies: 7479 csstype: 3.1.3 7480 7481 - '@types/unist@3.0.3': {} 7482 7483 - '@typespec/asset-emitter@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 7484 dependencies: 7485 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7486 7487 - '@typespec/bundler@0.4.4(@types/node@20.19.19)': 7488 dependencies: 7489 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7490 esbuild: 0.25.10 7491 esbuild-plugins-node-modules-polyfill: 1.7.1(esbuild@0.25.10) 7492 node-stdlib-browser: 1.3.1 7493 picocolors: 1.1.1 7494 yargs: 18.0.0 7495 transitivePeerDependencies: 7496 - - '@types/node' 7497 7498 - '@typespec/compiler@1.4.0(@types/node@20.19.19)': 7499 dependencies: 7500 - '@babel/code-frame': 7.27.1 7501 - '@inquirer/prompts': 7.8.6(@types/node@20.19.19) 7502 ajv: 8.17.1 7503 change-case: 5.4.4 7504 env-paths: 3.0.0 ··· 7515 yaml: 2.8.1 7516 yargs: 18.0.0 7517 transitivePeerDependencies: 7518 - - '@types/node' 7519 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)': 7521 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) 7526 react: 18.3.1 7527 react-dom: 18.3.1(react@18.3.1) 7528 react-hotkeys-hook: 5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7529 transitivePeerDependencies: 7530 - - '@types/react' 7531 - - '@types/react-dom' 7532 - scheduler 7533 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)': 7535 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) 7540 react: 18.3.1 7541 react-dom: 18.3.1(react@18.3.1) 7542 react-hotkeys-hook: 5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7543 transitivePeerDependencies: 7544 - - '@types/react' 7545 - - '@types/react-dom' 7546 - scheduler 7547 7548 - '@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 7549 dependencies: 7550 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7551 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)))': 7553 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))) 7559 openapi-types: 12.1.3 7560 yaml: 2.8.1 7561 optionalDependencies: 7562 - '@typespec/versioning': 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 7563 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)))': 7565 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)) 7568 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)': 7570 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)) 7582 clsx: 2.1.1 7583 debounce: 2.2.0 7584 lzutf8: 0.6.3 ··· 7590 vscode-languageserver: 9.0.1 7591 vscode-languageserver-textdocument: 1.0.12 7592 transitivePeerDependencies: 7593 - - '@types/node' 7594 - - '@types/react' 7595 - - '@types/react-dom' 7596 - - '@typespec/json-schema' 7597 - - '@typespec/streams' 7598 - - '@typespec/xml' 7599 - scheduler 7600 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)': 7602 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)) 7614 clsx: 2.1.1 7615 debounce: 2.2.0 7616 lzutf8: 0.6.3 ··· 7622 vscode-languageserver: 9.0.1 7623 vscode-languageserver-textdocument: 1.0.12 7624 transitivePeerDependencies: 7625 - - '@types/node' 7626 - - '@types/react' 7627 - - '@types/react-dom' 7628 - - '@typespec/json-schema' 7629 - - '@typespec/streams' 7630 - - '@typespec/xml' 7631 - scheduler 7632 7633 - '@typespec/protobuf@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 7634 dependencies: 7635 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7636 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)))': 7638 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)) 7641 7642 - '@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))': 7643 dependencies: 7644 - '@typespec/compiler': 1.4.0(@types/node@20.19.19) 7645 7646 - '@ungap/structured-clone@1.3.0': {} 7647 7648 - '@vitejs/plugin-react@4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1))': 7649 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 7655 react-refresh: 0.17.0 7656 vite: 6.3.6(@types/node@20.19.19)(yaml@2.8.1) 7657 transitivePeerDependencies: 7658 - supports-color 7659 7660 - '@vitest/expect@1.6.1': 7661 dependencies: 7662 - '@vitest/spy': 1.6.1 7663 - '@vitest/utils': 1.6.1 7664 chai: 4.5.0 7665 7666 - '@vitest/runner@1.6.1': 7667 dependencies: 7668 - '@vitest/utils': 1.6.1 7669 p-limit: 5.0.0 7670 pathe: 1.1.2 7671 7672 - '@vitest/snapshot@1.6.1': 7673 dependencies: 7674 magic-string: 0.30.19 7675 pathe: 1.1.2 7676 pretty-format: 29.7.0 7677 7678 - '@vitest/spy@1.6.1': 7679 dependencies: 7680 tinyspy: 2.2.1 7681 7682 - '@vitest/utils@1.6.1': 7683 dependencies: 7684 diff-sequences: 29.6.3 7685 estree-walker: 3.0.3 ··· 7759 7760 astro@5.14.1(@types/node@20.19.19)(rollup@4.52.4)(typescript@5.9.3)(yaml@2.8.1): 7761 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) 7769 acorn: 8.15.0 7770 aria-query: 5.3.2 7771 axobject-query: 4.1.0 ··· 7824 optionalDependencies: 7825 sharp: 0.34.4 7826 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' 7842 - aws4fetch 7843 - db0 7844 - encoding ··· 8026 dependencies: 8027 node-gyp-build-optional-packages: 5.1.1 8028 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 8035 optional: true 8036 8037 cbor-x@1.6.0: ··· 8352 8353 esbuild-plugins-node-modules-polyfill@1.7.1(esbuild@0.25.10): 8354 dependencies: 8355 - '@jspm/core': 2.1.0 8356 esbuild: 0.25.10 8357 local-pkg: 1.1.2 8358 resolve.exports: 2.0.3 8359 8360 esbuild@0.21.5: 8361 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 8385 8386 esbuild@0.25.10: 8387 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 8414 8415 escalade@3.2.0: {} 8416 ··· 8422 8423 estree-walker@3.0.3: 8424 dependencies: 8425 - '@types/estree': 1.0.8 8426 8427 etag@1.8.1: {} 8428 ··· 8503 8504 fast-glob@3.3.3: 8505 dependencies: 8506 - '@nodelib/fs.stat': 2.0.5 8507 - '@nodelib/fs.walk': 1.2.8 8508 glob-parent: 5.1.2 8509 merge2: 1.4.1 8510 micromatch: 4.0.8 ··· 8546 8547 fontace@0.3.0: 8548 dependencies: 8549 - '@types/fontkit': 2.0.8 8550 fontkit: 2.0.4 8551 8552 fontkit@2.0.4: 8553 dependencies: 8554 - '@swc/helpers': 0.5.17 8555 brotli: 1.3.3 8556 clone: 2.1.2 8557 dfa: 1.2.0 ··· 8614 8615 globby@14.1.0: 8616 dependencies: 8617 - '@sindresorhus/merge-streams': 2.3.0 8618 fast-glob: 3.3.3 8619 ignore: 7.0.5 8620 path-type: 6.0.0 ··· 8672 8673 hast-util-from-html@2.0.3: 8674 dependencies: 8675 - '@types/hast': 3.0.4 8676 devlop: 1.1.0 8677 hast-util-from-parse5: 8.0.3 8678 parse5: 7.3.0 ··· 8681 8682 hast-util-from-parse5@8.0.3: 8683 dependencies: 8684 - '@types/hast': 3.0.4 8685 - '@types/unist': 3.0.3 8686 devlop: 1.1.0 8687 hastscript: 9.0.1 8688 property-information: 7.1.0 ··· 8692 8693 hast-util-is-element@3.0.0: 8694 dependencies: 8695 - '@types/hast': 3.0.4 8696 8697 hast-util-parse-selector@4.0.0: 8698 dependencies: 8699 - '@types/hast': 3.0.4 8700 8701 hast-util-raw@9.1.0: 8702 dependencies: 8703 - '@types/hast': 3.0.4 8704 - '@types/unist': 3.0.3 8705 - '@ungap/structured-clone': 1.3.0 8706 hast-util-from-parse5: 8.0.3 8707 hast-util-to-parse5: 8.0.0 8708 html-void-elements: 3.0.0 ··· 8716 8717 hast-util-to-html@9.0.5: 8718 dependencies: 8719 - '@types/hast': 3.0.4 8720 - '@types/unist': 3.0.3 8721 ccount: 2.0.1 8722 comma-separated-tokens: 2.0.3 8723 hast-util-whitespace: 3.0.0 ··· 8730 8731 hast-util-to-parse5@8.0.0: 8732 dependencies: 8733 - '@types/hast': 3.0.4 8734 comma-separated-tokens: 2.0.3 8735 devlop: 1.1.0 8736 property-information: 6.5.0 ··· 8740 8741 hast-util-to-text@4.0.2: 8742 dependencies: 8743 - '@types/hast': 3.0.4 8744 - '@types/unist': 3.0.3 8745 hast-util-is-element: 3.0.0 8746 unist-util-find-after: 5.0.0 8747 8748 hast-util-whitespace@3.0.0: 8749 dependencies: 8750 - '@types/hast': 3.0.4 8751 8752 hastscript@9.0.1: 8753 dependencies: 8754 - '@types/hast': 3.0.4 8755 comma-separated-tokens: 2.0.3 8756 hast-util-parse-selector: 4.0.0 8757 property-information: 7.1.0 ··· 8931 8932 magic-string@0.30.19: 8933 dependencies: 8934 - '@jridgewell/sourcemap-codec': 1.5.5 8935 8936 magicast@0.3.5: 8937 dependencies: 8938 - '@babel/parser': 7.28.4 8939 - '@babel/types': 7.28.4 8940 source-map-js: 1.2.1 8941 8942 map-stream@0.1.0: {} ··· 8953 8954 mdast-util-definitions@6.0.0: 8955 dependencies: 8956 - '@types/mdast': 4.0.4 8957 - '@types/unist': 3.0.3 8958 unist-util-visit: 5.0.0 8959 8960 mdast-util-find-and-replace@3.0.2: 8961 dependencies: 8962 - '@types/mdast': 4.0.4 8963 escape-string-regexp: 5.0.0 8964 unist-util-is: 6.0.0 8965 unist-util-visit-parents: 6.0.1 8966 8967 mdast-util-from-markdown@2.0.2: 8968 dependencies: 8969 - '@types/mdast': 4.0.4 8970 - '@types/unist': 3.0.3 8971 decode-named-character-reference: 1.2.0 8972 devlop: 1.1.0 8973 mdast-util-to-string: 4.0.0 ··· 8983 8984 mdast-util-gfm-autolink-literal@2.0.1: 8985 dependencies: 8986 - '@types/mdast': 4.0.4 8987 ccount: 2.0.1 8988 devlop: 1.1.0 8989 mdast-util-find-and-replace: 3.0.2 ··· 8991 8992 mdast-util-gfm-footnote@2.1.0: 8993 dependencies: 8994 - '@types/mdast': 4.0.4 8995 devlop: 1.1.0 8996 mdast-util-from-markdown: 2.0.2 8997 mdast-util-to-markdown: 2.1.2 ··· 9001 9002 mdast-util-gfm-strikethrough@2.0.0: 9003 dependencies: 9004 - '@types/mdast': 4.0.4 9005 mdast-util-from-markdown: 2.0.2 9006 mdast-util-to-markdown: 2.1.2 9007 transitivePeerDependencies: ··· 9009 9010 mdast-util-gfm-table@2.0.0: 9011 dependencies: 9012 - '@types/mdast': 4.0.4 9013 devlop: 1.1.0 9014 markdown-table: 3.0.4 9015 mdast-util-from-markdown: 2.0.2 ··· 9019 9020 mdast-util-gfm-task-list-item@2.0.0: 9021 dependencies: 9022 - '@types/mdast': 4.0.4 9023 devlop: 1.1.0 9024 mdast-util-from-markdown: 2.0.2 9025 mdast-util-to-markdown: 2.1.2 ··· 9040 9041 mdast-util-phrasing@4.1.0: 9042 dependencies: 9043 - '@types/mdast': 4.0.4 9044 unist-util-is: 6.0.0 9045 9046 mdast-util-to-hast@13.2.0: 9047 dependencies: 9048 - '@types/hast': 3.0.4 9049 - '@types/mdast': 4.0.4 9050 - '@ungap/structured-clone': 1.3.0 9051 devlop: 1.1.0 9052 micromark-util-sanitize-uri: 2.0.1 9053 trim-lines: 3.0.1 ··· 9057 9058 mdast-util-to-markdown@2.1.2: 9059 dependencies: 9060 - '@types/mdast': 4.0.4 9061 - '@types/unist': 3.0.3 9062 longest-streak: 3.1.0 9063 mdast-util-phrasing: 4.1.0 9064 mdast-util-to-string: 4.0.0 ··· 9069 9070 mdast-util-to-string@4.0.0: 9071 dependencies: 9072 - '@types/mdast': 4.0.4 9073 9074 mdn-data@2.12.2: {} 9075 ··· 9254 9255 micromark@4.0.2: 9256 dependencies: 9257 - '@types/debug': 4.1.12 9258 debug: 4.4.3 9259 decode-named-character-reference: 1.2.0 9260 devlop: 1.1.0 ··· 9337 9338 nlcst-to-string@4.0.0: 9339 dependencies: 9340 - '@types/nlcst': 2.0.3 9341 9342 node-cleanup@2.1.2: {} 9343 ··· 9479 9480 parse-latin@7.0.0: 9481 dependencies: 9482 - '@types/nlcst': 2.0.3 9483 - '@types/unist': 3.0.3 9484 nlcst-to-string: 4.0.0 9485 unist-util-modify-children: 4.0.0 9486 unist-util-visit-children: 3.0.0 ··· 9582 9583 pretty-format@29.7.0: 9584 dependencies: 9585 - '@jest/schemas': 29.6.3 9586 ansi-styles: 5.2.0 9587 react-is: 18.3.1 9588 ··· 9670 9671 react-error-boundary@6.0.0(react@18.3.1): 9672 dependencies: 9673 - '@babel/runtime': 7.28.4 9674 react: 18.3.1 9675 9676 react-hotkeys-hook@5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): ··· 9730 9731 rehype-parse@9.0.1: 9732 dependencies: 9733 - '@types/hast': 3.0.4 9734 hast-util-from-html: 2.0.3 9735 unified: 11.0.5 9736 9737 rehype-raw@7.0.0: 9738 dependencies: 9739 - '@types/hast': 3.0.4 9740 hast-util-raw: 9.1.0 9741 vfile: 6.0.3 9742 9743 rehype-stringify@10.0.1: 9744 dependencies: 9745 - '@types/hast': 3.0.4 9746 hast-util-to-html: 9.0.5 9747 unified: 11.0.5 9748 9749 rehype@13.0.2: 9750 dependencies: 9751 - '@types/hast': 3.0.4 9752 rehype-parse: 9.0.1 9753 rehype-stringify: 10.0.1 9754 unified: 11.0.5 9755 9756 remark-gfm@4.0.1: 9757 dependencies: 9758 - '@types/mdast': 4.0.4 9759 mdast-util-gfm: 3.1.0 9760 micromark-extension-gfm: 3.0.0 9761 remark-parse: 11.0.0 ··· 9766 9767 remark-parse@11.0.0: 9768 dependencies: 9769 - '@types/mdast': 4.0.4 9770 mdast-util-from-markdown: 2.0.2 9771 micromark-util-types: 2.0.2 9772 unified: 11.0.5 ··· 9775 9776 remark-rehype@11.1.2: 9777 dependencies: 9778 - '@types/hast': 3.0.4 9779 - '@types/mdast': 4.0.4 9780 mdast-util-to-hast: 13.2.0 9781 unified: 11.0.5 9782 vfile: 6.0.3 ··· 9790 9791 remark-stringify@11.0.0: 9792 dependencies: 9793 - '@types/mdast': 4.0.4 9794 mdast-util-to-markdown: 2.1.2 9795 unified: 11.0.5 9796 ··· 9810 9811 retext-latin@4.0.0: 9812 dependencies: 9813 - '@types/nlcst': 2.0.3 9814 parse-latin: 7.0.0 9815 unified: 11.0.5 9816 9817 retext-smartypants@6.2.0: 9818 dependencies: 9819 - '@types/nlcst': 2.0.3 9820 nlcst-to-string: 4.0.0 9821 unist-util-visit: 5.0.0 9822 9823 retext-stringify@4.0.0: 9824 dependencies: 9825 - '@types/nlcst': 2.0.3 9826 nlcst-to-string: 4.0.0 9827 unified: 11.0.5 9828 9829 retext@9.0.0: 9830 dependencies: 9831 - '@types/nlcst': 2.0.3 9832 retext-latin: 4.0.0 9833 retext-stringify: 4.0.0 9834 unified: 11.0.5 ··· 9842 9843 rollup@4.52.4: 9844 dependencies: 9845 - '@types/estree': 1.0.8 9846 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 9869 fsevents: 2.3.3 9870 9871 rtl-css-js@1.16.1: 9872 dependencies: 9873 - '@babel/runtime': 7.28.4 9874 9875 run-parallel@1.2.0: 9876 dependencies: ··· 9952 9953 sharp@0.34.4: 9954 dependencies: 9955 - '@img/colour': 1.0.0 9956 detect-libc: 2.1.1 9957 semver: 7.7.2 9958 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 9981 optional: true 9982 9983 shebang-command@2.0.0: ··· 9990 9991 shiki@3.13.0: 9992 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 10001 10002 side-channel-list@1.0.0: 10003 dependencies: ··· 10128 10129 swagger-ui-dist@5.29.3: 10130 dependencies: 10131 - '@scarf/scarf': 1.4.0 10132 10133 tabster@8.5.6: 10134 dependencies: 10135 keyborg: 2.6.0 10136 tslib: 2.8.1 10137 optionalDependencies: 10138 - '@rollup/rollup-linux-x64-gnu': 4.40.0 10139 10140 tar@7.5.1: 10141 dependencies: 10142 - '@isaacs/fs-minipass': 4.0.1 10143 chownr: 3.0.0 10144 minipass: 7.1.2 10145 minizlib: 3.1.0 ··· 10198 10199 ts-morph@24.0.0: 10200 dependencies: 10201 - '@ts-morph/common': 0.25.0 10202 code-block-writer: 13.0.3 10203 10204 tsc-watch@7.2.0(typescript@5.9.3): ··· 10260 10261 unified@11.0.5: 10262 dependencies: 10263 - '@types/unist': 3.0.3 10264 bail: 2.0.2 10265 devlop: 1.1.0 10266 extend: 3.0.2 ··· 10276 10277 unist-util-find-after@5.0.0: 10278 dependencies: 10279 - '@types/unist': 3.0.3 10280 unist-util-is: 6.0.0 10281 10282 unist-util-is@6.0.0: 10283 dependencies: 10284 - '@types/unist': 3.0.3 10285 10286 unist-util-modify-children@4.0.0: 10287 dependencies: 10288 - '@types/unist': 3.0.3 10289 array-iterate: 2.0.1 10290 10291 unist-util-position@5.0.0: 10292 dependencies: 10293 - '@types/unist': 3.0.3 10294 10295 unist-util-remove-position@5.0.0: 10296 dependencies: 10297 - '@types/unist': 3.0.3 10298 unist-util-visit: 5.0.0 10299 10300 unist-util-stringify-position@4.0.0: 10301 dependencies: 10302 - '@types/unist': 3.0.3 10303 10304 unist-util-visit-children@3.0.0: 10305 dependencies: 10306 - '@types/unist': 3.0.3 10307 10308 unist-util-visit-parents@6.0.1: 10309 dependencies: 10310 - '@types/unist': 3.0.3 10311 unist-util-is: 6.0.0 10312 10313 unist-util-visit@5.0.0: 10314 dependencies: 10315 - '@types/unist': 3.0.3 10316 unist-util-is: 6.0.0 10317 unist-util-visit-parents: 6.0.1 10318 ··· 10360 10361 vfile-location@5.0.3: 10362 dependencies: 10363 - '@types/unist': 3.0.3 10364 vfile: 6.0.3 10365 10366 vfile-message@4.0.3: 10367 dependencies: 10368 - '@types/unist': 3.0.3 10369 unist-util-stringify-position: 4.0.0 10370 10371 vfile@6.0.3: 10372 dependencies: 10373 - '@types/unist': 3.0.3 10374 vfile-message: 4.0.3 10375 10376 vite-node@1.6.1(@types/node@20.19.19): ··· 10381 picocolors: 1.1.1 10382 vite: 5.4.20(@types/node@20.19.19) 10383 transitivePeerDependencies: 10384 - - '@types/node' 10385 - less 10386 - lightningcss 10387 - sass ··· 10397 postcss: 8.5.6 10398 rollup: 4.52.4 10399 optionalDependencies: 10400 - '@types/node': 20.19.19 10401 fsevents: 2.3.3 10402 10403 vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1): ··· 10409 rollup: 4.52.4 10410 tinyglobby: 0.2.15 10411 optionalDependencies: 10412 - '@types/node': 20.19.19 10413 fsevents: 2.3.3 10414 yaml: 2.8.1 10415 ··· 10419 10420 vitest@1.6.1(@types/node@20.19.19): 10421 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 10427 acorn-walk: 8.3.4 10428 chai: 4.5.0 10429 debug: 4.4.3 ··· 10440 vite-node: 1.6.1(@types/node@20.19.19) 10441 why-is-node-running: 2.3.0 10442 optionalDependencies: 10443 - '@types/node': 20.19.19 10444 transitivePeerDependencies: 10445 - less 10446 - lightningcss
··· 1 + lockfileVersion: "9.0" 2 3 settings: 4 autoInstallPeers: true 5 excludeLinksFromLockfile: false 6 7 importers: 8 .: 9 devDependencies: 10 typescript: ··· 13 14 packages/emitter: 15 dependencies: 16 + "@typespec/compiler": 17 specifier: ^1.4.0 18 version: 1.4.0(@types/node@20.19.19) 19 devDependencies: 20 + "@types/node": 21 specifier: ^20.0.0 22 version: 20.19.19 23 + "@typespec/http": 24 specifier: ^1.4.0 25 version: 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 26 + "@typespec/openapi": 27 specifier: ^1.4.0 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))) 29 concurrently: ··· 41 42 packages/example: 43 dependencies: 44 + "@atproto/lex-cli": 45 specifier: ^0.9.5 46 version: 0.9.5 47 + "@atproto/xrpc-server": 48 specifier: ^0.9.5 49 version: 0.9.5 50 + "@typelex/emitter": 51 specifier: workspace:* 52 version: link:../emitter 53 + "@typespec/compiler": 54 specifier: ^1.4.0 55 version: 1.4.0(@types/node@20.19.19) 56 devDependencies: ··· 60 61 packages/playground: 62 dependencies: 63 + "@typelex/emitter": 64 specifier: workspace:* 65 version: link:../emitter 66 + "@typespec/compiler": 67 specifier: ^1.4.0 68 version: 1.4.0(@types/node@20.19.19) 69 + "@typespec/playground": 70 specifier: ^0.11.0 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) 72 react: ··· 76 specifier: ^18.3.1 77 version: 18.3.1(react@18.3.1) 78 devDependencies: 79 + "@types/react": 80 specifier: ^18.3.12 81 version: 18.3.25 82 + "@types/react-dom": 83 specifier: ^18.3.1 84 version: 18.3.7(@types/react@18.3.25) 85 vite: ··· 88 89 packages/website: 90 dependencies: 91 + "@astrojs/react": 92 specifier: ^4.4.0 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) 94 + "@typelex/emitter": 95 specifier: workspace:* 96 version: link:../emitter 97 + "@typespec/bundler": 98 specifier: ^0.4.4 99 version: 0.4.4(@types/node@20.19.19) 100 + "@typespec/playground": 101 specifier: ^0.11.0 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) 103 astro: ··· 116 specifier: ^3.13.0 117 version: 3.13.0 118 devDependencies: 119 + "@types/react": 120 specifier: ^19.2.0 121 version: 19.2.0 122 + "@types/react-dom": 123 specifier: ^19.2.0 124 version: 19.2.0(@types/react@19.2.0) 125 + "@typespec/compiler": 126 specifier: ^1.4.0 127 version: 1.4.0(@types/node@20.19.19) 128 129 packages: 130 + "@apidevtools/json-schema-ref-parser@14.0.1": 131 + resolution: 132 + { 133 + integrity: sha512-Oc96zvmxx1fqoSEdUmfmvvb59/KDOnUoJ7s2t7bISyAn0XEz57LCCw8k2Y4Pf3mwKaZLMciESALORLgfe2frCw==, 134 + } 135 + engines: { node: ">= 16" } 136 137 + "@apidevtools/openapi-schemas@2.1.0": 138 + resolution: 139 + { 140 + integrity: sha512-Zc1AlqrJlX3SlpupFGpiLi2EbteyP7fXmUOGup6/DnkRgjP9bgMM/ag+n91rsv0U1Gpz0H3VILA/o3bW7Ua6BQ==, 141 + } 142 + engines: { node: ">=10" } 143 144 + "@apidevtools/swagger-methods@3.0.2": 145 + resolution: 146 + { 147 + integrity: sha512-QAkD5kK2b1WfjDS/UQn/qQkbwF31uqRjPTrsCs5ZG9BQGAkjwvqGFjjPqAuzac/IYzpPtRzjCP1WrTuAIjMrXg==, 148 + } 149 150 + "@apidevtools/swagger-parser@12.0.0": 151 + resolution: 152 + { 153 + integrity: sha512-WLJIWcfOXrSKlZEM+yhA2Xzatgl488qr1FoOxixYmtWapBzwSC0gVGq4WObr4hHClMIiFFdOBdixNkvWqkWIWA==, 154 + } 155 peerDependencies: 156 + openapi-types: ">=7" 157 158 + "@astrojs/compiler@2.13.0": 159 + resolution: 160 + { 161 + integrity: sha512-mqVORhUJViA28fwHYaWmsXSzLO9osbdZ5ImUfxBarqsYdMlPbqAqGJCxsNzvppp1BEzc1mJNjOVvQqeDN8Vspw==, 162 + } 163 164 + "@astrojs/internal-helpers@0.7.3": 165 + resolution: 166 + { 167 + integrity: sha512-6Pl0bQEIChuW5wqN7jdKrzWfCscW2rG/Cz+fzt4PhSQX2ivBpnhXgFUCs0M3DCYvjYHnPVG2W36X5rmFjZ62sw==, 168 + } 169 170 + "@astrojs/markdown-remark@6.3.7": 171 + resolution: 172 + { 173 + integrity: sha512-KXGdq6/BC18doBCYXp08alHlWChH0hdD2B1qv9wIyOHbvwI5K6I7FhSta8dq1hBQNdun8YkKPR013D/Hm8xd0g==, 174 + } 175 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 } 182 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 } 189 peerDependencies: 190 + "@types/react": ^17.0.50 || ^18.0.21 || ^19.0.0 191 + "@types/react-dom": ^17.0.17 || ^18.0.6 || ^19.0.0 192 react: ^17.0.2 || ^18.0.0 || ^19.0.0 193 react-dom: ^17.0.2 || ^18.0.0 || ^19.0.0 194 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 } 201 202 + "@atproto/common-web@0.4.3": 203 + resolution: 204 + { 205 + integrity: sha512-nRDINmSe4VycJzPo6fP/hEltBcULFxt9Kw7fQk6405FyAWZiTluYHlXOnU7GkQfeUK44OENG1qFTBcmCJ7e8pg==, 206 + } 207 208 + "@atproto/common@0.4.12": 209 + resolution: 210 + { 211 + integrity: sha512-NC+TULLQiqs6MvNymhQS5WDms3SlbIKGLf4n33tpftRJcalh507rI+snbcUb7TLIkKw7VO17qMqxEXtIdd5auQ==, 212 + } 213 + engines: { node: ">=18.7.0" } 214 215 + "@atproto/crypto@0.4.4": 216 + resolution: 217 + { 218 + integrity: sha512-Yq9+crJ7WQl7sxStVpHgie5Z51R05etaK9DLWYG/7bR5T4bhdcIgF6IfklLShtZwLYdVVj+K15s0BqW9a8PSDA==, 219 + } 220 + engines: { node: ">=18.7.0" } 221 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" } 228 hasBin: true 229 230 + "@atproto/lexicon@0.5.1": 231 + resolution: 232 + { 233 + integrity: sha512-y8AEtYmfgVl4fqFxqXAeGvhesiGkxiy3CWoJIfsFDDdTlZUC8DFnZrYhcqkIop3OlCkkljvpSJi1hbeC1tbi8A==, 234 + } 235 236 + "@atproto/syntax@0.4.1": 237 + resolution: 238 + { 239 + integrity: sha512-CJdImtLAiFO+0z3BWTtxwk6aY5w4t8orHTMVJgkf++QRJWTxPbIFko/0hrkADB7n2EruDxDSeAgfUGehpH6ngw==, 240 + } 241 242 + "@atproto/xrpc-server@0.9.5": 243 + resolution: 244 + { 245 + integrity: sha512-V0srjUgy6mQ5yf9+MSNBLs457m4qclEaWZsnqIE7RfYywvntexTAbMoo7J7ONfTNwdmA9Gw4oLak2z2cDAET4w==, 246 + } 247 + engines: { node: ">=18.7.0" } 248 249 + "@atproto/xrpc@0.7.5": 250 + resolution: 251 + { 252 + integrity: sha512-MUYNn5d2hv8yVegRL0ccHvTHAVj5JSnW07bkbiaz96UH45lvYNRVwt44z+yYVnb0/mvBzyD3/ZQ55TRGt7fHkA==, 253 + } 254 255 + "@babel/code-frame@7.27.1": 256 + resolution: 257 + { 258 + integrity: sha512-cjQ7ZlQ0Mv3b47hABuTevyTuYN4i+loJKGeV9flcCgIK37cCXRh+L1bd3iBHlynerhQ7BhCkn2BPbQUL+rGqFg==, 259 + } 260 + engines: { node: ">=6.9.0" } 261 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" } 268 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" } 275 276 + "@babel/generator@7.28.3": 277 + resolution: 278 + { 279 + integrity: sha512-3lSpxGgvnmZznmBkCRnVREPUFJv2wrv9iAoFDvADJc0ypmdOxdUtcLeBgBJ6zE0PMeTKnxeQzyk0xTBq4Ep7zw==, 280 + } 281 + engines: { node: ">=6.9.0" } 282 283 + "@babel/helper-compilation-targets@7.27.2": 284 + resolution: 285 + { 286 + integrity: sha512-2+1thGUUWWjLTYTHZWK1n8Yga0ijBz1XAhUXcKy81rd5g6yh7hGqMp45v7cadSbEHc9G3OTv45SyneRN3ps4DQ==, 287 + } 288 + engines: { node: ">=6.9.0" } 289 290 + "@babel/helper-globals@7.28.0": 291 + resolution: 292 + { 293 + integrity: sha512-+W6cISkXFa1jXsDEdYA8HeevQT/FULhxzR99pxphltZcVaugps53THCeiWA8SguxxpSp3gKPiuYfSWopkLQ4hw==, 294 + } 295 + engines: { node: ">=6.9.0" } 296 297 + "@babel/helper-module-imports@7.27.1": 298 + resolution: 299 + { 300 + integrity: sha512-0gSFWUPNXNopqtIPQvlD5WgXYI5GY2kP2cCvoT8kczjbfcfuIljTbcWrulD1CIPIX2gt1wghbDy08yE1p+/r3w==, 301 + } 302 + engines: { node: ">=6.9.0" } 303 304 + "@babel/helper-module-transforms@7.28.3": 305 + resolution: 306 + { 307 + integrity: sha512-gytXUbs8k2sXS9PnQptz5o0QnpLL51SwASIORY6XaBKF88nsOT0Zw9szLqlSGQDP/4TljBAD5y98p2U1fqkdsw==, 308 + } 309 + engines: { node: ">=6.9.0" } 310 peerDependencies: 311 + "@babel/core": ^7.0.0 312 313 + "@babel/helper-plugin-utils@7.27.1": 314 + resolution: 315 + { 316 + integrity: sha512-1gn1Up5YXka3YYAHGKpbideQ5Yjf1tDa9qYcgysz+cNCXukyLl6DjPXhD3VRwSb8c0J9tA4b2+rHEZtc6R0tlw==, 317 + } 318 + engines: { node: ">=6.9.0" } 319 320 + "@babel/helper-string-parser@7.27.1": 321 + resolution: 322 + { 323 + integrity: sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==, 324 + } 325 + engines: { node: ">=6.9.0" } 326 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" } 333 334 + "@babel/helper-validator-option@7.27.1": 335 + resolution: 336 + { 337 + integrity: sha512-YvjJow9FxbhFFKDSuFnVCe2WxXk1zWc22fFePVNEaWJEu8IrZVlda6N0uHwzZrUM1il7NC9Mlp4MaJYbYd9JSg==, 338 + } 339 + engines: { node: ">=6.9.0" } 340 341 + "@babel/helpers@7.28.4": 342 + resolution: 343 + { 344 + integrity: sha512-HFN59MmQXGHVyYadKLVumYsA9dBFun/ldYxipEjzA4196jpLZd8UjEEBLkbEkvfYreDqJhZxYAWFPtrfhNpj4w==, 345 + } 346 + engines: { node: ">=6.9.0" } 347 348 + "@babel/parser@7.28.4": 349 + resolution: 350 + { 351 + integrity: sha512-yZbBqeM6TkpP9du/I2pUZnJsRMGGvOuIrhjzC1AwHwW+6he4mni6Bp/m8ijn0iOuZuPI2BfkCoSRunpyjnrQKg==, 352 + } 353 + engines: { node: ">=6.0.0" } 354 hasBin: true 355 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" } 362 peerDependencies: 363 + "@babel/core": ^7.0.0-0 364 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" } 371 peerDependencies: 372 + "@babel/core": ^7.0.0-0 373 374 + "@babel/runtime@7.28.4": 375 + resolution: 376 + { 377 + integrity: sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==, 378 + } 379 + engines: { node: ">=6.9.0" } 380 381 + "@babel/template@7.27.2": 382 + resolution: 383 + { 384 + integrity: sha512-LPDZ85aEJyYSd18/DkjNh4/y1ntkE5KwUHWTiqgRxruuZL2F1yuHligVHLvcHY2vMHXttKFpJn6LwfI7cw7ODw==, 385 + } 386 + engines: { node: ">=6.9.0" } 387 388 + "@babel/traverse@7.28.4": 389 + resolution: 390 + { 391 + integrity: sha512-YEzuboP2qvQavAcjgQNVgsvHIDv6ZpwXvcvjmyySP2DIMuByS/6ioU5G9pYrWHM6T2YDfc7xga9iNzYOs12CFQ==, 392 + } 393 + engines: { node: ">=6.9.0" } 394 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" } 401 402 + "@capsizecss/unpack@2.4.0": 403 + resolution: 404 + { 405 + integrity: sha512-GrSU71meACqcmIUxPYOJvGKF0yryjN/L1aCuE9DViCTJI7bfkjgYDPD1zbNDcINJwSSP6UaBZY9GAbYDO7re0Q==, 406 + } 407 408 + "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": 409 + resolution: 410 + { 411 + integrity: sha512-P7swiOAdF7aSi0H+tHtHtr6zrpF3aAq/W9FXx5HektRvLTM2O89xCyXF3pk7pLc7QpaY7AoaE8UowVf9QBdh3w==, 412 + } 413 cpu: [arm64] 414 os: [darwin] 415 416 + "@cbor-extract/cbor-extract-darwin-x64@2.2.0": 417 + resolution: 418 + { 419 + integrity: sha512-1liF6fgowph0JxBbYnAS7ZlqNYLf000Qnj4KjqPNW4GViKrEql2MgZnAsExhY9LSy8dnvA4C0qHEBgPrll0z0w==, 420 + } 421 cpu: [x64] 422 os: [darwin] 423 424 + "@cbor-extract/cbor-extract-linux-arm64@2.2.0": 425 + resolution: 426 + { 427 + integrity: sha512-rQvhNmDuhjTVXSPFLolmQ47/ydGOFXtbR7+wgkSY0bdOxCFept1hvg59uiLPT2fVDuJFuEy16EImo5tE2x3RsQ==, 428 + } 429 cpu: [arm64] 430 os: [linux] 431 432 + "@cbor-extract/cbor-extract-linux-arm@2.2.0": 433 + resolution: 434 + { 435 + integrity: sha512-QeBcBXk964zOytiedMPQNZr7sg0TNavZeuUCD6ON4vEOU/25+pLhNN6EDIKJ9VLTKaZ7K7EaAriyYQ1NQ05s/Q==, 436 + } 437 cpu: [arm] 438 os: [linux] 439 440 + "@cbor-extract/cbor-extract-linux-x64@2.2.0": 441 + resolution: 442 + { 443 + integrity: sha512-cWLAWtT3kNLHSvP4RKDzSTX9o0wvQEEAj4SKvhWuOVZxiDAeQazr9A+PSiRILK1VYMLeDml89ohxCnUNQNQNCw==, 444 + } 445 cpu: [x64] 446 os: [linux] 447 448 + "@cbor-extract/cbor-extract-win32-x64@2.2.0": 449 + resolution: 450 + { 451 + integrity: sha512-l2M+Z8DO2vbvADOBNLbbh9y5ST1RY5sqkWOg/58GkUPBYou/cuNZ68SGQ644f1CvZ8kcOxyZtw06+dxWHIoN/w==, 452 + } 453 cpu: [x64] 454 os: [win32] 455 456 + "@ctrl/tinycolor@3.6.1": 457 + resolution: 458 + { 459 + integrity: sha512-SITSV6aIXsuVNV3f3O0f2n/cgyEDWoSqtZMYiAmcsYHydcKrOz3gUxB/iXd/Qf08+IZX4KpgNbvUdMBmWz+kcA==, 460 + } 461 + engines: { node: ">=10" } 462 463 + "@emnapi/runtime@1.5.0": 464 + resolution: 465 + { 466 + integrity: sha512-97/BJ3iXHww3djw6hYIfErCZFee7qCtrneuLa20UXFCOTCfBM2cvQHjWJ2EG0s0MtdNwInarqCTz35i4wWXHsQ==, 467 + } 468 469 + "@emotion/hash@0.9.2": 470 + resolution: 471 + { 472 + integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==, 473 + } 474 475 + "@esbuild/aix-ppc64@0.21.5": 476 + resolution: 477 + { 478 + integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==, 479 + } 480 + engines: { node: ">=12" } 481 cpu: [ppc64] 482 os: [aix] 483 484 + "@esbuild/aix-ppc64@0.25.10": 485 + resolution: 486 + { 487 + integrity: sha512-0NFWnA+7l41irNuaSVlLfgNT12caWJVLzp5eAVhZ0z1qpxbockccEt3s+149rE64VUI3Ml2zt8Nv5JVc4QXTsw==, 488 + } 489 + engines: { node: ">=18" } 490 cpu: [ppc64] 491 os: [aix] 492 493 + "@esbuild/android-arm64@0.21.5": 494 + resolution: 495 + { 496 + integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==, 497 + } 498 + engines: { node: ">=12" } 499 cpu: [arm64] 500 os: [android] 501 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" } 508 cpu: [arm64] 509 os: [android] 510 511 + "@esbuild/android-arm@0.21.5": 512 + resolution: 513 + { 514 + integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==, 515 + } 516 + engines: { node: ">=12" } 517 cpu: [arm] 518 os: [android] 519 520 + "@esbuild/android-arm@0.25.10": 521 + resolution: 522 + { 523 + integrity: sha512-dQAxF1dW1C3zpeCDc5KqIYuZ1tgAdRXNoZP7vkBIRtKZPYe2xVr/d3SkirklCHudW1B45tGiUlz2pUWDfbDD4w==, 524 + } 525 + engines: { node: ">=18" } 526 cpu: [arm] 527 os: [android] 528 529 + "@esbuild/android-x64@0.21.5": 530 + resolution: 531 + { 532 + integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==, 533 + } 534 + engines: { node: ">=12" } 535 cpu: [x64] 536 os: [android] 537 538 + "@esbuild/android-x64@0.25.10": 539 + resolution: 540 + { 541 + integrity: sha512-MiC9CWdPrfhibcXwr39p9ha1x0lZJ9KaVfvzA0Wxwz9ETX4v5CHfF09bx935nHlhi+MxhA63dKRRQLiVgSUtEg==, 542 + } 543 + engines: { node: ">=18" } 544 cpu: [x64] 545 os: [android] 546 547 + "@esbuild/darwin-arm64@0.21.5": 548 + resolution: 549 + { 550 + integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==, 551 + } 552 + engines: { node: ">=12" } 553 cpu: [arm64] 554 os: [darwin] 555 556 + "@esbuild/darwin-arm64@0.25.10": 557 + resolution: 558 + { 559 + integrity: sha512-JC74bdXcQEpW9KkV326WpZZjLguSZ3DfS8wrrvPMHgQOIEIG/sPXEN/V8IssoJhbefLRcRqw6RQH2NnpdprtMA==, 560 + } 561 + engines: { node: ">=18" } 562 cpu: [arm64] 563 os: [darwin] 564 565 + "@esbuild/darwin-x64@0.21.5": 566 + resolution: 567 + { 568 + integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==, 569 + } 570 + engines: { node: ">=12" } 571 cpu: [x64] 572 os: [darwin] 573 574 + "@esbuild/darwin-x64@0.25.10": 575 + resolution: 576 + { 577 + integrity: sha512-tguWg1olF6DGqzws97pKZ8G2L7Ig1vjDmGTwcTuYHbuU6TTjJe5FXbgs5C1BBzHbJ2bo1m3WkQDbWO2PvamRcg==, 578 + } 579 + engines: { node: ">=18" } 580 cpu: [x64] 581 os: [darwin] 582 583 + "@esbuild/freebsd-arm64@0.21.5": 584 + resolution: 585 + { 586 + integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==, 587 + } 588 + engines: { node: ">=12" } 589 cpu: [arm64] 590 os: [freebsd] 591 592 + "@esbuild/freebsd-arm64@0.25.10": 593 + resolution: 594 + { 595 + integrity: sha512-3ZioSQSg1HT2N05YxeJWYR+Libe3bREVSdWhEEgExWaDtyFbbXWb49QgPvFH8u03vUPX10JhJPcz7s9t9+boWg==, 596 + } 597 + engines: { node: ">=18" } 598 cpu: [arm64] 599 os: [freebsd] 600 601 + "@esbuild/freebsd-x64@0.21.5": 602 + resolution: 603 + { 604 + integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==, 605 + } 606 + engines: { node: ">=12" } 607 cpu: [x64] 608 os: [freebsd] 609 610 + "@esbuild/freebsd-x64@0.25.10": 611 + resolution: 612 + { 613 + integrity: sha512-LLgJfHJk014Aa4anGDbh8bmI5Lk+QidDmGzuC2D+vP7mv/GeSN+H39zOf7pN5N8p059FcOfs2bVlrRr4SK9WxA==, 614 + } 615 + engines: { node: ">=18" } 616 cpu: [x64] 617 os: [freebsd] 618 619 + "@esbuild/linux-arm64@0.21.5": 620 + resolution: 621 + { 622 + integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==, 623 + } 624 + engines: { node: ">=12" } 625 cpu: [arm64] 626 os: [linux] 627 628 + "@esbuild/linux-arm64@0.25.10": 629 + resolution: 630 + { 631 + integrity: sha512-5luJWN6YKBsawd5f9i4+c+geYiVEw20FVW5x0v1kEMWNq8UctFjDiMATBxLvmmHA4bf7F6hTRaJgtghFr9iziQ==, 632 + } 633 + engines: { node: ">=18" } 634 cpu: [arm64] 635 os: [linux] 636 637 + "@esbuild/linux-arm@0.21.5": 638 + resolution: 639 + { 640 + integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==, 641 + } 642 + engines: { node: ">=12" } 643 cpu: [arm] 644 os: [linux] 645 646 + "@esbuild/linux-arm@0.25.10": 647 + resolution: 648 + { 649 + integrity: sha512-oR31GtBTFYCqEBALI9r6WxoU/ZofZl962pouZRTEYECvNF/dtXKku8YXcJkhgK/beU+zedXfIzHijSRapJY3vg==, 650 + } 651 + engines: { node: ">=18" } 652 cpu: [arm] 653 os: [linux] 654 655 + "@esbuild/linux-ia32@0.21.5": 656 + resolution: 657 + { 658 + integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==, 659 + } 660 + engines: { node: ">=12" } 661 cpu: [ia32] 662 os: [linux] 663 664 + "@esbuild/linux-ia32@0.25.10": 665 + resolution: 666 + { 667 + integrity: sha512-NrSCx2Kim3EnnWgS4Txn0QGt0Xipoumb6z6sUtl5bOEZIVKhzfyp/Lyw4C1DIYvzeW/5mWYPBFJU3a/8Yr75DQ==, 668 + } 669 + engines: { node: ">=18" } 670 cpu: [ia32] 671 os: [linux] 672 673 + "@esbuild/linux-loong64@0.21.5": 674 + resolution: 675 + { 676 + integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==, 677 + } 678 + engines: { node: ">=12" } 679 cpu: [loong64] 680 os: [linux] 681 682 + "@esbuild/linux-loong64@0.25.10": 683 + resolution: 684 + { 685 + integrity: sha512-xoSphrd4AZda8+rUDDfD9J6FUMjrkTz8itpTITM4/xgerAZZcFW7Dv+sun7333IfKxGG8gAq+3NbfEMJfiY+Eg==, 686 + } 687 + engines: { node: ">=18" } 688 cpu: [loong64] 689 os: [linux] 690 691 + "@esbuild/linux-mips64el@0.21.5": 692 + resolution: 693 + { 694 + integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==, 695 + } 696 + engines: { node: ">=12" } 697 cpu: [mips64el] 698 os: [linux] 699 700 + "@esbuild/linux-mips64el@0.25.10": 701 + resolution: 702 + { 703 + integrity: sha512-ab6eiuCwoMmYDyTnyptoKkVS3k8fy/1Uvq7Dj5czXI6DF2GqD2ToInBI0SHOp5/X1BdZ26RKc5+qjQNGRBelRA==, 704 + } 705 + engines: { node: ">=18" } 706 cpu: [mips64el] 707 os: [linux] 708 709 + "@esbuild/linux-ppc64@0.21.5": 710 + resolution: 711 + { 712 + integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==, 713 + } 714 + engines: { node: ">=12" } 715 cpu: [ppc64] 716 os: [linux] 717 718 + "@esbuild/linux-ppc64@0.25.10": 719 + resolution: 720 + { 721 + integrity: sha512-NLinzzOgZQsGpsTkEbdJTCanwA5/wozN9dSgEl12haXJBzMTpssebuXR42bthOF3z7zXFWH1AmvWunUCkBE4EA==, 722 + } 723 + engines: { node: ">=18" } 724 cpu: [ppc64] 725 os: [linux] 726 727 + "@esbuild/linux-riscv64@0.21.5": 728 + resolution: 729 + { 730 + integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==, 731 + } 732 + engines: { node: ">=12" } 733 cpu: [riscv64] 734 os: [linux] 735 736 + "@esbuild/linux-riscv64@0.25.10": 737 + resolution: 738 + { 739 + integrity: sha512-FE557XdZDrtX8NMIeA8LBJX3dC2M8VGXwfrQWU7LB5SLOajfJIxmSdyL/gU1m64Zs9CBKvm4UAuBp5aJ8OgnrA==, 740 + } 741 + engines: { node: ">=18" } 742 cpu: [riscv64] 743 os: [linux] 744 745 + "@esbuild/linux-s390x@0.21.5": 746 + resolution: 747 + { 748 + integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==, 749 + } 750 + engines: { node: ">=12" } 751 cpu: [s390x] 752 os: [linux] 753 754 + "@esbuild/linux-s390x@0.25.10": 755 + resolution: 756 + { 757 + integrity: sha512-3BBSbgzuB9ajLoVZk0mGu+EHlBwkusRmeNYdqmznmMc9zGASFjSsxgkNsqmXugpPk00gJ0JNKh/97nxmjctdew==, 758 + } 759 + engines: { node: ">=18" } 760 cpu: [s390x] 761 os: [linux] 762 763 + "@esbuild/linux-x64@0.21.5": 764 + resolution: 765 + { 766 + integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==, 767 + } 768 + engines: { node: ">=12" } 769 cpu: [x64] 770 os: [linux] 771 772 + "@esbuild/linux-x64@0.25.10": 773 + resolution: 774 + { 775 + integrity: sha512-QSX81KhFoZGwenVyPoberggdW1nrQZSvfVDAIUXr3WqLRZGZqWk/P4T8p2SP+de2Sr5HPcvjhcJzEiulKgnxtA==, 776 + } 777 + engines: { node: ">=18" } 778 cpu: [x64] 779 os: [linux] 780 781 + "@esbuild/netbsd-arm64@0.25.10": 782 + resolution: 783 + { 784 + integrity: sha512-AKQM3gfYfSW8XRk8DdMCzaLUFB15dTrZfnX8WXQoOUpUBQ+NaAFCP1kPS/ykbbGYz7rxn0WS48/81l9hFl3u4A==, 785 + } 786 + engines: { node: ">=18" } 787 cpu: [arm64] 788 os: [netbsd] 789 790 + "@esbuild/netbsd-x64@0.21.5": 791 + resolution: 792 + { 793 + integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==, 794 + } 795 + engines: { node: ">=12" } 796 cpu: [x64] 797 os: [netbsd] 798 799 + "@esbuild/netbsd-x64@0.25.10": 800 + resolution: 801 + { 802 + integrity: sha512-7RTytDPGU6fek/hWuN9qQpeGPBZFfB4zZgcz2VK2Z5VpdUxEI8JKYsg3JfO0n/Z1E/6l05n0unDCNc4HnhQGig==, 803 + } 804 + engines: { node: ">=18" } 805 cpu: [x64] 806 os: [netbsd] 807 808 + "@esbuild/openbsd-arm64@0.25.10": 809 + resolution: 810 + { 811 + integrity: sha512-5Se0VM9Wtq797YFn+dLimf2Zx6McttsH2olUBsDml+lm0GOCRVebRWUvDtkY4BWYv/3NgzS8b/UM3jQNh5hYyw==, 812 + } 813 + engines: { node: ">=18" } 814 cpu: [arm64] 815 os: [openbsd] 816 817 + "@esbuild/openbsd-x64@0.21.5": 818 + resolution: 819 + { 820 + integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==, 821 + } 822 + engines: { node: ">=12" } 823 cpu: [x64] 824 os: [openbsd] 825 826 + "@esbuild/openbsd-x64@0.25.10": 827 + resolution: 828 + { 829 + integrity: sha512-XkA4frq1TLj4bEMB+2HnI0+4RnjbuGZfet2gs/LNs5Hc7D89ZQBHQ0gL2ND6Lzu1+QVkjp3x1gIcPKzRNP8bXw==, 830 + } 831 + engines: { node: ">=18" } 832 cpu: [x64] 833 os: [openbsd] 834 835 + "@esbuild/openharmony-arm64@0.25.10": 836 + resolution: 837 + { 838 + integrity: sha512-AVTSBhTX8Y/Fz6OmIVBip9tJzZEUcY8WLh7I59+upa5/GPhh2/aM6bvOMQySspnCCHvFi79kMtdJS1w0DXAeag==, 839 + } 840 + engines: { node: ">=18" } 841 cpu: [arm64] 842 os: [openharmony] 843 844 + "@esbuild/sunos-x64@0.21.5": 845 + resolution: 846 + { 847 + integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==, 848 + } 849 + engines: { node: ">=12" } 850 cpu: [x64] 851 os: [sunos] 852 853 + "@esbuild/sunos-x64@0.25.10": 854 + resolution: 855 + { 856 + integrity: sha512-fswk3XT0Uf2pGJmOpDB7yknqhVkJQkAQOcW/ccVOtfx05LkbWOaRAtn5SaqXypeKQra1QaEa841PgrSL9ubSPQ==, 857 + } 858 + engines: { node: ">=18" } 859 cpu: [x64] 860 os: [sunos] 861 862 + "@esbuild/win32-arm64@0.21.5": 863 + resolution: 864 + { 865 + integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==, 866 + } 867 + engines: { node: ">=12" } 868 cpu: [arm64] 869 os: [win32] 870 871 + "@esbuild/win32-arm64@0.25.10": 872 + resolution: 873 + { 874 + integrity: sha512-ah+9b59KDTSfpaCg6VdJoOQvKjI33nTaQr4UluQwW7aEwZQsbMCfTmfEO4VyewOxx4RaDT/xCy9ra2GPWmO7Kw==, 875 + } 876 + engines: { node: ">=18" } 877 cpu: [arm64] 878 os: [win32] 879 880 + "@esbuild/win32-ia32@0.21.5": 881 + resolution: 882 + { 883 + integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==, 884 + } 885 + engines: { node: ">=12" } 886 cpu: [ia32] 887 os: [win32] 888 889 + "@esbuild/win32-ia32@0.25.10": 890 + resolution: 891 + { 892 + integrity: sha512-QHPDbKkrGO8/cz9LKVnJU22HOi4pxZnZhhA2HYHez5Pz4JeffhDjf85E57Oyco163GnzNCVkZK0b/n4Y0UHcSw==, 893 + } 894 + engines: { node: ">=18" } 895 cpu: [ia32] 896 os: [win32] 897 898 + "@esbuild/win32-x64@0.21.5": 899 + resolution: 900 + { 901 + integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==, 902 + } 903 + engines: { node: ">=12" } 904 cpu: [x64] 905 os: [win32] 906 907 + "@esbuild/win32-x64@0.25.10": 908 + resolution: 909 + { 910 + integrity: sha512-9KpxSVFCu0iK1owoez6aC/s/EdUQLDN3adTxGCqxMVhrPDj6bt5dbrHDXUuq+Bs2vATFBBrQS5vdQ/Ed2P+nbw==, 911 + } 912 + engines: { node: ">=18" } 913 cpu: [x64] 914 os: [win32] 915 916 + "@floating-ui/core@1.7.3": 917 + resolution: 918 + { 919 + integrity: sha512-sGnvb5dmrJaKEZ+LDIpguvdX3bDlEllmv4/ClQ9awcmCZrlx5jQyyMWFM5kBI+EyNOCDDiKk8il0zeuX3Zlg/w==, 920 + } 921 922 + "@floating-ui/devtools@0.2.3": 923 + resolution: 924 + { 925 + integrity: sha512-ZTcxTvgo9CRlP7vJV62yCxdqmahHTGpSTi5QaTDgGoyQq0OyjaVZhUhXv/qdkQFOI3Sxlfmz0XGG4HaZMsDf8Q==, 926 + } 927 peerDependencies: 928 + "@floating-ui/dom": ^1.0.0 929 930 + "@floating-ui/dom@1.7.4": 931 + resolution: 932 + { 933 + integrity: sha512-OOchDgh4F2CchOX94cRVqhvy7b3AFb+/rQXyswmzmGakRfkMgoWVjfnLWkRirfLEfuD4ysVW16eXzwt3jHIzKA==, 934 + } 935 936 + "@floating-ui/utils@0.2.10": 937 + resolution: 938 + { 939 + integrity: sha512-aGTxbpbg8/b5JfU1HXSrbH3wXZuLPJcNEcZQFMxLs3oSzgtVu6nFPkbbGGUvBcUjKV2YyB9Wxxabo+HEH9tcRQ==, 940 + } 941 942 + "@fluentui/keyboard-keys@9.0.8": 943 + resolution: 944 + { 945 + integrity: sha512-iUSJUUHAyTosnXK8O2Ilbfxma+ZyZPMua5vB028Ys96z80v+LFwntoehlFsdH3rMuPsA8GaC1RE7LMezwPBPdw==, 946 + } 947 948 + "@fluentui/priority-overflow@9.2.0": 949 + resolution: 950 + { 951 + integrity: sha512-uwB5drtNGeEdLO3CEzM/VolyzkywIgpNhuOzFrLbKFxq20kCqteRDkUJIySgYu/+rK+Cyl8xiKmLzey49nlocg==, 952 + } 953 954 + "@fluentui/react-accordion@9.8.8": 955 + resolution: 956 + { 957 + integrity: sha512-jicuHHlFK7Tsh0gx1FWKpgZixaZMBU1Nw751cGerL7XGF1OODBXCPqbmvZBSe/xLzfKj250EfDQ3V/5EGt6tcg==, 958 + } 959 peerDependencies: 960 + "@types/react": ">=16.14.0 <20.0.0" 961 + "@types/react-dom": ">=16.9.0 <20.0.0" 962 + react: ">=16.14.0 <20.0.0" 963 + react-dom: ">=16.14.0 <20.0.0" 964 965 + "@fluentui/react-alert@9.0.0-beta.124": 966 + resolution: 967 + { 968 + integrity: sha512-yFBo3B5H9hnoaXxlkuz8wRz04DEyQ+ElYA/p5p+Vojf19Zuta8DmFZZ6JtWdtxcdnnQ4LvAfC5OYYlzdReozPA==, 969 + } 970 peerDependencies: 971 + "@types/react": ">=16.14.0 <19.0.0" 972 + "@types/react-dom": ">=16.9.0 <19.0.0" 973 + react: ">=16.14.0 <19.0.0" 974 + react-dom: ">=16.14.0 <19.0.0" 975 976 + "@fluentui/react-aria@9.17.1": 977 + resolution: 978 + { 979 + integrity: sha512-OmHqfHpVQZV6M8pZpl7QYmEoQuKbrDMboLWUzvAH9FxCjYQljNfgYyUKy5aP+gPJIKsO90mUUIbGY1LRH4e3fQ==, 980 + } 981 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" 986 987 + "@fluentui/react-avatar@9.9.7": 988 + resolution: 989 + { 990 + integrity: sha512-T5zZGXta1sWbnxG5Dr+DzV9oxbab5Diws9V4ztcBWsBCowViPh8sZ6y/dSd/dnML3uWhMwNeW6dwPubA94pdAQ==, 991 + } 992 peerDependencies: 993 + "@types/react": ">=16.14.0 <20.0.0" 994 + "@types/react-dom": ">=16.9.0 <20.0.0" 995 + react: ">=16.14.0 <20.0.0" 996 + react-dom: ">=16.14.0 <20.0.0" 997 998 + "@fluentui/react-badge@9.4.6": 999 + resolution: 1000 + { 1001 + integrity: sha512-WxmUMcw5VthyeZrNAaSPLaMp+0F5g+Z9KZXH2ENAh0xM+BoWQjfruWUlTuMVT4rlmQcUEd7rz4rXjyflMoFzIQ==, 1002 + } 1003 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" 1008 1009 + "@fluentui/react-breadcrumb@9.3.7": 1010 + resolution: 1011 + { 1012 + integrity: sha512-NbSHxHpEKvTC0IeLIZg+NM8Kf6sL0VeMd8DgId1Py+XnUI4PpI7glJ1JovhSenMWL3kPNX7qPeFcxbtHn3BowA==, 1013 + } 1014 peerDependencies: 1015 + "@types/react": ">=16.14.0 <20.0.0" 1016 + "@types/react-dom": ">=16.9.0 <20.0.0" 1017 + react: ">=16.14.0 <20.0.0" 1018 + react-dom: ">=16.14.0 <20.0.0" 1019 1020 + "@fluentui/react-button@9.6.7": 1021 + resolution: 1022 + { 1023 + integrity: sha512-les2Fwej/nCOpf+jZigqX/+cspdwZLZgKuGbbOQ/70f8bOOBB+pXft795wpFKcjncRIGLa+ABjZbc4eTbUYuJQ==, 1024 + } 1025 peerDependencies: 1026 + "@types/react": ">=16.14.0 <20.0.0" 1027 + "@types/react-dom": ">=16.9.0 <20.0.0" 1028 + react: ">=16.14.0 <20.0.0" 1029 + react-dom: ">=16.14.0 <20.0.0" 1030 1031 + "@fluentui/react-card@9.5.1": 1032 + resolution: 1033 + { 1034 + integrity: sha512-ZaNkQFjsmaDFKD+EsOwpCcLWOt+ZHZ2AWRkW4OK3cUzPSpqa/7Wa6eMUpsvOeSfritLnwTv9XFfrpmFSgXV8PQ==, 1035 + } 1036 peerDependencies: 1037 + "@types/react": ">=16.14.0 <20.0.0" 1038 + "@types/react-dom": ">=16.9.0 <20.0.0" 1039 + react: ">=16.14.0 <20.0.0" 1040 + react-dom: ">=16.14.0 <20.0.0" 1041 1042 + "@fluentui/react-carousel@9.8.7": 1043 + resolution: 1044 + { 1045 + integrity: sha512-Bdw0yAA4U7X+nzhjgtTeL/Xmupu4uYurO38VmZiC7jmKLq1jqE8YjA+u5eFuyEG/Nc9auThFkES6vhDcPnezDw==, 1046 + } 1047 peerDependencies: 1048 + "@types/react": ">=16.14.0 <20.0.0" 1049 + "@types/react-dom": ">=16.9.0 <20.0.0" 1050 + react: ">=16.14.0 <20.0.0" 1051 + react-dom: ">=16.14.0 <20.0.0" 1052 1053 + "@fluentui/react-checkbox@9.5.6": 1054 + resolution: 1055 + { 1056 + integrity: sha512-nUOnn0MMrIZAEFkB664qYdXzUG7G6pA4IWCd1KtS5/jn01s29+nDLDuwgNXVD6jGZ+VLGo0ZEJ8+SJowsddFCA==, 1057 + } 1058 peerDependencies: 1059 + "@types/react": ">=16.14.0 <20.0.0" 1060 + "@types/react-dom": ">=16.9.0 <20.0.0" 1061 + react: ">=16.14.0 <20.0.0" 1062 + react-dom: ">=16.14.0 <20.0.0" 1063 1064 + "@fluentui/react-color-picker@9.2.6": 1065 + resolution: 1066 + { 1067 + integrity: sha512-CYgSbG8yTTEW1Jf2LVJS6dvFN8NQFB24HazmU42+ZmnSJX/qAYMAmxOA0F3apV2ziOitnjrdUYeRqHPMsaAdqA==, 1068 + } 1069 peerDependencies: 1070 + "@types/react": ">=16.14.0 <20.0.0" 1071 + "@types/react-dom": ">=16.9.0 <20.0.0" 1072 + react: ">=16.14.0 <20.0.0" 1073 + react-dom: ">=16.14.0 <20.0.0" 1074 1075 + "@fluentui/react-combobox@9.16.7": 1076 + resolution: 1077 + { 1078 + integrity: sha512-n3Y+bqD1c9fCUY8kbdsteMJT8VMuwr3pn0JvdCXsDiRxL7z9W1j/vFn+9gIAVC6okRhhwLwoi4wXoXDnPD907g==, 1079 + } 1080 peerDependencies: 1081 + "@types/react": ">=16.14.0 <20.0.0" 1082 + "@types/react-dom": ">=16.9.0 <20.0.0" 1083 + react: ">=16.14.0 <20.0.0" 1084 + react-dom: ">=16.14.0 <20.0.0" 1085 1086 + "@fluentui/react-components@9.69.0": 1087 + resolution: 1088 + { 1089 + integrity: sha512-iw6gZVdAMPgPLbAwwAcA+2wRfeHdV27tRMPfrNYnFlXMAYfcXQvWjxeD8XTL5j2PYfOhRJjnWvjL0srJjjMcfA==, 1090 + } 1091 peerDependencies: 1092 + "@types/react": ">=16.14.0 <19.0.0" 1093 + "@types/react-dom": ">=16.9.0 <19.0.0" 1094 + react: ">=16.14.0 <19.0.0" 1095 + react-dom: ">=16.14.0 <19.0.0" 1096 1097 + "@fluentui/react-context-selector@9.2.8": 1098 + resolution: 1099 + { 1100 + integrity: sha512-mh7Phvz6S4LQGuoRLCtqoAOP66JrbHyzrUynSK5yR4V+WRhBH0QNC/eOeivocV8wSQWV9YlCmRYm9hNEvOqi1Q==, 1101 + } 1102 peerDependencies: 1103 + "@types/react": ">=16.14.0 <20.0.0" 1104 + "@types/react-dom": ">=16.9.0 <20.0.0" 1105 + react: ">=16.14.0 <20.0.0" 1106 + react-dom: ">=16.14.0 <20.0.0" 1107 + scheduler: ">=0.19.0 <=0.23.0" 1108 1109 + "@fluentui/react-dialog@9.15.3": 1110 + resolution: 1111 + { 1112 + integrity: sha512-GtGUXVoNttsI7NuHMkhtLbJpjUw5ovIWKH3CMpdlgmnispdd4jYYYyTVDapG+9VJvYesHXI00yOoBM1ymtVrJA==, 1113 + } 1114 peerDependencies: 1115 + "@types/react": ">=16.14.0 <20.0.0" 1116 + "@types/react-dom": ">=16.9.0 <20.0.0" 1117 + react: ">=16.14.0 <20.0.0" 1118 + react-dom: ">=16.14.0 <20.0.0" 1119 1120 + "@fluentui/react-divider@9.4.6": 1121 + resolution: 1122 + { 1123 + integrity: sha512-pIk5mvkXQRR+rZkOg62vn2rWS//eikvm+jLn3E4e+qy59BQhXufI1aGw2gcZG3WTpeHHtRMbDD/xauEkMdrg7A==, 1124 + } 1125 peerDependencies: 1126 + "@types/react": ">=16.14.0 <20.0.0" 1127 + "@types/react-dom": ">=16.9.0 <20.0.0" 1128 + react: ">=16.14.0 <20.0.0" 1129 + react-dom: ">=16.14.0 <20.0.0" 1130 1131 + "@fluentui/react-drawer@9.10.3": 1132 + resolution: 1133 + { 1134 + integrity: sha512-HLr41jlQ1QFgk1iD0u/Cu+2uoQl2lMaMj7/CERina0SIneof+skt61WQdUtntEKidM0fyHfU41PUDySWXYKLtg==, 1135 + } 1136 peerDependencies: 1137 + "@types/react": ">=16.14.0 <20.0.0" 1138 + "@types/react-dom": ">=16.9.0 <20.0.0" 1139 + react: ">=16.14.0 <20.0.0" 1140 + react-dom: ">=16.14.0 <20.0.0" 1141 1142 + "@fluentui/react-field@9.4.6": 1143 + resolution: 1144 + { 1145 + integrity: sha512-Xk/bNYhL2bLMO/mdoZrGX05Ga51QQVVC0wyqvcv5yv4l3s3oLcxb9pZCVgexzQOOUNUAaxz5QDOBHRjv7KT2xg==, 1146 + } 1147 peerDependencies: 1148 + "@types/react": ">=16.14.0 <20.0.0" 1149 + "@types/react-dom": ">=16.9.0 <20.0.0" 1150 + react: ">=16.14.0 <20.0.0" 1151 + react-dom: ">=16.14.0 <20.0.0" 1152 1153 + "@fluentui/react-icons@2.0.311": 1154 + resolution: 1155 + { 1156 + integrity: sha512-njTCiHki4gxtB0ebFFIy8jC+9xFqIbnqzFGO+3mixSjUIn/wl0NKUVzXiXcaYUx6d0okEAiYgciuT7eQjJhW8Q==, 1157 + } 1158 peerDependencies: 1159 + react: ">=16.8.0 <20.0.0" 1160 1161 + "@fluentui/react-image@9.3.6": 1162 + resolution: 1163 + { 1164 + integrity: sha512-khdxM+h+A+d5fcFZG+mZinTGy6x38QBkjxvhly4TFJHIVziuF+mbB3vpf4J0TwynZOMiza3D174kvrK3x5yyvw==, 1165 + } 1166 peerDependencies: 1167 + "@types/react": ">=16.14.0 <20.0.0" 1168 + "@types/react-dom": ">=16.9.0 <20.0.0" 1169 + react: ">=16.14.0 <20.0.0" 1170 + react-dom: ">=16.14.0 <20.0.0" 1171 1172 + "@fluentui/react-infobutton@9.0.0-beta.102": 1173 + resolution: 1174 + { 1175 + integrity: sha512-3kA4F0Vga8Ds6JGlBajLCCDOo/LmPuS786Wg7ui4ZTDYVIMzy1yp2XuVcZniifBFvEp0HQCUoDPWUV0VI3FfzQ==, 1176 + } 1177 peerDependencies: 1178 + "@types/react": ">=16.14.0 <19.0.0" 1179 + "@types/react-dom": ">=16.9.0 <19.0.0" 1180 + react: ">=16.14.0 <19.0.0" 1181 + react-dom: ">=16.14.0 <19.0.0" 1182 1183 + "@fluentui/react-infolabel@9.4.7": 1184 + resolution: 1185 + { 1186 + integrity: sha512-JHhIML6Wv+X0w+qyRYDx9GH8tUU0dCN3lAodI/02w+3do2a6ychRjoEa/7Aa9gA2wYxAuz7TC6hzfdcI4ec//Q==, 1187 + } 1188 peerDependencies: 1189 + "@types/react": ">=16.8.0 <20.0.0" 1190 + "@types/react-dom": ">=16.8.0 <20.0.0" 1191 + react: ">=16.14.0 <20.0.0" 1192 + react-dom: ">=16.8.0 <20.0.0" 1193 1194 + "@fluentui/react-input@9.7.6": 1195 + resolution: 1196 + { 1197 + integrity: sha512-s+f5kznbm2McheAAz868Lre1+xzCinVJm4eNiuKXJzTSCiLsdlE27xWjv2+Lzh1du4HLC+arUkdZ+HCLg5Kvug==, 1198 + } 1199 peerDependencies: 1200 + "@types/react": ">=16.14.0 <20.0.0" 1201 + "@types/react-dom": ">=16.9.0 <20.0.0" 1202 + react: ">=16.14.0 <20.0.0" 1203 + react-dom: ">=16.14.0 <20.0.0" 1204 1205 + "@fluentui/react-jsx-runtime@9.2.1": 1206 + resolution: 1207 + { 1208 + integrity: sha512-qfkqqYqKbqMEXk+yxnQ+L88yEi9CWzCmYHyZQ5Xhk6wfKyNAWYv/otConKLzbWJWnbpEq0zgysqqeJT/LYAoDg==, 1209 + } 1210 peerDependencies: 1211 + "@types/react": ">=16.14.0 <20.0.0" 1212 + react: ">=16.14.0 <20.0.0" 1213 1214 + "@fluentui/react-label@9.3.6": 1215 + resolution: 1216 + { 1217 + integrity: sha512-3mnDaoZrPuMTeJdXUQkNBMvhrq/qYw3UFKO6lfqu4701FCggLk2kdqcUqx5ViKEgEtRELrDjbilOYapagZvpag==, 1218 + } 1219 peerDependencies: 1220 + "@types/react": ">=16.14.0 <20.0.0" 1221 + "@types/react-dom": ">=16.9.0 <20.0.0" 1222 + react: ">=16.14.0 <20.0.0" 1223 + react-dom: ">=16.14.0 <20.0.0" 1224 1225 + "@fluentui/react-link@9.6.6": 1226 + resolution: 1227 + { 1228 + integrity: sha512-b6hQLNK7L/HJ85XneVszKmnEhxf20DQImcRlMUcdHediJTFuCjoat3DHE6mFNjZEZSfQJTbDsH7rqwA0TOiuvg==, 1229 + } 1230 peerDependencies: 1231 + "@types/react": ">=16.14.0 <20.0.0" 1232 + "@types/react-dom": ">=16.9.0 <20.0.0" 1233 + react: ">=16.14.0 <20.0.0" 1234 + react-dom: ">=16.14.0 <20.0.0" 1235 1236 + "@fluentui/react-list@9.6.1": 1237 + resolution: 1238 + { 1239 + integrity: sha512-eoYupnsGDGKfpfcOfXhyCHuXz9jiIRmEYZXcrk1fCK+9KYEaSZ3gAqPFY/FWq5xDLs0+exyECfDPAstb7R1fxg==, 1240 + } 1241 peerDependencies: 1242 + "@types/react": ">=16.8.0 <20.0.0" 1243 + "@types/react-dom": ">=16.8.0 <20.0.0" 1244 + react: ">=16.14.0 <20.0.0" 1245 + react-dom: ">=16.8.0 <20.0.0" 1246 1247 + "@fluentui/react-menu@9.20.0": 1248 + resolution: 1249 + { 1250 + integrity: sha512-zKgavux8mhd+H6544hACS+OYG8fi53ndZtocJqTF85ebBA/ndHY2GFZcHLemifRKctjKQsYKNAekg2Bxu4QmgA==, 1251 + } 1252 peerDependencies: 1253 + "@types/react": ">=16.14.0 <20.0.0" 1254 + "@types/react-dom": ">=16.9.0 <20.0.0" 1255 + react: ">=16.14.0 <20.0.0" 1256 + react-dom: ">=16.14.0 <20.0.0" 1257 1258 + "@fluentui/react-message-bar@9.6.8": 1259 + resolution: 1260 + { 1261 + integrity: sha512-XSPOSLtXzW7xXqA5I1gJa88xyV+kwOPhgadmYfPEfTAOeqYYzCqnJnI5ZSnMgjDQuCotzgvLT/hGxTGIhb9MFw==, 1262 + } 1263 peerDependencies: 1264 + "@types/react": ">=16.8.0 <20.0.0" 1265 + "@types/react-dom": ">=16.8.0 <20.0.0" 1266 + react: ">=16.14.0 <20.0.0" 1267 + react-dom: ">=16.8.0 <20.0.0" 1268 1269 + "@fluentui/react-motion-components-preview@0.11.0": 1270 + resolution: 1271 + { 1272 + integrity: sha512-IIG3FI31AUaiyp56+4g9gx1J4W2UqUj0s6vpMB9zkIZ+KCFEq1x47H7b0kARHdGUc0voMY2OGPQQeewFcukUaw==, 1273 + } 1274 peerDependencies: 1275 + "@types/react": ">=16.14.0 <20.0.0" 1276 + "@types/react-dom": ">=16.9.0 <20.0.0" 1277 + react: ">=16.14.0 <20.0.0" 1278 + react-dom: ">=16.14.0 <20.0.0" 1279 1280 + "@fluentui/react-motion@9.11.0": 1281 + resolution: 1282 + { 1283 + integrity: sha512-X6MAw4zXsV9RwpE9WCVjz3Uwkjgl7A+q2lT+hy0wKSprASQ1g3HZJwTtS6cCuBNijUKge2wIhIquUuk0WCcWqA==, 1284 + } 1285 peerDependencies: 1286 + "@types/react": ">=16.8.0 <20.0.0" 1287 + "@types/react-dom": ">=16.8.0 <20.0.0" 1288 + react: ">=16.14.0 <20.0.0" 1289 + react-dom: ">=16.8.0 <20.0.0" 1290 1291 + "@fluentui/react-nav@9.3.8": 1292 + resolution: 1293 + { 1294 + integrity: sha512-UwFxa5qlBJLS7nNXLBVo9bhbxjIbIOSe2shAEJcOFK1ziPfOTUIBFalYvmSZGK1bNAq2lvuSY2lVMkiMHS7Y2Q==, 1295 + } 1296 peerDependencies: 1297 + "@types/react": ">=16.14.0 <20.0.0" 1298 + "@types/react-dom": ">=16.9.0 <20.0.0" 1299 + react: ">=16.14.0 <20.0.0" 1300 + react-dom: ">=16.14.0 <20.0.0" 1301 1302 + "@fluentui/react-overflow@9.6.0": 1303 + resolution: 1304 + { 1305 + integrity: sha512-ZzjBuNQXHEp84lGPzJOeZjPcsStugUEzzDiDp/0v9LdF3EZoBmq8/4Z7nZfqoTU+oHXOy2mGkhpCKTrXgawXOw==, 1306 + } 1307 peerDependencies: 1308 + "@types/react": ">=16.14.0 <20.0.0" 1309 + "@types/react-dom": ">=16.9.0 <20.0.0" 1310 + react: ">=16.14.0 <20.0.0" 1311 + react-dom: ">=16.14.0 <20.0.0" 1312 1313 + "@fluentui/react-persona@9.5.7": 1314 + resolution: 1315 + { 1316 + integrity: sha512-4dPcmnE4jX8IUgOxZu+aWQ+XhqTcJ5ISK1VwDxujH3JQbjOK/4aQjUBTwQWfRej0/lfT74ktD/CorcdB7Wz6CA==, 1317 + } 1318 peerDependencies: 1319 + "@types/react": ">=16.14.0 <20.0.0" 1320 + "@types/react-dom": ">=16.9.0 <20.0.0" 1321 + react: ">=16.14.0 <20.0.0" 1322 + react-dom: ">=16.14.0 <20.0.0" 1323 1324 + "@fluentui/react-popover@9.12.7": 1325 + resolution: 1326 + { 1327 + integrity: sha512-AkbtGCEG6OwpeXQ4RjorOw56Qnlh7ndf5Lb7P8x/2jmXyi2BusJy0qAJ9cqpt3n5Y31dt1dJ2e+DNk7A1tu23w==, 1328 + } 1329 peerDependencies: 1330 + "@types/react": ">=16.14.0 <20.0.0" 1331 + "@types/react-dom": ">=16.9.0 <20.0.0" 1332 + react: ">=16.14.0 <20.0.0" 1333 + react-dom: ">=16.14.0 <20.0.0" 1334 1335 + "@fluentui/react-portal@9.8.3": 1336 + resolution: 1337 + { 1338 + integrity: sha512-+i2TW9pQ/Oz7PAKxssbonStD4kcgkzsaKZrhTfK9rynSpy3YR4DpyHPzd/5ioJgSKFlqTnoBBCu5zVFohXI6gw==, 1339 + } 1340 peerDependencies: 1341 + "@types/react": ">=16.14.0 <20.0.0" 1342 + "@types/react-dom": ">=16.9.0 <20.0.0" 1343 + react: ">=16.14.0 <20.0.0" 1344 + react-dom: ">=16.14.0 <20.0.0" 1345 1346 + "@fluentui/react-positioning@9.20.6": 1347 + resolution: 1348 + { 1349 + integrity: sha512-g4/XRftuW/MztCC2pYVvlfHExmWRqOqgwQu9MoWglTuZFz9rSTTonCNSKJLIsZQYV9BpqFXDHUe8v+pqyDNZ2g==, 1350 + } 1351 peerDependencies: 1352 + "@types/react": ">=16.14.0 <20.0.0" 1353 + "@types/react-dom": ">=16.9.0 <20.0.0" 1354 + react: ">=16.14.0 <20.0.0" 1355 + react-dom: ">=16.14.0 <20.0.0" 1356 1357 + "@fluentui/react-progress@9.4.6": 1358 + resolution: 1359 + { 1360 + integrity: sha512-zDmSmsTGaM9rPk9lQ6wKcG8kkM9UHtzJdsXPfvPKj8K7gP1Oyha7yb5hIlX45q0YeWG+3nweQYz9WNnoAAAsQQ==, 1361 + } 1362 peerDependencies: 1363 + "@types/react": ">=16.14.0 <20.0.0" 1364 + "@types/react-dom": ">=16.9.0 <20.0.0" 1365 + react: ">=16.14.0 <20.0.0" 1366 + react-dom: ">=16.14.0 <20.0.0" 1367 1368 + "@fluentui/react-provider@9.22.6": 1369 + resolution: 1370 + { 1371 + integrity: sha512-vHShKHYeZptf+Jc6O+ZVGTjU0fo0OzqrzSpcEeQ9iuRF2XPvhTldE0Q67KYeCe5eQJsiDH7wYM6Hjt7UihNmOA==, 1372 + } 1373 peerDependencies: 1374 + "@types/react": ">=16.14.0 <20.0.0" 1375 + "@types/react-dom": ">=16.9.0 <20.0.0" 1376 + react: ">=16.14.0 <20.0.0" 1377 + react-dom: ">=16.14.0 <20.0.0" 1378 1379 + "@fluentui/react-radio@9.5.6": 1380 + resolution: 1381 + { 1382 + integrity: sha512-MT6AFJ3GuL5JgZ22xSbHlxO0RUVaJJUW5eq96zy2kqSSzyJxDLLhuNxkoMI/nnlEGlzkSipM5WOxutYfOhJTwQ==, 1383 + } 1384 peerDependencies: 1385 + "@types/react": ">=16.14.0 <20.0.0" 1386 + "@types/react-dom": ">=16.9.0 <20.0.0" 1387 + react: ">=16.14.0 <20.0.0" 1388 + react-dom: ">=16.14.0 <20.0.0" 1389 1390 + "@fluentui/react-rating@9.3.6": 1391 + resolution: 1392 + { 1393 + integrity: sha512-0mvmcyDDnUUrFOIrM15K1Ie+UTBF3iFL/FDaiTTelL3xlAHSOUksVKStkj4pFsvXb8xNgFjoACvM+COV7DRSLg==, 1394 + } 1395 peerDependencies: 1396 + "@types/react": ">=16.8.0 <20.0.0" 1397 + "@types/react-dom": ">=16.8.0 <20.0.0" 1398 + react: ">=16.14.0 <20.0.0" 1399 + react-dom: ">=16.8.0 <20.0.0" 1400 1401 + "@fluentui/react-search@9.3.6": 1402 + resolution: 1403 + { 1404 + integrity: sha512-pvmzcBOqvrQaLiw0gk+Yg0YxFX/qGod3NhoZrXXAI7YrHItMbkqEcECZbtiyoPG+WV+IiSzTGzFw2BlTJq7FCg==, 1405 + } 1406 peerDependencies: 1407 + "@types/react": ">=16.14.0 <20.0.0" 1408 + "@types/react-dom": ">=16.9.0 <20.0.0" 1409 + react: ">=16.14.0 <20.0.0" 1410 + react-dom: ">=16.14.0 <20.0.0" 1411 1412 + "@fluentui/react-select@9.4.6": 1413 + resolution: 1414 + { 1415 + integrity: sha512-LJ0cl7w6TDsDK6TKQDij3O1TI8mwt3nzuoTcsMlgSQRJZMC/n4nSGRUmX0GHbLCtcWxfFJ3Vy+1e/9NydxLJqA==, 1416 + } 1417 peerDependencies: 1418 + "@types/react": ">=16.14.0 <20.0.0" 1419 + "@types/react-dom": ">=16.9.0 <20.0.0" 1420 + react: ">=16.14.0 <20.0.0" 1421 + react-dom: ">=16.14.0 <20.0.0" 1422 1423 + "@fluentui/react-shared-contexts@9.25.2": 1424 + resolution: 1425 + { 1426 + integrity: sha512-PxDVy6RPps3gqee/RESIMXzOlrlVOQ/uQffFMeVniqjW0IPwCs/d2TwJT1Sfh9DCFgnI9onD0GGlBelszzRjmA==, 1427 + } 1428 peerDependencies: 1429 + "@types/react": ">=16.14.0 <20.0.0" 1430 + react: ">=16.14.0 <20.0.0" 1431 1432 + "@fluentui/react-skeleton@9.4.6": 1433 + resolution: 1434 + { 1435 + integrity: sha512-AnGvW28A4equQ0j2uxZHDpwrOrqeE8ZqELhI7pIyRgSwQaIjaxjb0C3tlqQS9jl6456g8NE1hpoanb41ojtqNw==, 1436 + } 1437 peerDependencies: 1438 + "@types/react": ">=16.14.0 <20.0.0" 1439 + "@types/react-dom": ">=16.9.0 <20.0.0" 1440 + react: ">=16.14.0 <20.0.0" 1441 + react-dom: ">=16.14.0 <20.0.0" 1442 1443 + "@fluentui/react-slider@9.5.6": 1444 + resolution: 1445 + { 1446 + integrity: sha512-JoIDXA1GHB9n99EvxOxcxwy6nUVk/p2GYoQ9sWoAvf5QOEQjOsD2QHymtDoVoNWWUKfBE51A8XGnJ80uk0qAcA==, 1447 + } 1448 peerDependencies: 1449 + "@types/react": ">=16.14.0 <20.0.0" 1450 + "@types/react-dom": ">=16.9.0 <20.0.0" 1451 + react: ">=16.14.0 <20.0.0" 1452 + react-dom: ">=16.14.0 <20.0.0" 1453 1454 + "@fluentui/react-spinbutton@9.5.6": 1455 + resolution: 1456 + { 1457 + integrity: sha512-D+cDKaZjVh+3P/u+G9mcZSKO3riyYYr/D6n7zVhWaFxC2dZxHQpvtCG+8cj1Jgt8FjhZWby4wXKoQfEeja2Yzw==, 1458 + } 1459 peerDependencies: 1460 + "@types/react": ">=16.14.0 <20.0.0" 1461 + "@types/react-dom": ">=16.9.0 <20.0.0" 1462 + react: ">=16.14.0 <20.0.0" 1463 + react-dom: ">=16.14.0 <20.0.0" 1464 1465 + "@fluentui/react-spinner@9.7.6": 1466 + resolution: 1467 + { 1468 + integrity: sha512-vOJIXA3GI75n2hoVCWm10ZzqmCqKR5ZQV4naSd3koJ4cb/6AMYHGVzfy41KTuybTUtkPbN1RRfjFcwv9HGncew==, 1469 + } 1470 peerDependencies: 1471 + "@types/react": ">=16.14.0 <20.0.0" 1472 + "@types/react-dom": ">=16.9.0 <20.0.0" 1473 + react: ">=16.14.0 <20.0.0" 1474 + react-dom: ">=16.14.0 <20.0.0" 1475 1476 + "@fluentui/react-swatch-picker@9.4.6": 1477 + resolution: 1478 + { 1479 + integrity: sha512-c1ZJqjcpb+PjzqkHh9G3N3iXUq9t31b7HXdNwQJ2gKzi8kiGL8LFgmGCzhbUeGsZNmV0rkQAxfp6nzKGXSSr7g==, 1480 + } 1481 peerDependencies: 1482 + "@types/react": ">=16.8.0 <20.0.0" 1483 + "@types/react-dom": ">=16.8.0 <20.0.0" 1484 + react: ">=16.14.0 <20.0.0" 1485 + react-dom: ">=16.8.0 <20.0.0" 1486 1487 + "@fluentui/react-switch@9.4.6": 1488 + resolution: 1489 + { 1490 + integrity: sha512-FNMWwHbD7GxwtOZJArSc2wRo2Dg4l2VUjHTYBL5yeS4cmDnVjCaChMCDPHxocv86upw3Uom1VSWLssUzXRNN1w==, 1491 + } 1492 peerDependencies: 1493 + "@types/react": ">=16.14.0 <20.0.0" 1494 + "@types/react-dom": ">=16.9.0 <20.0.0" 1495 + react: ">=16.14.0 <20.0.0" 1496 + react-dom: ">=16.14.0 <20.0.0" 1497 1498 + "@fluentui/react-table@9.19.0": 1499 + resolution: 1500 + { 1501 + integrity: sha512-4XR2XNp5iq4sY3MtkEnuUBLu7BZ4xhGnyrnZ3eFb23TP3ERZTXx0oewpyURscERSv05czV3fwFjvT2gsQPy4Pw==, 1502 + } 1503 peerDependencies: 1504 + "@types/react": ">=16.14.0 <20.0.0" 1505 + "@types/react-dom": ">=16.9.0 <20.0.0" 1506 + react: ">=16.14.0 <20.0.0" 1507 + react-dom: ">=16.14.0 <20.0.0" 1508 1509 + "@fluentui/react-tabs@9.10.2": 1510 + resolution: 1511 + { 1512 + integrity: sha512-aK4QVtCN3LQ40MR2/5LGb/reyBsCPsPnEjkifSQn8YrhJbkt0XRFMyIgJJ+EOOUadvQxEXEDDbz/PNpZFWoQCQ==, 1513 + } 1514 peerDependencies: 1515 + "@types/react": ">=16.14.0 <20.0.0" 1516 + "@types/react-dom": ">=16.9.0 <20.0.0" 1517 + react: ">=16.14.0 <20.0.0" 1518 + react-dom: ">=16.14.0 <20.0.0" 1519 1520 + "@fluentui/react-tabster@9.26.6": 1521 + resolution: 1522 + { 1523 + integrity: sha512-4uk8O7S3qEkixjP2PnB4FvXxNqFKMVRetS3bCsc0T7MLufWtFYMqIfxSrdqyxvtLKMPdMohWmdeOu7E4X+ef6Q==, 1524 + } 1525 peerDependencies: 1526 + "@types/react": ">=16.14.0 <20.0.0" 1527 + "@types/react-dom": ">=16.9.0 <20.0.0" 1528 + react: ">=16.14.0 <20.0.0" 1529 + react-dom: ">=16.14.0 <20.0.0" 1530 1531 + "@fluentui/react-tag-picker@9.7.7": 1532 + resolution: 1533 + { 1534 + integrity: sha512-yN8x01vvEt4C9SZHtF4OyUmIP2wFjjAcEqWY1ofwyICKsI9Xc23OANsIWBR9QdvM6jISJ7slwcwcgfP8JmyOSA==, 1535 + } 1536 peerDependencies: 1537 + "@types/react": ">=16.14.0 <20.0.0" 1538 + "@types/react-dom": ">=16.9.0 <20.0.0" 1539 + react: ">=16.14.0 <20.0.0" 1540 + react-dom: ">=16.14.0 <20.0.0" 1541 1542 + "@fluentui/react-tags@9.7.7": 1543 + resolution: 1544 + { 1545 + integrity: sha512-TZ9Cc73hdCFzOBDvL3pQthndlVnGByn+l3vKyAu5kT6pWzrC7gfiWXHsUVUDzLQ8XyFDq1G4vCYfq+949OYyAg==, 1546 + } 1547 peerDependencies: 1548 + "@types/react": ">=16.14.0 <20.0.0" 1549 + "@types/react-dom": ">=16.9.0 <20.0.0" 1550 + react: ">=16.14.0 <20.0.0" 1551 + react-dom: ">=16.14.0 <20.0.0" 1552 1553 + "@fluentui/react-teaching-popover@9.6.7": 1554 + resolution: 1555 + { 1556 + integrity: sha512-SIXQLP4NKhv5E6hUCR2eMgg+MBehfuHWSygvf8yEZKaoGjgN/4bg/4Rn64Ld6cELcXcHpg7/0tFmDxgxycSU4w==, 1557 + } 1558 peerDependencies: 1559 + "@types/react": ">=16.8.0 <20.0.0" 1560 + "@types/react-dom": ">=16.8.0 <20.0.0" 1561 + react: ">=16.14.0 <20.0.0" 1562 + react-dom: ">=16.8.0 <20.0.0" 1563 1564 + "@fluentui/react-text@9.6.6": 1565 + resolution: 1566 + { 1567 + integrity: sha512-WfxzfE3LnGLAy+7w1elVkUwcnCgoVtGVysfYNbQYqs7eEDp7c7asRkVn++nWYGFALu2S0OCthYj98JT5VZlccA==, 1568 + } 1569 peerDependencies: 1570 + "@types/react": ">=16.14.0 <20.0.0" 1571 + "@types/react-dom": ">=16.9.0 <20.0.0" 1572 + react: ">=16.14.0 <20.0.0" 1573 + react-dom: ">=16.14.0 <20.0.0" 1574 1575 + "@fluentui/react-textarea@9.6.6": 1576 + resolution: 1577 + { 1578 + integrity: sha512-opxqQg+6IexnjW4XJrrueaU66dznDq7h5zjg6KoVR6RscYaqWpythrW2ragZujXQifouUHcrkw+BnwmnAuollw==, 1579 + } 1580 peerDependencies: 1581 + "@types/react": ">=16.14.0 <20.0.0" 1582 + "@types/react-dom": ">=16.9.0 <20.0.0" 1583 + react: ">=16.14.0 <20.0.0" 1584 + react-dom: ">=16.14.0 <20.0.0" 1585 1586 + "@fluentui/react-theme@9.2.0": 1587 + resolution: 1588 + { 1589 + integrity: sha512-Q0zp/MY1m5RjlkcwMcjn/PQRT2T+q3bgxuxWbhgaD07V+tLzBhGROvuqbsdg4YWF/IK21zPfLhmGyifhEu0DnQ==, 1590 + } 1591 1592 + "@fluentui/react-toast@9.7.3": 1593 + resolution: 1594 + { 1595 + integrity: sha512-JuuOwvzCT+RK3X6IuZGLS3267cg3/DWQ9hlmP3ZThkHKabO/MYyFYTvry+Id5IDBBzFfyoV5M3L7T8MVwAbhYg==, 1596 + } 1597 peerDependencies: 1598 + "@types/react": ">=16.14.0 <20.0.0" 1599 + "@types/react-dom": ">=16.9.0 <20.0.0" 1600 + react: ">=16.14.0 <20.0.0" 1601 + react-dom: ">=16.14.0 <20.0.0" 1602 1603 + "@fluentui/react-toolbar@9.6.7": 1604 + resolution: 1605 + { 1606 + integrity: sha512-EaBT312aP3WXCwc9vUP/6diNdGUEtFSBbPupolkvM7l3Hqt2NaEgN86RMPubykCbwV4SoJvOQCTxgtsYKCK0gg==, 1607 + } 1608 peerDependencies: 1609 + "@types/react": ">=16.14.0 <20.0.0" 1610 + "@types/react-dom": ">=16.9.0 <20.0.0" 1611 + react: ">=16.14.0 <20.0.0" 1612 + react-dom: ">=16.14.0 <20.0.0" 1613 1614 + "@fluentui/react-tooltip@9.8.6": 1615 + resolution: 1616 + { 1617 + integrity: sha512-ue72LCnpTyLUvTNA+KWao0zt8T2BQsQdigY1rXwXUu6PQi4X8TKdZsOMaXCe/pzBDKWk9Du0ClZq7JWw3/mKig==, 1618 + } 1619 peerDependencies: 1620 + "@types/react": ">=16.14.0 <20.0.0" 1621 + "@types/react-dom": ">=16.9.0 <20.0.0" 1622 + react: ">=16.14.0 <20.0.0" 1623 + react-dom: ">=16.14.0 <20.0.0" 1624 1625 + "@fluentui/react-tree@9.14.1": 1626 + resolution: 1627 + { 1628 + integrity: sha512-SEo96G127Zkd8lsy84vgZNwI92B2B54C7dSOttYihIv9EjVTjcEY8NzwYLacblc6HZX+l+5e1n6rY6iaZq67rg==, 1629 + } 1630 peerDependencies: 1631 + "@types/react": ">=16.14.0 <20.0.0" 1632 + "@types/react-dom": ">=16.9.0 <20.0.0" 1633 + react: ">=16.14.0 <20.0.0" 1634 + react-dom: ">=16.14.0 <20.0.0" 1635 1636 + "@fluentui/react-utilities@9.25.0": 1637 + resolution: 1638 + { 1639 + integrity: sha512-ZuQ1jjNZ9DKxnnwPnQFTnjgt7qEWHttgaNdAoJlbqk1MG9zZYcuglEMLzj0wajPdkVuOOuS9LhSbbdCoW1aSsA==, 1640 + } 1641 peerDependencies: 1642 + "@types/react": ">=16.14.0 <20.0.0" 1643 + react: ">=16.14.0 <20.0.0" 1644 1645 + "@fluentui/react-virtualizer@9.0.0-alpha.102": 1646 + resolution: 1647 + { 1648 + integrity: sha512-kt/kuAMTKTTY/00ToUlgUwUCty2HGj4Tnr+fxKRmr7Ziy5VWhi1YoNJ8vcgmxog5J90t4tS29LB0LP0KztQUVg==, 1649 + } 1650 peerDependencies: 1651 + "@types/react": ">=16.14.0 <19.0.0" 1652 + "@types/react-dom": ">=16.9.0 <19.0.0" 1653 + react: ">=16.14.0 <19.0.0" 1654 + react-dom: ">=16.14.0 <19.0.0" 1655 1656 + "@fluentui/tokens@1.0.0-alpha.22": 1657 + resolution: 1658 + { 1659 + integrity: sha512-i9fgYyyCWFRdUi+vQwnV6hp7wpLGK4p09B+O/f2u71GBXzPuniubPYvrIJYtl444DD6shLjYToJhQ1S6XTFwLg==, 1660 + } 1661 1662 + "@griffel/core@1.19.2": 1663 + resolution: 1664 + { 1665 + integrity: sha512-WkB/QQkjy9dE4vrNYGhQvRRUHFkYVOuaznVOMNTDT4pS9aTJ9XPrMTXXlkpcwaf0D3vNKoerj4zAwnU2lBzbOg==, 1666 + } 1667 1668 + "@griffel/react@1.5.30": 1669 + resolution: 1670 + { 1671 + integrity: sha512-1q4ojbEVFY5YA0j1NamP0WWF4BKh+GHsVugltDYeEgEaVbH3odJ7tJabuhQgY+7Nhka0pyEFWSiHJev0K3FSew==, 1672 + } 1673 peerDependencies: 1674 + react: ">=16.8.0 <20.0.0" 1675 1676 + "@griffel/style-types@1.3.0": 1677 + resolution: 1678 + { 1679 + integrity: sha512-bHwD3sUE84Xwv4dH011gOKe1jul77M1S6ZFN9Tnq8pvZ48UMdY//vtES6fv7GRS5wXYT4iqxQPBluAiYAfkpmw==, 1680 + } 1681 1682 + "@img/colour@1.0.0": 1683 + resolution: 1684 + { 1685 + integrity: sha512-A5P/LfWGFSl6nsckYtjw9da+19jB8hkJ6ACTGcDfEJ0aE+l2n2El7dsVM7UVHZQ9s2lmYMWlrS21YLy2IR1LUw==, 1686 + } 1687 + engines: { node: ">=18" } 1688 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 } 1695 cpu: [arm64] 1696 os: [darwin] 1697 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 } 1704 cpu: [x64] 1705 os: [darwin] 1706 1707 + "@img/sharp-libvips-darwin-arm64@1.2.3": 1708 + resolution: 1709 + { 1710 + integrity: sha512-QzWAKo7kpHxbuHqUC28DZ9pIKpSi2ts2OJnoIGI26+HMgq92ZZ4vk8iJd4XsxN+tYfNJxzH6W62X5eTcsBymHw==, 1711 + } 1712 cpu: [arm64] 1713 os: [darwin] 1714 1715 + "@img/sharp-libvips-darwin-x64@1.2.3": 1716 + resolution: 1717 + { 1718 + integrity: sha512-Ju+g2xn1E2AKO6YBhxjj+ACcsPQRHT0bhpglxcEf+3uyPY+/gL8veniKoo96335ZaPo03bdDXMv0t+BBFAbmRA==, 1719 + } 1720 cpu: [x64] 1721 os: [darwin] 1722 1723 + "@img/sharp-libvips-linux-arm64@1.2.3": 1724 + resolution: 1725 + { 1726 + integrity: sha512-I4RxkXU90cpufazhGPyVujYwfIm9Nk1QDEmiIsaPwdnm013F7RIceaCc87kAH+oUB1ezqEvC6ga4m7MSlqsJvQ==, 1727 + } 1728 cpu: [arm64] 1729 os: [linux] 1730 1731 + "@img/sharp-libvips-linux-arm@1.2.3": 1732 + resolution: 1733 + { 1734 + integrity: sha512-x1uE93lyP6wEwGvgAIV0gP6zmaL/a0tGzJs/BIDDG0zeBhMnuUPm7ptxGhUbcGs4okDJrk4nxgrmxpib9g6HpA==, 1735 + } 1736 cpu: [arm] 1737 os: [linux] 1738 1739 + "@img/sharp-libvips-linux-ppc64@1.2.3": 1740 + resolution: 1741 + { 1742 + integrity: sha512-Y2T7IsQvJLMCBM+pmPbM3bKT/yYJvVtLJGfCs4Sp95SjvnFIjynbjzsa7dY1fRJX45FTSfDksbTp6AGWudiyCg==, 1743 + } 1744 cpu: [ppc64] 1745 os: [linux] 1746 1747 + "@img/sharp-libvips-linux-s390x@1.2.3": 1748 + resolution: 1749 + { 1750 + integrity: sha512-RgWrs/gVU7f+K7P+KeHFaBAJlNkD1nIZuVXdQv6S+fNA6syCcoboNjsV2Pou7zNlVdNQoQUpQTk8SWDHUA3y/w==, 1751 + } 1752 cpu: [s390x] 1753 os: [linux] 1754 1755 + "@img/sharp-libvips-linux-x64@1.2.3": 1756 + resolution: 1757 + { 1758 + integrity: sha512-3JU7LmR85K6bBiRzSUc/Ff9JBVIFVvq6bomKE0e63UXGeRw2HPVEjoJke1Yx+iU4rL7/7kUjES4dZ/81Qjhyxg==, 1759 + } 1760 cpu: [x64] 1761 os: [linux] 1762 1763 + "@img/sharp-libvips-linuxmusl-arm64@1.2.3": 1764 + resolution: 1765 + { 1766 + integrity: sha512-F9q83RZ8yaCwENw1GieztSfj5msz7GGykG/BA+MOUefvER69K/ubgFHNeSyUu64amHIYKGDs4sRCMzXVj8sEyw==, 1767 + } 1768 cpu: [arm64] 1769 os: [linux] 1770 1771 + "@img/sharp-libvips-linuxmusl-x64@1.2.3": 1772 + resolution: 1773 + { 1774 + integrity: sha512-U5PUY5jbc45ANM6tSJpsgqmBF/VsL6LnxJmIf11kB7J5DctHgqm0SkuXzVWtIY90GnJxKnC/JT251TDnk1fu/g==, 1775 + } 1776 cpu: [x64] 1777 os: [linux] 1778 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 } 1785 cpu: [arm64] 1786 os: [linux] 1787 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 } 1794 cpu: [arm] 1795 os: [linux] 1796 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 } 1803 cpu: [ppc64] 1804 os: [linux] 1805 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 } 1812 cpu: [s390x] 1813 os: [linux] 1814 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 } 1821 cpu: [x64] 1822 os: [linux] 1823 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 } 1830 cpu: [arm64] 1831 os: [linux] 1832 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 } 1839 cpu: [x64] 1840 os: [linux] 1841 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 } 1848 cpu: [wasm32] 1849 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 } 1856 cpu: [arm64] 1857 os: [win32] 1858 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 } 1865 cpu: [ia32] 1866 os: [win32] 1867 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 } 1874 cpu: [x64] 1875 os: [win32] 1876 1877 + "@inquirer/ansi@1.0.0": 1878 + resolution: 1879 + { 1880 + integrity: sha512-JWaTfCxI1eTmJ1BIv86vUfjVatOdxwD0DAVKYevY8SazeUUZtW+tNbsdejVO1GYE0GXJW1N1ahmiC3TFd+7wZA==, 1881 + } 1882 + engines: { node: ">=18" } 1883 1884 + "@inquirer/checkbox@4.2.4": 1885 + resolution: 1886 + { 1887 + integrity: sha512-2n9Vgf4HSciFq8ttKXk+qy+GsyTXPV1An6QAwe/8bkbbqvG4VW1I/ZY1pNu2rf+h9bdzMLPbRSfcNxkHBy/Ydw==, 1888 + } 1889 + engines: { node: ">=18" } 1890 peerDependencies: 1891 + "@types/node": ">=18" 1892 peerDependenciesMeta: 1893 + "@types/node": 1894 optional: true 1895 1896 + "@inquirer/confirm@5.1.18": 1897 + resolution: 1898 + { 1899 + integrity: sha512-MilmWOzHa3Ks11tzvuAmFoAd/wRuaP3SwlT1IZhyMke31FKLxPiuDWcGXhU+PKveNOpAc4axzAgrgxuIJJRmLw==, 1900 + } 1901 + engines: { node: ">=18" } 1902 peerDependencies: 1903 + "@types/node": ">=18" 1904 peerDependenciesMeta: 1905 + "@types/node": 1906 optional: true 1907 1908 + "@inquirer/core@10.2.2": 1909 + resolution: 1910 + { 1911 + integrity: sha512-yXq/4QUnk4sHMtmbd7irwiepjB8jXU0kkFRL4nr/aDBA2mDz13cMakEWdDwX3eSCTkk03kwcndD1zfRAIlELxA==, 1912 + } 1913 + engines: { node: ">=18" } 1914 peerDependencies: 1915 + "@types/node": ">=18" 1916 peerDependenciesMeta: 1917 + "@types/node": 1918 optional: true 1919 1920 + "@inquirer/editor@4.2.20": 1921 + resolution: 1922 + { 1923 + integrity: sha512-7omh5y5bK672Q+Brk4HBbnHNowOZwrb/78IFXdrEB9PfdxL3GudQyDk8O9vQ188wj3xrEebS2M9n18BjJoI83g==, 1924 + } 1925 + engines: { node: ">=18" } 1926 peerDependencies: 1927 + "@types/node": ">=18" 1928 peerDependenciesMeta: 1929 + "@types/node": 1930 optional: true 1931 1932 + "@inquirer/expand@4.0.20": 1933 + resolution: 1934 + { 1935 + integrity: sha512-Dt9S+6qUg94fEvgn54F2Syf0Z3U8xmnBI9ATq2f5h9xt09fs2IJXSCIXyyVHwvggKWFXEY/7jATRo2K6Dkn6Ow==, 1936 + } 1937 + engines: { node: ">=18" } 1938 peerDependencies: 1939 + "@types/node": ">=18" 1940 peerDependenciesMeta: 1941 + "@types/node": 1942 optional: true 1943 1944 + "@inquirer/external-editor@1.0.2": 1945 + resolution: 1946 + { 1947 + integrity: sha512-yy9cOoBnx58TlsPrIxauKIFQTiyH+0MK4e97y4sV9ERbI+zDxw7i2hxHLCIEGIE/8PPvDxGhgzIOTSOWcs6/MQ==, 1948 + } 1949 + engines: { node: ">=18" } 1950 peerDependencies: 1951 + "@types/node": ">=18" 1952 peerDependenciesMeta: 1953 + "@types/node": 1954 optional: true 1955 1956 + "@inquirer/figures@1.0.13": 1957 + resolution: 1958 + { 1959 + integrity: sha512-lGPVU3yO9ZNqA7vTYz26jny41lE7yoQansmqdMLBEfqaGsmdg7V3W9mK9Pvb5IL4EVZ9GnSDGMO/cJXud5dMaw==, 1960 + } 1961 + engines: { node: ">=18" } 1962 1963 + "@inquirer/input@4.2.4": 1964 + resolution: 1965 + { 1966 + integrity: sha512-cwSGpLBMwpwcZZsc6s1gThm0J+it/KIJ+1qFL2euLmSKUMGumJ5TcbMgxEjMjNHRGadouIYbiIgruKoDZk7klw==, 1967 + } 1968 + engines: { node: ">=18" } 1969 peerDependencies: 1970 + "@types/node": ">=18" 1971 peerDependenciesMeta: 1972 + "@types/node": 1973 optional: true 1974 1975 + "@inquirer/number@3.0.20": 1976 + resolution: 1977 + { 1978 + integrity: sha512-bbooay64VD1Z6uMfNehED2A2YOPHSJnQLs9/4WNiV/EK+vXczf/R988itL2XLDGTgmhMF2KkiWZo+iEZmc4jqg==, 1979 + } 1980 + engines: { node: ">=18" } 1981 peerDependencies: 1982 + "@types/node": ">=18" 1983 peerDependenciesMeta: 1984 + "@types/node": 1985 optional: true 1986 1987 + "@inquirer/password@4.0.20": 1988 + resolution: 1989 + { 1990 + integrity: sha512-nxSaPV2cPvvoOmRygQR+h0B+Av73B01cqYLcr7NXcGXhbmsYfUb8fDdw2Us1bI2YsX+VvY7I7upgFYsyf8+Nug==, 1991 + } 1992 + engines: { node: ">=18" } 1993 peerDependencies: 1994 + "@types/node": ">=18" 1995 peerDependenciesMeta: 1996 + "@types/node": 1997 optional: true 1998 1999 + "@inquirer/prompts@7.8.6": 2000 + resolution: 2001 + { 2002 + integrity: sha512-68JhkiojicX9SBUD8FE/pSKbOKtwoyaVj1kwqLfvjlVXZvOy3iaSWX4dCLsZyYx/5Ur07Fq+yuDNOen+5ce6ig==, 2003 + } 2004 + engines: { node: ">=18" } 2005 peerDependencies: 2006 + "@types/node": ">=18" 2007 peerDependenciesMeta: 2008 + "@types/node": 2009 optional: true 2010 2011 + "@inquirer/rawlist@4.1.8": 2012 + resolution: 2013 + { 2014 + integrity: sha512-CQ2VkIASbgI2PxdzlkeeieLRmniaUU1Aoi5ggEdm6BIyqopE9GuDXdDOj9XiwOqK5qm72oI2i6J+Gnjaa26ejg==, 2015 + } 2016 + engines: { node: ">=18" } 2017 peerDependencies: 2018 + "@types/node": ">=18" 2019 peerDependenciesMeta: 2020 + "@types/node": 2021 optional: true 2022 2023 + "@inquirer/search@3.1.3": 2024 + resolution: 2025 + { 2026 + integrity: sha512-D5T6ioybJJH0IiSUK/JXcoRrrm8sXwzrVMjibuPs+AgxmogKslaafy1oxFiorNI4s3ElSkeQZbhYQgLqiL8h6Q==, 2027 + } 2028 + engines: { node: ">=18" } 2029 peerDependencies: 2030 + "@types/node": ">=18" 2031 peerDependenciesMeta: 2032 + "@types/node": 2033 optional: true 2034 2035 + "@inquirer/select@4.3.4": 2036 + resolution: 2037 + { 2038 + integrity: sha512-Qp20nySRmfbuJBBsgPU7E/cL62Hf250vMZRzYDcBHty2zdD1kKCnoDFWRr0WO2ZzaXp3R7a4esaVGJUx0E6zvA==, 2039 + } 2040 + engines: { node: ">=18" } 2041 peerDependencies: 2042 + "@types/node": ">=18" 2043 peerDependenciesMeta: 2044 + "@types/node": 2045 optional: true 2046 2047 + "@inquirer/type@3.0.8": 2048 + resolution: 2049 + { 2050 + integrity: sha512-lg9Whz8onIHRthWaN1Q9EGLa/0LFJjyM8mEUbL1eTi6yMGvBf8gvyDLtxSXztQsxMvhxxNpJYrwa1YHdq+w4Jw==, 2051 + } 2052 + engines: { node: ">=18" } 2053 peerDependencies: 2054 + "@types/node": ">=18" 2055 peerDependenciesMeta: 2056 + "@types/node": 2057 optional: true 2058 2059 + "@ipld/dag-cbor@7.0.3": 2060 + resolution: 2061 + { 2062 + integrity: sha512-1VVh2huHsuohdXC1bGJNE8WR72slZ9XE2T3wbBBq31dm7ZBatmKLLxrB+XAqafxfRFjv08RZmj/W/ZqaM13AuA==, 2063 + } 2064 2065 + "@isaacs/fs-minipass@4.0.1": 2066 + resolution: 2067 + { 2068 + integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==, 2069 + } 2070 + engines: { node: ">=18.0.0" } 2071 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 } 2078 2079 + "@jridgewell/gen-mapping@0.3.13": 2080 + resolution: 2081 + { 2082 + integrity: sha512-2kkt/7niJ6MgEPxF0bYdQ6etZaA+fQvDcLKckhy1yIQOzaoKjBBjSj63/aLVjYE3qhRt5dvM+uUyfCg6UKCBbA==, 2083 + } 2084 2085 + "@jridgewell/remapping@2.3.5": 2086 + resolution: 2087 + { 2088 + integrity: sha512-LI9u/+laYG4Ds1TDKSJW2YPrIlcVYOwi2fUC6xB43lueCjgxV4lffOCZCtYFiH6TNOX+tQKXx97T4IKHbhyHEQ==, 2089 + } 2090 2091 + "@jridgewell/resolve-uri@3.1.2": 2092 + resolution: 2093 + { 2094 + integrity: sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==, 2095 + } 2096 + engines: { node: ">=6.0.0" } 2097 2098 + "@jridgewell/sourcemap-codec@1.5.5": 2099 + resolution: 2100 + { 2101 + integrity: sha512-cYQ9310grqxueWbl+WuIUIaiUaDcj7WOq5fVhEljNVgRfOUhY9fy2zTvfoqWsnebh8Sl70VScFbICvJnLKB0Og==, 2102 + } 2103 2104 + "@jridgewell/trace-mapping@0.3.31": 2105 + resolution: 2106 + { 2107 + integrity: sha512-zzNR+SdQSDJzc8joaeP8QQoCQr8NuYx2dIIytl1QeBEZHJ9uW6hebsrYgbz8hJwUQao3TWCMtmfV8Nu1twOLAw==, 2108 + } 2109 2110 + "@jspm/core@2.1.0": 2111 + resolution: 2112 + { 2113 + integrity: sha512-3sRl+pkyFY/kLmHl0cgHiFp2xEqErA8N3ECjMs7serSUBmoJ70lBa0PG5t0IM6WJgdZNyyI0R8YFfi5wM8+mzg==, 2114 + } 2115 2116 + "@noble/curves@1.9.7": 2117 + resolution: 2118 + { 2119 + integrity: sha512-gbKGcRUYIjA3/zCCNaWDciTMFI0dCkvou3TL8Zmy5Nc7sJ47a0jtOeZoTaMxkuqRo9cRhjOdZJXegxYE5FN/xw==, 2120 + } 2121 + engines: { node: ^14.21.3 || >=16 } 2122 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 } 2129 2130 + "@nodelib/fs.scandir@2.1.5": 2131 + resolution: 2132 + { 2133 + integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==, 2134 + } 2135 + engines: { node: ">= 8" } 2136 2137 + "@nodelib/fs.stat@2.0.5": 2138 + resolution: 2139 + { 2140 + integrity: sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==, 2141 + } 2142 + engines: { node: ">= 8" } 2143 2144 + "@nodelib/fs.walk@1.2.8": 2145 + resolution: 2146 + { 2147 + integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==, 2148 + } 2149 + engines: { node: ">= 8" } 2150 2151 + "@oslojs/encoding@1.1.0": 2152 + resolution: 2153 + { 2154 + integrity: sha512-70wQhgYmndg4GCPxPPxPGevRKqTIJ2Nh4OkiMWmDAVYsTQ+Ta7Sq+rPevXyXGdzr30/qZBnyOalCszoMxlyldQ==, 2155 + } 2156 2157 + "@rolldown/pluginutils@1.0.0-beta.27": 2158 + resolution: 2159 + { 2160 + integrity: sha512-+d0F4MKMCbeVUJwG96uQ4SgAznZNSq93I3V+9NHA4OpvqG8mRCpGdKmK8l/dl02h2CCDHwW2FqilnTyDcAnqjA==, 2161 + } 2162 2163 + "@rollup/pluginutils@5.3.0": 2164 + resolution: 2165 + { 2166 + integrity: sha512-5EdhGZtnu3V88ces7s53hhfK5KSASnJZv8Lulpc04cWO3REESroJXg73DFsOmgbU2BhwV0E20bu2IDZb3VKW4Q==, 2167 + } 2168 + engines: { node: ">=14.0.0" } 2169 peerDependencies: 2170 rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0 2171 peerDependenciesMeta: 2172 rollup: 2173 optional: true 2174 2175 + "@rollup/rollup-android-arm-eabi@4.52.4": 2176 + resolution: 2177 + { 2178 + integrity: sha512-BTm2qKNnWIQ5auf4deoetINJm2JzvihvGb9R6K/ETwKLql/Bb3Eg2H1FBp1gUb4YGbydMA3jcmQTR73q7J+GAA==, 2179 + } 2180 cpu: [arm] 2181 os: [android] 2182 2183 + "@rollup/rollup-android-arm64@4.52.4": 2184 + resolution: 2185 + { 2186 + integrity: sha512-P9LDQiC5vpgGFgz7GSM6dKPCiqR3XYN1WwJKA4/BUVDjHpYsf3iBEmVz62uyq20NGYbiGPR5cNHI7T1HqxNs2w==, 2187 + } 2188 cpu: [arm64] 2189 os: [android] 2190 2191 + "@rollup/rollup-darwin-arm64@4.52.4": 2192 + resolution: 2193 + { 2194 + integrity: sha512-QRWSW+bVccAvZF6cbNZBJwAehmvG9NwfWHwMy4GbWi/BQIA/laTIktebT2ipVjNncqE6GLPxOok5hsECgAxGZg==, 2195 + } 2196 cpu: [arm64] 2197 os: [darwin] 2198 2199 + "@rollup/rollup-darwin-x64@4.52.4": 2200 + resolution: 2201 + { 2202 + integrity: sha512-hZgP05pResAkRJxL1b+7yxCnXPGsXU0fG9Yfd6dUaoGk+FhdPKCJ5L1Sumyxn8kvw8Qi5PvQ8ulenUbRjzeCTw==, 2203 + } 2204 cpu: [x64] 2205 os: [darwin] 2206 2207 + "@rollup/rollup-freebsd-arm64@4.52.4": 2208 + resolution: 2209 + { 2210 + integrity: sha512-xmc30VshuBNUd58Xk4TKAEcRZHaXlV+tCxIXELiE9sQuK3kG8ZFgSPi57UBJt8/ogfhAF5Oz4ZSUBN77weM+mQ==, 2211 + } 2212 cpu: [arm64] 2213 os: [freebsd] 2214 2215 + "@rollup/rollup-freebsd-x64@4.52.4": 2216 + resolution: 2217 + { 2218 + integrity: sha512-WdSLpZFjOEqNZGmHflxyifolwAiZmDQzuOzIq9L27ButpCVpD7KzTRtEG1I0wMPFyiyUdOO+4t8GvrnBLQSwpw==, 2219 + } 2220 cpu: [x64] 2221 os: [freebsd] 2222 2223 + "@rollup/rollup-linux-arm-gnueabihf@4.52.4": 2224 + resolution: 2225 + { 2226 + integrity: sha512-xRiOu9Of1FZ4SxVbB0iEDXc4ddIcjCv2aj03dmW8UrZIW7aIQ9jVJdLBIhxBI+MaTnGAKyvMwPwQnoOEvP7FgQ==, 2227 + } 2228 cpu: [arm] 2229 os: [linux] 2230 2231 + "@rollup/rollup-linux-arm-musleabihf@4.52.4": 2232 + resolution: 2233 + { 2234 + integrity: sha512-FbhM2p9TJAmEIEhIgzR4soUcsW49e9veAQCziwbR+XWB2zqJ12b4i/+hel9yLiD8pLncDH4fKIPIbt5238341Q==, 2235 + } 2236 cpu: [arm] 2237 os: [linux] 2238 2239 + "@rollup/rollup-linux-arm64-gnu@4.52.4": 2240 + resolution: 2241 + { 2242 + integrity: sha512-4n4gVwhPHR9q/g8lKCyz0yuaD0MvDf7dV4f9tHt0C73Mp8h38UCtSCSE6R9iBlTbXlmA8CjpsZoujhszefqueg==, 2243 + } 2244 cpu: [arm64] 2245 os: [linux] 2246 2247 + "@rollup/rollup-linux-arm64-musl@4.52.4": 2248 + resolution: 2249 + { 2250 + integrity: sha512-u0n17nGA0nvi/11gcZKsjkLj1QIpAuPFQbR48Subo7SmZJnGxDpspyw2kbpuoQnyK+9pwf3pAoEXerJs/8Mi9g==, 2251 + } 2252 cpu: [arm64] 2253 os: [linux] 2254 2255 + "@rollup/rollup-linux-loong64-gnu@4.52.4": 2256 + resolution: 2257 + { 2258 + integrity: sha512-0G2c2lpYtbTuXo8KEJkDkClE/+/2AFPdPAbmaHoE870foRFs4pBrDehilMcrSScrN/fB/1HTaWO4bqw+ewBzMQ==, 2259 + } 2260 cpu: [loong64] 2261 os: [linux] 2262 2263 + "@rollup/rollup-linux-ppc64-gnu@4.52.4": 2264 + resolution: 2265 + { 2266 + integrity: sha512-teSACug1GyZHmPDv14VNbvZFX779UqWTsd7KtTM9JIZRDI5NUwYSIS30kzI8m06gOPB//jtpqlhmraQ68b5X2g==, 2267 + } 2268 cpu: [ppc64] 2269 os: [linux] 2270 2271 + "@rollup/rollup-linux-riscv64-gnu@4.52.4": 2272 + resolution: 2273 + { 2274 + integrity: sha512-/MOEW3aHjjs1p4Pw1Xk4+3egRevx8Ji9N6HUIA1Ifh8Q+cg9dremvFCUbOX2Zebz80BwJIgCBUemjqhU5XI5Eg==, 2275 + } 2276 cpu: [riscv64] 2277 os: [linux] 2278 2279 + "@rollup/rollup-linux-riscv64-musl@4.52.4": 2280 + resolution: 2281 + { 2282 + integrity: sha512-1HHmsRyh845QDpEWzOFtMCph5Ts+9+yllCrREuBR/vg2RogAQGGBRC8lDPrPOMnrdOJ+mt1WLMOC2Kao/UwcvA==, 2283 + } 2284 cpu: [riscv64] 2285 os: [linux] 2286 2287 + "@rollup/rollup-linux-s390x-gnu@4.52.4": 2288 + resolution: 2289 + { 2290 + integrity: sha512-seoeZp4L/6D1MUyjWkOMRU6/iLmCU2EjbMTyAG4oIOs1/I82Y5lTeaxW0KBfkUdHAWN7j25bpkt0rjnOgAcQcA==, 2291 + } 2292 cpu: [s390x] 2293 os: [linux] 2294 2295 + "@rollup/rollup-linux-x64-gnu@4.40.0": 2296 + resolution: 2297 + { 2298 + integrity: sha512-RcDGMtqF9EFN8i2RYN2W+64CdHruJ5rPqrlYw+cgM3uOVPSsnAQps7cpjXe9be/yDp8UC7VLoCoKC8J3Kn2FkQ==, 2299 + } 2300 cpu: [x64] 2301 os: [linux] 2302 2303 + "@rollup/rollup-linux-x64-gnu@4.52.4": 2304 + resolution: 2305 + { 2306 + integrity: sha512-Wi6AXf0k0L7E2gteNsNHUs7UMwCIhsCTs6+tqQ5GPwVRWMaflqGec4Sd8n6+FNFDw9vGcReqk2KzBDhCa1DLYg==, 2307 + } 2308 cpu: [x64] 2309 os: [linux] 2310 2311 + "@rollup/rollup-linux-x64-musl@4.52.4": 2312 + resolution: 2313 + { 2314 + integrity: sha512-dtBZYjDmCQ9hW+WgEkaffvRRCKm767wWhxsFW3Lw86VXz/uJRuD438/XvbZT//B96Vs8oTA8Q4A0AfHbrxP9zw==, 2315 + } 2316 cpu: [x64] 2317 os: [linux] 2318 2319 + "@rollup/rollup-openharmony-arm64@4.52.4": 2320 + resolution: 2321 + { 2322 + integrity: sha512-1ox+GqgRWqaB1RnyZXL8PD6E5f7YyRUJYnCqKpNzxzP0TkaUh112NDrR9Tt+C8rJ4x5G9Mk8PQR3o7Ku2RKqKA==, 2323 + } 2324 cpu: [arm64] 2325 os: [openharmony] 2326 2327 + "@rollup/rollup-win32-arm64-msvc@4.52.4": 2328 + resolution: 2329 + { 2330 + integrity: sha512-8GKr640PdFNXwzIE0IrkMWUNUomILLkfeHjXBi/nUvFlpZP+FA8BKGKpacjW6OUUHaNI6sUURxR2U2g78FOHWQ==, 2331 + } 2332 cpu: [arm64] 2333 os: [win32] 2334 2335 + "@rollup/rollup-win32-ia32-msvc@4.52.4": 2336 + resolution: 2337 + { 2338 + integrity: sha512-AIy/jdJ7WtJ/F6EcfOb2GjR9UweO0n43jNObQMb6oGxkYTfLcnN7vYYpG+CN3lLxrQkzWnMOoNSHTW54pgbVxw==, 2339 + } 2340 cpu: [ia32] 2341 os: [win32] 2342 2343 + "@rollup/rollup-win32-x64-gnu@4.52.4": 2344 + resolution: 2345 + { 2346 + integrity: sha512-UF9KfsH9yEam0UjTwAgdK0anlQ7c8/pWPU2yVjyWcF1I1thABt6WXE47cI71pGiZ8wGvxohBoLnxM04L/wj8mQ==, 2347 + } 2348 cpu: [x64] 2349 os: [win32] 2350 2351 + "@rollup/rollup-win32-x64-msvc@4.52.4": 2352 + resolution: 2353 + { 2354 + integrity: sha512-bf9PtUa0u8IXDVxzRToFQKsNCRz9qLYfR/MpECxl4mRoWYjAeFjgxj1XdZr2M/GNVpT05p+LgQOHopYDlUu6/w==, 2355 + } 2356 cpu: [x64] 2357 os: [win32] 2358 2359 + "@scarf/scarf@1.4.0": 2360 + resolution: 2361 + { 2362 + integrity: sha512-xxeapPiUXdZAE3che6f3xogoJPeZgig6omHEy1rIY5WVsB3H2BHNnZH+gHG6x91SCWyQCzWGsuL2Hh3ClO5/qQ==, 2363 + } 2364 2365 + "@shikijs/core@3.13.0": 2366 + resolution: 2367 + { 2368 + integrity: sha512-3P8rGsg2Eh2qIHekwuQjzWhKI4jV97PhvYjYUzGqjvJfqdQPz+nMlfWahU24GZAyW1FxFI1sYjyhfh5CoLmIUA==, 2369 + } 2370 2371 + "@shikijs/engine-javascript@3.13.0": 2372 + resolution: 2373 + { 2374 + integrity: sha512-Ty7xv32XCp8u0eQt8rItpMs6rU9Ki6LJ1dQOW3V/56PKDcpvfHPnYFbsx5FFUP2Yim34m/UkazidamMNVR4vKg==, 2375 + } 2376 2377 + "@shikijs/engine-oniguruma@3.13.0": 2378 + resolution: 2379 + { 2380 + integrity: sha512-O42rBGr4UDSlhT2ZFMxqM7QzIU+IcpoTMzb3W7AlziI1ZF7R8eS2M0yt5Ry35nnnTX/LTLXFPUjRFCIW+Operg==, 2381 + } 2382 2383 + "@shikijs/langs@3.13.0": 2384 + resolution: 2385 + { 2386 + integrity: sha512-672c3WAETDYHwrRP0yLy3W1QYB89Hbpj+pO4KhxK6FzIrDI2FoEXNiNCut6BQmEApYLfuYfpgOZaqbY+E9b8wQ==, 2387 + } 2388 2389 + "@shikijs/themes@3.13.0": 2390 + resolution: 2391 + { 2392 + integrity: sha512-Vxw1Nm1/Od8jyA7QuAenaV78BG2nSr3/gCGdBkLpfLscddCkzkL36Q5b67SrLLfvAJTOUzW39x4FHVCFriPVgg==, 2393 + } 2394 2395 + "@shikijs/types@3.13.0": 2396 + resolution: 2397 + { 2398 + integrity: sha512-oM9P+NCFri/mmQ8LoFGVfVyemm5Hi27330zuOBp0annwJdKH1kOLndw3zCtAVDehPLg9fKqoEx3Ht/wNZxolfw==, 2399 + } 2400 2401 + "@shikijs/vscode-textmate@10.0.2": 2402 + resolution: 2403 + { 2404 + integrity: sha512-83yeghZ2xxin3Nj8z1NMd/NCuca+gsYXswywDy5bHvwlWL8tpTQmzGeUuHd9FC3E/SBEMvzJRwWEOz5gGes9Qg==, 2405 + } 2406 2407 + "@sinclair/typebox@0.27.8": 2408 + resolution: 2409 + { 2410 + integrity: sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==, 2411 + } 2412 2413 + "@sindresorhus/merge-streams@2.3.0": 2414 + resolution: 2415 + { 2416 + integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==, 2417 + } 2418 + engines: { node: ">=18" } 2419 2420 + "@swc/helpers@0.5.17": 2421 + resolution: 2422 + { 2423 + integrity: sha512-5IKx/Y13RsYd+sauPb2x+U/xZikHjolzfuDgTAl/Tdf3Q8rslRvC19NKDLgAJQ6wsqADk10ntlv08nPFw/gO/A==, 2424 + } 2425 2426 + "@ts-morph/common@0.25.0": 2427 + resolution: 2428 + { 2429 + integrity: sha512-kMnZz+vGGHi4GoHnLmMhGNjm44kGtKUXGnOvrKmMwAuvNjM/PgKVGfUnL7IDvK7Jb2QQ82jq3Zmp04Gy+r3Dkg==, 2430 + } 2431 2432 + "@types/babel__core@7.20.5": 2433 + resolution: 2434 + { 2435 + integrity: sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==, 2436 + } 2437 2438 + "@types/babel__generator@7.27.0": 2439 + resolution: 2440 + { 2441 + integrity: sha512-ufFd2Xi92OAVPYsy+P4n7/U7e68fex0+Ee8gSG9KX7eo084CWiQ4sdxktvdl0bOPupXtVJPY19zk6EwWqUQ8lg==, 2442 + } 2443 2444 + "@types/babel__template@7.4.4": 2445 + resolution: 2446 + { 2447 + integrity: sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==, 2448 + } 2449 2450 + "@types/babel__traverse@7.28.0": 2451 + resolution: 2452 + { 2453 + integrity: sha512-8PvcXf70gTDZBgt9ptxJ8elBeBjcLOAcOtoO/mPJjtji1+CdGbHgm77om1GrsPxsiE+uXIpNSK64UYaIwQXd4Q==, 2454 + } 2455 2456 + "@types/debug@4.1.12": 2457 + resolution: 2458 + { 2459 + integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==, 2460 + } 2461 2462 + "@types/estree@1.0.8": 2463 + resolution: 2464 + { 2465 + integrity: sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==, 2466 + } 2467 2468 + "@types/fontkit@2.0.8": 2469 + resolution: 2470 + { 2471 + integrity: sha512-wN+8bYxIpJf+5oZdrdtaX04qUuWHcKxcDEgRS9Qm9ZClSHjzEn13SxUC+5eRM+4yXIeTYk8mTzLAWGF64847ew==, 2472 + } 2473 2474 + "@types/hast@3.0.4": 2475 + resolution: 2476 + { 2477 + integrity: sha512-WPs+bbQw5aCj+x6laNGWLH3wviHtoCv/P3+otBhbOhJgG8qtpdAMlTCxLtsTWA7LH1Oh/bFCHsBn0TPS5m30EQ==, 2478 + } 2479 2480 + "@types/json-schema@7.0.15": 2481 + resolution: 2482 + { 2483 + integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==, 2484 + } 2485 2486 + "@types/mdast@4.0.4": 2487 + resolution: 2488 + { 2489 + integrity: sha512-kGaNbPh1k7AFzgpud/gMdvIm5xuECykRR+JnWKQno9TAXVa6WIVCGTPvYGekIDL4uwCZQSYbUxNBSb1aUo79oA==, 2490 + } 2491 2492 + "@types/ms@2.1.0": 2493 + resolution: 2494 + { 2495 + integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==, 2496 + } 2497 2498 + "@types/nlcst@2.0.3": 2499 + resolution: 2500 + { 2501 + integrity: sha512-vSYNSDe6Ix3q+6Z7ri9lyWqgGhJTmzRjZRqyq15N0Z/1/UnVsno9G/N40NBijoYx2seFDIl0+B2mgAb9mezUCA==, 2502 + } 2503 2504 + "@types/node@20.19.19": 2505 + resolution: 2506 + { 2507 + integrity: sha512-pb1Uqj5WJP7wrcbLU7Ru4QtA0+3kAXrkutGiD26wUKzSMgNNaPARTUDQmElUXp64kh3cWdou3Q0C7qwwxqSFmg==, 2508 + } 2509 2510 + "@types/prop-types@15.7.15": 2511 + resolution: 2512 + { 2513 + integrity: sha512-F6bEyamV9jKGAFBEmlQnesRPGOQqS2+Uwi0Em15xenOxHaf2hv6L8YCVn3rPdPJOiJfPiCnLIRyvwVaqMY3MIw==, 2514 + } 2515 2516 + "@types/react-dom@18.3.7": 2517 + resolution: 2518 + { 2519 + integrity: sha512-MEe3UeoENYVFXzoXEWsvcpg6ZvlrFNlOQ7EOsvhI3CfAXwzPfO8Qwuxd40nepsYKqyyVQnTdEfv68q91yLcKrQ==, 2520 + } 2521 peerDependencies: 2522 + "@types/react": ^18.0.0 2523 2524 + "@types/react-dom@19.2.0": 2525 + resolution: 2526 + { 2527 + integrity: sha512-brtBs0MnE9SMx7px208g39lRmC5uHZs96caOJfTjFcYSLHNamvaSMfJNagChVNkup2SdtOxKX1FDBkRSJe1ZAg==, 2528 + } 2529 peerDependencies: 2530 + "@types/react": ^19.2.0 2531 2532 + "@types/react@18.3.25": 2533 + resolution: 2534 + { 2535 + integrity: sha512-oSVZmGtDPmRZtVDqvdKUi/qgCsWp5IDY29wp8na8Bj4B3cc99hfNzvNhlMkVVxctkAOGUA3Km7MMpBHAnWfcIA==, 2536 + } 2537 2538 + "@types/react@19.2.0": 2539 + resolution: 2540 + { 2541 + integrity: sha512-1LOH8xovvsKsCBq1wnT4ntDUdCJKmnEakhsuoUSy6ExlHCkGP2hqnatagYTgFk6oeL0VU31u7SNjunPN+GchtA==, 2542 + } 2543 2544 + "@types/unist@3.0.3": 2545 + resolution: 2546 + { 2547 + integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==, 2548 + } 2549 2550 + "@typespec/asset-emitter@0.74.0": 2551 + resolution: 2552 + { 2553 + integrity: sha512-DWIdlSNhRgBeZ8exfqubfUn0H6mRg4gr0s7zLTdBMUEDHL3Yh0ljnRPkd8AXTZhoW3maTFT69loWTrqx09T5oQ==, 2554 + } 2555 + engines: { node: ">=20.0.0" } 2556 peerDependencies: 2557 + "@typespec/compiler": ^1.4.0 2558 2559 + "@typespec/bundler@0.4.4": 2560 + resolution: 2561 + { 2562 + integrity: sha512-yj6X2gTktZ3NmiksdKfEmuYX+oo3yLTvfE+IYPWkveoKGqP4HpGM5OctY9d4y2iqPZ2acG4LemR6064pQ0SIVA==, 2563 + } 2564 + engines: { node: ">=20.0.0" } 2565 2566 + "@typespec/compiler@1.4.0": 2567 + resolution: 2568 + { 2569 + integrity: sha512-/AFiU3ImuhH/vHKzSGv7I2peewdJ7YLhgMCfFDNk6Ae0a5Ylrc8R1GOATVilisEPBFG9lnjHn3uUcyaZs5VWRw==, 2570 + } 2571 + engines: { node: ">=20.0.0" } 2572 hasBin: true 2573 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" } 2580 peerDependencies: 2581 + "@typespec/compiler": ^1.4.0 2582 2583 + "@typespec/http@1.4.0": 2584 + resolution: 2585 + { 2586 + integrity: sha512-Y0PDDtBu+oZnwivfhbL0lN6Mk3QiCxZ66DgB5kFjcgKNpnXf0u440PPyaL42a8lbchzz5lVwz+cinyIMI89FIQ==, 2587 + } 2588 + engines: { node: ">=20.0.0" } 2589 peerDependencies: 2590 + "@typespec/compiler": ^1.4.0 2591 + "@typespec/streams": ^0.74.0 2592 peerDependenciesMeta: 2593 + "@typespec/streams": 2594 optional: true 2595 2596 + "@typespec/openapi3@1.4.0": 2597 + resolution: 2598 + { 2599 + integrity: sha512-krMSBe23NU42qXiLTmkr7T2NRfsIVv70pp3w/+uyWbrxdwdLEdb8PpbHeYV417D/YU+JLj00fQ7uYzEQGZX82w==, 2600 + } 2601 + engines: { node: ">=20.0.0" } 2602 hasBin: true 2603 peerDependencies: 2604 + "@typespec/compiler": ^1.4.0 2605 + "@typespec/http": ^1.4.0 2606 + "@typespec/json-schema": ^1.4.0 2607 + "@typespec/openapi": ^1.4.0 2608 + "@typespec/versioning": ^0.74.0 2609 + "@typespec/xml": "*" 2610 peerDependenciesMeta: 2611 + "@typespec/json-schema": 2612 optional: true 2613 + "@typespec/versioning": 2614 optional: true 2615 + "@typespec/xml": 2616 optional: true 2617 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" } 2624 peerDependencies: 2625 + "@typespec/compiler": ^1.4.0 2626 + "@typespec/http": ^1.4.0 2627 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" } 2634 2635 + "@typespec/protobuf@0.74.0": 2636 + resolution: 2637 + { 2638 + integrity: sha512-9Mn/gGgrrPrFG46t7DyUztUwLDOfjrksC3q2KjkSqGK5xw744/76OsqY51iAnd4DMKUg7twMqNFrKrTr6AqH2g==, 2639 + } 2640 peerDependencies: 2641 + "@typespec/compiler": ^1.4.0 2642 2643 + "@typespec/rest@0.74.0": 2644 + resolution: 2645 + { 2646 + integrity: sha512-dE+Xmv01AQ7m8jUvEbGsUQLSVo3sLzMpnHRbQEOnJX42oDqtIsz/2GEOXKQpNm1AKBISK66E2FFB5boz999Ziw==, 2647 + } 2648 + engines: { node: ">=20.0.0" } 2649 peerDependencies: 2650 + "@typespec/compiler": ^1.4.0 2651 + "@typespec/http": ^1.4.0 2652 2653 + "@typespec/versioning@0.74.0": 2654 + resolution: 2655 + { 2656 + integrity: sha512-eFIa23tycWJgv3Lxyu6jUlRi02dhtQE4Jjx3Ui5vEbwHW8pMEzuyF7ALt1c+V9HOLkfDkS4dJkiOVIoikZHPvQ==, 2657 + } 2658 + engines: { node: ">=20.0.0" } 2659 peerDependencies: 2660 + "@typespec/compiler": ^1.4.0 2661 2662 + "@ungap/structured-clone@1.3.0": 2663 + resolution: 2664 + { 2665 + integrity: sha512-WmoN8qaIAo7WTYWbAZuG8PYEhn5fkz7dZrqTBZ7dtt//lL2Gwms1IcnQ5yHqjDfX8Ft5j4YzDM23f87zBfDe9g==, 2666 + } 2667 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 } 2674 peerDependencies: 2675 vite: ^4.2.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 2676 2677 + "@vitest/expect@1.6.1": 2678 + resolution: 2679 + { 2680 + integrity: sha512-jXL+9+ZNIJKruofqXuuTClf44eSpcHlgj3CiuNihUF3Ioujtmc0zIa3UJOW5RjDK1YLBJZnWBlPuqhYycLioog==, 2681 + } 2682 2683 + "@vitest/runner@1.6.1": 2684 + resolution: 2685 + { 2686 + integrity: sha512-3nSnYXkVkf3mXFfE7vVyPmi3Sazhb/2cfZGGs0JRzFsPFvAMBEcrweV1V1GsrstdXeKCTXlJbvnQwGWgEIHmOA==, 2687 + } 2688 2689 + "@vitest/snapshot@1.6.1": 2690 + resolution: 2691 + { 2692 + integrity: sha512-WvidQuWAzU2p95u8GAKlRMqMyN1yOJkGHnx3M1PL9Raf7AQ1kwLKg04ADlCa3+OXUZE7BceOhVZiuWAbzCKcUQ==, 2693 + } 2694 2695 + "@vitest/spy@1.6.1": 2696 + resolution: 2697 + { 2698 + integrity: sha512-MGcMmpGkZebsMZhbQKkAf9CX5zGvjkBTqf8Zx3ApYWXr3wG+QvEu2eXWfnIIWYSJExIp4V9FCKDEeygzkYrXMw==, 2699 + } 2700 2701 + "@vitest/utils@1.6.1": 2702 + resolution: 2703 + { 2704 + integrity: sha512-jOrrUvXM4Av9ZWiG1EajNto0u96kWAhJ1LmPmJhXXQx/32MecEKd10pOLYgS2BQx1TgkGhloPU1ArDW2vvaY6g==, 2705 + } 2706 2707 abort-controller@3.0.0: 2708 + resolution: 2709 + { 2710 + integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==, 2711 + } 2712 + engines: { node: ">=6.5" } 2713 2714 accepts@1.3.8: 2715 + resolution: 2716 + { 2717 + integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==, 2718 + } 2719 + engines: { node: ">= 0.6" } 2720 2721 acorn-walk@8.3.4: 2722 + resolution: 2723 + { 2724 + integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==, 2725 + } 2726 + engines: { node: ">=0.4.0" } 2727 2728 acorn@8.15.0: 2729 + resolution: 2730 + { 2731 + integrity: sha512-NZyJarBfL7nWwIq+FDL6Zp/yHEhePMNnnJ0y3qfieCrmNvYct8uvtiV41UvlSe6apAfk0fY1FbWx+NwfmpvtTg==, 2732 + } 2733 + engines: { node: ">=0.4.0" } 2734 hasBin: true 2735 2736 ajv-draft-04@1.0.0: 2737 + resolution: 2738 + { 2739 + integrity: sha512-mv00Te6nmYbRp5DCwclxtt7yV/joXJPGS7nM+97GdxvuttCOfgI3K4U25zboyeX0O+myI8ERluxQe5wljMmVIw==, 2740 + } 2741 peerDependencies: 2742 ajv: ^8.5.0 2743 peerDependenciesMeta: ··· 2745 optional: true 2746 2747 ajv@8.17.1: 2748 + resolution: 2749 + { 2750 + integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==, 2751 + } 2752 2753 ansi-align@3.0.1: 2754 + resolution: 2755 + { 2756 + integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==, 2757 + } 2758 2759 ansi-regex@5.0.1: 2760 + resolution: 2761 + { 2762 + integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==, 2763 + } 2764 + engines: { node: ">=8" } 2765 2766 ansi-regex@6.2.2: 2767 + resolution: 2768 + { 2769 + integrity: sha512-Bq3SmSpyFHaWjPk8If9yc6svM8c56dB5BAtW4Qbw5jHTwwXXcTLoRMkpDJp6VL0XzlWaCHTXrkFURMYmD0sLqg==, 2770 + } 2771 + engines: { node: ">=12" } 2772 2773 ansi-styles@4.3.0: 2774 + resolution: 2775 + { 2776 + integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==, 2777 + } 2778 + engines: { node: ">=8" } 2779 2780 ansi-styles@5.2.0: 2781 + resolution: 2782 + { 2783 + integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==, 2784 + } 2785 + engines: { node: ">=10" } 2786 2787 ansi-styles@6.2.3: 2788 + resolution: 2789 + { 2790 + integrity: sha512-4Dj6M28JB+oAH8kFkTLUo+a2jwOFkuqb3yucU0CANcRRUbxS0cP0nZYCGjcc3BNXwRIsUVmDGgzawme7zvJHvg==, 2791 + } 2792 + engines: { node: ">=12" } 2793 2794 anymatch@3.1.3: 2795 + resolution: 2796 + { 2797 + integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==, 2798 + } 2799 + engines: { node: ">= 8" } 2800 2801 argparse@2.0.1: 2802 + resolution: 2803 + { 2804 + integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==, 2805 + } 2806 2807 aria-query@5.3.2: 2808 + resolution: 2809 + { 2810 + integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==, 2811 + } 2812 + engines: { node: ">= 0.4" } 2813 2814 array-flatten@1.1.1: 2815 + resolution: 2816 + { 2817 + integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==, 2818 + } 2819 2820 array-iterate@2.0.1: 2821 + resolution: 2822 + { 2823 + integrity: sha512-I1jXZMjAgCMmxT4qxXfPXa6SthSoE8h6gkSI9BGGNv8mP8G/v0blc+qFnZu6K42vTOiuME596QaLO0TP3Lk0xg==, 2824 + } 2825 2826 asn1.js@4.10.1: 2827 + resolution: 2828 + { 2829 + integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==, 2830 + } 2831 2832 assert@2.1.0: 2833 + resolution: 2834 + { 2835 + integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==, 2836 + } 2837 2838 assertion-error@1.1.0: 2839 + resolution: 2840 + { 2841 + integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==, 2842 + } 2843 2844 astro@5.14.1: 2845 + resolution: 2846 + { 2847 + integrity: sha512-gPa8NY7/lP8j8g81iy8UwANF3+aukKRWS68IlthZQNgykpg80ne6lbHOp6FErYycxQ1TUhgEfkXVDQZAoJx8Bg==, 2848 + } 2849 + engines: 2850 + { node: 18.20.8 || ^20.3.0 || >=22.0.0, npm: ">=9.6.5", pnpm: ">=7.1.0" } 2851 hasBin: true 2852 2853 atomic-sleep@1.0.0: 2854 + resolution: 2855 + { 2856 + integrity: sha512-kNOjDqAh7px0XWNI+4QbzoiR/nTkHAWNud2uvnJquD1/x5a7EQZMJT0AczqK0Qn67oY/TTQ1LbUKajZpp3I9tQ==, 2857 + } 2858 + engines: { node: ">=8.0.0" } 2859 2860 available-typed-arrays@1.0.7: 2861 + resolution: 2862 + { 2863 + integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==, 2864 + } 2865 + engines: { node: ">= 0.4" } 2866 2867 axobject-query@4.1.0: 2868 + resolution: 2869 + { 2870 + integrity: sha512-qIj0G9wZbMGNLjLmg1PT6v2mE9AH2zlnADJD/2tC6E00hgmhUOfEB6greHPAfLRSufHqROIUTkw6E+M3lH0PTQ==, 2871 + } 2872 + engines: { node: ">= 0.4" } 2873 2874 bail@2.0.2: 2875 + resolution: 2876 + { 2877 + integrity: sha512-0xO6mYd7JB2YesxDKplafRpsiOzPt9V02ddPCLbY1xYGPOX24NTyN50qnUxgCPcSoYMhKpAuBTjQoRZCAkUDRw==, 2878 + } 2879 2880 balanced-match@1.0.2: 2881 + resolution: 2882 + { 2883 + integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==, 2884 + } 2885 2886 base-64@1.0.0: 2887 + resolution: 2888 + { 2889 + integrity: sha512-kwDPIFCGx0NZHog36dj+tHiwP4QMzsZ3AgMViUBKI0+V5n4U0ufTCUMhnQ04diaRI8EX/QcPfql7zlhZ7j4zgg==, 2890 + } 2891 2892 base64-js@1.5.1: 2893 + resolution: 2894 + { 2895 + integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==, 2896 + } 2897 2898 baseline-browser-mapping@2.8.12: 2899 + resolution: 2900 + { 2901 + integrity: sha512-vAPMQdnyKCBtkmQA6FMCBvU9qFIppS3nzyXnEM+Lo2IAhG4Mpjv9cCxMudhgV3YdNNJv6TNqXy97dfRVL2LmaQ==, 2902 + } 2903 hasBin: true 2904 2905 blob-to-buffer@1.2.9: 2906 + resolution: 2907 + { 2908 + integrity: sha512-BF033y5fN6OCofD3vgHmNtwZWRcq9NLyyxyILx9hfMy1sXYy4ojFl765hJ2lP0YaN2fuxPaLO2Vzzoxy0FLFFA==, 2909 + } 2910 2911 bn.js@4.12.2: 2912 + resolution: 2913 + { 2914 + integrity: sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==, 2915 + } 2916 2917 bn.js@5.2.2: 2918 + resolution: 2919 + { 2920 + integrity: sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==, 2921 + } 2922 2923 body-parser@1.20.3: 2924 + resolution: 2925 + { 2926 + integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==, 2927 + } 2928 + engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } 2929 2930 boxen@8.0.1: 2931 + resolution: 2932 + { 2933 + integrity: sha512-F3PH5k5juxom4xktynS7MoFY+NUWH5LC4CnH11YB8NPew+HLpmBLCybSAEyb2F+4pRXhuhWqFesoQd6DAyc2hw==, 2934 + } 2935 + engines: { node: ">=18" } 2936 2937 brace-expansion@2.0.2: 2938 + resolution: 2939 + { 2940 + integrity: sha512-Jt0vHyM+jmUBqojB7E1NIYadt0vI0Qxjxd2TErW94wDz+E2LAm5vKMXXwg6ZZBTHPuUlDgQHKXvjGBdfcF1ZDQ==, 2941 + } 2942 2943 braces@3.0.3: 2944 + resolution: 2945 + { 2946 + integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==, 2947 + } 2948 + engines: { node: ">=8" } 2949 2950 brorand@1.1.0: 2951 + resolution: 2952 + { 2953 + integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==, 2954 + } 2955 2956 brotli@1.3.3: 2957 + resolution: 2958 + { 2959 + integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==, 2960 + } 2961 2962 browser-resolve@2.0.0: 2963 + resolution: 2964 + { 2965 + integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==, 2966 + } 2967 2968 browserify-aes@1.2.0: 2969 + resolution: 2970 + { 2971 + integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==, 2972 + } 2973 2974 browserify-cipher@1.0.1: 2975 + resolution: 2976 + { 2977 + integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==, 2978 + } 2979 2980 browserify-des@1.0.2: 2981 + resolution: 2982 + { 2983 + integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==, 2984 + } 2985 2986 browserify-rsa@4.1.1: 2987 + resolution: 2988 + { 2989 + integrity: sha512-YBjSAiTqM04ZVei6sXighu679a3SqWORA3qZTEqZImnlkDIFtKc6pNutpjyZ8RJTjQtuYfeetkxM11GwoYXMIQ==, 2990 + } 2991 + engines: { node: ">= 0.10" } 2992 2993 browserify-sign@4.2.5: 2994 + resolution: 2995 + { 2996 + integrity: sha512-C2AUdAJg6rlM2W5QMp2Q4KGQMVBwR1lIimTsUnutJ8bMpW5B52pGpR2gEnNBNwijumDo5FojQ0L9JrXA8m4YEw==, 2997 + } 2998 + engines: { node: ">= 0.10" } 2999 3000 browserify-zlib@0.2.0: 3001 + resolution: 3002 + { 3003 + integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==, 3004 + } 3005 3006 browserslist@4.26.3: 3007 + resolution: 3008 + { 3009 + integrity: sha512-lAUU+02RFBuCKQPj/P6NgjlbCnLBMp4UtgTx7vNHd3XSIJF87s9a5rA3aH2yw3GS9DqZAUbOtZdCCiZeVRqt0w==, 3010 + } 3011 + engines: { node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7 } 3012 hasBin: true 3013 3014 buffer-xor@1.0.3: 3015 + resolution: 3016 + { 3017 + integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==, 3018 + } 3019 3020 buffer@5.7.1: 3021 + resolution: 3022 + { 3023 + integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==, 3024 + } 3025 3026 buffer@6.0.3: 3027 + resolution: 3028 + { 3029 + integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==, 3030 + } 3031 3032 builtin-status-codes@3.0.0: 3033 + resolution: 3034 + { 3035 + integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==, 3036 + } 3037 3038 bytes@3.1.2: 3039 + resolution: 3040 + { 3041 + integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==, 3042 + } 3043 + engines: { node: ">= 0.8" } 3044 3045 cac@6.7.14: 3046 + resolution: 3047 + { 3048 + integrity: sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==, 3049 + } 3050 + engines: { node: ">=8" } 3051 3052 call-bind-apply-helpers@1.0.2: 3053 + resolution: 3054 + { 3055 + integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==, 3056 + } 3057 + engines: { node: ">= 0.4" } 3058 3059 call-bind@1.0.8: 3060 + resolution: 3061 + { 3062 + integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==, 3063 + } 3064 + engines: { node: ">= 0.4" } 3065 3066 call-bound@1.0.4: 3067 + resolution: 3068 + { 3069 + integrity: sha512-+ys997U96po4Kx/ABpBCqhA9EuxJaQWDQg7295H4hBphv3IZg0boBKuwYpt4YXp6MZ5AmZQnU/tyMTlRpaSejg==, 3070 + } 3071 + engines: { node: ">= 0.4" } 3072 3073 call-me-maybe@1.0.2: 3074 + resolution: 3075 + { 3076 + integrity: sha512-HpX65o1Hnr9HH25ojC1YGs7HCQLq0GCOibSaWER0eNpgJ/Z1MZv2mTc7+xh6WOPxbRVcmgbv4hGU+uSQ/2xFZQ==, 3077 + } 3078 3079 camelcase@8.0.0: 3080 + resolution: 3081 + { 3082 + integrity: sha512-8WB3Jcas3swSvjIeA2yvCJ+Miyz5l1ZmB6HFb9R1317dt9LCQoswg/BGrmAmkWVEszSrrg4RwmO46qIm2OEnSA==, 3083 + } 3084 + engines: { node: ">=16" } 3085 3086 caniuse-lite@1.0.30001747: 3087 + resolution: 3088 + { 3089 + integrity: sha512-mzFa2DGIhuc5490Nd/G31xN1pnBnYMadtkyTjefPI7wzypqgCEpeWu9bJr0OnDsyKrW75zA9ZAt7pbQFmwLsQg==, 3090 + } 3091 3092 cbor-extract@2.2.0: 3093 + resolution: 3094 + { 3095 + integrity: sha512-Ig1zM66BjLfTXpNgKpvBePq271BPOvu8MR0Jl080yG7Jsl+wAZunfrwiwA+9ruzm/WEdIV5QF/bjDZTqyAIVHA==, 3096 + } 3097 hasBin: true 3098 3099 cbor-x@1.6.0: 3100 + resolution: 3101 + { 3102 + integrity: sha512-0kareyRwHSkL6ws5VXHEf8uY1liitysCVJjlmhaLG+IXLqhSaOO+t63coaso7yjwEzWZzLy8fJo06gZDVQM9Qg==, 3103 + } 3104 3105 cborg@1.10.2: 3106 + resolution: 3107 + { 3108 + integrity: sha512-b3tFPA9pUr2zCUiCfRd2+wok2/LBSNUMKOuRRok+WlvvAgEt/PlbgPTsZUcwCOs53IJvLgTp0eotwtosE6njug==, 3109 + } 3110 hasBin: true 3111 3112 ccount@2.0.1: 3113 + resolution: 3114 + { 3115 + integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==, 3116 + } 3117 3118 chai@4.5.0: 3119 + resolution: 3120 + { 3121 + integrity: sha512-RITGBfijLkBddZvnn8jdqoTypxvqbOLYQkGGxXzeFjVHvudaPw0HNFD9x928/eUwYWd2dPCugVqspGALTZZQKw==, 3122 + } 3123 + engines: { node: ">=4" } 3124 3125 chalk@4.1.2: 3126 + resolution: 3127 + { 3128 + integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==, 3129 + } 3130 + engines: { node: ">=10" } 3131 3132 chalk@5.6.2: 3133 + resolution: 3134 + { 3135 + integrity: sha512-7NzBL0rN6fMUW+f7A6Io4h40qQlG+xGmtMxfbnH/K7TAtt8JQWVQK+6g0UXKMeVJoyV5EkkNsErQ8pVD3bLHbA==, 3136 + } 3137 + engines: { node: ^12.17.0 || ^14.13 || >=16.0.0 } 3138 3139 change-case@5.4.4: 3140 + resolution: 3141 + { 3142 + integrity: sha512-HRQyTk2/YPEkt9TnUPbOpr64Uw3KOicFWPVBb+xiHvd6eBx/qPr9xqfBFDT8P2vWsvvz4jbEkfDe71W3VyNu2w==, 3143 + } 3144 3145 character-entities-html4@2.1.0: 3146 + resolution: 3147 + { 3148 + integrity: sha512-1v7fgQRj6hnSwFpq1Eu0ynr/CDEw0rXo2B61qXrLNdHZmPKgb7fqS1a2JwF0rISo9q77jDI8VMEHoApn8qDoZA==, 3149 + } 3150 3151 character-entities-legacy@3.0.0: 3152 + resolution: 3153 + { 3154 + integrity: sha512-RpPp0asT/6ufRm//AJVwpViZbGM/MkjQFxJccQRHmISF/22NBtsHqAWmL+/pmkPWoIUJdWyeVleTl1wydHATVQ==, 3155 + } 3156 3157 character-entities@2.0.2: 3158 + resolution: 3159 + { 3160 + integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==, 3161 + } 3162 3163 chardet@2.1.0: 3164 + resolution: 3165 + { 3166 + integrity: sha512-bNFETTG/pM5ryzQ9Ad0lJOTa6HWD/YsScAR3EnCPZRPlQh77JocYktSHOUHelyhm8IARL+o4c4F1bP5KVOjiRA==, 3167 + } 3168 3169 check-error@1.0.3: 3170 + resolution: 3171 + { 3172 + integrity: sha512-iKEoDYaRmd1mxM90a2OEfWhjsjPpYPuQ+lMYsoxB126+t8fw7ySEO48nmDg5COTjxDI65/Y2OWpeEHk3ZOe8zg==, 3173 + } 3174 3175 chokidar@4.0.3: 3176 + resolution: 3177 + { 3178 + integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==, 3179 + } 3180 + engines: { node: ">= 14.16.0" } 3181 3182 chownr@3.0.0: 3183 + resolution: 3184 + { 3185 + integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==, 3186 + } 3187 + engines: { node: ">=18" } 3188 3189 ci-info@4.3.0: 3190 + resolution: 3191 + { 3192 + integrity: sha512-l+2bNRMiQgcfILUi33labAZYIWlH1kWDp+ecNo5iisRKrbm0xcRyCww71/YU0Fkw0mAFpz9bJayXPjey6vkmaQ==, 3193 + } 3194 + engines: { node: ">=8" } 3195 3196 cipher-base@1.0.7: 3197 + resolution: 3198 + { 3199 + integrity: sha512-Mz9QMT5fJe7bKI7MH31UilT5cEK5EHHRCccw/YRFsRY47AuNgaV6HY3rscp0/I4Q+tTW/5zoqpSeRRI54TkDWA==, 3200 + } 3201 + engines: { node: ">= 0.10" } 3202 3203 cli-boxes@3.0.0: 3204 + resolution: 3205 + { 3206 + integrity: sha512-/lzGpEWL/8PfI0BmBOPRwp0c/wFNX1RdUML3jK/RcSBA9T8mZDdQpqYBKtCFTOfQbwPqWEOpjqW+Fnayc0969g==, 3207 + } 3208 + engines: { node: ">=10" } 3209 3210 cli-width@4.1.0: 3211 + resolution: 3212 + { 3213 + integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==, 3214 + } 3215 + engines: { node: ">= 12" } 3216 3217 cliui@8.0.1: 3218 + resolution: 3219 + { 3220 + integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==, 3221 + } 3222 + engines: { node: ">=12" } 3223 3224 cliui@9.0.1: 3225 + resolution: 3226 + { 3227 + integrity: sha512-k7ndgKhwoQveBL+/1tqGJYNz097I7WOvwbmmU2AR5+magtbjPWQTS1C5vzGkBC8Ym8UWRzfKUzUUqFLypY4Q+w==, 3228 + } 3229 + engines: { node: ">=20" } 3230 3231 clone@2.1.2: 3232 + resolution: 3233 + { 3234 + integrity: sha512-3Pe/CF1Nn94hyhIYpjtiLhdCoEoz0DqQ+988E9gmeEdQZlojxnOb74wctFyuwWQHzqyf9X7C7MG8juUpqBJT8w==, 3235 + } 3236 + engines: { node: ">=0.8" } 3237 3238 clsx@2.1.1: 3239 + resolution: 3240 + { 3241 + integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==, 3242 + } 3243 + engines: { node: ">=6" } 3244 3245 code-block-writer@13.0.3: 3246 + resolution: 3247 + { 3248 + integrity: sha512-Oofo0pq3IKnsFtuHqSF7TqBfr71aeyZDVJ0HpmqB7FBM2qEigL0iPONSCZSO9pE9dZTAxANe5XHG9Uy0YMv8cg==, 3249 + } 3250 3251 color-convert@2.0.1: 3252 + resolution: 3253 + { 3254 + integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==, 3255 + } 3256 + engines: { node: ">=7.0.0" } 3257 3258 color-name@1.1.4: 3259 + resolution: 3260 + { 3261 + integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==, 3262 + } 3263 3264 comma-separated-tokens@2.0.3: 3265 + resolution: 3266 + { 3267 + integrity: sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==, 3268 + } 3269 3270 commander@9.5.0: 3271 + resolution: 3272 + { 3273 + integrity: sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==, 3274 + } 3275 + engines: { node: ^12.20.0 || >=14 } 3276 3277 common-ancestor-path@1.0.1: 3278 + resolution: 3279 + { 3280 + integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==, 3281 + } 3282 3283 concurrently@9.2.1: 3284 + resolution: 3285 + { 3286 + integrity: sha512-fsfrO0MxV64Znoy8/l1vVIjjHa29SZyyqPgQBwhiDcaW8wJc2W3XWVOGx4M3oJBnv/zdUZIIp1gDeS98GzP8Ng==, 3287 + } 3288 + engines: { node: ">=18" } 3289 hasBin: true 3290 3291 confbox@0.1.8: 3292 + resolution: 3293 + { 3294 + integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==, 3295 + } 3296 3297 confbox@0.2.2: 3298 + resolution: 3299 + { 3300 + integrity: sha512-1NB+BKqhtNipMsov4xI/NnhCKp9XG9NamYp5PVm9klAT0fsrNPjaFICsCFhNhwZJKNh7zB/3q8qXz0E9oaMNtQ==, 3301 + } 3302 3303 console-browserify@1.2.0: 3304 + resolution: 3305 + { 3306 + integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==, 3307 + } 3308 3309 constants-browserify@1.0.0: 3310 + resolution: 3311 + { 3312 + integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==, 3313 + } 3314 3315 content-disposition@0.5.4: 3316 + resolution: 3317 + { 3318 + integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==, 3319 + } 3320 + engines: { node: ">= 0.6" } 3321 3322 content-type@1.0.5: 3323 + resolution: 3324 + { 3325 + integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==, 3326 + } 3327 + engines: { node: ">= 0.6" } 3328 3329 convert-source-map@2.0.0: 3330 + resolution: 3331 + { 3332 + integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==, 3333 + } 3334 3335 cookie-es@1.2.2: 3336 + resolution: 3337 + { 3338 + integrity: sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==, 3339 + } 3340 3341 cookie-signature@1.0.6: 3342 + resolution: 3343 + { 3344 + integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==, 3345 + } 3346 3347 cookie@0.7.1: 3348 + resolution: 3349 + { 3350 + integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==, 3351 + } 3352 + engines: { node: ">= 0.6" } 3353 3354 cookie@1.0.2: 3355 + resolution: 3356 + { 3357 + integrity: sha512-9Kr/j4O16ISv8zBBhJoi4bXOYNTkFLOqSL3UDB0njXxCXNezjeyVrJyGOWtgfs/q2km1gwBcfH8q1yEGoMYunA==, 3358 + } 3359 + engines: { node: ">=18" } 3360 3361 core-util-is@1.0.3: 3362 + resolution: 3363 + { 3364 + integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==, 3365 + } 3366 3367 create-ecdh@4.0.4: 3368 + resolution: 3369 + { 3370 + integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==, 3371 + } 3372 3373 create-hash@1.2.0: 3374 + resolution: 3375 + { 3376 + integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==, 3377 + } 3378 3379 create-hmac@1.1.7: 3380 + resolution: 3381 + { 3382 + integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==, 3383 + } 3384 3385 create-require@1.1.1: 3386 + resolution: 3387 + { 3388 + integrity: sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==, 3389 + } 3390 3391 cross-fetch@3.2.0: 3392 + resolution: 3393 + { 3394 + integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==, 3395 + } 3396 3397 cross-spawn@7.0.6: 3398 + resolution: 3399 + { 3400 + integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==, 3401 + } 3402 + engines: { node: ">= 8" } 3403 3404 crossws@0.3.5: 3405 + resolution: 3406 + { 3407 + integrity: sha512-ojKiDvcmByhwa8YYqbQI/hg7MEU0NC03+pSdEq4ZUnZR9xXpwk7E43SMNGkn+JxJGPFtNvQ48+vV2p+P1ml5PA==, 3408 + } 3409 3410 crypto-browserify@3.12.1: 3411 + resolution: 3412 + { 3413 + integrity: sha512-r4ESw/IlusD17lgQi1O20Fa3qNnsckR126TdUuBgAu7GBYSIPvdNyONd3Zrxh0xCwA4+6w/TDArBPsMvhur+KQ==, 3414 + } 3415 + engines: { node: ">= 0.10" } 3416 3417 css-tree@3.1.0: 3418 + resolution: 3419 + { 3420 + integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==, 3421 + } 3422 + engines: { node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0 } 3423 3424 cssesc@3.0.0: 3425 + resolution: 3426 + { 3427 + integrity: sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==, 3428 + } 3429 + engines: { node: ">=4" } 3430 hasBin: true 3431 3432 csstype@3.1.3: 3433 + resolution: 3434 + { 3435 + integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==, 3436 + } 3437 3438 debounce@2.2.0: 3439 + resolution: 3440 + { 3441 + integrity: sha512-Xks6RUDLZFdz8LIdR6q0MTH44k7FikOmnh5xkSjMig6ch45afc8sjTjRQf3P6ax8dMgcQrYO/AR2RGWURrruqw==, 3442 + } 3443 + engines: { node: ">=18" } 3444 3445 debug@2.6.9: 3446 + resolution: 3447 + { 3448 + integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==, 3449 + } 3450 peerDependencies: 3451 + supports-color: "*" 3452 peerDependenciesMeta: 3453 supports-color: 3454 optional: true 3455 3456 debug@4.4.3: 3457 + resolution: 3458 + { 3459 + integrity: sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==, 3460 + } 3461 + engines: { node: ">=6.0" } 3462 peerDependencies: 3463 + supports-color: "*" 3464 peerDependenciesMeta: 3465 supports-color: 3466 optional: true 3467 3468 decode-named-character-reference@1.2.0: 3469 + resolution: 3470 + { 3471 + integrity: sha512-c6fcElNV6ShtZXmsgNgFFV5tVX2PaV4g+MOAkb8eXHvn6sryJBrZa9r0zV6+dtTyoCKxtDy5tyQ5ZwQuidtd+Q==, 3472 + } 3473 3474 deep-eql@4.1.4: 3475 + resolution: 3476 + { 3477 + integrity: sha512-SUwdGfqdKOwxCPeVYjwSyRpJ7Z+fhpwIAtmCUdZIWZ/YP5R9WAsyuSgpLVDi9bjWoN2LXHNss/dk3urXtdQxGg==, 3478 + } 3479 + engines: { node: ">=6" } 3480 3481 define-data-property@1.1.4: 3482 + resolution: 3483 + { 3484 + integrity: sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==, 3485 + } 3486 + engines: { node: ">= 0.4" } 3487 3488 define-properties@1.2.1: 3489 + resolution: 3490 + { 3491 + integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==, 3492 + } 3493 + engines: { node: ">= 0.4" } 3494 3495 defu@6.1.4: 3496 + resolution: 3497 + { 3498 + integrity: sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==, 3499 + } 3500 3501 depd@2.0.0: 3502 + resolution: 3503 + { 3504 + integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==, 3505 + } 3506 + engines: { node: ">= 0.8" } 3507 3508 dequal@2.0.3: 3509 + resolution: 3510 + { 3511 + integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==, 3512 + } 3513 + engines: { node: ">=6" } 3514 3515 des.js@1.1.0: 3516 + resolution: 3517 + { 3518 + integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==, 3519 + } 3520 3521 destr@2.0.5: 3522 + resolution: 3523 + { 3524 + integrity: sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==, 3525 + } 3526 3527 destroy@1.2.0: 3528 + resolution: 3529 + { 3530 + integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==, 3531 + } 3532 + engines: { node: ">= 0.8", npm: 1.2.8000 || >= 1.4.16 } 3533 3534 detect-libc@2.1.1: 3535 + resolution: 3536 + { 3537 + integrity: sha512-ecqj/sy1jcK1uWrwpR67UhYrIFQ+5WlGxth34WquCbamhFA6hkkwiu37o6J5xCHdo1oixJRfVRw+ywV+Hq/0Aw==, 3538 + } 3539 + engines: { node: ">=8" } 3540 3541 deterministic-object-hash@2.0.2: 3542 + resolution: 3543 + { 3544 + integrity: sha512-KxektNH63SrbfUyDiwXqRb1rLwKt33AmMv+5Nhsw1kqZ13SJBRTgZHtGbE+hH3a1mVW1cz+4pqSWVPAtLVXTzQ==, 3545 + } 3546 + engines: { node: ">=18" } 3547 3548 devalue@5.3.2: 3549 + resolution: 3550 + { 3551 + integrity: sha512-UDsjUbpQn9kvm68slnrs+mfxwFkIflOhkanmyabZ8zOYk8SMEIbJ3TK+88g70hSIeytu4y18f0z/hYHMTrXIWw==, 3552 + } 3553 3554 devlop@1.1.0: 3555 + resolution: 3556 + { 3557 + integrity: sha512-RWmIqhcFf1lRYBvNmr7qTNuyCt/7/ns2jbpp1+PalgE/rDQcBT0fioSMUpJ93irlUhC5hrg4cYqe6U+0ImW0rA==, 3558 + } 3559 3560 dfa@1.2.0: 3561 + resolution: 3562 + { 3563 + integrity: sha512-ED3jP8saaweFTjeGX8HQPjeC1YYyZs98jGNZx6IiBvxW7JG5v492kamAQB3m2wop07CvU/RQmzcKr6bgcC5D/Q==, 3564 + } 3565 3566 diff-sequences@29.6.3: 3567 + resolution: 3568 + { 3569 + integrity: sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==, 3570 + } 3571 + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } 3572 3573 diff@5.2.0: 3574 + resolution: 3575 + { 3576 + integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==, 3577 + } 3578 + engines: { node: ">=0.3.1" } 3579 3580 diffie-hellman@5.0.3: 3581 + resolution: 3582 + { 3583 + integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==, 3584 + } 3585 3586 dlv@1.1.3: 3587 + resolution: 3588 + { 3589 + integrity: sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==, 3590 + } 3591 3592 domain-browser@4.22.0: 3593 + resolution: 3594 + { 3595 + integrity: sha512-IGBwjF7tNk3cwypFNH/7bfzBcgSCbaMOD3GsaY1AU/JRrnHnYgEM0+9kQt52iZxjNsjBtJYtao146V+f8jFZNw==, 3596 + } 3597 + engines: { node: ">=10" } 3598 3599 dset@3.1.4: 3600 + resolution: 3601 + { 3602 + integrity: sha512-2QF/g9/zTaPDc3BjNcVTGoBbXBgYfMTTceLaYcFJ/W9kggFUkhxD/hMEeuLKbugyef9SqAx8cpgwlIP/jinUTA==, 3603 + } 3604 + engines: { node: ">=4" } 3605 3606 dunder-proto@1.0.1: 3607 + resolution: 3608 + { 3609 + integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==, 3610 + } 3611 + engines: { node: ">= 0.4" } 3612 3613 duplexer@0.1.2: 3614 + resolution: 3615 + { 3616 + integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==, 3617 + } 3618 3619 ee-first@1.1.1: 3620 + resolution: 3621 + { 3622 + integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==, 3623 + } 3624 3625 electron-to-chromium@1.5.230: 3626 + resolution: 3627 + { 3628 + integrity: sha512-A6A6Fd3+gMdaed9wX83CvHYJb4UuapPD5X5SLq72VZJzxHSY0/LUweGXRWmQlh2ln7KV7iw7jnwXK7dlPoOnHQ==, 3629 + } 3630 3631 elliptic@6.6.1: 3632 + resolution: 3633 + { 3634 + integrity: sha512-RaddvvMatK2LJHqFJ+YA4WysVN5Ita9E35botqIYspQ4TkRAlCicdzKOjlyv/1Za5RyTNn7di//eEV0uTAfe3g==, 3635 + } 3636 3637 embla-carousel-autoplay@8.6.0: 3638 + resolution: 3639 + { 3640 + integrity: sha512-OBu5G3nwaSXkZCo1A6LTaFMZ8EpkYbwIaH+bPqdBnDGQ2fh4+NbzjXjs2SktoPNKCtflfVMc75njaDHOYXcrsA==, 3641 + } 3642 peerDependencies: 3643 embla-carousel: 8.6.0 3644 3645 embla-carousel-fade@8.6.0: 3646 + resolution: 3647 + { 3648 + integrity: sha512-qaYsx5mwCz72ZrjlsXgs1nKejSrW+UhkbOMwLgfRT7w2LtdEB03nPRI06GHuHv5ac2USvbEiX2/nAHctcDwvpg==, 3649 + } 3650 peerDependencies: 3651 embla-carousel: 8.6.0 3652 3653 embla-carousel@8.6.0: 3654 + resolution: 3655 + { 3656 + integrity: sha512-SjWyZBHJPbqxHOzckOfo8lHisEaJWmwd23XppYFYVh10bU66/Pn5tkVkbkCMZVdbUE5eTCI2nD8OyIP4Z+uwkA==, 3657 + } 3658 3659 emoji-regex@10.5.0: 3660 + resolution: 3661 + { 3662 + integrity: sha512-lb49vf1Xzfx080OKA0o6l8DQQpV+6Vg95zyCJX9VB/BqKYlhG7N4wgROUUHRA+ZPUefLnteQOad7z1kT2bV7bg==, 3663 + } 3664 3665 emoji-regex@8.0.0: 3666 + resolution: 3667 + { 3668 + integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==, 3669 + } 3670 3671 encodeurl@1.0.2: 3672 + resolution: 3673 + { 3674 + integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==, 3675 + } 3676 + engines: { node: ">= 0.8" } 3677 3678 encodeurl@2.0.0: 3679 + resolution: 3680 + { 3681 + integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==, 3682 + } 3683 + engines: { node: ">= 0.8" } 3684 3685 entities@6.0.1: 3686 + resolution: 3687 + { 3688 + integrity: sha512-aN97NXWF6AWBTahfVOIrB/NShkzi5H7F9r1s9mD3cDj4Ko5f2qhhVoYMibXF7GlLveb/D2ioWay8lxI97Ven3g==, 3689 + } 3690 + engines: { node: ">=0.12" } 3691 3692 env-paths@3.0.0: 3693 + resolution: 3694 + { 3695 + integrity: sha512-dtJUTepzMW3Lm/NPxRf3wP4642UWhjL2sQxc+ym2YMj1m/H2zDNQOlezafzkHwn6sMstjHTwG6iQQsctDW/b1A==, 3696 + } 3697 + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 3698 3699 es-define-property@1.0.1: 3700 + resolution: 3701 + { 3702 + integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==, 3703 + } 3704 + engines: { node: ">= 0.4" } 3705 3706 es-errors@1.3.0: 3707 + resolution: 3708 + { 3709 + integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==, 3710 + } 3711 + engines: { node: ">= 0.4" } 3712 3713 es-module-lexer@1.7.0: 3714 + resolution: 3715 + { 3716 + integrity: sha512-jEQoCwk8hyb2AZziIOLhDqpm5+2ww5uIE6lkO/6jcOCusfk6LhMHpXXfBLXTZ7Ydyt0j4VoUQv6uGNYbdW+kBA==, 3717 + } 3718 3719 es-object-atoms@1.1.1: 3720 + resolution: 3721 + { 3722 + integrity: sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==, 3723 + } 3724 + engines: { node: ">= 0.4" } 3725 3726 esbuild-plugins-node-modules-polyfill@1.7.1: 3727 + resolution: 3728 + { 3729 + integrity: sha512-IEaUhaS1RukGGcatDzqJmR+AzUWJ2upTJZP2i7FzR37Iw5Lk0LReCTnWnPMWnGG9lO4MWTGKEGGLWEOPegTRJA==, 3730 + } 3731 + engines: { node: ">=14.0.0" } 3732 peerDependencies: 3733 + esbuild: ">=0.14.0 <=0.25.x" 3734 3735 esbuild@0.21.5: 3736 + resolution: 3737 + { 3738 + integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==, 3739 + } 3740 + engines: { node: ">=12" } 3741 hasBin: true 3742 3743 esbuild@0.25.10: 3744 + resolution: 3745 + { 3746 + integrity: sha512-9RiGKvCwaqxO2owP61uQ4BgNborAQskMR6QusfWzQqv7AZOg5oGehdY2pRJMTKuwxd1IDBP4rSbI5lHzU7SMsQ==, 3747 + } 3748 + engines: { node: ">=18" } 3749 hasBin: true 3750 3751 escalade@3.2.0: 3752 + resolution: 3753 + { 3754 + integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==, 3755 + } 3756 + engines: { node: ">=6" } 3757 3758 escape-html@1.0.3: 3759 + resolution: 3760 + { 3761 + integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==, 3762 + } 3763 3764 escape-string-regexp@5.0.0: 3765 + resolution: 3766 + { 3767 + integrity: sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==, 3768 + } 3769 + engines: { node: ">=12" } 3770 3771 estree-walker@2.0.2: 3772 + resolution: 3773 + { 3774 + integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==, 3775 + } 3776 3777 estree-walker@3.0.3: 3778 + resolution: 3779 + { 3780 + integrity: sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==, 3781 + } 3782 3783 etag@1.8.1: 3784 + resolution: 3785 + { 3786 + integrity: sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==, 3787 + } 3788 + engines: { node: ">= 0.6" } 3789 3790 event-stream@3.3.4: 3791 + resolution: 3792 + { 3793 + integrity: sha512-QHpkERcGsR0T7Qm3HNJSyXKEEj8AHNxkY3PK8TS2KJvQ7NiSHe3DDpwVKKtoYprL/AreyzFBeIkBIWChAqn60g==, 3794 + } 3795 3796 event-target-shim@5.0.1: 3797 + resolution: 3798 + { 3799 + integrity: sha512-i/2XbnSz/uxRCU6+NdVJgKWDTM427+MqYbkQzD321DuCQJUqOuJKIA0IM2+W2xtYHdKOmZ4dR6fExsd4SXL+WQ==, 3800 + } 3801 + engines: { node: ">=6" } 3802 3803 eventemitter3@5.0.1: 3804 + resolution: 3805 + { 3806 + integrity: sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==, 3807 + } 3808 3809 events@3.3.0: 3810 + resolution: 3811 + { 3812 + integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==, 3813 + } 3814 + engines: { node: ">=0.8.x" } 3815 3816 evp_bytestokey@1.0.3: 3817 + resolution: 3818 + { 3819 + integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==, 3820 + } 3821 3822 execa@8.0.1: 3823 + resolution: 3824 + { 3825 + integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==, 3826 + } 3827 + engines: { node: ">=16.17" } 3828 3829 express@4.21.2: 3830 + resolution: 3831 + { 3832 + integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==, 3833 + } 3834 + engines: { node: ">= 0.10.0" } 3835 3836 exsolve@1.0.7: 3837 + resolution: 3838 + { 3839 + integrity: sha512-VO5fQUzZtI6C+vx4w/4BWJpg3s/5l+6pRQEHzFRM8WFi4XffSP1Z+4qi7GbjWbvRQEbdIco5mIMq+zX4rPuLrw==, 3840 + } 3841 3842 extend@3.0.2: 3843 + resolution: 3844 + { 3845 + integrity: sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==, 3846 + } 3847 3848 fast-deep-equal@3.1.3: 3849 + resolution: 3850 + { 3851 + integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==, 3852 + } 3853 3854 fast-glob@3.3.3: 3855 + resolution: 3856 + { 3857 + integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==, 3858 + } 3859 + engines: { node: ">=8.6.0" } 3860 3861 fast-redact@3.5.0: 3862 + resolution: 3863 + { 3864 + integrity: sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==, 3865 + } 3866 + engines: { node: ">=6" } 3867 3868 fast-uri@3.1.0: 3869 + resolution: 3870 + { 3871 + integrity: sha512-iPeeDKJSWf4IEOasVVrknXpaBV0IApz/gp7S2bb7Z4Lljbl2MGJRqInZiUrQwV16cpzw/D3S5j5Julj/gT52AA==, 3872 + } 3873 3874 fastq@1.19.1: 3875 + resolution: 3876 + { 3877 + integrity: sha512-GwLTyxkCXjXbxqIhTsMI2Nui8huMPtnxg7krajPJAjnEG/iiOS7i+zCtWGZR9G0NBKbXKh6X9m9UIsYX/N6vvQ==, 3878 + } 3879 3880 fdir@6.5.0: 3881 + resolution: 3882 + { 3883 + integrity: sha512-tIbYtZbucOs0BRGqPJkshJUYdL+SDH7dVM8gjy+ERp3WAUjLEFJE+02kanyHtwjWOnwrKYBiwAmM0p4kLJAnXg==, 3884 + } 3885 + engines: { node: ">=12.0.0" } 3886 peerDependencies: 3887 picomatch: ^3 || ^4 3888 peerDependenciesMeta: ··· 3890 optional: true 3891 3892 fill-range@7.1.1: 3893 + resolution: 3894 + { 3895 + integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==, 3896 + } 3897 + engines: { node: ">=8" } 3898 3899 finalhandler@1.3.1: 3900 + resolution: 3901 + { 3902 + integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==, 3903 + } 3904 + engines: { node: ">= 0.8" } 3905 3906 find-up@5.0.0: 3907 + resolution: 3908 + { 3909 + integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==, 3910 + } 3911 + engines: { node: ">=10" } 3912 3913 flattie@1.1.1: 3914 + resolution: 3915 + { 3916 + integrity: sha512-9UbaD6XdAL97+k/n+N7JwX46K/M6Zc6KcFYskrYL8wbBV/Uyk0CTAMY0VT+qiK5PM7AIc9aTWYtq65U7T+aCNQ==, 3917 + } 3918 + engines: { node: ">=8" } 3919 3920 fontace@0.3.0: 3921 + resolution: 3922 + { 3923 + integrity: sha512-czoqATrcnxgWb/nAkfyIrRp6Q8biYj7nGnL6zfhTcX+JKKpWHFBnb8uNMw/kZr7u++3Y3wYSYoZgHkCcsuBpBg==, 3924 + } 3925 3926 fontkit@2.0.4: 3927 + resolution: 3928 + { 3929 + integrity: sha512-syetQadaUEDNdxdugga9CpEYVaQIxOwk7GlwZWWZ19//qW4zE5bknOKeMBDYAASwnpaSHKJITRLMF9m1fp3s6g==, 3930 + } 3931 3932 for-each@0.3.5: 3933 + resolution: 3934 + { 3935 + integrity: sha512-dKx12eRCVIzqCxFGplyFKJMPvLEWgmNtUrpTiJIR5u97zEhRG8ySrtboPHZXx7daLxQVrl643cTzbab2tkQjxg==, 3936 + } 3937 + engines: { node: ">= 0.4" } 3938 3939 forwarded@0.2.0: 3940 + resolution: 3941 + { 3942 + integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==, 3943 + } 3944 + engines: { node: ">= 0.6" } 3945 3946 fresh@0.5.2: 3947 + resolution: 3948 + { 3949 + integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==, 3950 + } 3951 + engines: { node: ">= 0.6" } 3952 3953 from@0.1.7: 3954 + resolution: 3955 + { 3956 + integrity: sha512-twe20eF1OxVxp/ML/kq2p1uc6KvFK/+vs8WjEbeKmV2He22MKm7YF2ANIt+EOqhJ5L3K/SuuPhk0hWQDjOM23g==, 3957 + } 3958 3959 fsevents@2.3.3: 3960 + resolution: 3961 + { 3962 + integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==, 3963 + } 3964 + engines: { node: ^8.16.0 || ^10.6.0 || >=11.0.0 } 3965 os: [darwin] 3966 3967 function-bind@1.1.2: 3968 + resolution: 3969 + { 3970 + integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==, 3971 + } 3972 3973 generator-function@2.0.1: 3974 + resolution: 3975 + { 3976 + integrity: sha512-SFdFmIJi+ybC0vjlHN0ZGVGHc3lgE0DxPAT0djjVg+kjOnSqclqmj0KQ7ykTOLP6YxoqOvuAODGdcHJn+43q3g==, 3977 + } 3978 + engines: { node: ">= 0.4" } 3979 3980 gensync@1.0.0-beta.2: 3981 + resolution: 3982 + { 3983 + integrity: sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==, 3984 + } 3985 + engines: { node: ">=6.9.0" } 3986 3987 get-caller-file@2.0.5: 3988 + resolution: 3989 + { 3990 + integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==, 3991 + } 3992 + engines: { node: 6.* || 8.* || >= 10.* } 3993 3994 get-east-asian-width@1.4.0: 3995 + resolution: 3996 + { 3997 + integrity: sha512-QZjmEOC+IT1uk6Rx0sX22V6uHWVwbdbxf1faPqJ1QhLdGgsRGCZoyaQBm/piRdJy/D2um6hM1UP7ZEeQ4EkP+Q==, 3998 + } 3999 + engines: { node: ">=18" } 4000 4001 get-func-name@2.0.2: 4002 + resolution: 4003 + { 4004 + integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==, 4005 + } 4006 4007 get-intrinsic@1.3.0: 4008 + resolution: 4009 + { 4010 + integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==, 4011 + } 4012 + engines: { node: ">= 0.4" } 4013 4014 get-proto@1.0.1: 4015 + resolution: 4016 + { 4017 + integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==, 4018 + } 4019 + engines: { node: ">= 0.4" } 4020 4021 get-stream@8.0.1: 4022 + resolution: 4023 + { 4024 + integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==, 4025 + } 4026 + engines: { node: ">=16" } 4027 4028 github-slugger@2.0.0: 4029 + resolution: 4030 + { 4031 + integrity: sha512-IaOQ9puYtjrkq7Y0Ygl9KDZnrf/aiUJYUpVf89y8kyaxbRG7Y1SrX/jaumrv81vc61+kiMempujsM3Yw7w5qcw==, 4032 + } 4033 4034 glob-parent@5.1.2: 4035 + resolution: 4036 + { 4037 + integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==, 4038 + } 4039 + engines: { node: ">= 6" } 4040 4041 globby@14.1.0: 4042 + resolution: 4043 + { 4044 + integrity: sha512-0Ia46fDOaT7k4og1PDW4YbodWWr3scS2vAr2lTbsplOt2WkKp0vQbkI9wKis/T5LV/dqPjO3bpS/z6GTJB82LA==, 4045 + } 4046 + engines: { node: ">=18" } 4047 4048 gopd@1.2.0: 4049 + resolution: 4050 + { 4051 + integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==, 4052 + } 4053 + engines: { node: ">= 0.4" } 4054 4055 graphemer@1.4.0: 4056 + resolution: 4057 + { 4058 + integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==, 4059 + } 4060 4061 h3@1.15.4: 4062 + resolution: 4063 + { 4064 + integrity: sha512-z5cFQWDffyOe4vQ9xIqNfCZdV4p//vy6fBnr8Q1AWnVZ0teurKMG66rLj++TKwKPUP3u7iMUvrvKaEUiQw2QWQ==, 4065 + } 4066 4067 has-flag@4.0.0: 4068 + resolution: 4069 + { 4070 + integrity: sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==, 4071 + } 4072 + engines: { node: ">=8" } 4073 4074 has-property-descriptors@1.0.2: 4075 + resolution: 4076 + { 4077 + integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==, 4078 + } 4079 4080 has-symbols@1.1.0: 4081 + resolution: 4082 + { 4083 + integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==, 4084 + } 4085 + engines: { node: ">= 0.4" } 4086 4087 has-tostringtag@1.0.2: 4088 + resolution: 4089 + { 4090 + integrity: sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==, 4091 + } 4092 + engines: { node: ">= 0.4" } 4093 4094 hash-base@3.0.5: 4095 + resolution: 4096 + { 4097 + integrity: sha512-vXm0l45VbcHEVlTCzs8M+s0VeYsB2lnlAaThoLKGXr3bE/VWDOelNUnycUPEhKEaXARL2TEFjBOyUiM6+55KBg==, 4098 + } 4099 + engines: { node: ">= 0.10" } 4100 4101 hash-base@3.1.2: 4102 + resolution: 4103 + { 4104 + integrity: sha512-Bb33KbowVTIj5s7Ked1OsqHUeCpz//tPwR+E2zJgJKo9Z5XolZ9b6bdUgjmYlwnWhoOQKoTd1TYToZGn5mAYOg==, 4105 + } 4106 + engines: { node: ">= 0.8" } 4107 4108 hash.js@1.1.7: 4109 + resolution: 4110 + { 4111 + integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==, 4112 + } 4113 4114 hasown@2.0.2: 4115 + resolution: 4116 + { 4117 + integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==, 4118 + } 4119 + engines: { node: ">= 0.4" } 4120 4121 hast-util-from-html@2.0.3: 4122 + resolution: 4123 + { 4124 + integrity: sha512-CUSRHXyKjzHov8yKsQjGOElXy/3EKpyX56ELnkHH34vDVw1N1XSQ1ZcAvTyAPtGqLTuKP/uxM+aLkSPqF/EtMw==, 4125 + } 4126 4127 hast-util-from-parse5@8.0.3: 4128 + resolution: 4129 + { 4130 + integrity: sha512-3kxEVkEKt0zvcZ3hCRYI8rqrgwtlIOFMWkbclACvjlDw8Li9S2hk/d51OI0nr/gIpdMHNepwgOKqZ/sy0Clpyg==, 4131 + } 4132 4133 hast-util-is-element@3.0.0: 4134 + resolution: 4135 + { 4136 + integrity: sha512-Val9mnv2IWpLbNPqc/pUem+a7Ipj2aHacCwgNfTiK0vJKl0LF+4Ba4+v1oPHFpf3bLYmreq0/l3Gud9S5OH42g==, 4137 + } 4138 4139 hast-util-parse-selector@4.0.0: 4140 + resolution: 4141 + { 4142 + integrity: sha512-wkQCkSYoOGCRKERFWcxMVMOcYE2K1AaNLU8DXS9arxnLOUEWbOXKXiJUNzEpqZ3JOKpnha3jkFrumEjVliDe7A==, 4143 + } 4144 4145 hast-util-raw@9.1.0: 4146 + resolution: 4147 + { 4148 + integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==, 4149 + } 4150 4151 hast-util-to-html@9.0.5: 4152 + resolution: 4153 + { 4154 + integrity: sha512-OguPdidb+fbHQSU4Q4ZiLKnzWo8Wwsf5bZfbvu7//a9oTYoqD/fWpe96NuHkoS9h0ccGOTe0C4NGXdtS0iObOw==, 4155 + } 4156 4157 hast-util-to-parse5@8.0.0: 4158 + resolution: 4159 + { 4160 + integrity: sha512-3KKrV5ZVI8if87DVSi1vDeByYrkGzg4mEfeu4alwgmmIeARiBLKCZS2uw5Gb6nU9x9Yufyj3iudm6i7nl52PFw==, 4161 + } 4162 4163 hast-util-to-text@4.0.2: 4164 + resolution: 4165 + { 4166 + integrity: sha512-KK6y/BN8lbaq654j7JgBydev7wuNMcID54lkRav1P0CaE1e47P72AWWPiGKXTJU271ooYzcvTAn/Zt0REnvc7A==, 4167 + } 4168 4169 hast-util-whitespace@3.0.0: 4170 + resolution: 4171 + { 4172 + integrity: sha512-88JUN06ipLwsnv+dVn+OIYOvAuvBMy/Qoi6O7mQHxdPXpjy+Cd6xRkWwux7DKO+4sYILtLBRIKgsdpS2gQc7qw==, 4173 + } 4174 4175 hastscript@9.0.1: 4176 + resolution: 4177 + { 4178 + integrity: sha512-g7df9rMFX/SPi34tyGCyUBREQoKkapwdY/T04Qn9TDWfHhAYt4/I0gMVirzK5wEzeUqIjEB+LXC/ypb7Aqno5w==, 4179 + } 4180 4181 hmac-drbg@1.0.1: 4182 + resolution: 4183 + { 4184 + integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==, 4185 + } 4186 4187 html-escaper@3.0.3: 4188 + resolution: 4189 + { 4190 + integrity: sha512-RuMffC89BOWQoY0WKGpIhn5gX3iI54O6nRA0yC124NYVtzjmFWBIiFd8M0x+ZdX0P9R4lADg1mgP8C7PxGOWuQ==, 4191 + } 4192 4193 html-void-elements@3.0.0: 4194 + resolution: 4195 + { 4196 + integrity: sha512-bEqo66MRXsUGxWHV5IP0PUiAWwoEjba4VCzg0LjFJBpchPaTfyfCKTG6bc5F8ucKec3q5y6qOdGyYTSBEvhCrg==, 4197 + } 4198 4199 http-cache-semantics@4.2.0: 4200 + resolution: 4201 + { 4202 + integrity: sha512-dTxcvPXqPvXBQpq5dUr6mEMJX4oIEFv6bwom3FDwKRDsuIjjJGANqhBuoAn9c1RQJIdAKav33ED65E2ys+87QQ==, 4203 + } 4204 4205 http-errors@2.0.0: 4206 + resolution: 4207 + { 4208 + integrity: sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==, 4209 + } 4210 + engines: { node: ">= 0.8" } 4211 4212 https-browserify@1.0.0: 4213 + resolution: 4214 + { 4215 + integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==, 4216 + } 4217 4218 human-signals@5.0.0: 4219 + resolution: 4220 + { 4221 + integrity: sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==, 4222 + } 4223 + engines: { node: ">=16.17.0" } 4224 4225 iconv-lite@0.4.24: 4226 + resolution: 4227 + { 4228 + integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==, 4229 + } 4230 + engines: { node: ">=0.10.0" } 4231 4232 iconv-lite@0.7.0: 4233 + resolution: 4234 + { 4235 + integrity: sha512-cf6L2Ds3h57VVmkZe+Pn+5APsT7FpqJtEhhieDCvrE2MK5Qk9MyffgQyuxQTm6BChfeZNtcOLHp9IcWRVcIcBQ==, 4236 + } 4237 + engines: { node: ">=0.10.0" } 4238 4239 ieee754@1.2.1: 4240 + resolution: 4241 + { 4242 + integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==, 4243 + } 4244 4245 ignore@7.0.5: 4246 + resolution: 4247 + { 4248 + integrity: sha512-Hs59xBNfUIunMFgWAbGX5cq6893IbWg4KnrjbYwX3tx0ztorVgTDA6B2sxf8ejHJ4wz8BqGUMYlnzNBer5NvGg==, 4249 + } 4250 + engines: { node: ">= 4" } 4251 4252 import-meta-resolve@4.2.0: 4253 + resolution: 4254 + { 4255 + integrity: sha512-Iqv2fzaTQN28s/FwZAoFq0ZSs/7hMAHJVX+w8PZl3cY19Pxk6jFFalxQoIfW2826i/fDLXv8IiEZRIT0lDuWcg==, 4256 + } 4257 4258 inherits@2.0.4: 4259 + resolution: 4260 + { 4261 + integrity: sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==, 4262 + } 4263 4264 ipaddr.js@1.9.1: 4265 + resolution: 4266 + { 4267 + integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==, 4268 + } 4269 + engines: { node: ">= 0.10" } 4270 4271 iron-webcrypto@1.2.1: 4272 + resolution: 4273 + { 4274 + integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==, 4275 + } 4276 4277 is-arguments@1.2.0: 4278 + resolution: 4279 + { 4280 + integrity: sha512-7bVbi0huj/wrIAOzb8U1aszg9kdi3KN/CyU19CTI7tAoZYEZoL9yCDXpbXN+uPsuWnP02cyug1gleqq+TU+YCA==, 4281 + } 4282 + engines: { node: ">= 0.4" } 4283 4284 is-callable@1.2.7: 4285 + resolution: 4286 + { 4287 + integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==, 4288 + } 4289 + engines: { node: ">= 0.4" } 4290 4291 is-core-module@2.16.1: 4292 + resolution: 4293 + { 4294 + integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==, 4295 + } 4296 + engines: { node: ">= 0.4" } 4297 4298 is-docker@3.0.0: 4299 + resolution: 4300 + { 4301 + integrity: sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==, 4302 + } 4303 + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 4304 hasBin: true 4305 4306 is-extglob@2.1.1: 4307 + resolution: 4308 + { 4309 + integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==, 4310 + } 4311 + engines: { node: ">=0.10.0" } 4312 4313 is-fullwidth-code-point@3.0.0: 4314 + resolution: 4315 + { 4316 + integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==, 4317 + } 4318 + engines: { node: ">=8" } 4319 4320 is-generator-function@1.1.2: 4321 + resolution: 4322 + { 4323 + integrity: sha512-upqt1SkGkODW9tsGNG5mtXTXtECizwtS2kA161M+gJPc1xdb/Ax629af6YrTwcOeQHbewrPNlE5Dx7kzvXTizA==, 4324 + } 4325 + engines: { node: ">= 0.4" } 4326 4327 is-glob@4.0.3: 4328 + resolution: 4329 + { 4330 + integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==, 4331 + } 4332 + engines: { node: ">=0.10.0" } 4333 4334 is-inside-container@1.0.0: 4335 + resolution: 4336 + { 4337 + integrity: sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==, 4338 + } 4339 + engines: { node: ">=14.16" } 4340 hasBin: true 4341 4342 is-nan@1.3.2: 4343 + resolution: 4344 + { 4345 + integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==, 4346 + } 4347 + engines: { node: ">= 0.4" } 4348 4349 is-number@7.0.0: 4350 + resolution: 4351 + { 4352 + integrity: sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==, 4353 + } 4354 + engines: { node: ">=0.12.0" } 4355 4356 is-plain-obj@4.1.0: 4357 + resolution: 4358 + { 4359 + integrity: sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==, 4360 + } 4361 + engines: { node: ">=12" } 4362 4363 is-regex@1.2.1: 4364 + resolution: 4365 + { 4366 + integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==, 4367 + } 4368 + engines: { node: ">= 0.4" } 4369 4370 is-stream@3.0.0: 4371 + resolution: 4372 + { 4373 + integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==, 4374 + } 4375 + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 4376 4377 is-typed-array@1.1.15: 4378 + resolution: 4379 + { 4380 + integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==, 4381 + } 4382 + engines: { node: ">= 0.4" } 4383 4384 is-unicode-supported@2.1.0: 4385 + resolution: 4386 + { 4387 + integrity: sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==, 4388 + } 4389 + engines: { node: ">=18" } 4390 4391 is-wsl@3.1.0: 4392 + resolution: 4393 + { 4394 + integrity: sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==, 4395 + } 4396 + engines: { node: ">=16" } 4397 4398 isarray@1.0.0: 4399 + resolution: 4400 + { 4401 + integrity: sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==, 4402 + } 4403 4404 isarray@2.0.5: 4405 + resolution: 4406 + { 4407 + integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==, 4408 + } 4409 4410 isexe@2.0.0: 4411 + resolution: 4412 + { 4413 + integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==, 4414 + } 4415 4416 iso-datestring-validator@2.2.2: 4417 + resolution: 4418 + { 4419 + integrity: sha512-yLEMkBbLZTlVQqOnQ4FiMujR6T4DEcCb1xizmvXS+OxuhwcbtynoosRzdMA69zZCShCNAbi+gJ71FxZBBXx1SA==, 4420 + } 4421 4422 isomorphic-timers-promises@1.0.1: 4423 + resolution: 4424 + { 4425 + integrity: sha512-u4sej9B1LPSxTGKB/HiuzvEQnXH0ECYkSVQU39koSwmFAxhlEAFl9RdTvLv4TOTQUgBS5O3O5fwUxk6byBZ+IQ==, 4426 + } 4427 + engines: { node: ">=10" } 4428 4429 js-tokens@4.0.0: 4430 + resolution: 4431 + { 4432 + integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==, 4433 + } 4434 4435 js-tokens@9.0.1: 4436 + resolution: 4437 + { 4438 + integrity: sha512-mxa9E9ITFOt0ban3j6L5MpjwegGz6lBQmM1IJkWeBZGcMxto50+eWdjC/52xDbS2vy0k7vIMK0Fe2wfL9OQSpQ==, 4439 + } 4440 4441 js-yaml@4.1.0: 4442 + resolution: 4443 + { 4444 + integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==, 4445 + } 4446 hasBin: true 4447 4448 jsesc@3.1.0: 4449 + resolution: 4450 + { 4451 + integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==, 4452 + } 4453 + engines: { node: ">=6" } 4454 hasBin: true 4455 4456 json-schema-traverse@1.0.0: 4457 + resolution: 4458 + { 4459 + integrity: sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==, 4460 + } 4461 4462 json-stringify-pretty-compact@4.0.0: 4463 + resolution: 4464 + { 4465 + integrity: sha512-3CNZ2DnrpByG9Nqj6Xo8vqbjT4F6N+tb4Gb28ESAZjYZ5yqvmc56J+/kuIwkaAMOyblTQhUW7PxMkUb8Q36N3Q==, 4466 + } 4467 4468 json5@2.2.3: 4469 + resolution: 4470 + { 4471 + integrity: sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==, 4472 + } 4473 + engines: { node: ">=6" } 4474 hasBin: true 4475 4476 keyborg@2.6.0: 4477 + resolution: 4478 + { 4479 + integrity: sha512-o5kvLbuTF+o326CMVYpjlaykxqYP9DphFQZ2ZpgrvBouyvOxyEB7oqe8nOLFpiV5VCtz0D3pt8gXQYWpLpBnmA==, 4480 + } 4481 4482 kleur@3.0.3: 4483 + resolution: 4484 + { 4485 + integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==, 4486 + } 4487 + engines: { node: ">=6" } 4488 4489 kleur@4.1.5: 4490 + resolution: 4491 + { 4492 + integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==, 4493 + } 4494 + engines: { node: ">=6" } 4495 4496 local-pkg@0.5.1: 4497 + resolution: 4498 + { 4499 + integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==, 4500 + } 4501 + engines: { node: ">=14" } 4502 4503 local-pkg@1.1.2: 4504 + resolution: 4505 + { 4506 + integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==, 4507 + } 4508 + engines: { node: ">=14" } 4509 4510 locate-path@6.0.0: 4511 + resolution: 4512 + { 4513 + integrity: sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==, 4514 + } 4515 + engines: { node: ">=10" } 4516 4517 longest-streak@3.1.0: 4518 + resolution: 4519 + { 4520 + integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==, 4521 + } 4522 4523 loose-envify@1.4.0: 4524 + resolution: 4525 + { 4526 + integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==, 4527 + } 4528 hasBin: true 4529 4530 loupe@2.3.7: 4531 + resolution: 4532 + { 4533 + integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==, 4534 + } 4535 4536 lru-cache@10.4.3: 4537 + resolution: 4538 + { 4539 + integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==, 4540 + } 4541 4542 lru-cache@5.1.1: 4543 + resolution: 4544 + { 4545 + integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==, 4546 + } 4547 4548 lzutf8@0.6.3: 4549 + resolution: 4550 + { 4551 + integrity: sha512-CAkF9HKrM+XpB0f3DepQ2to2iUEo0zrbh+XgBqgNBc1+k8HMM3u/YSfHI3Dr4GmoTIez2Pr/If1XFl3rU26AwA==, 4552 + } 4553 4554 magic-string@0.30.19: 4555 + resolution: 4556 + { 4557 + integrity: sha512-2N21sPY9Ws53PZvsEpVtNuSW+ScYbQdp4b9qUaL+9QkHUrGFKo56Lg9Emg5s9V/qrtNBmiR01sYhUOwu3H+VOw==, 4558 + } 4559 4560 magicast@0.3.5: 4561 + resolution: 4562 + { 4563 + integrity: sha512-L0WhttDl+2BOsybvEOLK7fW3UA0OQ0IQ2d6Zl2x/a6vVRs3bAY0ECOSHHeL5jD+SbOpOCUEi0y1DgHEn9Qn1AQ==, 4564 + } 4565 4566 map-stream@0.1.0: 4567 + resolution: 4568 + { 4569 + integrity: sha512-CkYQrPYZfWnu/DAmVCpTSX/xHpKZ80eKh2lAkyA6AJTef6bW+6JpbQZN5rofum7da+SyN1bi5ctTm+lTfcCW3g==, 4570 + } 4571 4572 markdown-table@3.0.4: 4573 + resolution: 4574 + { 4575 + integrity: sha512-wiYz4+JrLyb/DqW2hkFJxP7Vd7JuTDm77fvbM8VfEQdmSMqcImWeeRbHwZjBjIFki/VaMK2BhFi7oUUZeM5bqw==, 4576 + } 4577 4578 math-intrinsics@1.1.0: 4579 + resolution: 4580 + { 4581 + integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==, 4582 + } 4583 + engines: { node: ">= 0.4" } 4584 4585 md5.js@1.3.5: 4586 + resolution: 4587 + { 4588 + integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==, 4589 + } 4590 4591 mdast-util-definitions@6.0.0: 4592 + resolution: 4593 + { 4594 + integrity: sha512-scTllyX6pnYNZH/AIp/0ePz6s4cZtARxImwoPJ7kS42n+MnVsI4XbnG6d4ibehRIldYMWM2LD7ImQblVhUejVQ==, 4595 + } 4596 4597 mdast-util-find-and-replace@3.0.2: 4598 + resolution: 4599 + { 4600 + integrity: sha512-Tmd1Vg/m3Xz43afeNxDIhWRtFZgM2VLyaf4vSTYwudTyeuTneoL3qtWMA5jeLyz/O1vDJmmV4QuScFCA2tBPwg==, 4601 + } 4602 4603 mdast-util-from-markdown@2.0.2: 4604 + resolution: 4605 + { 4606 + integrity: sha512-uZhTV/8NBuw0WHkPTrCqDOl0zVe1BIng5ZtHoDk49ME1qqcjYmmLmOf0gELgcRMxN4w2iuIeVso5/6QymSrgmA==, 4607 + } 4608 4609 mdast-util-gfm-autolink-literal@2.0.1: 4610 + resolution: 4611 + { 4612 + integrity: sha512-5HVP2MKaP6L+G6YaxPNjuL0BPrq9orG3TsrZ9YXbA3vDw/ACI4MEsnoDpn6ZNm7GnZgtAcONJyPhOP8tNJQavQ==, 4613 + } 4614 4615 mdast-util-gfm-footnote@2.1.0: 4616 + resolution: 4617 + { 4618 + integrity: sha512-sqpDWlsHn7Ac9GNZQMeUzPQSMzR6Wv0WKRNvQRg0KqHh02fpTz69Qc1QSseNX29bhz1ROIyNyxExfawVKTm1GQ==, 4619 + } 4620 4621 mdast-util-gfm-strikethrough@2.0.0: 4622 + resolution: 4623 + { 4624 + integrity: sha512-mKKb915TF+OC5ptj5bJ7WFRPdYtuHv0yTRxK2tJvi+BDqbkiG7h7u/9SI89nRAYcmap2xHQL9D+QG/6wSrTtXg==, 4625 + } 4626 4627 mdast-util-gfm-table@2.0.0: 4628 + resolution: 4629 + { 4630 + integrity: sha512-78UEvebzz/rJIxLvE7ZtDd/vIQ0RHv+3Mh5DR96p7cS7HsBhYIICDBCu8csTNWNO6tBWfqXPWekRuj2FNOGOZg==, 4631 + } 4632 4633 mdast-util-gfm-task-list-item@2.0.0: 4634 + resolution: 4635 + { 4636 + integrity: sha512-IrtvNvjxC1o06taBAVJznEnkiHxLFTzgonUdy8hzFVeDun0uTjxxrRGVaNFqkU1wJR3RBPEfsxmU6jDWPofrTQ==, 4637 + } 4638 4639 mdast-util-gfm@3.1.0: 4640 + resolution: 4641 + { 4642 + integrity: sha512-0ulfdQOM3ysHhCJ1p06l0b0VKlhU0wuQs3thxZQagjcjPrlFRqY215uZGHHJan9GEAXd9MbfPjFJz+qMkVR6zQ==, 4643 + } 4644 4645 mdast-util-phrasing@4.1.0: 4646 + resolution: 4647 + { 4648 + integrity: sha512-TqICwyvJJpBwvGAMZjj4J2n0X8QWp21b9l0o7eXyVJ25YNWYbJDVIyD1bZXE6WtV6RmKJVYmQAKWa0zWOABz2w==, 4649 + } 4650 4651 mdast-util-to-hast@13.2.0: 4652 + resolution: 4653 + { 4654 + integrity: sha512-QGYKEuUsYT9ykKBCMOEDLsU5JRObWQusAolFMeko/tYPufNkRffBAQjIE+99jbA87xv6FgmjLtwjh9wBWajwAA==, 4655 + } 4656 4657 mdast-util-to-markdown@2.1.2: 4658 + resolution: 4659 + { 4660 + integrity: sha512-xj68wMTvGXVOKonmog6LwyJKrYXZPvlwabaryTjLh9LuvovB/KAH+kvi8Gjj+7rJjsFi23nkUxRQv1KqSroMqA==, 4661 + } 4662 4663 mdast-util-to-string@4.0.0: 4664 + resolution: 4665 + { 4666 + integrity: sha512-0H44vDimn51F0YwvxSJSm0eCDOJTRlmN0R1yBh4HLj9wiV1Dn0QoXGbvFAWj2hSItVTlCmBF1hqKlIyUBVFLPg==, 4667 + } 4668 4669 mdn-data@2.12.2: 4670 + resolution: 4671 + { 4672 + integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==, 4673 + } 4674 4675 media-typer@0.3.0: 4676 + resolution: 4677 + { 4678 + integrity: sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==, 4679 + } 4680 + engines: { node: ">= 0.6" } 4681 4682 merge-descriptors@1.0.3: 4683 + resolution: 4684 + { 4685 + integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==, 4686 + } 4687 4688 merge-stream@2.0.0: 4689 + resolution: 4690 + { 4691 + integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==, 4692 + } 4693 4694 merge2@1.4.1: 4695 + resolution: 4696 + { 4697 + integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==, 4698 + } 4699 + engines: { node: ">= 8" } 4700 4701 methods@1.1.2: 4702 + resolution: 4703 + { 4704 + integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==, 4705 + } 4706 + engines: { node: ">= 0.6" } 4707 4708 micromark-core-commonmark@2.0.3: 4709 + resolution: 4710 + { 4711 + integrity: sha512-RDBrHEMSxVFLg6xvnXmb1Ayr2WzLAWjeSATAoxwKYJV94TeNavgoIdA0a9ytzDSVzBy2YKFK+emCPOEibLeCrg==, 4712 + } 4713 4714 micromark-extension-gfm-autolink-literal@2.1.0: 4715 + resolution: 4716 + { 4717 + integrity: sha512-oOg7knzhicgQ3t4QCjCWgTmfNhvQbDDnJeVu9v81r7NltNCVmhPy1fJRX27pISafdjL+SVc4d3l48Gb6pbRypw==, 4718 + } 4719 4720 micromark-extension-gfm-footnote@2.1.0: 4721 + resolution: 4722 + { 4723 + integrity: sha512-/yPhxI1ntnDNsiHtzLKYnE3vf9JZ6cAisqVDauhp4CEHxlb4uoOTxOCJ+9s51bIB8U1N1FJ1RXOKTIlD5B/gqw==, 4724 + } 4725 4726 micromark-extension-gfm-strikethrough@2.1.0: 4727 + resolution: 4728 + { 4729 + integrity: sha512-ADVjpOOkjz1hhkZLlBiYA9cR2Anf8F4HqZUO6e5eDcPQd0Txw5fxLzzxnEkSkfnD0wziSGiv7sYhk/ktvbf1uw==, 4730 + } 4731 4732 micromark-extension-gfm-table@2.1.1: 4733 + resolution: 4734 + { 4735 + integrity: sha512-t2OU/dXXioARrC6yWfJ4hqB7rct14e8f7m0cbI5hUmDyyIlwv5vEtooptH8INkbLzOatzKuVbQmAYcbWoyz6Dg==, 4736 + } 4737 4738 micromark-extension-gfm-tagfilter@2.0.0: 4739 + resolution: 4740 + { 4741 + integrity: sha512-xHlTOmuCSotIA8TW1mDIM6X2O1SiX5P9IuDtqGonFhEK0qgRI4yeC6vMxEV2dgyr2TiD+2PQ10o+cOhdVAcwfg==, 4742 + } 4743 4744 micromark-extension-gfm-task-list-item@2.1.0: 4745 + resolution: 4746 + { 4747 + integrity: sha512-qIBZhqxqI6fjLDYFTBIa4eivDMnP+OZqsNwmQ3xNLE4Cxwc+zfQEfbs6tzAo2Hjq+bh6q5F+Z8/cksrLFYWQQw==, 4748 + } 4749 4750 micromark-extension-gfm@3.0.0: 4751 + resolution: 4752 + { 4753 + integrity: sha512-vsKArQsicm7t0z2GugkCKtZehqUm31oeGBV/KVSorWSy8ZlNAv7ytjFhvaryUiCUJYqs+NoE6AFhpQvBTM6Q4w==, 4754 + } 4755 4756 micromark-factory-destination@2.0.1: 4757 + resolution: 4758 + { 4759 + integrity: sha512-Xe6rDdJlkmbFRExpTOmRj9N3MaWmbAgdpSrBQvCFqhezUn4AHqJHbaEnfbVYYiexVSs//tqOdY/DxhjdCiJnIA==, 4760 + } 4761 4762 micromark-factory-label@2.0.1: 4763 + resolution: 4764 + { 4765 + integrity: sha512-VFMekyQExqIW7xIChcXn4ok29YE3rnuyveW3wZQWWqF4Nv9Wk5rgJ99KzPvHjkmPXF93FXIbBp6YdW3t71/7Vg==, 4766 + } 4767 4768 micromark-factory-space@2.0.1: 4769 + resolution: 4770 + { 4771 + integrity: sha512-zRkxjtBxxLd2Sc0d+fbnEunsTj46SWXgXciZmHq0kDYGnck/ZSGj9/wULTV95uoeYiK5hRXP2mJ98Uo4cq/LQg==, 4772 + } 4773 4774 micromark-factory-title@2.0.1: 4775 + resolution: 4776 + { 4777 + integrity: sha512-5bZ+3CjhAd9eChYTHsjy6TGxpOFSKgKKJPJxr293jTbfry2KDoWkhBb6TcPVB4NmzaPhMs1Frm9AZH7OD4Cjzw==, 4778 + } 4779 4780 micromark-factory-whitespace@2.0.1: 4781 + resolution: 4782 + { 4783 + integrity: sha512-Ob0nuZ3PKt/n0hORHyvoD9uZhr+Za8sFoP+OnMcnWK5lngSzALgQYKMr9RJVOWLqQYuyn6ulqGWSXdwf6F80lQ==, 4784 + } 4785 4786 micromark-util-character@2.1.1: 4787 + resolution: 4788 + { 4789 + integrity: sha512-wv8tdUTJ3thSFFFJKtpYKOYiGP2+v96Hvk4Tu8KpCAsTMs6yi+nVmGh1syvSCsaxz45J6Jbw+9DD6g97+NV67Q==, 4790 + } 4791 4792 micromark-util-chunked@2.0.1: 4793 + resolution: 4794 + { 4795 + integrity: sha512-QUNFEOPELfmvv+4xiNg2sRYeS/P84pTW0TCgP5zc9FpXetHY0ab7SxKyAQCNCc1eK0459uoLI1y5oO5Vc1dbhA==, 4796 + } 4797 4798 micromark-util-classify-character@2.0.1: 4799 + resolution: 4800 + { 4801 + integrity: sha512-K0kHzM6afW/MbeWYWLjoHQv1sgg2Q9EccHEDzSkxiP/EaagNzCm7T/WMKZ3rjMbvIpvBiZgwR3dKMygtA4mG1Q==, 4802 + } 4803 4804 micromark-util-combine-extensions@2.0.1: 4805 + resolution: 4806 + { 4807 + integrity: sha512-OnAnH8Ujmy59JcyZw8JSbK9cGpdVY44NKgSM7E9Eh7DiLS2E9RNQf0dONaGDzEG9yjEl5hcqeIsj4hfRkLH/Bg==, 4808 + } 4809 4810 micromark-util-decode-numeric-character-reference@2.0.2: 4811 + resolution: 4812 + { 4813 + integrity: sha512-ccUbYk6CwVdkmCQMyr64dXz42EfHGkPQlBj5p7YVGzq8I7CtjXZJrubAYezf7Rp+bjPseiROqe7G6foFd+lEuw==, 4814 + } 4815 4816 micromark-util-decode-string@2.0.1: 4817 + resolution: 4818 + { 4819 + integrity: sha512-nDV/77Fj6eH1ynwscYTOsbK7rR//Uj0bZXBwJZRfaLEJ1iGBR6kIfNmlNqaqJf649EP0F3NWNdeJi03elllNUQ==, 4820 + } 4821 4822 micromark-util-encode@2.0.1: 4823 + resolution: 4824 + { 4825 + integrity: sha512-c3cVx2y4KqUnwopcO9b/SCdo2O67LwJJ/UyqGfbigahfegL9myoEFoDYZgkT7f36T0bLrM9hZTAaAyH+PCAXjw==, 4826 + } 4827 4828 micromark-util-html-tag-name@2.0.1: 4829 + resolution: 4830 + { 4831 + integrity: sha512-2cNEiYDhCWKI+Gs9T0Tiysk136SnR13hhO8yW6BGNyhOC4qYFnwF1nKfD3HFAIXA5c45RrIG1ub11GiXeYd1xA==, 4832 + } 4833 4834 micromark-util-normalize-identifier@2.0.1: 4835 + resolution: 4836 + { 4837 + integrity: sha512-sxPqmo70LyARJs0w2UclACPUUEqltCkJ6PhKdMIDuJ3gSf/Q+/GIe3WKl0Ijb/GyH9lOpUkRAO2wp0GVkLvS9Q==, 4838 + } 4839 4840 micromark-util-resolve-all@2.0.1: 4841 + resolution: 4842 + { 4843 + integrity: sha512-VdQyxFWFT2/FGJgwQnJYbe1jjQoNTS4RjglmSjTUlpUMa95Htx9NHeYW4rGDJzbjvCsl9eLjMQwGeElsqmzcHg==, 4844 + } 4845 4846 micromark-util-sanitize-uri@2.0.1: 4847 + resolution: 4848 + { 4849 + integrity: sha512-9N9IomZ/YuGGZZmQec1MbgxtlgougxTodVwDzzEouPKo3qFWvymFHWcnDi2vzV1ff6kas9ucW+o3yzJK9YB1AQ==, 4850 + } 4851 4852 micromark-util-subtokenize@2.1.0: 4853 + resolution: 4854 + { 4855 + integrity: sha512-XQLu552iSctvnEcgXw6+Sx75GflAPNED1qx7eBJ+wydBb2KCbRZe+NwvIEEMM83uml1+2WSXpBAcp9IUCgCYWA==, 4856 + } 4857 4858 micromark-util-symbol@2.0.1: 4859 + resolution: 4860 + { 4861 + integrity: sha512-vs5t8Apaud9N28kgCrRUdEed4UJ+wWNvicHLPxCa9ENlYuAY31M0ETy5y1vA33YoNPDFTghEbnh6efaE8h4x0Q==, 4862 + } 4863 4864 micromark-util-types@2.0.2: 4865 + resolution: 4866 + { 4867 + integrity: sha512-Yw0ECSpJoViF1qTU4DC6NwtC4aWGt1EkzaQB8KPPyCRR8z9TWeV0HbEFGTO+ZY1wB22zmxnJqhPyTpOVCpeHTA==, 4868 + } 4869 4870 micromark@4.0.2: 4871 + resolution: 4872 + { 4873 + integrity: sha512-zpe98Q6kvavpCr1NPVSCMebCKfD7CA2NqZ+rykeNhONIJBpc1tFKt9hucLGwha3jNTNI8lHpctWJWoimVF4PfA==, 4874 + } 4875 4876 micromatch@4.0.8: 4877 + resolution: 4878 + { 4879 + integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==, 4880 + } 4881 + engines: { node: ">=8.6" } 4882 4883 miller-rabin@4.0.1: 4884 + resolution: 4885 + { 4886 + integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==, 4887 + } 4888 hasBin: true 4889 4890 mime-db@1.52.0: 4891 + resolution: 4892 + { 4893 + integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==, 4894 + } 4895 + engines: { node: ">= 0.6" } 4896 4897 mime-types@2.1.35: 4898 + resolution: 4899 + { 4900 + integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==, 4901 + } 4902 + engines: { node: ">= 0.6" } 4903 4904 mime@1.6.0: 4905 + resolution: 4906 + { 4907 + integrity: sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==, 4908 + } 4909 + engines: { node: ">=4" } 4910 hasBin: true 4911 4912 mimic-fn@4.0.0: 4913 + resolution: 4914 + { 4915 + integrity: sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==, 4916 + } 4917 + engines: { node: ">=12" } 4918 4919 minimalistic-assert@1.0.1: 4920 + resolution: 4921 + { 4922 + integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==, 4923 + } 4924 4925 minimalistic-crypto-utils@1.0.1: 4926 + resolution: 4927 + { 4928 + integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==, 4929 + } 4930 4931 minimatch@9.0.5: 4932 + resolution: 4933 + { 4934 + integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==, 4935 + } 4936 + engines: { node: ">=16 || 14 >=14.17" } 4937 4938 minipass@7.1.2: 4939 + resolution: 4940 + { 4941 + integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==, 4942 + } 4943 + engines: { node: ">=16 || 14 >=14.17" } 4944 4945 minizlib@3.1.0: 4946 + resolution: 4947 + { 4948 + integrity: sha512-KZxYo1BUkWD2TVFLr0MQoM8vUUigWD3LlD83a/75BqC+4qE0Hb1Vo5v1FgcfaNXvfXzr+5EhQ6ing/CaBijTlw==, 4949 + } 4950 + engines: { node: ">= 18" } 4951 4952 mlly@1.8.0: 4953 + resolution: 4954 + { 4955 + integrity: sha512-l8D9ODSRWLe2KHJSifWGwBqpTZXIXTeo8mlKjY+E2HAakaTeNpqAyBZ8GSqLzHgw4XmHmC8whvpjJNMbFZN7/g==, 4956 + } 4957 4958 monaco-editor@0.52.2: 4959 + resolution: 4960 + { 4961 + integrity: sha512-GEQWEZmfkOGLdd3XK8ryrfWz3AIP8YymVXiPHEdewrUq7mh0qrKrfHLNCXcbB6sTnMLnOZ3ztSiKcciFUkIJwQ==, 4962 + } 4963 4964 mrmime@2.0.1: 4965 + resolution: 4966 + { 4967 + integrity: sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==, 4968 + } 4969 + engines: { node: ">=10" } 4970 4971 ms@2.0.0: 4972 + resolution: 4973 + { 4974 + integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==, 4975 + } 4976 4977 ms@2.1.3: 4978 + resolution: 4979 + { 4980 + integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==, 4981 + } 4982 4983 multiformats@9.9.0: 4984 + resolution: 4985 + { 4986 + integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==, 4987 + } 4988 4989 mustache@4.2.0: 4990 + resolution: 4991 + { 4992 + integrity: sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==, 4993 + } 4994 hasBin: true 4995 4996 mute-stream@2.0.0: 4997 + resolution: 4998 + { 4999 + integrity: sha512-WWdIxpyjEn+FhQJQQv9aQAYlHoNVdzIzUySNV1gHUPDSdZJ3yZn7pAAbQcV7B56Mvu881q9FZV+0Vx2xC44VWA==, 5000 + } 5001 + engines: { node: ^18.17.0 || >=20.5.0 } 5002 5003 nanoid@3.3.11: 5004 + resolution: 5005 + { 5006 + integrity: sha512-N8SpfPUnUp1bK+PMYW8qSWdl9U+wwNWI4QKxOYDy9JAro3WMX7p2OeVRF9v+347pnakNevPmiHhNmZ2HbFA76w==, 5007 + } 5008 + engines: { node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1 } 5009 hasBin: true 5010 5011 negotiator@0.6.3: 5012 + resolution: 5013 + { 5014 + integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==, 5015 + } 5016 + engines: { node: ">= 0.6" } 5017 5018 neotraverse@0.6.18: 5019 + resolution: 5020 + { 5021 + integrity: sha512-Z4SmBUweYa09+o6pG+eASabEpP6QkQ70yHj351pQoEXIs8uHbaU2DWVmzBANKgflPa47A50PtB2+NgRpQvr7vA==, 5022 + } 5023 + engines: { node: ">= 10" } 5024 5025 nlcst-to-string@4.0.0: 5026 + resolution: 5027 + { 5028 + integrity: sha512-YKLBCcUYKAg0FNlOBT6aI91qFmSiFKiluk655WzPF+DDMA02qIyy8uiRqI8QXtcFpEvll12LpL5MXqEmAZ+dcA==, 5029 + } 5030 5031 node-cleanup@2.1.2: 5032 + resolution: 5033 + { 5034 + integrity: sha512-qN8v/s2PAJwGUtr1/hYTpNKlD6Y9rc4p8KSmJXyGdYGZsDGKXrGThikLFP9OCHFeLeEpQzPwiAtdIvBLqm//Hw==, 5035 + } 5036 5037 node-fetch-native@1.6.7: 5038 + resolution: 5039 + { 5040 + integrity: sha512-g9yhqoedzIUm0nTnTqAQvueMPVOuIY16bqgAJJC8XOOubYFNwz6IER9qs0Gq2Xd0+CecCKFjtdDTMA4u4xG06Q==, 5041 + } 5042 5043 node-fetch@2.7.0: 5044 + resolution: 5045 + { 5046 + integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==, 5047 + } 5048 + engines: { node: 4.x || >=6.0.0 } 5049 peerDependencies: 5050 encoding: ^0.1.0 5051 peerDependenciesMeta: ··· 5053 optional: true 5054 5055 node-gyp-build-optional-packages@5.1.1: 5056 + resolution: 5057 + { 5058 + integrity: sha512-+P72GAjVAbTxjjwUmwjVrqrdZROD4nf8KgpBoDxqXXTiYZZt/ud60dE5yvCSr9lRO8e8yv6kgJIC0K0PfZFVQw==, 5059 + } 5060 hasBin: true 5061 5062 node-mock-http@1.0.3: 5063 + resolution: 5064 + { 5065 + integrity: sha512-jN8dK25fsfnMrVsEhluUTPkBFY+6ybu7jSB1n+ri/vOGjJxU8J9CZhpSGkHXSkFjtUhbmoncG/YG9ta5Ludqog==, 5066 + } 5067 5068 node-releases@2.0.23: 5069 + resolution: 5070 + { 5071 + integrity: sha512-cCmFDMSm26S6tQSDpBCg/NR8NENrVPhAJSf+XbxBG4rPFaaonlEoE9wHQmun+cls499TQGSb7ZyPBRlzgKfpeg==, 5072 + } 5073 5074 node-stdlib-browser@1.3.1: 5075 + resolution: 5076 + { 5077 + integrity: sha512-X75ZN8DCLftGM5iKwoYLA3rjnrAEs97MkzvSd4q2746Tgpg8b8XWiBGiBG4ZpgcAqBgtgPHTiAc8ZMCvZuikDw==, 5078 + } 5079 + engines: { node: ">=10" } 5080 5081 normalize-path@3.0.0: 5082 + resolution: 5083 + { 5084 + integrity: sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==, 5085 + } 5086 + engines: { node: ">=0.10.0" } 5087 5088 npm-run-path@5.3.0: 5089 + resolution: 5090 + { 5091 + integrity: sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==, 5092 + } 5093 + engines: { node: ^12.20.0 || ^14.13.1 || >=16.0.0 } 5094 5095 object-inspect@1.13.4: 5096 + resolution: 5097 + { 5098 + integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==, 5099 + } 5100 + engines: { node: ">= 0.4" } 5101 5102 object-is@1.1.6: 5103 + resolution: 5104 + { 5105 + integrity: sha512-F8cZ+KfGlSGi09lJT7/Nd6KJZ9ygtvYC0/UYYLI9nmQKLMnydpB9yvbv9K1uSkEu7FU9vYPmVwLg328tX+ot3Q==, 5106 + } 5107 + engines: { node: ">= 0.4" } 5108 5109 object-keys@1.1.1: 5110 + resolution: 5111 + { 5112 + integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==, 5113 + } 5114 + engines: { node: ">= 0.4" } 5115 5116 object.assign@4.1.7: 5117 + resolution: 5118 + { 5119 + integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==, 5120 + } 5121 + engines: { node: ">= 0.4" } 5122 5123 ofetch@1.4.1: 5124 + resolution: 5125 + { 5126 + integrity: sha512-QZj2DfGplQAr2oj9KzceK9Hwz6Whxazmn85yYeVuS3u9XTMOGMRx0kO95MQ+vLsj/S/NwBDMMLU5hpxvI6Tklw==, 5127 + } 5128 5129 ohash@2.0.11: 5130 + resolution: 5131 + { 5132 + integrity: sha512-RdR9FQrFwNBNXAr4GixM8YaRZRJ5PUWbKYbE5eOsrwAjJW0q2REGcf79oYPsLyskQCZG1PLN+S/K1V00joZAoQ==, 5133 + } 5134 5135 on-exit-leak-free@2.1.2: 5136 + resolution: 5137 + { 5138 + integrity: sha512-0eJJY6hXLGf1udHwfNftBqH+g73EU4B504nZeKpz1sYRKafAghwxEJunB2O7rDZkL4PGfsMVnTXZ2EjibbqcsA==, 5139 + } 5140 + engines: { node: ">=14.0.0" } 5141 5142 on-finished@2.4.1: 5143 + resolution: 5144 + { 5145 + integrity: sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==, 5146 + } 5147 + engines: { node: ">= 0.8" } 5148 5149 onetime@6.0.0: 5150 + resolution: 5151 + { 5152 + integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==, 5153 + } 5154 + engines: { node: ">=12" } 5155 5156 oniguruma-parser@0.12.1: 5157 + resolution: 5158 + { 5159 + integrity: sha512-8Unqkvk1RYc6yq2WBYRj4hdnsAxVze8i7iPfQr8e4uSP3tRv0rpZcbGUDvxfQQcdwHt/e9PrMvGCsa8OqG9X3w==, 5160 + } 5161 5162 oniguruma-to-es@4.3.3: 5163 + resolution: 5164 + { 5165 + integrity: sha512-rPiZhzC3wXwE59YQMRDodUwwT9FZ9nNBwQQfsd1wfdtlKEyCdRV0avrTcSZ5xlIvGRVPd/cx6ZN45ECmS39xvg==, 5166 + } 5167 5168 openapi-types@12.1.3: 5169 + resolution: 5170 + { 5171 + integrity: sha512-N4YtSYJqghVu4iek2ZUvcN/0aqH1kRDuNqzcycDxhOUpg7GdvLa2F3DgS6yBNhInhv2r/6I0Flkn7CqL8+nIcw==, 5172 + } 5173 5174 os-browserify@0.3.0: 5175 + resolution: 5176 + { 5177 + integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==, 5178 + } 5179 5180 p-limit@3.1.0: 5181 + resolution: 5182 + { 5183 + integrity: sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==, 5184 + } 5185 + engines: { node: ">=10" } 5186 5187 p-limit@5.0.0: 5188 + resolution: 5189 + { 5190 + integrity: sha512-/Eaoq+QyLSiXQ4lyYV23f14mZRQcXnxfHrN0vCai+ak9G0pp9iEQukIIZq5NccEvwRB8PUnZT0KsOoDCINS1qQ==, 5191 + } 5192 + engines: { node: ">=18" } 5193 5194 p-limit@6.2.0: 5195 + resolution: 5196 + { 5197 + integrity: sha512-kuUqqHNUqoIWp/c467RI4X6mmyuojY5jGutNU0wVTmEOOfcuwLqyMVoAi9MKi2Ak+5i9+nhmrK4ufZE8069kHA==, 5198 + } 5199 + engines: { node: ">=18" } 5200 5201 p-locate@5.0.0: 5202 + resolution: 5203 + { 5204 + integrity: sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==, 5205 + } 5206 + engines: { node: ">=10" } 5207 5208 p-queue@8.1.1: 5209 + resolution: 5210 + { 5211 + integrity: sha512-aNZ+VfjobsWryoiPnEApGGmf5WmNsCo9xu8dfaYamG5qaLP7ClhLN6NgsFe6SwJ2UbLEBK5dv9x8Mn5+RVhMWQ==, 5212 + } 5213 + engines: { node: ">=18" } 5214 5215 p-timeout@6.1.4: 5216 + resolution: 5217 + { 5218 + integrity: sha512-MyIV3ZA/PmyBN/ud8vV9XzwTrNtR4jFrObymZYnZqMmW0zA8Z17vnT0rBgFE/TlohB+YCHqXMgZzb3Csp49vqg==, 5219 + } 5220 + engines: { node: ">=14.16" } 5221 5222 package-manager-detector@1.3.0: 5223 + resolution: 5224 + { 5225 + integrity: sha512-ZsEbbZORsyHuO00lY1kV3/t72yp6Ysay6Pd17ZAlNGuGwmWDLCJxFpRs0IzfXfj1o4icJOkUEioexFHzyPurSQ==, 5226 + } 5227 5228 pako@0.2.9: 5229 + resolution: 5230 + { 5231 + integrity: sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==, 5232 + } 5233 5234 pako@1.0.11: 5235 + resolution: 5236 + { 5237 + integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==, 5238 + } 5239 5240 parse-asn1@5.1.9: 5241 + resolution: 5242 + { 5243 + integrity: sha512-fIYNuZ/HastSb80baGOuPRo1O9cf4baWw5WsAp7dBuUzeTD/BoaG8sVTdlPFksBE2lF21dN+A1AnrpIjSWqHHg==, 5244 + } 5245 + engines: { node: ">= 0.10" } 5246 5247 parse-latin@7.0.0: 5248 + resolution: 5249 + { 5250 + integrity: sha512-mhHgobPPua5kZ98EF4HWiH167JWBfl4pvAIXXdbaVohtK7a6YBOy56kvhCqduqyo/f3yrHFWmqmiMg/BkBkYYQ==, 5251 + } 5252 5253 parse5@7.3.0: 5254 + resolution: 5255 + { 5256 + integrity: sha512-IInvU7fabl34qmi9gY8XOVxhYyMyuH2xUNpb2q8/Y+7552KlejkRvqvD19nMoUW/uQGGbqNpA6Tufu5FL5BZgw==, 5257 + } 5258 5259 parseurl@1.3.3: 5260 + resolution: 5261 + { 5262 + integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==, 5263 + } 5264 + engines: { node: ">= 0.8" } 5265 5266 path-browserify@1.0.1: 5267 + resolution: 5268 + { 5269 + integrity: sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==, 5270 + } 5271 5272 path-exists@4.0.0: 5273 + resolution: 5274 + { 5275 + integrity: sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==, 5276 + } 5277 + engines: { node: ">=8" } 5278 5279 path-key@3.1.1: 5280 + resolution: 5281 + { 5282 + integrity: sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==, 5283 + } 5284 + engines: { node: ">=8" } 5285 5286 path-key@4.0.0: 5287 + resolution: 5288 + { 5289 + integrity: sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==, 5290 + } 5291 + engines: { node: ">=12" } 5292 5293 path-parse@1.0.7: 5294 + resolution: 5295 + { 5296 + integrity: sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==, 5297 + } 5298 5299 path-to-regexp@0.1.12: 5300 + resolution: 5301 + { 5302 + integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==, 5303 + } 5304 5305 path-type@6.0.0: 5306 + resolution: 5307 + { 5308 + integrity: sha512-Vj7sf++t5pBD637NSfkxpHSMfWaeig5+DKWLhcqIYx6mWQz5hdJTGDVMQiJcw1ZYkhs7AazKDGpRVji1LJCZUQ==, 5309 + } 5310 + engines: { node: ">=18" } 5311 5312 pathe@1.1.2: 5313 + resolution: 5314 + { 5315 + integrity: sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==, 5316 + } 5317 5318 pathe@2.0.3: 5319 + resolution: 5320 + { 5321 + integrity: sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==, 5322 + } 5323 5324 pathval@1.1.1: 5325 + resolution: 5326 + { 5327 + integrity: sha512-Dp6zGqpTdETdR63lehJYPeIOqpiNBNtc7BpWSLrOje7UaIsE5aY92r/AunQA7rsXvet3lrJ3JnZX29UPTKXyKQ==, 5328 + } 5329 5330 pause-stream@0.0.11: 5331 + resolution: 5332 + { 5333 + integrity: sha512-e3FBlXLmN/D1S+zHzanP4E/4Z60oFAa3O051qt1pxa7DEJWKAyil6upYVXCWadEnuoqa4Pkc9oUx9zsxYeRv8A==, 5334 + } 5335 5336 pbkdf2@3.1.5: 5337 + resolution: 5338 + { 5339 + integrity: sha512-Q3CG/cYvCO1ye4QKkuH7EXxs3VC/rI1/trd+qX2+PolbaKG0H+bgcZzrTt96mMyRtejk+JMCiLUn3y29W8qmFQ==, 5340 + } 5341 + engines: { node: ">= 0.10" } 5342 5343 picocolors@1.1.1: 5344 + resolution: 5345 + { 5346 + integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==, 5347 + } 5348 5349 picomatch@2.3.1: 5350 + resolution: 5351 + { 5352 + integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==, 5353 + } 5354 + engines: { node: ">=8.6" } 5355 5356 picomatch@4.0.3: 5357 + resolution: 5358 + { 5359 + integrity: sha512-5gTmgEY/sqK6gFXLIsQNH19lWb4ebPDLA4SdLP7dsWkIXHWlG66oPuVvXSGFPppYZz8ZDZq0dYYrbHfBCVUb1Q==, 5360 + } 5361 + engines: { node: ">=12" } 5362 5363 pino-abstract-transport@1.2.0: 5364 + resolution: 5365 + { 5366 + integrity: sha512-Guhh8EZfPCfH+PMXAb6rKOjGQEoy0xlAIn+irODG5kgfYV+BQ0rGYYWTIel3P5mmyXqkYkPmdIkywsn6QKUR1Q==, 5367 + } 5368 5369 pino-std-serializers@6.2.2: 5370 + resolution: 5371 + { 5372 + integrity: sha512-cHjPPsE+vhj/tnhCy/wiMh3M3z3h/j15zHQX+S9GkTBgqJuTuJzYJ4gUyACLhDaJ7kk9ba9iRDmbH2tJU03OiA==, 5373 + } 5374 5375 pino@8.21.0: 5376 + resolution: 5377 + { 5378 + integrity: sha512-ip4qdzjkAyDDZklUaZkcRFb2iA118H9SgRh8yzTkSQK8HilsOJF7rSY8HoW5+I0M46AZgX/pxbprf2vvzQCE0Q==, 5379 + } 5380 hasBin: true 5381 5382 pkg-dir@5.0.0: 5383 + resolution: 5384 + { 5385 + integrity: sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==, 5386 + } 5387 + engines: { node: ">=10" } 5388 5389 pkg-types@1.3.1: 5390 + resolution: 5391 + { 5392 + integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==, 5393 + } 5394 5395 pkg-types@2.3.0: 5396 + resolution: 5397 + { 5398 + integrity: sha512-SIqCzDRg0s9npO5XQ3tNZioRY1uK06lA41ynBC1YmFTmnY6FjUjVt6s4LoADmwoig1qqD0oK8h1p/8mlMx8Oig==, 5399 + } 5400 5401 possible-typed-array-names@1.1.0: 5402 + resolution: 5403 + { 5404 + integrity: sha512-/+5VFTchJDoVj3bhoqi6UeymcD00DAwb1nJwamzPvHEszJ4FpF6SNNbUbOS8yI56qHzdV8eK0qEfOSiodkTdxg==, 5405 + } 5406 + engines: { node: ">= 0.4" } 5407 5408 postcss@8.5.6: 5409 + resolution: 5410 + { 5411 + integrity: sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==, 5412 + } 5413 + engines: { node: ^10 || ^12 || >=14 } 5414 5415 prettier@3.3.3: 5416 + resolution: 5417 + { 5418 + integrity: sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew==, 5419 + } 5420 + engines: { node: ">=14" } 5421 hasBin: true 5422 5423 prettier@3.6.2: 5424 + resolution: 5425 + { 5426 + integrity: sha512-I7AIg5boAr5R0FFtJ6rCfD+LFsWHp81dolrFD8S79U9tb8Az2nGrJncnMSnys+bpQJfRUzqs9hnA81OAA3hCuQ==, 5427 + } 5428 + engines: { node: ">=14" } 5429 hasBin: true 5430 5431 pretty-format@29.7.0: 5432 + resolution: 5433 + { 5434 + integrity: sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==, 5435 + } 5436 + engines: { node: ^14.15.0 || ^16.10.0 || >=18.0.0 } 5437 5438 prismjs@1.30.0: 5439 + resolution: 5440 + { 5441 + integrity: sha512-DEvV2ZF2r2/63V+tK8hQvrR2ZGn10srHbXviTlcv7Kpzw8jWiNTqbVgjO3IY8RxrrOUF8VPMQQFysYYYv0YZxw==, 5442 + } 5443 + engines: { node: ">=6" } 5444 5445 process-nextick-args@2.0.1: 5446 + resolution: 5447 + { 5448 + integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==, 5449 + } 5450 5451 process-warning@3.0.0: 5452 + resolution: 5453 + { 5454 + integrity: sha512-mqn0kFRl0EoqhnL0GQ0veqFHyIN1yig9RHh/InzORTUiZHFRAur+aMtRkELNwGs9aNwKS6tg/An4NYBPGwvtzQ==, 5455 + } 5456 5457 process@0.11.10: 5458 + resolution: 5459 + { 5460 + integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==, 5461 + } 5462 + engines: { node: ">= 0.6.0" } 5463 5464 prompts@2.4.2: 5465 + resolution: 5466 + { 5467 + integrity: sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==, 5468 + } 5469 + engines: { node: ">= 6" } 5470 5471 property-information@6.5.0: 5472 + resolution: 5473 + { 5474 + integrity: sha512-PgTgs/BlvHxOu8QuEN7wi5A0OmXaBcHpmCSTehcs6Uuu9IkDIEo13Hy7n898RHfrQ49vKCoGeWZSaAK01nwVig==, 5475 + } 5476 5477 property-information@7.1.0: 5478 + resolution: 5479 + { 5480 + integrity: sha512-TwEZ+X+yCJmYfL7TPUOcvBZ4QfoT5YenQiJuX//0th53DE6w0xxLEtfK3iyryQFddXuvkIk51EEgrJQ0WJkOmQ==, 5481 + } 5482 5483 proxy-addr@2.0.7: 5484 + resolution: 5485 + { 5486 + integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==, 5487 + } 5488 + engines: { node: ">= 0.10" } 5489 5490 ps-tree@1.2.0: 5491 + resolution: 5492 + { 5493 + integrity: sha512-0VnamPPYHl4uaU/nSFeZZpR21QAWRz+sRv4iW9+v/GS/J5U5iZB5BNN6J0RMoOvdx2gWM2+ZFMIm58q24e4UYA==, 5494 + } 5495 + engines: { node: ">= 0.10" } 5496 hasBin: true 5497 5498 public-encrypt@4.0.3: 5499 + resolution: 5500 + { 5501 + integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==, 5502 + } 5503 5504 punycode@1.4.1: 5505 + resolution: 5506 + { 5507 + integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==, 5508 + } 5509 5510 qs@6.13.0: 5511 + resolution: 5512 + { 5513 + integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==, 5514 + } 5515 + engines: { node: ">=0.6" } 5516 5517 quansync@0.2.11: 5518 + resolution: 5519 + { 5520 + integrity: sha512-AifT7QEbW9Nri4tAwR5M/uzpBuqfZf+zwaEM/QkzEjj7NBuFD2rBuy0K3dE+8wltbezDV7JMA0WfnCPYRSYbXA==, 5521 + } 5522 5523 querystring-es3@0.2.1: 5524 + resolution: 5525 + { 5526 + integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==, 5527 + } 5528 + engines: { node: ">=0.4.x" } 5529 5530 queue-microtask@1.2.3: 5531 + resolution: 5532 + { 5533 + integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==, 5534 + } 5535 5536 quick-format-unescaped@4.0.4: 5537 + resolution: 5538 + { 5539 + integrity: sha512-tYC1Q1hgyRuHgloV/YXs2w15unPVh8qfu/qCTfhTYamaw7fyhumKa2yGpdSo87vY32rIclj+4fWYQXUMs9EHvg==, 5540 + } 5541 5542 radix3@1.1.2: 5543 + resolution: 5544 + { 5545 + integrity: sha512-b484I/7b8rDEdSDKckSSBA8knMpcdsXudlE/LNL639wFoHKwLbEkQFZHWEYwDC0wa0FKUcCY+GAF73Z7wxNVFA==, 5546 + } 5547 5548 randombytes@2.1.0: 5549 + resolution: 5550 + { 5551 + integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==, 5552 + } 5553 5554 randomfill@1.0.4: 5555 + resolution: 5556 + { 5557 + integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==, 5558 + } 5559 5560 range-parser@1.2.1: 5561 + resolution: 5562 + { 5563 + integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==, 5564 + } 5565 + engines: { node: ">= 0.6" } 5566 5567 rate-limiter-flexible@2.4.2: 5568 + resolution: 5569 + { 5570 + integrity: sha512-rMATGGOdO1suFyf/mI5LYhts71g1sbdhmd6YvdiXO2gJnd42Tt6QS4JUKJKSWVVkMtBacm6l40FR7Trjo6Iruw==, 5571 + } 5572 5573 raw-body@2.5.2: 5574 + resolution: 5575 + { 5576 + integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==, 5577 + } 5578 + engines: { node: ">= 0.8" } 5579 5580 react-dom@18.3.1: 5581 + resolution: 5582 + { 5583 + integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==, 5584 + } 5585 peerDependencies: 5586 react: ^18.3.1 5587 5588 react-dom@19.2.0: 5589 + resolution: 5590 + { 5591 + integrity: sha512-UlbRu4cAiGaIewkPyiRGJk0imDN2T3JjieT6spoL2UeSf5od4n5LB/mQ4ejmxhCFT1tYe8IvaFulzynWovsEFQ==, 5592 + } 5593 peerDependencies: 5594 react: ^19.2.0 5595 5596 react-error-boundary@6.0.0: 5597 + resolution: 5598 + { 5599 + integrity: sha512-gdlJjD7NWr0IfkPlaREN2d9uUZUlksrfOx7SX62VRerwXbMY6ftGCIZua1VG1aXFNOimhISsTq+Owp725b9SiA==, 5600 + } 5601 peerDependencies: 5602 + react: ">=16.13.1" 5603 5604 react-hotkeys-hook@5.1.0: 5605 + resolution: 5606 + { 5607 + integrity: sha512-GCNGXjBzV9buOS3REoQFmSmE4WTvBhYQ0YrAeeMZI83bhXg3dRWsLHXDutcVDdEjwJqJCxk5iewWYX5LtFUd7g==, 5608 + } 5609 peerDependencies: 5610 + react: ">=16.8.0" 5611 + react-dom: ">=16.8.0" 5612 5613 react-is@17.0.2: 5614 + resolution: 5615 + { 5616 + integrity: sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==, 5617 + } 5618 5619 react-is@18.3.1: 5620 + resolution: 5621 + { 5622 + integrity: sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==, 5623 + } 5624 5625 react-refresh@0.17.0: 5626 + resolution: 5627 + { 5628 + integrity: sha512-z6F7K9bV85EfseRCp2bzrpyQ0Gkw1uLoCel9XBVWPg/TjRj94SkJzUTGfOa4bs7iJvBWtQG0Wq7wnI0syw3EBQ==, 5629 + } 5630 + engines: { node: ">=0.10.0" } 5631 5632 react@18.3.1: 5633 + resolution: 5634 + { 5635 + integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==, 5636 + } 5637 + engines: { node: ">=0.10.0" } 5638 5639 react@19.2.0: 5640 + resolution: 5641 + { 5642 + integrity: sha512-tmbWg6W31tQLeB5cdIBOicJDJRR2KzXsV7uSK9iNfLWQ5bIZfxuPEHp7M8wiHyHnn0DD1i7w3Zmin0FtkrwoCQ==, 5643 + } 5644 + engines: { node: ">=0.10.0" } 5645 5646 readable-stream@2.3.8: 5647 + resolution: 5648 + { 5649 + integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==, 5650 + } 5651 5652 readable-stream@3.6.2: 5653 + resolution: 5654 + { 5655 + integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==, 5656 + } 5657 + engines: { node: ">= 6" } 5658 5659 readable-stream@4.7.0: 5660 + resolution: 5661 + { 5662 + integrity: sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==, 5663 + } 5664 + engines: { node: ^12.22.0 || ^14.17.0 || >=16.0.0 } 5665 5666 readdirp@4.1.2: 5667 + resolution: 5668 + { 5669 + integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==, 5670 + } 5671 + engines: { node: ">= 14.18.0" } 5672 5673 real-require@0.2.0: 5674 + resolution: 5675 + { 5676 + integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==, 5677 + } 5678 + engines: { node: ">= 12.13.0" } 5679 5680 regex-recursion@6.0.2: 5681 + resolution: 5682 + { 5683 + integrity: sha512-0YCaSCq2VRIebiaUviZNs0cBz1kg5kVS2UKUfNIx8YVs1cN3AV7NTctO5FOKBA+UT2BPJIWZauYHPqJODG50cg==, 5684 + } 5685 5686 regex-utilities@2.3.0: 5687 + resolution: 5688 + { 5689 + integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==, 5690 + } 5691 5692 regex@6.0.1: 5693 + resolution: 5694 + { 5695 + integrity: sha512-uorlqlzAKjKQZ5P+kTJr3eeJGSVroLKoHmquUj4zHWuR+hEyNqlXsSKlYYF5F4NI6nl7tWCs0apKJ0lmfsXAPA==, 5696 + } 5697 5698 rehype-parse@9.0.1: 5699 + resolution: 5700 + { 5701 + integrity: sha512-ksCzCD0Fgfh7trPDxr2rSylbwq9iYDkSn8TCDmEJ49ljEUBxDVCzCHv7QNzZOfODanX4+bWQ4WZqLCRWYLfhag==, 5702 + } 5703 5704 rehype-raw@7.0.0: 5705 + resolution: 5706 + { 5707 + integrity: sha512-/aE8hCfKlQeA8LmyeyQvQF3eBiLRGNlfBJEvWH7ivp9sBqs7TNqBL5X3v157rM4IFETqDnIOO+z5M/biZbo9Ww==, 5708 + } 5709 5710 rehype-stringify@10.0.1: 5711 + resolution: 5712 + { 5713 + integrity: sha512-k9ecfXHmIPuFVI61B9DeLPN0qFHfawM6RsuX48hoqlaKSF61RskNjSm1lI8PhBEM0MRdLxVVm4WmTqJQccH9mA==, 5714 + } 5715 5716 rehype@13.0.2: 5717 + resolution: 5718 + { 5719 + integrity: sha512-j31mdaRFrwFRUIlxGeuPXXKWQxet52RBQRvCmzl5eCefn/KGbomK5GMHNMsOJf55fgo3qw5tST5neDuarDYR2A==, 5720 + } 5721 5722 remark-gfm@4.0.1: 5723 + resolution: 5724 + { 5725 + integrity: sha512-1quofZ2RQ9EWdeN34S79+KExV1764+wCUGop5CPL1WGdD0ocPpu91lzPGbwWMECpEpd42kJGQwzRfyov9j4yNg==, 5726 + } 5727 5728 remark-parse@11.0.0: 5729 + resolution: 5730 + { 5731 + integrity: sha512-FCxlKLNGknS5ba/1lmpYijMUzX2esxW5xQqjWxw2eHFfS2MSdaHVINFmhjo+qN1WhZhNimq0dZATN9pH0IDrpA==, 5732 + } 5733 5734 remark-rehype@11.1.2: 5735 + resolution: 5736 + { 5737 + integrity: sha512-Dh7l57ianaEoIpzbp0PC9UKAdCSVklD8E5Rpw7ETfbTl3FqcOOgq5q2LVDhgGCkaBv7p24JXikPdvhhmHvKMsw==, 5738 + } 5739 5740 remark-smartypants@3.0.2: 5741 + resolution: 5742 + { 5743 + integrity: sha512-ILTWeOriIluwEvPjv67v7Blgrcx+LZOkAUVtKI3putuhlZm84FnqDORNXPPm+HY3NdZOMhyDwZ1E+eZB/Df5dA==, 5744 + } 5745 + engines: { node: ">=16.0.0" } 5746 5747 remark-stringify@11.0.0: 5748 + resolution: 5749 + { 5750 + integrity: sha512-1OSmLd3awB/t8qdoEOMazZkNsfVTeY4fTsgzcQFdXNq8ToTN4ZGwrMnlda4K6smTFKD+GRV6O48i6Z4iKgPPpw==, 5751 + } 5752 5753 require-directory@2.1.1: 5754 + resolution: 5755 + { 5756 + integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==, 5757 + } 5758 + engines: { node: ">=0.10.0" } 5759 5760 require-from-string@2.0.2: 5761 + resolution: 5762 + { 5763 + integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==, 5764 + } 5765 + engines: { node: ">=0.10.0" } 5766 5767 resolve.exports@2.0.3: 5768 + resolution: 5769 + { 5770 + integrity: sha512-OcXjMsGdhL4XnbShKpAcSqPMzQoYkYyhbEaeSko47MjRP9NfEQMhZkXL1DoFlt9LWQn4YttrdnV6X2OiyzBi+A==, 5771 + } 5772 + engines: { node: ">=10" } 5773 5774 resolve@1.22.10: 5775 + resolution: 5776 + { 5777 + integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==, 5778 + } 5779 + engines: { node: ">= 0.4" } 5780 hasBin: true 5781 5782 restructure@3.0.2: 5783 + resolution: 5784 + { 5785 + integrity: sha512-gSfoiOEA0VPE6Tukkrr7I0RBdE0s7H1eFCDBk05l1KIQT1UIKNc5JZy6jdyW6eYH3aR3g5b3PuL77rq0hvwtAw==, 5786 + } 5787 5788 retext-latin@4.0.0: 5789 + resolution: 5790 + { 5791 + integrity: sha512-hv9woG7Fy0M9IlRQloq/N6atV82NxLGveq+3H2WOi79dtIYWN8OaxogDm77f8YnVXJL2VD3bbqowu5E3EMhBYA==, 5792 + } 5793 5794 retext-smartypants@6.2.0: 5795 + resolution: 5796 + { 5797 + integrity: sha512-kk0jOU7+zGv//kfjXEBjdIryL1Acl4i9XNkHxtM7Tm5lFiCog576fjNC9hjoR7LTKQ0DsPWy09JummSsH1uqfQ==, 5798 + } 5799 5800 retext-stringify@4.0.0: 5801 + resolution: 5802 + { 5803 + integrity: sha512-rtfN/0o8kL1e+78+uxPTqu1Klt0yPzKuQ2BfWwwfgIUSayyzxpM1PJzkKt4V8803uB9qSy32MvI7Xep9khTpiA==, 5804 + } 5805 5806 retext@9.0.0: 5807 + resolution: 5808 + { 5809 + integrity: sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==, 5810 + } 5811 5812 reusify@1.1.0: 5813 + resolution: 5814 + { 5815 + integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==, 5816 + } 5817 + engines: { iojs: ">=1.0.0", node: ">=0.10.0" } 5818 5819 ripemd160@2.0.3: 5820 + resolution: 5821 + { 5822 + integrity: sha512-5Di9UC0+8h1L6ZD2d7awM7E/T4uA1fJRlx6zk/NvdCCVEoAnFqvHmCuNeIKoCeIixBX/q8uM+6ycDvF8woqosA==, 5823 + } 5824 + engines: { node: ">= 0.8" } 5825 5826 rollup@4.52.4: 5827 + resolution: 5828 + { 5829 + integrity: sha512-CLEVl+MnPAiKh5pl4dEWSyMTpuflgNQiLGhMv8ezD5W/qP8AKvmYpCOKRRNOh7oRKnauBZ4SyeYkMS+1VSyKwQ==, 5830 + } 5831 + engines: { node: ">=18.0.0", npm: ">=8.0.0" } 5832 hasBin: true 5833 5834 rtl-css-js@1.16.1: 5835 + resolution: 5836 + { 5837 + integrity: sha512-lRQgou1mu19e+Ya0LsTvKrVJ5TYUbqCVPAiImX3UfLTenarvPUl1QFdvu5Z3PYmHT9RCcwIfbjRQBntExyj3Zg==, 5838 + } 5839 5840 run-parallel@1.2.0: 5841 + resolution: 5842 + { 5843 + integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==, 5844 + } 5845 5846 rxjs@7.8.2: 5847 + resolution: 5848 + { 5849 + integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==, 5850 + } 5851 5852 safe-buffer@5.1.2: 5853 + resolution: 5854 + { 5855 + integrity: sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==, 5856 + } 5857 5858 safe-buffer@5.2.1: 5859 + resolution: 5860 + { 5861 + integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==, 5862 + } 5863 5864 safe-regex-test@1.1.0: 5865 + resolution: 5866 + { 5867 + integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==, 5868 + } 5869 + engines: { node: ">= 0.4" } 5870 5871 safe-stable-stringify@2.5.0: 5872 + resolution: 5873 + { 5874 + integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==, 5875 + } 5876 + engines: { node: ">=10" } 5877 5878 safer-buffer@2.1.2: 5879 + resolution: 5880 + { 5881 + integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==, 5882 + } 5883 5884 scheduler@0.23.2: 5885 + resolution: 5886 + { 5887 + integrity: sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==, 5888 + } 5889 5890 scheduler@0.27.0: 5891 + resolution: 5892 + { 5893 + integrity: sha512-eNv+WrVbKu1f3vbYJT/xtiF5syA5HPIMtf9IgY/nKg0sWqzAUEvqY/xm7OcZc/qafLx/iO9FgOmeSAp4v5ti/Q==, 5894 + } 5895 5896 semver@6.3.1: 5897 + resolution: 5898 + { 5899 + integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==, 5900 + } 5901 hasBin: true 5902 5903 semver@7.7.2: 5904 + resolution: 5905 + { 5906 + integrity: sha512-RF0Fw+rO5AMf9MAyaRXI4AV0Ulj5lMHqVxxdSgiVbixSCXoEmmX/jk0CuJw4+3SqroYO9VoUh+HcuJivvtJemA==, 5907 + } 5908 + engines: { node: ">=10" } 5909 hasBin: true 5910 5911 send@0.19.0: 5912 + resolution: 5913 + { 5914 + integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==, 5915 + } 5916 + engines: { node: ">= 0.8.0" } 5917 5918 serve-static@1.16.2: 5919 + resolution: 5920 + { 5921 + integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==, 5922 + } 5923 + engines: { node: ">= 0.8.0" } 5924 5925 set-function-length@1.2.2: 5926 + resolution: 5927 + { 5928 + integrity: sha512-pgRc4hJ4/sNjWCSS9AmnS40x3bNMDTknHgL5UaMBTMyJnU90EgWh1Rz+MC9eFu4BuN/UwZjKQuY/1v3rM7HMfg==, 5929 + } 5930 + engines: { node: ">= 0.4" } 5931 5932 setimmediate@1.0.5: 5933 + resolution: 5934 + { 5935 + integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==, 5936 + } 5937 5938 setprototypeof@1.2.0: 5939 + resolution: 5940 + { 5941 + integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==, 5942 + } 5943 5944 sha.js@2.4.12: 5945 + resolution: 5946 + { 5947 + integrity: sha512-8LzC5+bvI45BjpfXU8V5fdU2mfeKiQe1D1gIMn7XUlF3OTUrpdJpPPH4EMAnF0DsHHdSZqCdSss5qCmJKuiO3w==, 5948 + } 5949 + engines: { node: ">= 0.10" } 5950 hasBin: true 5951 5952 sharp@0.34.4: 5953 + resolution: 5954 + { 5955 + integrity: sha512-FUH39xp3SBPnxWvd5iib1X8XY7J0K0X7d93sie9CJg2PO8/7gmg89Nve6OjItK53/MlAushNNxteBYfM6DEuoA==, 5956 + } 5957 + engines: { node: ^18.17.0 || ^20.3.0 || >=21.0.0 } 5958 5959 shebang-command@2.0.0: 5960 + resolution: 5961 + { 5962 + integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==, 5963 + } 5964 + engines: { node: ">=8" } 5965 5966 shebang-regex@3.0.0: 5967 + resolution: 5968 + { 5969 + integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==, 5970 + } 5971 + engines: { node: ">=8" } 5972 5973 shell-quote@1.8.3: 5974 + resolution: 5975 + { 5976 + integrity: sha512-ObmnIF4hXNg1BqhnHmgbDETF8dLPCggZWBjkQfhZpbszZnYur5DUljTcCHii5LC3J5E0yeO/1LIMyH+UvHQgyw==, 5977 + } 5978 + engines: { node: ">= 0.4" } 5979 5980 shiki@3.13.0: 5981 + resolution: 5982 + { 5983 + integrity: sha512-aZW4l8Og16CokuCLf8CF8kq+KK2yOygapU5m3+hoGw0Mdosc6fPitjM+ujYarppj5ZIKGyPDPP1vqmQhr+5/0g==, 5984 + } 5985 5986 side-channel-list@1.0.0: 5987 + resolution: 5988 + { 5989 + integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==, 5990 + } 5991 + engines: { node: ">= 0.4" } 5992 5993 side-channel-map@1.0.1: 5994 + resolution: 5995 + { 5996 + integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==, 5997 + } 5998 + engines: { node: ">= 0.4" } 5999 6000 side-channel-weakmap@1.0.2: 6001 + resolution: 6002 + { 6003 + integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==, 6004 + } 6005 + engines: { node: ">= 0.4" } 6006 6007 side-channel@1.1.0: 6008 + resolution: 6009 + { 6010 + integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==, 6011 + } 6012 + engines: { node: ">= 0.4" } 6013 6014 siginfo@2.0.0: 6015 + resolution: 6016 + { 6017 + integrity: sha512-ybx0WO1/8bSBLEWXZvEd7gMW3Sn3JFlW3TvX1nREbDLRNQNaeNN8WK0meBwPdAaOI7TtRRRJn/Es1zhrrCHu7g==, 6018 + } 6019 6020 signal-exit@4.1.0: 6021 + resolution: 6022 + { 6023 + integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==, 6024 + } 6025 + engines: { node: ">=14" } 6026 6027 sisteransi@1.0.5: 6028 + resolution: 6029 + { 6030 + integrity: sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==, 6031 + } 6032 6033 slash@5.1.0: 6034 + resolution: 6035 + { 6036 + integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==, 6037 + } 6038 + engines: { node: ">=14.16" } 6039 6040 smol-toml@1.4.2: 6041 + resolution: 6042 + { 6043 + integrity: sha512-rInDH6lCNiEyn3+hH8KVGFdbjc099j47+OSgbMrfDYX1CmXLfdKd7qi6IfcWj2wFxvSVkuI46M+wPGYfEOEj6g==, 6044 + } 6045 + engines: { node: ">= 18" } 6046 6047 sonic-boom@3.8.1: 6048 + resolution: 6049 + { 6050 + integrity: sha512-y4Z8LCDBuum+PBP3lSV7RHrXscqksve/bi0as7mhwVnBW+/wUqKT/2Kb7um8yqcFy0duYbbPxzt89Zy2nOCaxg==, 6051 + } 6052 6053 source-map-js@1.2.1: 6054 + resolution: 6055 + { 6056 + integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==, 6057 + } 6058 + engines: { node: ">=0.10.0" } 6059 6060 space-separated-tokens@2.0.2: 6061 + resolution: 6062 + { 6063 + integrity: sha512-PEGlAwrG8yXGXRjW32fGbg66JAlOAwbObuqVoJpv/mRgoWDQfgH1wDPvtzWyUSNAXBGSk8h755YDbbcEy3SH2Q==, 6064 + } 6065 6066 split2@4.2.0: 6067 + resolution: 6068 + { 6069 + integrity: sha512-UcjcJOWknrNkF6PLX83qcHM6KHgVKNkV62Y8a5uYDVv9ydGQVwAHMKqHdJje1VTWpljG0WYpCDhrCdAOYH4TWg==, 6070 + } 6071 + engines: { node: ">= 10.x" } 6072 6073 split@0.3.3: 6074 + resolution: 6075 + { 6076 + integrity: sha512-wD2AeVmxXRBoX44wAycgjVpMhvbwdI2aZjCkvfNcH1YqHQvJVa1duWc73OyVGJUc05fhFaTZeQ/PYsrmyH0JVA==, 6077 + } 6078 6079 stackback@0.0.2: 6080 + resolution: 6081 + { 6082 + integrity: sha512-1XMJE5fQo1jGH6Y/7ebnwPOBEkIEnT4QF32d5R1+VXdXveM0IBMJt8zfaxX1P3QhVwrYe+576+jkANtSS2mBbw==, 6083 + } 6084 6085 statuses@2.0.1: 6086 + resolution: 6087 + { 6088 + integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==, 6089 + } 6090 + engines: { node: ">= 0.8" } 6091 6092 std-env@3.9.0: 6093 + resolution: 6094 + { 6095 + integrity: sha512-UGvjygr6F6tpH7o2qyqR6QYpwraIjKSdtzyBdyytFOHmPZY917kwdwLG0RbOjWOnKmnm3PeHjaoLLMie7kPLQw==, 6096 + } 6097 6098 stream-browserify@3.0.0: 6099 + resolution: 6100 + { 6101 + integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==, 6102 + } 6103 6104 stream-combiner@0.0.4: 6105 + resolution: 6106 + { 6107 + integrity: sha512-rT00SPnTVyRsaSz5zgSPma/aHSOic5U1prhYdRy5HS2kTZviFpmDgzilbtsJsxiroqACmayynDN/9VzIbX5DOw==, 6108 + } 6109 6110 stream-http@3.2.0: 6111 + resolution: 6112 + { 6113 + integrity: sha512-Oq1bLqisTyK3TSCXpPbT4sdeYNdmyZJv1LxpEm2vu1ZhK89kSE5YXwZc3cWk0MagGaKriBh9mCFbVGtO+vY29A==, 6114 + } 6115 6116 string-argv@0.3.2: 6117 + resolution: 6118 + { 6119 + integrity: sha512-aqD2Q0144Z+/RqG52NeHEkZauTAUWJO8c6yTftGJKO3Tja5tUgIfmIl6kExvhtxSDP7fXB6DvzkfMpCd/F3G+Q==, 6120 + } 6121 + engines: { node: ">=0.6.19" } 6122 6123 string-width@4.2.3: 6124 + resolution: 6125 + { 6126 + integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==, 6127 + } 6128 + engines: { node: ">=8" } 6129 6130 string-width@7.2.0: 6131 + resolution: 6132 + { 6133 + integrity: sha512-tsaTIkKW9b4N+AEj+SVA+WhJzV7/zMhcSu78mLKWSk7cXMOSHsBKFWUs0fWwq8QyK3MgJBQRX6Gbi4kYbdvGkQ==, 6134 + } 6135 + engines: { node: ">=18" } 6136 6137 string_decoder@1.1.1: 6138 + resolution: 6139 + { 6140 + integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==, 6141 + } 6142 6143 string_decoder@1.3.0: 6144 + resolution: 6145 + { 6146 + integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==, 6147 + } 6148 6149 stringify-entities@4.0.4: 6150 + resolution: 6151 + { 6152 + integrity: sha512-IwfBptatlO+QCJUo19AqvrPNqlVMpW9YEL2LIVY+Rpv2qsjCGxaDLNRgeGsQWJhfItebuJhsGSLjaBbNSQ+ieg==, 6153 + } 6154 6155 strip-ansi@6.0.1: 6156 + resolution: 6157 + { 6158 + integrity: sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==, 6159 + } 6160 + engines: { node: ">=8" } 6161 6162 strip-ansi@7.1.2: 6163 + resolution: 6164 + { 6165 + integrity: sha512-gmBGslpoQJtgnMAvOVqGZpEz9dyoKTCzy2nfz/n8aIFhN/jCE/rCmcxabB6jOOHV+0WNnylOxaxBQPSvcWklhA==, 6166 + } 6167 + engines: { node: ">=12" } 6168 6169 strip-final-newline@3.0.0: 6170 + resolution: 6171 + { 6172 + integrity: sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==, 6173 + } 6174 + engines: { node: ">=12" } 6175 6176 strip-literal@2.1.1: 6177 + resolution: 6178 + { 6179 + integrity: sha512-631UJ6O00eNGfMiWG78ck80dfBab8X6IVFB51jZK5Icd7XAs60Z5y7QdSd/wGIklnWvRbUNloVzhOKKmutxQ6Q==, 6180 + } 6181 6182 stylis@4.3.6: 6183 + resolution: 6184 + { 6185 + integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==, 6186 + } 6187 6188 supports-color@7.2.0: 6189 + resolution: 6190 + { 6191 + integrity: sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==, 6192 + } 6193 + engines: { node: ">=8" } 6194 6195 supports-color@8.1.1: 6196 + resolution: 6197 + { 6198 + integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==, 6199 + } 6200 + engines: { node: ">=10" } 6201 6202 supports-preserve-symlinks-flag@1.0.0: 6203 + resolution: 6204 + { 6205 + integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==, 6206 + } 6207 + engines: { node: ">= 0.4" } 6208 6209 swagger-ui-dist@5.29.3: 6210 + resolution: 6211 + { 6212 + integrity: sha512-U99f/2YocRA2Mxqx3eUBRhQonWVtE5dIvMs0Zlsn4a4ip8awMq0JxXhU+Sidtna2WlZrHbK2Rro3RZvYUymRbA==, 6213 + } 6214 6215 tabster@8.5.6: 6216 + resolution: 6217 + { 6218 + integrity: sha512-2vfrRGrx8O9BjdrtSlVA5fvpmbq5HQBRN13XFRg6LAvZ1Fr3QdBnswgT4YgFS5Bhoo5nxwgjRaRueI2Us/dv7g==, 6219 + } 6220 6221 tar@7.5.1: 6222 + resolution: 6223 + { 6224 + integrity: sha512-nlGpxf+hv0v7GkWBK2V9spgactGOp0qvfWRxUMjqHyzrt3SgwE48DIv/FhqPHJYLHpgW1opq3nERbz5Anq7n1g==, 6225 + } 6226 + engines: { node: ">=18" } 6227 6228 temporal-polyfill@0.3.0: 6229 + resolution: 6230 + { 6231 + integrity: sha512-qNsTkX9K8hi+FHDfHmf22e/OGuXmfBm9RqNismxBrnSmZVJKegQ+HYYXT+R7Ha8F/YSm2Y34vmzD4cxMu2u95g==, 6232 + } 6233 6234 temporal-spec@0.3.0: 6235 + resolution: 6236 + { 6237 + integrity: sha512-n+noVpIqz4hYgFSMOSiINNOUOMFtV5cZQNCmmszA6GiVFVRt3G7AqVyhXjhCSmowvQn+NsGn+jMDMKJYHd3bSQ==, 6238 + } 6239 6240 thread-stream@2.7.0: 6241 + resolution: 6242 + { 6243 + integrity: sha512-qQiRWsU/wvNolI6tbbCKd9iKaTnCXsTwVxhhKM6nctPdujTyztjlbUkUTUymidWcMnZ5pWR0ej4a0tjsW021vw==, 6244 + } 6245 6246 through@2.3.8: 6247 + resolution: 6248 + { 6249 + integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==, 6250 + } 6251 6252 timers-browserify@2.0.12: 6253 + resolution: 6254 + { 6255 + integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==, 6256 + } 6257 + engines: { node: ">=0.6.0" } 6258 6259 tiny-inflate@1.0.3: 6260 + resolution: 6261 + { 6262 + integrity: sha512-pkY1fj1cKHb2seWDy0B16HeWyczlJA9/WW3u3c4z/NiWDsO3DOU5D7nhTLE9CF0yXv/QZFY7sEJmj24dK+Rrqw==, 6263 + } 6264 6265 tinybench@2.9.0: 6266 + resolution: 6267 + { 6268 + integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==, 6269 + } 6270 6271 tinyexec@0.3.2: 6272 + resolution: 6273 + { 6274 + integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==, 6275 + } 6276 6277 tinyglobby@0.2.15: 6278 + resolution: 6279 + { 6280 + integrity: sha512-j2Zq4NyQYG5XMST4cbs02Ak8iJUdxRM0XI5QyxXuZOzKOINmWurp3smXu3y5wDcJrptwpSjgXHzIQxR0omXljQ==, 6281 + } 6282 + engines: { node: ">=12.0.0" } 6283 6284 tinypool@0.8.4: 6285 + resolution: 6286 + { 6287 + integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==, 6288 + } 6289 + engines: { node: ">=14.0.0" } 6290 6291 tinyspy@2.2.1: 6292 + resolution: 6293 + { 6294 + integrity: sha512-KYad6Vy5VDWV4GH3fjpseMQ/XU2BhIYP7Vzd0LG44qRWm/Yt2WCOTicFdvmgo6gWaqooMQCawTtILVQJupKu7A==, 6295 + } 6296 + engines: { node: ">=14.0.0" } 6297 6298 to-buffer@1.2.2: 6299 + resolution: 6300 + { 6301 + integrity: sha512-db0E3UJjcFhpDhAF4tLo03oli3pwl3dbnzXOUIlRKrp+ldk/VUxzpWYZENsw2SZiuBjHAk7DfB0VU7NKdpb6sw==, 6302 + } 6303 + engines: { node: ">= 0.4" } 6304 6305 to-regex-range@5.0.1: 6306 + resolution: 6307 + { 6308 + integrity: sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==, 6309 + } 6310 + engines: { node: ">=8.0" } 6311 6312 toidentifier@1.0.1: 6313 + resolution: 6314 + { 6315 + integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==, 6316 + } 6317 + engines: { node: ">=0.6" } 6318 6319 tr46@0.0.3: 6320 + resolution: 6321 + { 6322 + integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==, 6323 + } 6324 6325 tree-kill@1.2.2: 6326 + resolution: 6327 + { 6328 + integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==, 6329 + } 6330 hasBin: true 6331 6332 trim-lines@3.0.1: 6333 + resolution: 6334 + { 6335 + integrity: sha512-kRj8B+YHZCc9kQYdWfJB2/oUl9rA99qbowYYBtr4ui4mZyAQ2JpvVBd/6U2YloATfqBhBTSMhTpgBHtU0Mf3Rg==, 6336 + } 6337 6338 trough@2.2.0: 6339 + resolution: 6340 + { 6341 + integrity: sha512-tmMpK00BjZiUyVyvrBK7knerNgmgvcV/KLVyuma/SC+TQN167GrMRciANTz09+k3zW8L8t60jWO1GpfkZdjTaw==, 6342 + } 6343 6344 ts-morph@24.0.0: 6345 + resolution: 6346 + { 6347 + integrity: sha512-2OAOg/Ob5yx9Et7ZX4CvTCc0UFoZHwLEJ+dpDPSUi5TgwwlTlX47w+iFRrEwzUZwYACjq83cgjS/Da50Ga37uw==, 6348 + } 6349 6350 tsc-watch@7.2.0: 6351 + resolution: 6352 + { 6353 + integrity: sha512-4gRFawQD1cVSaILvG7wl2x6NtteKbS2dGBMbL7Q6n1ldLIOKXCJUoEwUXdGuee4dp+zcnA6tukBBLz1lZrNI9w==, 6354 + } 6355 + engines: { node: ">=12.12.0" } 6356 hasBin: true 6357 peerDependencies: 6358 + typescript: "*" 6359 6360 tsconfck@3.1.6: 6361 + resolution: 6362 + { 6363 + integrity: sha512-ks6Vjr/jEw0P1gmOVwutM3B7fWxoWBL2KRDb1JfqGVawBmO5UsvmWOQFGHBPl5yxYz4eERr19E6L7NMv+Fej4w==, 6364 + } 6365 + engines: { node: ^18 || >=20 } 6366 hasBin: true 6367 peerDependencies: 6368 typescript: ^5.0.0 ··· 6371 optional: true 6372 6373 tslib@2.8.1: 6374 + resolution: 6375 + { 6376 + integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==, 6377 + } 6378 6379 tty-browserify@0.0.1: 6380 + resolution: 6381 + { 6382 + integrity: sha512-C3TaO7K81YvjCgQH9Q1S3R3P3BtN3RIM8n+OvX4il1K1zgE8ZhI0op7kClgkxtutIE8hQrcrHBXvIheqKUUCxw==, 6383 + } 6384 6385 type-detect@4.1.0: 6386 + resolution: 6387 + { 6388 + integrity: sha512-Acylog8/luQ8L7il+geoSxhEkazvkslg7PSNKOX59mbB9cOveP5aq9h74Y7YU8yDpJwetzQQrfIwtf4Wp4LKcw==, 6389 + } 6390 + engines: { node: ">=4" } 6391 6392 type-fest@4.41.0: 6393 + resolution: 6394 + { 6395 + integrity: sha512-TeTSQ6H5YHvpqVwBRcnLDCBnDOHWYu7IvGbHT6N8AOymcr9PJGjc1GTtiWZTYg0NCgYwvnYWEkVChQAr9bjfwA==, 6396 + } 6397 + engines: { node: ">=16" } 6398 6399 type-is@1.6.18: 6400 + resolution: 6401 + { 6402 + integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==, 6403 + } 6404 + engines: { node: ">= 0.6" } 6405 6406 typed-array-buffer@1.0.3: 6407 + resolution: 6408 + { 6409 + integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==, 6410 + } 6411 + engines: { node: ">= 0.4" } 6412 6413 typescript@5.9.3: 6414 + resolution: 6415 + { 6416 + integrity: sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==, 6417 + } 6418 + engines: { node: ">=14.17" } 6419 hasBin: true 6420 6421 ufo@1.6.1: 6422 + resolution: 6423 + { 6424 + integrity: sha512-9a4/uxlTWJ4+a5i0ooc1rU7C7YOw3wT+UGqdeNNHWnOF9qcMBgLRS+4IYUqbczewFx4mLEig6gawh7X6mFlEkA==, 6425 + } 6426 6427 uint8arrays@3.0.0: 6428 + resolution: 6429 + { 6430 + integrity: sha512-HRCx0q6O9Bfbp+HHSfQQKD7wU70+lydKVt4EghkdOvlK/NlrF90z+eXV34mUd48rNvVJXwkrMSPpCATkct8fJA==, 6431 + } 6432 6433 ultrahtml@1.6.0: 6434 + resolution: 6435 + { 6436 + integrity: sha512-R9fBn90VTJrqqLDwyMph+HGne8eqY1iPfYhPzZrvKpIfwkWZbcYlfpsb8B9dTvBfpy1/hqAD7Wi8EKfP9e8zdw==, 6437 + } 6438 6439 uncrypto@0.1.3: 6440 + resolution: 6441 + { 6442 + integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==, 6443 + } 6444 6445 undici-types@6.21.0: 6446 + resolution: 6447 + { 6448 + integrity: sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==, 6449 + } 6450 6451 unicode-properties@1.4.1: 6452 + resolution: 6453 + { 6454 + integrity: sha512-CLjCCLQ6UuMxWnbIylkisbRj31qxHPAurvena/0iwSVbQ2G1VY5/HjV0IRabOEbDHlzZlRdCrD4NhB0JtU40Pg==, 6455 + } 6456 6457 unicode-trie@2.0.0: 6458 + resolution: 6459 + { 6460 + integrity: sha512-x7bc76x0bm4prf1VLg79uhAzKw8DVboClSN5VxJuQ+LKDOVEW9CdH+VY7SP+vX7xCYQqzzgQpFqz15zeLvAtZQ==, 6461 + } 6462 6463 unicorn-magic@0.3.0: 6464 + resolution: 6465 + { 6466 + integrity: sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==, 6467 + } 6468 + engines: { node: ">=18" } 6469 6470 unified@11.0.5: 6471 + resolution: 6472 + { 6473 + integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==, 6474 + } 6475 6476 unifont@0.5.2: 6477 + resolution: 6478 + { 6479 + integrity: sha512-LzR4WUqzH9ILFvjLAUU7dK3Lnou/qd5kD+IakBtBK4S15/+x2y9VX+DcWQv6s551R6W+vzwgVS6tFg3XggGBgg==, 6480 + } 6481 6482 unist-util-find-after@5.0.0: 6483 + resolution: 6484 + { 6485 + integrity: sha512-amQa0Ep2m6hE2g72AugUItjbuM8X8cGQnFoHk0pGfrFeT9GZhzN5SW8nRsiGKK7Aif4CrACPENkA6P/Lw6fHGQ==, 6486 + } 6487 6488 unist-util-is@6.0.0: 6489 + resolution: 6490 + { 6491 + integrity: sha512-2qCTHimwdxLfz+YzdGfkqNlH0tLi9xjTnHddPmJwtIG9MGsdbutfTc4P+haPD7l7Cjxf/WZj+we5qfVPvvxfYw==, 6492 + } 6493 6494 unist-util-modify-children@4.0.0: 6495 + resolution: 6496 + { 6497 + integrity: sha512-+tdN5fGNddvsQdIzUF3Xx82CU9sMM+fA0dLgR9vOmT0oPT2jH+P1nd5lSqfCfXAw+93NhcXNY2qqvTUtE4cQkw==, 6498 + } 6499 6500 unist-util-position@5.0.0: 6501 + resolution: 6502 + { 6503 + integrity: sha512-fucsC7HjXvkB5R3kTCO7kUjRdrS0BJt3M/FPxmHMBOm8JQi2BsHAHFsy27E0EolP8rp0NzXsJ+jNPyDWvOJZPA==, 6504 + } 6505 6506 unist-util-remove-position@5.0.0: 6507 + resolution: 6508 + { 6509 + integrity: sha512-Hp5Kh3wLxv0PHj9m2yZhhLt58KzPtEYKQQ4yxfYFEO7EvHwzyDYnduhHnY1mDxoqr7VUwVuHXk9RXKIiYS1N8Q==, 6510 + } 6511 6512 unist-util-stringify-position@4.0.0: 6513 + resolution: 6514 + { 6515 + integrity: sha512-0ASV06AAoKCDkS2+xw5RXJywruurpbC4JZSm7nr7MOt1ojAzvyyaO+UxZf18j8FCF6kmzCZKcAgN/yu2gm2XgQ==, 6516 + } 6517 6518 unist-util-visit-children@3.0.0: 6519 + resolution: 6520 + { 6521 + integrity: sha512-RgmdTfSBOg04sdPcpTSD1jzoNBjt9a80/ZCzp5cI9n1qPzLZWF9YdvWGN2zmTumP1HWhXKdUWexjy/Wy/lJ7tA==, 6522 + } 6523 6524 unist-util-visit-parents@6.0.1: 6525 + resolution: 6526 + { 6527 + integrity: sha512-L/PqWzfTP9lzzEa6CKs0k2nARxTdZduw3zyh8d2NVBnsyvHjSX4TWse388YrrQKbvI8w20fGjGlhgT96WwKykw==, 6528 + } 6529 6530 unist-util-visit@5.0.0: 6531 + resolution: 6532 + { 6533 + integrity: sha512-MR04uvD+07cwl/yhVuVWAtw+3GOR/knlL55Nd/wAdblk27GCVt3lqpTivy/tkJcZoNPzTwS1Y+KMojlLDhoTzg==, 6534 + } 6535 6536 unpipe@1.0.0: 6537 + resolution: 6538 + { 6539 + integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==, 6540 + } 6541 + engines: { node: ">= 0.8" } 6542 6543 unstorage@1.17.1: 6544 + resolution: 6545 + { 6546 + integrity: sha512-KKGwRTT0iVBCErKemkJCLs7JdxNVfqTPc/85ae1XES0+bsHbc/sFBfVi5kJp156cc51BHinIH2l3k0EZ24vOBQ==, 6547 + } 6548 peerDependencies: 6549 + "@azure/app-configuration": ^1.8.0 6550 + "@azure/cosmos": ^4.2.0 6551 + "@azure/data-tables": ^13.3.0 6552 + "@azure/identity": ^4.6.0 6553 + "@azure/keyvault-secrets": ^4.9.0 6554 + "@azure/storage-blob": ^12.26.0 6555 + "@capacitor/preferences": ^6.0.3 || ^7.0.0 6556 + "@deno/kv": ">=0.9.0" 6557 + "@netlify/blobs": ^6.5.0 || ^7.0.0 || ^8.1.0 || ^9.0.0 || ^10.0.0 6558 + "@planetscale/database": ^1.19.0 6559 + "@upstash/redis": ^1.34.3 6560 + "@vercel/blob": ">=0.27.1" 6561 + "@vercel/functions": ^2.2.12 || ^3.0.0 6562 + "@vercel/kv": ^1.0.1 6563 aws4fetch: ^1.0.20 6564 + db0: ">=0.2.1" 6565 idb-keyval: ^6.2.1 6566 ioredis: ^5.4.2 6567 uploadthing: ^7.4.4 6568 peerDependenciesMeta: 6569 + "@azure/app-configuration": 6570 optional: true 6571 + "@azure/cosmos": 6572 optional: true 6573 + "@azure/data-tables": 6574 optional: true 6575 + "@azure/identity": 6576 optional: true 6577 + "@azure/keyvault-secrets": 6578 optional: true 6579 + "@azure/storage-blob": 6580 optional: true 6581 + "@capacitor/preferences": 6582 optional: true 6583 + "@deno/kv": 6584 optional: true 6585 + "@netlify/blobs": 6586 optional: true 6587 + "@planetscale/database": 6588 optional: true 6589 + "@upstash/redis": 6590 optional: true 6591 + "@vercel/blob": 6592 optional: true 6593 + "@vercel/functions": 6594 optional: true 6595 + "@vercel/kv": 6596 optional: true 6597 aws4fetch: 6598 optional: true ··· 6606 optional: true 6607 6608 update-browserslist-db@1.1.3: 6609 + resolution: 6610 + { 6611 + integrity: sha512-UxhIZQ+QInVdunkDAaiazvvT/+fXL5Osr0JZlJulepYu6Jd7qJtDZjlur0emRlT71EN3ScPoE7gvsuIKKNavKw==, 6612 + } 6613 hasBin: true 6614 peerDependencies: 6615 + browserslist: ">= 4.21.0" 6616 6617 url@0.11.4: 6618 + resolution: 6619 + { 6620 + integrity: sha512-oCwdVC7mTuWiPyjLUz/COz5TLk6wgp0RCsN+wHZ2Ekneac9w8uuV0njcbbie2ME+Vs+d6duwmYuR3HgQXs1fOg==, 6621 + } 6622 + engines: { node: ">= 0.4" } 6623 6624 use-sync-external-store@1.6.0: 6625 + resolution: 6626 + { 6627 + integrity: sha512-Pp6GSwGP/NrPIrxVFAIkOQeyw8lFenOHijQWkUTrDvrF4ALqylP2C/KCkeS9dpUM3KvYRQhna5vt7IL95+ZQ9w==, 6628 + } 6629 peerDependencies: 6630 react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0 6631 6632 util-deprecate@1.0.2: 6633 + resolution: 6634 + { 6635 + integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==, 6636 + } 6637 6638 util@0.12.5: 6639 + resolution: 6640 + { 6641 + integrity: sha512-kZf/K6hEIrWHI6XqOFUiiMa+79wE/D8Q+NCNAWclkyg3b4d2k7s0QGepNjiABc+aR3N1PAyHL7p6UcLY6LmrnA==, 6642 + } 6643 6644 utils-merge@1.0.1: 6645 + resolution: 6646 + { 6647 + integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==, 6648 + } 6649 + engines: { node: ">= 0.4.0" } 6650 6651 vary@1.1.2: 6652 + resolution: 6653 + { 6654 + integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==, 6655 + } 6656 + engines: { node: ">= 0.8" } 6657 6658 vfile-location@5.0.3: 6659 + resolution: 6660 + { 6661 + integrity: sha512-5yXvWDEgqeiYiBe1lbxYF7UMAIm/IcopxMHrMQDq3nvKcjPKIhZklUKL+AE7J7uApI4kwe2snsK+eI6UTj9EHg==, 6662 + } 6663 6664 vfile-message@4.0.3: 6665 + resolution: 6666 + { 6667 + integrity: sha512-QTHzsGd1EhbZs4AsQ20JX1rC3cOlt/IWJruk893DfLRr57lcnOeMaWG4K0JrRta4mIJZKth2Au3mM3u03/JWKw==, 6668 + } 6669 6670 vfile@6.0.3: 6671 + resolution: 6672 + { 6673 + integrity: sha512-KzIbH/9tXat2u30jf+smMwFCsno4wHVdNmzFyL+T/L3UGqqk6JKfVqOFOZEpZSHADH1k40ab6NUIXZq422ov3Q==, 6674 + } 6675 6676 vite-node@1.6.1: 6677 + resolution: 6678 + { 6679 + integrity: sha512-YAXkfvGtuTzwWbDSACdJSg4A4DZiAqckWe90Zapc/sEX3XvHcw1NdurM/6od8J207tSDqNbSsgdCacBgvJKFuA==, 6680 + } 6681 + engines: { node: ^18.0.0 || >=20.0.0 } 6682 hasBin: true 6683 6684 vite@5.4.20: 6685 + resolution: 6686 + { 6687 + integrity: sha512-j3lYzGC3P+B5Yfy/pfKNgVEg4+UtcIJcVRt2cDjIOmhLourAqPqf8P7acgxeiSgUB7E3p2P8/3gNIgDLpwzs4g==, 6688 + } 6689 + engines: { node: ^18.0.0 || >=20.0.0 } 6690 hasBin: true 6691 peerDependencies: 6692 + "@types/node": ^18.0.0 || >=20.0.0 6693 + less: "*" 6694 lightningcss: ^1.21.0 6695 + sass: "*" 6696 + sass-embedded: "*" 6697 + stylus: "*" 6698 + sugarss: "*" 6699 terser: ^5.4.0 6700 peerDependenciesMeta: 6701 + "@types/node": 6702 optional: true 6703 less: 6704 optional: true ··· 6716 optional: true 6717 6718 vite@6.3.6: 6719 + resolution: 6720 + { 6721 + integrity: sha512-0msEVHJEScQbhkbVTb/4iHZdJ6SXp/AvxL2sjwYQFfBqleHtnCqv1J3sa9zbWz/6kW1m9Tfzn92vW+kZ1WV6QA==, 6722 + } 6723 + engines: { node: ^18.0.0 || ^20.0.0 || >=22.0.0 } 6724 hasBin: true 6725 peerDependencies: 6726 + "@types/node": ^18.0.0 || ^20.0.0 || >=22.0.0 6727 + jiti: ">=1.21.0" 6728 + less: "*" 6729 lightningcss: ^1.21.0 6730 + sass: "*" 6731 + sass-embedded: "*" 6732 + stylus: "*" 6733 + sugarss: "*" 6734 terser: ^5.16.0 6735 tsx: ^4.8.1 6736 yaml: ^2.4.2 6737 peerDependenciesMeta: 6738 + "@types/node": 6739 optional: true 6740 jiti: 6741 optional: true ··· 6759 optional: true 6760 6761 vitefu@1.1.1: 6762 + resolution: 6763 + { 6764 + integrity: sha512-B/Fegf3i8zh0yFbpzZ21amWzHmuNlLlmJT6n7bu5e+pCHUKQIfXSYokrqOBGEMMe9UG2sostKQF9mml/vYaWJQ==, 6765 + } 6766 peerDependencies: 6767 vite: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0-beta.0 6768 peerDependenciesMeta: ··· 6770 optional: true 6771 6772 vitest@1.6.1: 6773 + resolution: 6774 + { 6775 + integrity: sha512-Ljb1cnSJSivGN0LqXd/zmDbWEM0RNNg2t1QW/XUhYl/qPqyu7CsqeWtqQXHVaJsecLPuDoak2oJcZN2QoRIOag==, 6776 + } 6777 + engines: { node: ^18.0.0 || >=20.0.0 } 6778 hasBin: true 6779 peerDependencies: 6780 + "@edge-runtime/vm": "*" 6781 + "@types/node": ^18.0.0 || >=20.0.0 6782 + "@vitest/browser": 1.6.1 6783 + "@vitest/ui": 1.6.1 6784 + happy-dom: "*" 6785 + jsdom: "*" 6786 peerDependenciesMeta: 6787 + "@edge-runtime/vm": 6788 optional: true 6789 + "@types/node": 6790 optional: true 6791 + "@vitest/browser": 6792 optional: true 6793 + "@vitest/ui": 6794 optional: true 6795 happy-dom: 6796 optional: true ··· 6798 optional: true 6799 6800 vm-browserify@1.1.2: 6801 + resolution: 6802 + { 6803 + integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==, 6804 + } 6805 6806 vscode-jsonrpc@8.2.0: 6807 + resolution: 6808 + { 6809 + integrity: sha512-C+r0eKJUIfiDIfwJhria30+TYWPtuHJXHtI7J0YlOmKAo7ogxP20T0zxB7HZQIFhIyvoBPwWskjxrvAtfjyZfA==, 6810 + } 6811 + engines: { node: ">=14.0.0" } 6812 6813 vscode-languageserver-protocol@3.17.5: 6814 + resolution: 6815 + { 6816 + integrity: sha512-mb1bvRJN8SVznADSGWM9u/b07H7Ecg0I3OgXDuLdn307rl/J3A9YD6/eYOssqhecL27hK1IPZAsaqh00i/Jljg==, 6817 + } 6818 6819 vscode-languageserver-textdocument@1.0.12: 6820 + resolution: 6821 + { 6822 + integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==, 6823 + } 6824 6825 vscode-languageserver-types@3.17.5: 6826 + resolution: 6827 + { 6828 + integrity: sha512-Ld1VelNuX9pdF39h2Hgaeb5hEZM2Z3jUrrMgWQAu82jMtZp7p3vJT3BzToKtZI7NgQssZje5o0zryOrhQvzQAg==, 6829 + } 6830 6831 vscode-languageserver@9.0.1: 6832 + resolution: 6833 + { 6834 + integrity: sha512-woByF3PDpkHFUreUa7Hos7+pUWdeWMXRd26+ZX2A8cFx6v/JPTtd4/uN0/jB6XQHYaOlHbio03NTHCqrgG5n7g==, 6835 + } 6836 hasBin: true 6837 6838 web-namespaces@2.0.1: 6839 + resolution: 6840 + { 6841 + integrity: sha512-bKr1DkiNa2krS7qxNtdrtHAmzuYGFQLiQ13TsorsdT6ULTkPLKuu5+GsFpDlg6JFjUTwX2DyhMPG2be8uPrqsQ==, 6842 + } 6843 6844 webidl-conversions@3.0.1: 6845 + resolution: 6846 + { 6847 + integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==, 6848 + } 6849 6850 whatwg-url@5.0.0: 6851 + resolution: 6852 + { 6853 + integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==, 6854 + } 6855 6856 which-pm-runs@1.1.0: 6857 + resolution: 6858 + { 6859 + integrity: sha512-n1brCuqClxfFfq/Rb0ICg9giSZqCS+pLtccdag6C2HyufBrh3fBOiy9nb6ggRMvWOVH5GrdJskj5iGTZNxd7SA==, 6860 + } 6861 + engines: { node: ">=4" } 6862 6863 which-typed-array@1.1.19: 6864 + resolution: 6865 + { 6866 + integrity: sha512-rEvr90Bck4WZt9HHFC4DJMsjvu7x+r6bImz0/BrbWb7A2djJ8hnZMrWnHo9F8ssv0OMErasDhftrfROTyqSDrw==, 6867 + } 6868 + engines: { node: ">= 0.4" } 6869 6870 which@2.0.2: 6871 + resolution: 6872 + { 6873 + integrity: sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==, 6874 + } 6875 + engines: { node: ">= 8" } 6876 hasBin: true 6877 6878 why-is-node-running@2.3.0: 6879 + resolution: 6880 + { 6881 + integrity: sha512-hUrmaWBdVDcxvYqnyh09zunKzROWjbZTiNy8dBEjkS7ehEDQibXJ7XvlmtbwuTclUiIyN+CyXQD4Vmko8fNm8w==, 6882 + } 6883 + engines: { node: ">=8" } 6884 hasBin: true 6885 6886 widest-line@5.0.0: 6887 + resolution: 6888 + { 6889 + integrity: sha512-c9bZp7b5YtRj2wOe6dlj32MK+Bx/M/d+9VB2SHM1OtsUHR0aV0tdP6DWh/iMt0kWi1t5g1Iudu6hQRNd1A4PVA==, 6890 + } 6891 + engines: { node: ">=18" } 6892 6893 wrap-ansi@6.2.0: 6894 + resolution: 6895 + { 6896 + integrity: sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==, 6897 + } 6898 + engines: { node: ">=8" } 6899 6900 wrap-ansi@7.0.0: 6901 + resolution: 6902 + { 6903 + integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==, 6904 + } 6905 + engines: { node: ">=10" } 6906 6907 wrap-ansi@9.0.2: 6908 + resolution: 6909 + { 6910 + integrity: sha512-42AtmgqjV+X1VpdOfyTGOYRi0/zsoLqtXQckTmqTeybT+BDIbM/Guxo7x3pE2vtpr1ok6xRqM9OpBe+Jyoqyww==, 6911 + } 6912 + engines: { node: ">=18" } 6913 6914 ws@8.18.3: 6915 + resolution: 6916 + { 6917 + integrity: sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==, 6918 + } 6919 + engines: { node: ">=10.0.0" } 6920 peerDependencies: 6921 bufferutil: ^4.0.1 6922 + utf-8-validate: ">=5.0.2" 6923 peerDependenciesMeta: 6924 bufferutil: 6925 optional: true ··· 6927 optional: true 6928 6929 xtend@4.0.2: 6930 + resolution: 6931 + { 6932 + integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==, 6933 + } 6934 + engines: { node: ">=0.4" } 6935 6936 xxhash-wasm@1.1.0: 6937 + resolution: 6938 + { 6939 + integrity: sha512-147y/6YNh+tlp6nd/2pWq38i9h6mz/EuQ6njIrmW8D1BS5nCqs0P6DG+m6zTGnNz5I+uhZ0SHxBs9BsPrwcKDA==, 6940 + } 6941 6942 y18n@5.0.8: 6943 + resolution: 6944 + { 6945 + integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==, 6946 + } 6947 + engines: { node: ">=10" } 6948 6949 yallist@3.1.1: 6950 + resolution: 6951 + { 6952 + integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==, 6953 + } 6954 6955 yallist@5.0.0: 6956 + resolution: 6957 + { 6958 + integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==, 6959 + } 6960 + engines: { node: ">=18" } 6961 6962 yaml@2.8.1: 6963 + resolution: 6964 + { 6965 + integrity: sha512-lcYcMxX2PO9XMGvAJkJ3OsNMw+/7FKes7/hgerGUYWIoWu5j/+YQqcZr5JnPZWzOsEBgMbSbiSTn/dv/69Mkpw==, 6966 + } 6967 + engines: { node: ">= 14.6" } 6968 hasBin: true 6969 6970 yargs-parser@21.1.1: 6971 + resolution: 6972 + { 6973 + integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==, 6974 + } 6975 + engines: { node: ">=12" } 6976 6977 yargs-parser@22.0.0: 6978 + resolution: 6979 + { 6980 + integrity: sha512-rwu/ClNdSMpkSrUb+d6BRsSkLUq1fmfsY6TOpYzTwvwkg1/NRG85KBy3kq++A8LKQwX6lsu+aWad+2khvuXrqw==, 6981 + } 6982 + engines: { node: ^20.19.0 || ^22.12.0 || >=23 } 6983 6984 yargs@17.7.2: 6985 + resolution: 6986 + { 6987 + integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==, 6988 + } 6989 + engines: { node: ">=12" } 6990 6991 yargs@18.0.0: 6992 + resolution: 6993 + { 6994 + integrity: sha512-4UEqdc2RYGHZc7Doyqkrqiln3p9X2DZVxaGbwhn2pi7MrRagKaOcIKe8L3OxYcbhXLgLFUS3zAYuQjKBQgmuNg==, 6995 + } 6996 + engines: { node: ^20.19.0 || ^22.12.0 || >=23 } 6997 6998 yesno@0.4.0: 6999 + resolution: 7000 + { 7001 + integrity: sha512-tdBxmHvbXPBKYIg81bMCB7bVeDmHkRzk5rVJyYYXurwKkHq/MCd8rz4HSJUP7hW0H2NlXiq8IFiWvYKEHhlotA==, 7002 + } 7003 7004 yocto-queue@0.1.0: 7005 + resolution: 7006 + { 7007 + integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==, 7008 + } 7009 + engines: { node: ">=10" } 7010 7011 yocto-queue@1.2.1: 7012 + resolution: 7013 + { 7014 + integrity: sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==, 7015 + } 7016 + engines: { node: ">=12.20" } 7017 7018 yocto-spinner@0.2.3: 7019 + resolution: 7020 + { 7021 + integrity: sha512-sqBChb33loEnkoXte1bLg45bEBsOP9N1kzQh5JZNKj/0rik4zAPTNSAVPj3uQAdc6slYJ0Ksc403G2XgxsJQFQ==, 7022 + } 7023 + engines: { node: ">=18.19" } 7024 7025 yoctocolors-cjs@2.1.3: 7026 + resolution: 7027 + { 7028 + integrity: sha512-U/PBtDf35ff0D8X8D0jfdzHYEPFxAI7jJlxZXwCSez5M3190m+QobIfh+sWDWSHMCWWJN2AWamkegn6vr6YBTw==, 7029 + } 7030 + engines: { node: ">=18" } 7031 7032 yoctocolors@2.1.2: 7033 + resolution: 7034 + { 7035 + integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==, 7036 + } 7037 + engines: { node: ">=18" } 7038 7039 zod-to-json-schema@3.24.6: 7040 + resolution: 7041 + { 7042 + integrity: sha512-h/z3PKvcTcTetyjl1fkj79MHNEjm+HpD6NXheWjzOekY7kV+lwDYnHw+ivHkijnCSMz1yJaWBD9vu/Fcmk+vEg==, 7043 + } 7044 peerDependencies: 7045 zod: ^3.24.1 7046 7047 zod-to-ts@1.2.0: 7048 + resolution: 7049 + { 7050 + integrity: sha512-x30XE43V+InwGpvTySRNz9kB7qFU8DlyEy7BsSTCHPH1R0QasMmHWZDCzYm6bVXtj/9NNJAZF3jW8rzFvH5OFA==, 7051 + } 7052 peerDependencies: 7053 typescript: ^4.9.4 || ^5.0.2 7054 zod: ^3 7055 7056 zod@3.25.76: 7057 + resolution: 7058 + { 7059 + integrity: sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==, 7060 + } 7061 7062 zwitch@2.0.4: 7063 + resolution: 7064 + { 7065 + integrity: sha512-bXE4cR/kVZhKZX/RjPEflHaKVhUVl85noU3v6b8apfQEc1x4A+zBxjZ4lN8LqGd6WZ3dl98pY4o717VFmoPp+A==, 7066 + } 7067 7068 snapshots: 7069 + "@apidevtools/json-schema-ref-parser@14.0.1": 7070 dependencies: 7071 + "@types/json-schema": 7.0.15 7072 js-yaml: 4.1.0 7073 7074 + "@apidevtools/openapi-schemas@2.1.0": {} 7075 7076 + "@apidevtools/swagger-methods@3.0.2": {} 7077 7078 + "@apidevtools/swagger-parser@12.0.0(openapi-types@12.1.3)": 7079 dependencies: 7080 + "@apidevtools/json-schema-ref-parser": 14.0.1 7081 + "@apidevtools/openapi-schemas": 2.1.0 7082 + "@apidevtools/swagger-methods": 3.0.2 7083 ajv: 8.17.1 7084 ajv-draft-04: 1.0.0(ajv@8.17.1) 7085 call-me-maybe: 1.0.2 7086 openapi-types: 12.1.3 7087 7088 + "@astrojs/compiler@2.13.0": {} 7089 7090 + "@astrojs/internal-helpers@0.7.3": {} 7091 7092 + "@astrojs/markdown-remark@6.3.7": 7093 dependencies: 7094 + "@astrojs/internal-helpers": 0.7.3 7095 + "@astrojs/prism": 3.3.0 7096 github-slugger: 2.0.0 7097 hast-util-from-html: 2.0.3 7098 hast-util-to-text: 4.0.2 ··· 7115 transitivePeerDependencies: 7116 - supports-color 7117 7118 + "@astrojs/prism@3.3.0": 7119 dependencies: 7120 prismjs: 1.30.0 7121 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)": 7123 dependencies: 7124 + "@types/react": 19.2.0 7125 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7126 + "@vitejs/plugin-react": 4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1)) 7127 react: 19.2.0 7128 react-dom: 19.2.0(react@19.2.0) 7129 ultrahtml: 1.6.0 7130 vite: 6.3.6(@types/node@20.19.19)(yaml@2.8.1) 7131 transitivePeerDependencies: 7132 + - "@types/node" 7133 - jiti 7134 - less 7135 - lightningcss ··· 7142 - tsx 7143 - yaml 7144 7145 + "@astrojs/telemetry@3.3.0": 7146 dependencies: 7147 ci-info: 4.3.0 7148 debug: 4.4.3 ··· 7154 transitivePeerDependencies: 7155 - supports-color 7156 7157 + "@atproto/common-web@0.4.3": 7158 dependencies: 7159 graphemer: 1.4.0 7160 multiformats: 9.9.0 7161 uint8arrays: 3.0.0 7162 zod: 3.25.76 7163 7164 + "@atproto/common@0.4.12": 7165 dependencies: 7166 + "@atproto/common-web": 0.4.3 7167 + "@ipld/dag-cbor": 7.0.3 7168 cbor-x: 1.6.0 7169 iso-datestring-validator: 2.2.2 7170 multiformats: 9.9.0 7171 pino: 8.21.0 7172 7173 + "@atproto/crypto@0.4.4": 7174 dependencies: 7175 + "@noble/curves": 1.9.7 7176 + "@noble/hashes": 1.8.0 7177 uint8arrays: 3.0.0 7178 7179 + "@atproto/lex-cli@0.9.5": 7180 dependencies: 7181 + "@atproto/lexicon": 0.5.1 7182 + "@atproto/syntax": 0.4.1 7183 chalk: 4.1.2 7184 commander: 9.5.0 7185 prettier: 3.3.3 ··· 7187 yesno: 0.4.0 7188 zod: 3.25.76 7189 7190 + "@atproto/lexicon@0.5.1": 7191 dependencies: 7192 + "@atproto/common-web": 0.4.3 7193 + "@atproto/syntax": 0.4.1 7194 iso-datestring-validator: 2.2.2 7195 multiformats: 9.9.0 7196 zod: 3.25.76 7197 7198 + "@atproto/syntax@0.4.1": {} 7199 7200 + "@atproto/xrpc-server@0.9.5": 7201 dependencies: 7202 + "@atproto/common": 0.4.12 7203 + "@atproto/crypto": 0.4.4 7204 + "@atproto/lexicon": 0.5.1 7205 + "@atproto/xrpc": 0.7.5 7206 cbor-x: 1.6.0 7207 express: 4.21.2 7208 http-errors: 2.0.0 ··· 7216 - supports-color 7217 - utf-8-validate 7218 7219 + "@atproto/xrpc@0.7.5": 7220 dependencies: 7221 + "@atproto/lexicon": 0.5.1 7222 zod: 3.25.76 7223 7224 + "@babel/code-frame@7.27.1": 7225 dependencies: 7226 + "@babel/helper-validator-identifier": 7.27.1 7227 js-tokens: 4.0.0 7228 picocolors: 1.1.1 7229 7230 + "@babel/compat-data@7.28.4": {} 7231 7232 + "@babel/core@7.28.4": 7233 dependencies: 7234 + "@babel/code-frame": 7.27.1 7235 + "@babel/generator": 7.28.3 7236 + "@babel/helper-compilation-targets": 7.27.2 7237 + "@babel/helper-module-transforms": 7.28.3(@babel/core@7.28.4) 7238 + "@babel/helpers": 7.28.4 7239 + "@babel/parser": 7.28.4 7240 + "@babel/template": 7.27.2 7241 + "@babel/traverse": 7.28.4 7242 + "@babel/types": 7.28.4 7243 + "@jridgewell/remapping": 2.3.5 7244 convert-source-map: 2.0.0 7245 debug: 4.4.3 7246 gensync: 1.0.0-beta.2 ··· 7249 transitivePeerDependencies: 7250 - supports-color 7251 7252 + "@babel/generator@7.28.3": 7253 dependencies: 7254 + "@babel/parser": 7.28.4 7255 + "@babel/types": 7.28.4 7256 + "@jridgewell/gen-mapping": 0.3.13 7257 + "@jridgewell/trace-mapping": 0.3.31 7258 jsesc: 3.1.0 7259 7260 + "@babel/helper-compilation-targets@7.27.2": 7261 dependencies: 7262 + "@babel/compat-data": 7.28.4 7263 + "@babel/helper-validator-option": 7.27.1 7264 browserslist: 4.26.3 7265 lru-cache: 5.1.1 7266 semver: 6.3.1 7267 7268 + "@babel/helper-globals@7.28.0": {} 7269 7270 + "@babel/helper-module-imports@7.27.1": 7271 dependencies: 7272 + "@babel/traverse": 7.28.4 7273 + "@babel/types": 7.28.4 7274 transitivePeerDependencies: 7275 - supports-color 7276 7277 + "@babel/helper-module-transforms@7.28.3(@babel/core@7.28.4)": 7278 dependencies: 7279 + "@babel/core": 7.28.4 7280 + "@babel/helper-module-imports": 7.27.1 7281 + "@babel/helper-validator-identifier": 7.27.1 7282 + "@babel/traverse": 7.28.4 7283 transitivePeerDependencies: 7284 - supports-color 7285 7286 + "@babel/helper-plugin-utils@7.27.1": {} 7287 7288 + "@babel/helper-string-parser@7.27.1": {} 7289 7290 + "@babel/helper-validator-identifier@7.27.1": {} 7291 7292 + "@babel/helper-validator-option@7.27.1": {} 7293 7294 + "@babel/helpers@7.28.4": 7295 dependencies: 7296 + "@babel/template": 7.27.2 7297 + "@babel/types": 7.28.4 7298 7299 + "@babel/parser@7.28.4": 7300 dependencies: 7301 + "@babel/types": 7.28.4 7302 7303 + "@babel/plugin-transform-react-jsx-self@7.27.1(@babel/core@7.28.4)": 7304 dependencies: 7305 + "@babel/core": 7.28.4 7306 + "@babel/helper-plugin-utils": 7.27.1 7307 7308 + "@babel/plugin-transform-react-jsx-source@7.27.1(@babel/core@7.28.4)": 7309 dependencies: 7310 + "@babel/core": 7.28.4 7311 + "@babel/helper-plugin-utils": 7.27.1 7312 7313 + "@babel/runtime@7.28.4": {} 7314 7315 + "@babel/template@7.27.2": 7316 dependencies: 7317 + "@babel/code-frame": 7.27.1 7318 + "@babel/parser": 7.28.4 7319 + "@babel/types": 7.28.4 7320 7321 + "@babel/traverse@7.28.4": 7322 dependencies: 7323 + "@babel/code-frame": 7.27.1 7324 + "@babel/generator": 7.28.3 7325 + "@babel/helper-globals": 7.28.0 7326 + "@babel/parser": 7.28.4 7327 + "@babel/template": 7.27.2 7328 + "@babel/types": 7.28.4 7329 debug: 4.4.3 7330 transitivePeerDependencies: 7331 - supports-color 7332 7333 + "@babel/types@7.28.4": 7334 dependencies: 7335 + "@babel/helper-string-parser": 7.27.1 7336 + "@babel/helper-validator-identifier": 7.27.1 7337 7338 + "@capsizecss/unpack@2.4.0": 7339 dependencies: 7340 blob-to-buffer: 1.2.9 7341 cross-fetch: 3.2.0 ··· 7343 transitivePeerDependencies: 7344 - encoding 7345 7346 + "@cbor-extract/cbor-extract-darwin-arm64@2.2.0": 7347 optional: true 7348 7349 + "@cbor-extract/cbor-extract-darwin-x64@2.2.0": 7350 optional: true 7351 7352 + "@cbor-extract/cbor-extract-linux-arm64@2.2.0": 7353 optional: true 7354 7355 + "@cbor-extract/cbor-extract-linux-arm@2.2.0": 7356 optional: true 7357 7358 + "@cbor-extract/cbor-extract-linux-x64@2.2.0": 7359 optional: true 7360 7361 + "@cbor-extract/cbor-extract-win32-x64@2.2.0": 7362 optional: true 7363 7364 + "@ctrl/tinycolor@3.6.1": {} 7365 7366 + "@emnapi/runtime@1.5.0": 7367 dependencies: 7368 tslib: 2.8.1 7369 optional: true 7370 7371 + "@emotion/hash@0.9.2": {} 7372 7373 + "@esbuild/aix-ppc64@0.21.5": 7374 optional: true 7375 7376 + "@esbuild/aix-ppc64@0.25.10": 7377 optional: true 7378 7379 + "@esbuild/android-arm64@0.21.5": 7380 optional: true 7381 7382 + "@esbuild/android-arm64@0.25.10": 7383 optional: true 7384 7385 + "@esbuild/android-arm@0.21.5": 7386 optional: true 7387 7388 + "@esbuild/android-arm@0.25.10": 7389 optional: true 7390 7391 + "@esbuild/android-x64@0.21.5": 7392 optional: true 7393 7394 + "@esbuild/android-x64@0.25.10": 7395 optional: true 7396 7397 + "@esbuild/darwin-arm64@0.21.5": 7398 optional: true 7399 7400 + "@esbuild/darwin-arm64@0.25.10": 7401 optional: true 7402 7403 + "@esbuild/darwin-x64@0.21.5": 7404 optional: true 7405 7406 + "@esbuild/darwin-x64@0.25.10": 7407 optional: true 7408 7409 + "@esbuild/freebsd-arm64@0.21.5": 7410 optional: true 7411 7412 + "@esbuild/freebsd-arm64@0.25.10": 7413 optional: true 7414 7415 + "@esbuild/freebsd-x64@0.21.5": 7416 optional: true 7417 7418 + "@esbuild/freebsd-x64@0.25.10": 7419 optional: true 7420 7421 + "@esbuild/linux-arm64@0.21.5": 7422 optional: true 7423 7424 + "@esbuild/linux-arm64@0.25.10": 7425 optional: true 7426 7427 + "@esbuild/linux-arm@0.21.5": 7428 optional: true 7429 7430 + "@esbuild/linux-arm@0.25.10": 7431 optional: true 7432 7433 + "@esbuild/linux-ia32@0.21.5": 7434 optional: true 7435 7436 + "@esbuild/linux-ia32@0.25.10": 7437 optional: true 7438 7439 + "@esbuild/linux-loong64@0.21.5": 7440 optional: true 7441 7442 + "@esbuild/linux-loong64@0.25.10": 7443 optional: true 7444 7445 + "@esbuild/linux-mips64el@0.21.5": 7446 optional: true 7447 7448 + "@esbuild/linux-mips64el@0.25.10": 7449 optional: true 7450 7451 + "@esbuild/linux-ppc64@0.21.5": 7452 optional: true 7453 7454 + "@esbuild/linux-ppc64@0.25.10": 7455 optional: true 7456 7457 + "@esbuild/linux-riscv64@0.21.5": 7458 optional: true 7459 7460 + "@esbuild/linux-riscv64@0.25.10": 7461 optional: true 7462 7463 + "@esbuild/linux-s390x@0.21.5": 7464 optional: true 7465 7466 + "@esbuild/linux-s390x@0.25.10": 7467 optional: true 7468 7469 + "@esbuild/linux-x64@0.21.5": 7470 optional: true 7471 7472 + "@esbuild/linux-x64@0.25.10": 7473 optional: true 7474 7475 + "@esbuild/netbsd-arm64@0.25.10": 7476 optional: true 7477 7478 + "@esbuild/netbsd-x64@0.21.5": 7479 optional: true 7480 7481 + "@esbuild/netbsd-x64@0.25.10": 7482 optional: true 7483 7484 + "@esbuild/openbsd-arm64@0.25.10": 7485 optional: true 7486 7487 + "@esbuild/openbsd-x64@0.21.5": 7488 optional: true 7489 7490 + "@esbuild/openbsd-x64@0.25.10": 7491 optional: true 7492 7493 + "@esbuild/openharmony-arm64@0.25.10": 7494 optional: true 7495 7496 + "@esbuild/sunos-x64@0.21.5": 7497 optional: true 7498 7499 + "@esbuild/sunos-x64@0.25.10": 7500 optional: true 7501 7502 + "@esbuild/win32-arm64@0.21.5": 7503 optional: true 7504 7505 + "@esbuild/win32-arm64@0.25.10": 7506 optional: true 7507 7508 + "@esbuild/win32-ia32@0.21.5": 7509 optional: true 7510 7511 + "@esbuild/win32-ia32@0.25.10": 7512 optional: true 7513 7514 + "@esbuild/win32-x64@0.21.5": 7515 optional: true 7516 7517 + "@esbuild/win32-x64@0.25.10": 7518 optional: true 7519 7520 + "@floating-ui/core@1.7.3": 7521 dependencies: 7522 + "@floating-ui/utils": 0.2.10 7523 7524 + "@floating-ui/devtools@0.2.3(@floating-ui/dom@1.7.4)": 7525 dependencies: 7526 + "@floating-ui/dom": 1.7.4 7527 7528 + "@floating-ui/dom@1.7.4": 7529 dependencies: 7530 + "@floating-ui/core": 1.7.3 7531 + "@floating-ui/utils": 0.2.10 7532 7533 + "@floating-ui/utils@0.2.10": {} 7534 7535 + "@fluentui/keyboard-keys@9.0.8": 7536 dependencies: 7537 + "@swc/helpers": 0.5.17 7538 7539 + "@fluentui/priority-overflow@9.2.0": 7540 dependencies: 7541 + "@swc/helpers": 0.5.17 7542 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)": 7544 dependencies: 7545 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7546 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7547 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7548 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7549 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7550 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7551 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7552 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7553 + "@fluentui/react-theme": 9.2.0 7554 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7555 + "@griffel/react": 1.5.30(react@18.3.1) 7556 + "@swc/helpers": 0.5.17 7557 + "@types/react": 18.3.25 7558 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7559 react: 18.3.1 7560 react-dom: 18.3.1(react@18.3.1) 7561 transitivePeerDependencies: 7562 - scheduler 7563 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)": 7565 dependencies: 7566 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7567 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7568 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7569 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7570 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7571 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7572 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7573 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7574 + "@fluentui/react-theme": 9.2.0 7575 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7576 + "@griffel/react": 1.5.30(react@18.3.1) 7577 + "@swc/helpers": 0.5.17 7578 + "@types/react": 19.2.0 7579 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7580 react: 18.3.1 7581 react-dom: 18.3.1(react@18.3.1) 7582 transitivePeerDependencies: 7583 - scheduler 7584 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)": 7586 dependencies: 7587 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7588 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7589 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7590 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7591 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7592 + "@fluentui/react-theme": 9.2.0 7593 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7594 + "@griffel/react": 1.5.30(react@18.3.1) 7595 + "@swc/helpers": 0.5.17 7596 + "@types/react": 18.3.25 7597 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7598 react: 18.3.1 7599 react-dom: 18.3.1(react@18.3.1) 7600 transitivePeerDependencies: 7601 - scheduler 7602 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)": 7604 dependencies: 7605 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7606 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7607 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7608 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7609 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7610 + "@fluentui/react-theme": 9.2.0 7611 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7612 + "@griffel/react": 1.5.30(react@18.3.1) 7613 + "@swc/helpers": 0.5.17 7614 + "@types/react": 19.2.0 7615 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7616 react: 18.3.1 7617 react-dom: 18.3.1(react@18.3.1) 7618 transitivePeerDependencies: 7619 - scheduler 7620 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)": 7622 dependencies: 7623 + "@fluentui/keyboard-keys": 9.0.8 7624 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7625 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7626 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7627 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7628 + "@swc/helpers": 0.5.17 7629 + "@types/react": 18.3.25 7630 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7631 react: 18.3.1 7632 react-dom: 18.3.1(react@18.3.1) 7633 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)": 7635 dependencies: 7636 + "@fluentui/keyboard-keys": 9.0.8 7637 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7638 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7639 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7640 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7641 + "@swc/helpers": 0.5.17 7642 + "@types/react": 19.2.0 7643 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7644 react: 18.3.1 7645 react-dom: 18.3.1(react@18.3.1) 7646 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)": 7648 dependencies: 7649 + "@fluentui/react-badge": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7650 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7651 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7652 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7653 + "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7654 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7655 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7656 + "@fluentui/react-theme": 9.2.0 7657 + "@fluentui/react-tooltip": 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7658 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7659 + "@griffel/react": 1.5.30(react@18.3.1) 7660 + "@swc/helpers": 0.5.17 7661 + "@types/react": 18.3.25 7662 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7663 react: 18.3.1 7664 react-dom: 18.3.1(react@18.3.1) 7665 transitivePeerDependencies: 7666 - scheduler 7667 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)": 7669 dependencies: 7670 + "@fluentui/react-badge": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7671 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7672 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7673 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7674 + "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7675 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7676 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7677 + "@fluentui/react-theme": 9.2.0 7678 + "@fluentui/react-tooltip": 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7679 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7680 + "@griffel/react": 1.5.30(react@18.3.1) 7681 + "@swc/helpers": 0.5.17 7682 + "@types/react": 19.2.0 7683 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7684 react: 18.3.1 7685 react-dom: 18.3.1(react@18.3.1) 7686 transitivePeerDependencies: 7687 - scheduler 7688 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)": 7690 dependencies: 7691 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7692 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7693 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7694 + "@fluentui/react-theme": 9.2.0 7695 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7696 + "@griffel/react": 1.5.30(react@18.3.1) 7697 + "@swc/helpers": 0.5.17 7698 + "@types/react": 18.3.25 7699 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7700 react: 18.3.1 7701 react-dom: 18.3.1(react@18.3.1) 7702 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)": 7704 dependencies: 7705 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7706 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7707 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7708 + "@fluentui/react-theme": 9.2.0 7709 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7710 + "@griffel/react": 1.5.30(react@18.3.1) 7711 + "@swc/helpers": 0.5.17 7712 + "@types/react": 19.2.0 7713 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7714 react: 18.3.1 7715 react-dom: 18.3.1(react@18.3.1) 7716 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)": 7718 dependencies: 7719 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7720 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7721 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7722 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7723 + "@fluentui/react-link": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7724 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7725 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7726 + "@fluentui/react-theme": 9.2.0 7727 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7728 + "@griffel/react": 1.5.30(react@18.3.1) 7729 + "@swc/helpers": 0.5.17 7730 + "@types/react": 18.3.25 7731 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7732 react: 18.3.1 7733 react-dom: 18.3.1(react@18.3.1) 7734 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)": 7736 dependencies: 7737 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7738 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7739 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7740 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7741 + "@fluentui/react-link": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7742 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7743 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7744 + "@fluentui/react-theme": 9.2.0 7745 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7746 + "@griffel/react": 1.5.30(react@18.3.1) 7747 + "@swc/helpers": 0.5.17 7748 + "@types/react": 19.2.0 7749 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7750 react: 18.3.1 7751 react-dom: 18.3.1(react@18.3.1) 7752 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)": 7754 dependencies: 7755 + "@fluentui/keyboard-keys": 9.0.8 7756 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7757 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7758 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7759 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7760 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7761 + "@fluentui/react-theme": 9.2.0 7762 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7763 + "@griffel/react": 1.5.30(react@18.3.1) 7764 + "@swc/helpers": 0.5.17 7765 + "@types/react": 18.3.25 7766 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7767 react: 18.3.1 7768 react-dom: 18.3.1(react@18.3.1) 7769 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)": 7771 dependencies: 7772 + "@fluentui/keyboard-keys": 9.0.8 7773 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7774 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7775 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7776 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7777 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7778 + "@fluentui/react-theme": 9.2.0 7779 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7780 + "@griffel/react": 1.5.30(react@18.3.1) 7781 + "@swc/helpers": 0.5.17 7782 + "@types/react": 19.2.0 7783 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7784 react: 18.3.1 7785 react-dom: 18.3.1(react@18.3.1) 7786 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)": 7788 dependencies: 7789 + "@fluentui/keyboard-keys": 9.0.8 7790 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7791 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7792 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7793 + "@fluentui/react-text": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7794 + "@fluentui/react-theme": 9.2.0 7795 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7796 + "@griffel/react": 1.5.30(react@18.3.1) 7797 + "@swc/helpers": 0.5.17 7798 + "@types/react": 18.3.25 7799 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7800 react: 18.3.1 7801 react-dom: 18.3.1(react@18.3.1) 7802 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)": 7804 dependencies: 7805 + "@fluentui/keyboard-keys": 9.0.8 7806 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7807 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7808 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7809 + "@fluentui/react-text": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7810 + "@fluentui/react-theme": 9.2.0 7811 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7812 + "@griffel/react": 1.5.30(react@18.3.1) 7813 + "@swc/helpers": 0.5.17 7814 + "@types/react": 19.2.0 7815 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7816 react: 18.3.1 7817 react-dom: 18.3.1(react@18.3.1) 7818 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)": 7820 dependencies: 7821 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7822 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7823 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7824 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7825 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7826 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7827 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7828 + "@fluentui/react-theme": 9.2.0 7829 + "@fluentui/react-tooltip": 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7830 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7831 + "@griffel/react": 1.5.30(react@18.3.1) 7832 + "@swc/helpers": 0.5.17 7833 + "@types/react": 18.3.25 7834 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7835 embla-carousel: 8.6.0 7836 embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 7837 embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) ··· 7840 transitivePeerDependencies: 7841 - scheduler 7842 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)": 7844 dependencies: 7845 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7846 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7847 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7848 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7849 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7850 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7851 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7852 + "@fluentui/react-theme": 9.2.0 7853 + "@fluentui/react-tooltip": 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7854 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7855 + "@griffel/react": 1.5.30(react@18.3.1) 7856 + "@swc/helpers": 0.5.17 7857 + "@types/react": 19.2.0 7858 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7859 embla-carousel: 8.6.0 7860 embla-carousel-autoplay: 8.6.0(embla-carousel@8.6.0) 7861 embla-carousel-fade: 8.6.0(embla-carousel@8.6.0) ··· 7864 transitivePeerDependencies: 7865 - scheduler 7866 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)": 7868 dependencies: 7869 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7870 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7871 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7872 + "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7873 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7874 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7875 + "@fluentui/react-theme": 9.2.0 7876 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7877 + "@griffel/react": 1.5.30(react@18.3.1) 7878 + "@swc/helpers": 0.5.17 7879 + "@types/react": 18.3.25 7880 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7881 react: 18.3.1 7882 react-dom: 18.3.1(react@18.3.1) 7883 transitivePeerDependencies: 7884 - scheduler 7885 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)": 7887 dependencies: 7888 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7889 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7890 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7891 + "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7892 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7893 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7894 + "@fluentui/react-theme": 9.2.0 7895 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7896 + "@griffel/react": 1.5.30(react@18.3.1) 7897 + "@swc/helpers": 0.5.17 7898 + "@types/react": 19.2.0 7899 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7900 react: 18.3.1 7901 react-dom: 18.3.1(react@18.3.1) 7902 transitivePeerDependencies: 7903 - scheduler 7904 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)": 7906 dependencies: 7907 + "@ctrl/tinycolor": 3.6.1 7908 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7909 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7910 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7911 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7912 + "@fluentui/react-theme": 9.2.0 7913 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7914 + "@griffel/react": 1.5.30(react@18.3.1) 7915 + "@swc/helpers": 0.5.17 7916 + "@types/react": 18.3.25 7917 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7918 react: 18.3.1 7919 react-dom: 18.3.1(react@18.3.1) 7920 transitivePeerDependencies: 7921 - scheduler 7922 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)": 7924 dependencies: 7925 + "@ctrl/tinycolor": 3.6.1 7926 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7927 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7928 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7929 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7930 + "@fluentui/react-theme": 9.2.0 7931 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7932 + "@griffel/react": 1.5.30(react@18.3.1) 7933 + "@swc/helpers": 0.5.17 7934 + "@types/react": 19.2.0 7935 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7936 react: 18.3.1 7937 react-dom: 18.3.1(react@18.3.1) 7938 transitivePeerDependencies: 7939 - scheduler 7940 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)": 7942 dependencies: 7943 + "@fluentui/keyboard-keys": 9.0.8 7944 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7945 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7946 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7947 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7948 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 7949 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7950 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7951 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 7952 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7953 + "@fluentui/react-theme": 9.2.0 7954 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 7955 + "@griffel/react": 1.5.30(react@18.3.1) 7956 + "@swc/helpers": 0.5.17 7957 + "@types/react": 18.3.25 7958 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 7959 react: 18.3.1 7960 react-dom: 18.3.1(react@18.3.1) 7961 transitivePeerDependencies: 7962 - scheduler 7963 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)": 7965 dependencies: 7966 + "@fluentui/keyboard-keys": 9.0.8 7967 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7968 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7969 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7970 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 7971 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 7972 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7973 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7974 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 7975 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7976 + "@fluentui/react-theme": 9.2.0 7977 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 7978 + "@griffel/react": 1.5.30(react@18.3.1) 7979 + "@swc/helpers": 0.5.17 7980 + "@types/react": 19.2.0 7981 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 7982 react: 18.3.1 7983 react-dom: 18.3.1(react@18.3.1) 7984 transitivePeerDependencies: 7985 - scheduler 7986 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)": 7988 dependencies: 7989 + "@fluentui/react-accordion": 9.8.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7990 + "@fluentui/react-alert": 9.0.0-beta.124(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7991 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7992 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7993 + "@fluentui/react-badge": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7994 + "@fluentui/react-breadcrumb": 9.3.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7995 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7996 + "@fluentui/react-card": 9.5.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 7997 + "@fluentui/react-carousel": 9.8.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7998 + "@fluentui/react-checkbox": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 7999 + "@fluentui/react-color-picker": 9.2.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8000 + "@fluentui/react-combobox": 9.16.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8001 + "@fluentui/react-dialog": 9.15.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8002 + "@fluentui/react-divider": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8003 + "@fluentui/react-drawer": 9.10.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8004 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8005 + "@fluentui/react-image": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8006 + "@fluentui/react-infobutton": 9.0.0-beta.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8007 + "@fluentui/react-infolabel": 9.4.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8008 + "@fluentui/react-input": 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8009 + "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8010 + "@fluentui/react-link": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8011 + "@fluentui/react-list": 9.6.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8012 + "@fluentui/react-menu": 9.20.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8013 + "@fluentui/react-message-bar": 9.6.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8014 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8015 + "@fluentui/react-nav": 9.3.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8016 + "@fluentui/react-overflow": 9.6.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8017 + "@fluentui/react-persona": 9.5.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8018 + "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8019 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8020 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8021 + "@fluentui/react-progress": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8022 + "@fluentui/react-provider": 9.22.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8023 + "@fluentui/react-radio": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8024 + "@fluentui/react-rating": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8025 + "@fluentui/react-search": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8026 + "@fluentui/react-select": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8027 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8028 + "@fluentui/react-skeleton": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8029 + "@fluentui/react-slider": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8030 + "@fluentui/react-spinbutton": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8031 + "@fluentui/react-spinner": 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8032 + "@fluentui/react-swatch-picker": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8033 + "@fluentui/react-switch": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8034 + "@fluentui/react-table": 9.19.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8035 + "@fluentui/react-tabs": 9.10.2(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8036 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8037 + "@fluentui/react-tag-picker": 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8038 + "@fluentui/react-tags": 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8039 + "@fluentui/react-teaching-popover": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8040 + "@fluentui/react-text": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8041 + "@fluentui/react-textarea": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8042 + "@fluentui/react-theme": 9.2.0 8043 + "@fluentui/react-toast": 9.7.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8044 + "@fluentui/react-toolbar": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8045 + "@fluentui/react-tooltip": 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8046 + "@fluentui/react-tree": 9.14.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8047 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8048 + "@fluentui/react-virtualizer": 9.0.0-alpha.102(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8049 + "@griffel/react": 1.5.30(react@18.3.1) 8050 + "@swc/helpers": 0.5.17 8051 + "@types/react": 18.3.25 8052 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8053 react: 18.3.1 8054 react-dom: 18.3.1(react@18.3.1) 8055 transitivePeerDependencies: 8056 - scheduler 8057 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)": 8059 dependencies: 8060 + "@fluentui/react-accordion": 9.8.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8061 + "@fluentui/react-alert": 9.0.0-beta.124(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8062 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8063 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8064 + "@fluentui/react-badge": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8065 + "@fluentui/react-breadcrumb": 9.3.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8066 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8067 + "@fluentui/react-card": 9.5.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8068 + "@fluentui/react-carousel": 9.8.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8069 + "@fluentui/react-checkbox": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8070 + "@fluentui/react-color-picker": 9.2.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8071 + "@fluentui/react-combobox": 9.16.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8072 + "@fluentui/react-dialog": 9.15.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8073 + "@fluentui/react-divider": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8074 + "@fluentui/react-drawer": 9.10.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8075 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8076 + "@fluentui/react-image": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8077 + "@fluentui/react-infobutton": 9.0.0-beta.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8078 + "@fluentui/react-infolabel": 9.4.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8079 + "@fluentui/react-input": 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8080 + "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8081 + "@fluentui/react-link": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8082 + "@fluentui/react-list": 9.6.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8083 + "@fluentui/react-menu": 9.20.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8084 + "@fluentui/react-message-bar": 9.6.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8085 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8086 + "@fluentui/react-nav": 9.3.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8087 + "@fluentui/react-overflow": 9.6.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8088 + "@fluentui/react-persona": 9.5.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8089 + "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8090 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8091 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8092 + "@fluentui/react-progress": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8093 + "@fluentui/react-provider": 9.22.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8094 + "@fluentui/react-radio": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8095 + "@fluentui/react-rating": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8096 + "@fluentui/react-search": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8097 + "@fluentui/react-select": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8098 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8099 + "@fluentui/react-skeleton": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8100 + "@fluentui/react-slider": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8101 + "@fluentui/react-spinbutton": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8102 + "@fluentui/react-spinner": 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8103 + "@fluentui/react-swatch-picker": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8104 + "@fluentui/react-switch": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8105 + "@fluentui/react-table": 9.19.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8106 + "@fluentui/react-tabs": 9.10.2(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8107 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8108 + "@fluentui/react-tag-picker": 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8109 + "@fluentui/react-tags": 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8110 + "@fluentui/react-teaching-popover": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8111 + "@fluentui/react-text": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8112 + "@fluentui/react-textarea": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8113 + "@fluentui/react-theme": 9.2.0 8114 + "@fluentui/react-toast": 9.7.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8115 + "@fluentui/react-toolbar": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8116 + "@fluentui/react-tooltip": 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8117 + "@fluentui/react-tree": 9.14.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8118 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8119 + "@fluentui/react-virtualizer": 9.0.0-alpha.102(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8120 + "@griffel/react": 1.5.30(react@18.3.1) 8121 + "@swc/helpers": 0.5.17 8122 + "@types/react": 19.2.0 8123 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8124 react: 18.3.1 8125 react-dom: 18.3.1(react@18.3.1) 8126 transitivePeerDependencies: 8127 - scheduler 8128 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)": 8130 dependencies: 8131 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8132 + "@swc/helpers": 0.5.17 8133 + "@types/react": 18.3.25 8134 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8135 react: 18.3.1 8136 react-dom: 18.3.1(react@18.3.1) 8137 scheduler: 0.27.0 8138 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)": 8140 dependencies: 8141 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8142 + "@swc/helpers": 0.5.17 8143 + "@types/react": 19.2.0 8144 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8145 react: 18.3.1 8146 react-dom: 18.3.1(react@18.3.1) 8147 scheduler: 0.27.0 8148 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)": 8150 dependencies: 8151 + "@fluentui/keyboard-keys": 9.0.8 8152 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8153 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8154 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8155 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8156 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8157 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8158 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8159 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8160 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8161 + "@fluentui/react-theme": 9.2.0 8162 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8163 + "@griffel/react": 1.5.30(react@18.3.1) 8164 + "@swc/helpers": 0.5.17 8165 + "@types/react": 18.3.25 8166 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8167 react: 18.3.1 8168 react-dom: 18.3.1(react@18.3.1) 8169 transitivePeerDependencies: 8170 - scheduler 8171 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)": 8173 dependencies: 8174 + "@fluentui/keyboard-keys": 9.0.8 8175 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8176 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8177 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8178 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8179 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8180 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8181 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8182 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8183 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8184 + "@fluentui/react-theme": 9.2.0 8185 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8186 + "@griffel/react": 1.5.30(react@18.3.1) 8187 + "@swc/helpers": 0.5.17 8188 + "@types/react": 19.2.0 8189 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8190 react: 18.3.1 8191 react-dom: 18.3.1(react@18.3.1) 8192 transitivePeerDependencies: 8193 - scheduler 8194 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)": 8196 dependencies: 8197 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8198 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8199 + "@fluentui/react-theme": 9.2.0 8200 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8201 + "@griffel/react": 1.5.30(react@18.3.1) 8202 + "@swc/helpers": 0.5.17 8203 + "@types/react": 18.3.25 8204 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8205 react: 18.3.1 8206 react-dom: 18.3.1(react@18.3.1) 8207 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)": 8209 dependencies: 8210 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8211 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8212 + "@fluentui/react-theme": 9.2.0 8213 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8214 + "@griffel/react": 1.5.30(react@18.3.1) 8215 + "@swc/helpers": 0.5.17 8216 + "@types/react": 19.2.0 8217 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8218 react: 18.3.1 8219 react-dom: 18.3.1(react@18.3.1) 8220 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)": 8222 dependencies: 8223 + "@fluentui/react-dialog": 9.15.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8224 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8225 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8226 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8227 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8228 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8229 + "@fluentui/react-theme": 9.2.0 8230 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8231 + "@griffel/react": 1.5.30(react@18.3.1) 8232 + "@swc/helpers": 0.5.17 8233 + "@types/react": 18.3.25 8234 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8235 react: 18.3.1 8236 react-dom: 18.3.1(react@18.3.1) 8237 transitivePeerDependencies: 8238 - scheduler 8239 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)": 8241 dependencies: 8242 + "@fluentui/react-dialog": 9.15.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8243 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8244 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8245 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8246 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8247 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8248 + "@fluentui/react-theme": 9.2.0 8249 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8250 + "@griffel/react": 1.5.30(react@18.3.1) 8251 + "@swc/helpers": 0.5.17 8252 + "@types/react": 19.2.0 8253 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8254 react: 18.3.1 8255 react-dom: 18.3.1(react@18.3.1) 8256 transitivePeerDependencies: 8257 - scheduler 8258 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)": 8260 dependencies: 8261 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8262 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8263 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8264 + "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8265 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8266 + "@fluentui/react-theme": 9.2.0 8267 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8268 + "@griffel/react": 1.5.30(react@18.3.1) 8269 + "@swc/helpers": 0.5.17 8270 + "@types/react": 18.3.25 8271 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8272 react: 18.3.1 8273 react-dom: 18.3.1(react@18.3.1) 8274 transitivePeerDependencies: 8275 - scheduler 8276 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)": 8278 dependencies: 8279 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8280 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8281 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8282 + "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8283 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8284 + "@fluentui/react-theme": 9.2.0 8285 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8286 + "@griffel/react": 1.5.30(react@18.3.1) 8287 + "@swc/helpers": 0.5.17 8288 + "@types/react": 19.2.0 8289 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8290 react: 18.3.1 8291 react-dom: 18.3.1(react@18.3.1) 8292 transitivePeerDependencies: 8293 - scheduler 8294 8295 + "@fluentui/react-icons@2.0.311(react@18.3.1)": 8296 dependencies: 8297 + "@griffel/react": 1.5.30(react@18.3.1) 8298 react: 18.3.1 8299 tslib: 2.8.1 8300 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)": 8302 dependencies: 8303 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8304 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8305 + "@fluentui/react-theme": 9.2.0 8306 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8307 + "@griffel/react": 1.5.30(react@18.3.1) 8308 + "@swc/helpers": 0.5.17 8309 + "@types/react": 18.3.25 8310 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8311 react: 18.3.1 8312 react-dom: 18.3.1(react@18.3.1) 8313 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)": 8315 dependencies: 8316 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8317 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8318 + "@fluentui/react-theme": 9.2.0 8319 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8320 + "@griffel/react": 1.5.30(react@18.3.1) 8321 + "@swc/helpers": 0.5.17 8322 + "@types/react": 19.2.0 8323 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8324 react: 18.3.1 8325 react-dom: 18.3.1(react@18.3.1) 8326 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)": 8328 dependencies: 8329 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8330 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8331 + "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8332 + "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8333 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8334 + "@fluentui/react-theme": 9.2.0 8335 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8336 + "@griffel/react": 1.5.30(react@18.3.1) 8337 + "@swc/helpers": 0.5.17 8338 + "@types/react": 18.3.25 8339 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8340 react: 18.3.1 8341 react-dom: 18.3.1(react@18.3.1) 8342 transitivePeerDependencies: 8343 - scheduler 8344 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)": 8346 dependencies: 8347 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8348 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8349 + "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8350 + "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8351 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8352 + "@fluentui/react-theme": 9.2.0 8353 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8354 + "@griffel/react": 1.5.30(react@18.3.1) 8355 + "@swc/helpers": 0.5.17 8356 + "@types/react": 19.2.0 8357 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8358 react: 18.3.1 8359 react-dom: 18.3.1(react@18.3.1) 8360 transitivePeerDependencies: 8361 - scheduler 8362 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)": 8364 dependencies: 8365 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8366 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8367 + "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8368 + "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8369 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8370 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8371 + "@fluentui/react-theme": 9.2.0 8372 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8373 + "@griffel/react": 1.5.30(react@18.3.1) 8374 + "@swc/helpers": 0.5.17 8375 + "@types/react": 18.3.25 8376 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8377 react: 18.3.1 8378 react-dom: 18.3.1(react@18.3.1) 8379 transitivePeerDependencies: 8380 - scheduler 8381 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)": 8383 dependencies: 8384 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8385 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8386 + "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8387 + "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8388 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8389 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8390 + "@fluentui/react-theme": 9.2.0 8391 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8392 + "@griffel/react": 1.5.30(react@18.3.1) 8393 + "@swc/helpers": 0.5.17 8394 + "@types/react": 19.2.0 8395 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8396 react: 18.3.1 8397 react-dom: 18.3.1(react@18.3.1) 8398 transitivePeerDependencies: 8399 - scheduler 8400 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)": 8402 dependencies: 8403 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8404 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8405 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8406 + "@fluentui/react-theme": 9.2.0 8407 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8408 + "@griffel/react": 1.5.30(react@18.3.1) 8409 + "@swc/helpers": 0.5.17 8410 + "@types/react": 18.3.25 8411 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8412 react: 18.3.1 8413 react-dom: 18.3.1(react@18.3.1) 8414 transitivePeerDependencies: 8415 - scheduler 8416 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)": 8418 dependencies: 8419 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8420 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8421 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8422 + "@fluentui/react-theme": 9.2.0 8423 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8424 + "@griffel/react": 1.5.30(react@18.3.1) 8425 + "@swc/helpers": 0.5.17 8426 + "@types/react": 19.2.0 8427 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8428 react: 18.3.1 8429 react-dom: 18.3.1(react@18.3.1) 8430 transitivePeerDependencies: 8431 - scheduler 8432 8433 + "@fluentui/react-jsx-runtime@9.2.1(@types/react@18.3.25)(react@18.3.1)": 8434 dependencies: 8435 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8436 + "@swc/helpers": 0.5.17 8437 + "@types/react": 18.3.25 8438 react: 18.3.1 8439 react-is: 17.0.2 8440 8441 + "@fluentui/react-jsx-runtime@9.2.1(@types/react@19.2.0)(react@18.3.1)": 8442 dependencies: 8443 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8444 + "@swc/helpers": 0.5.17 8445 + "@types/react": 19.2.0 8446 react: 18.3.1 8447 react-is: 17.0.2 8448 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)": 8450 dependencies: 8451 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8452 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8453 + "@fluentui/react-theme": 9.2.0 8454 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8455 + "@griffel/react": 1.5.30(react@18.3.1) 8456 + "@swc/helpers": 0.5.17 8457 + "@types/react": 18.3.25 8458 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8459 react: 18.3.1 8460 react-dom: 18.3.1(react@18.3.1) 8461 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)": 8463 dependencies: 8464 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8465 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8466 + "@fluentui/react-theme": 9.2.0 8467 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8468 + "@griffel/react": 1.5.30(react@18.3.1) 8469 + "@swc/helpers": 0.5.17 8470 + "@types/react": 19.2.0 8471 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8472 react: 18.3.1 8473 react-dom: 18.3.1(react@18.3.1) 8474 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)": 8476 dependencies: 8477 + "@fluentui/keyboard-keys": 9.0.8 8478 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8479 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8480 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8481 + "@fluentui/react-theme": 9.2.0 8482 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8483 + "@griffel/react": 1.5.30(react@18.3.1) 8484 + "@swc/helpers": 0.5.17 8485 + "@types/react": 18.3.25 8486 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8487 react: 18.3.1 8488 react-dom: 18.3.1(react@18.3.1) 8489 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)": 8491 dependencies: 8492 + "@fluentui/keyboard-keys": 9.0.8 8493 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8494 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8495 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8496 + "@fluentui/react-theme": 9.2.0 8497 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8498 + "@griffel/react": 1.5.30(react@18.3.1) 8499 + "@swc/helpers": 0.5.17 8500 + "@types/react": 19.2.0 8501 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8502 react: 18.3.1 8503 react-dom: 18.3.1(react@18.3.1) 8504 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)": 8506 dependencies: 8507 + "@fluentui/keyboard-keys": 9.0.8 8508 + "@fluentui/react-checkbox": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8509 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8510 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8511 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8512 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8513 + "@fluentui/react-theme": 9.2.0 8514 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8515 + "@griffel/react": 1.5.30(react@18.3.1) 8516 + "@swc/helpers": 0.5.17 8517 + "@types/react": 18.3.25 8518 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8519 react: 18.3.1 8520 react-dom: 18.3.1(react@18.3.1) 8521 transitivePeerDependencies: 8522 - scheduler 8523 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)": 8525 dependencies: 8526 + "@fluentui/keyboard-keys": 9.0.8 8527 + "@fluentui/react-checkbox": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8528 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8529 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8530 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8531 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8532 + "@fluentui/react-theme": 9.2.0 8533 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8534 + "@griffel/react": 1.5.30(react@18.3.1) 8535 + "@swc/helpers": 0.5.17 8536 + "@types/react": 19.2.0 8537 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8538 react: 18.3.1 8539 react-dom: 18.3.1(react@18.3.1) 8540 transitivePeerDependencies: 8541 - scheduler 8542 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)": 8544 dependencies: 8545 + "@fluentui/keyboard-keys": 9.0.8 8546 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8547 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8548 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8549 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8550 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8551 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8552 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8553 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8554 + "@fluentui/react-theme": 9.2.0 8555 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8556 + "@griffel/react": 1.5.30(react@18.3.1) 8557 + "@swc/helpers": 0.5.17 8558 + "@types/react": 18.3.25 8559 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8560 react: 18.3.1 8561 react-dom: 18.3.1(react@18.3.1) 8562 transitivePeerDependencies: 8563 - scheduler 8564 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)": 8566 dependencies: 8567 + "@fluentui/keyboard-keys": 9.0.8 8568 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8569 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8570 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8571 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8572 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8573 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8574 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8575 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8576 + "@fluentui/react-theme": 9.2.0 8577 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8578 + "@griffel/react": 1.5.30(react@18.3.1) 8579 + "@swc/helpers": 0.5.17 8580 + "@types/react": 19.2.0 8581 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8582 react: 18.3.1 8583 react-dom: 18.3.1(react@18.3.1) 8584 transitivePeerDependencies: 8585 - scheduler 8586 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)": 8588 dependencies: 8589 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8590 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8591 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8592 + "@fluentui/react-link": 9.6.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8593 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8594 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8595 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8596 + "@fluentui/react-theme": 9.2.0 8597 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8598 + "@griffel/react": 1.5.30(react@18.3.1) 8599 + "@swc/helpers": 0.5.17 8600 + "@types/react": 18.3.25 8601 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8602 react: 18.3.1 8603 react-dom: 18.3.1(react@18.3.1) 8604 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)": 8606 dependencies: 8607 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8608 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8609 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8610 + "@fluentui/react-link": 9.6.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8611 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8612 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8613 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8614 + "@fluentui/react-theme": 9.2.0 8615 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8616 + "@griffel/react": 1.5.30(react@18.3.1) 8617 + "@swc/helpers": 0.5.17 8618 + "@types/react": 19.2.0 8619 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8620 react: 18.3.1 8621 react-dom: 18.3.1(react@18.3.1) 8622 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)": 8624 dependencies: 8625 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8626 + "@swc/helpers": 0.5.17 8627 + "@types/react": 18.3.25 8628 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8629 react: 18.3.1 8630 react-dom: 18.3.1(react@18.3.1) 8631 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)": 8633 dependencies: 8634 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8635 + "@swc/helpers": 0.5.17 8636 + "@types/react": 19.2.0 8637 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8638 react: 18.3.1 8639 react-dom: 18.3.1(react@18.3.1) 8640 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)": 8642 dependencies: 8643 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8644 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8645 + "@swc/helpers": 0.5.17 8646 + "@types/react": 18.3.25 8647 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8648 react: 18.3.1 8649 react-dom: 18.3.1(react@18.3.1) 8650 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)": 8652 dependencies: 8653 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8654 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8655 + "@swc/helpers": 0.5.17 8656 + "@types/react": 19.2.0 8657 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8658 react: 18.3.1 8659 react-dom: 18.3.1(react@18.3.1) 8660 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)": 8662 dependencies: 8663 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8664 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8665 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8666 + "@fluentui/react-divider": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8667 + "@fluentui/react-drawer": 9.10.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8668 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8669 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8670 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8671 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8672 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8673 + "@fluentui/react-theme": 9.2.0 8674 + "@fluentui/react-tooltip": 9.8.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8675 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8676 + "@griffel/react": 1.5.30(react@18.3.1) 8677 + "@swc/helpers": 0.5.17 8678 + "@types/react": 18.3.25 8679 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8680 react: 18.3.1 8681 react-dom: 18.3.1(react@18.3.1) 8682 transitivePeerDependencies: 8683 - scheduler 8684 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)": 8686 dependencies: 8687 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8688 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8689 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8690 + "@fluentui/react-divider": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8691 + "@fluentui/react-drawer": 9.10.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8692 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8693 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8694 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8695 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8696 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8697 + "@fluentui/react-theme": 9.2.0 8698 + "@fluentui/react-tooltip": 9.8.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8699 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8700 + "@griffel/react": 1.5.30(react@18.3.1) 8701 + "@swc/helpers": 0.5.17 8702 + "@types/react": 19.2.0 8703 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8704 react: 18.3.1 8705 react-dom: 18.3.1(react@18.3.1) 8706 transitivePeerDependencies: 8707 - scheduler 8708 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)": 8710 dependencies: 8711 + "@fluentui/priority-overflow": 9.2.0 8712 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8713 + "@fluentui/react-theme": 9.2.0 8714 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8715 + "@griffel/react": 1.5.30(react@18.3.1) 8716 + "@swc/helpers": 0.5.17 8717 + "@types/react": 18.3.25 8718 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8719 react: 18.3.1 8720 react-dom: 18.3.1(react@18.3.1) 8721 transitivePeerDependencies: 8722 - scheduler 8723 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)": 8725 dependencies: 8726 + "@fluentui/priority-overflow": 9.2.0 8727 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8728 + "@fluentui/react-theme": 9.2.0 8729 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8730 + "@griffel/react": 1.5.30(react@18.3.1) 8731 + "@swc/helpers": 0.5.17 8732 + "@types/react": 19.2.0 8733 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8734 react: 18.3.1 8735 react-dom: 18.3.1(react@18.3.1) 8736 transitivePeerDependencies: 8737 - scheduler 8738 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)": 8740 dependencies: 8741 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8742 + "@fluentui/react-badge": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8743 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8744 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8745 + "@fluentui/react-theme": 9.2.0 8746 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8747 + "@griffel/react": 1.5.30(react@18.3.1) 8748 + "@swc/helpers": 0.5.17 8749 + "@types/react": 18.3.25 8750 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8751 react: 18.3.1 8752 react-dom: 18.3.1(react@18.3.1) 8753 transitivePeerDependencies: 8754 - scheduler 8755 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)": 8757 dependencies: 8758 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8759 + "@fluentui/react-badge": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8760 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8761 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8762 + "@fluentui/react-theme": 9.2.0 8763 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8764 + "@griffel/react": 1.5.30(react@18.3.1) 8765 + "@swc/helpers": 0.5.17 8766 + "@types/react": 19.2.0 8767 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8768 react: 18.3.1 8769 react-dom: 18.3.1(react@18.3.1) 8770 transitivePeerDependencies: 8771 - scheduler 8772 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)": 8774 dependencies: 8775 + "@fluentui/keyboard-keys": 9.0.8 8776 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8777 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8778 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8779 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8780 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8781 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8782 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8783 + "@fluentui/react-theme": 9.2.0 8784 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8785 + "@griffel/react": 1.5.30(react@18.3.1) 8786 + "@swc/helpers": 0.5.17 8787 + "@types/react": 18.3.25 8788 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8789 react: 18.3.1 8790 react-dom: 18.3.1(react@18.3.1) 8791 transitivePeerDependencies: 8792 - scheduler 8793 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)": 8795 dependencies: 8796 + "@fluentui/keyboard-keys": 9.0.8 8797 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8798 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8799 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8800 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8801 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8802 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8803 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8804 + "@fluentui/react-theme": 9.2.0 8805 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8806 + "@griffel/react": 1.5.30(react@18.3.1) 8807 + "@swc/helpers": 0.5.17 8808 + "@types/react": 19.2.0 8809 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8810 react: 18.3.1 8811 react-dom: 18.3.1(react@18.3.1) 8812 transitivePeerDependencies: 8813 - scheduler 8814 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)": 8816 dependencies: 8817 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8818 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8819 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8820 + "@griffel/react": 1.5.30(react@18.3.1) 8821 + "@swc/helpers": 0.5.17 8822 + "@types/react": 18.3.25 8823 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8824 react: 18.3.1 8825 react-dom: 18.3.1(react@18.3.1) 8826 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)": 8828 dependencies: 8829 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8830 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8831 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8832 + "@griffel/react": 1.5.30(react@18.3.1) 8833 + "@swc/helpers": 0.5.17 8834 + "@types/react": 19.2.0 8835 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8836 react: 18.3.1 8837 react-dom: 18.3.1(react@18.3.1) 8838 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)": 8840 dependencies: 8841 + "@floating-ui/devtools": 0.2.3(@floating-ui/dom@1.7.4) 8842 + "@floating-ui/dom": 1.7.4 8843 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8844 + "@fluentui/react-theme": 9.2.0 8845 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8846 + "@griffel/react": 1.5.30(react@18.3.1) 8847 + "@swc/helpers": 0.5.17 8848 + "@types/react": 18.3.25 8849 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8850 react: 18.3.1 8851 react-dom: 18.3.1(react@18.3.1) 8852 use-sync-external-store: 1.6.0(react@18.3.1) 8853 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)": 8855 dependencies: 8856 + "@floating-ui/devtools": 0.2.3(@floating-ui/dom@1.7.4) 8857 + "@floating-ui/dom": 1.7.4 8858 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8859 + "@fluentui/react-theme": 9.2.0 8860 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8861 + "@griffel/react": 1.5.30(react@18.3.1) 8862 + "@swc/helpers": 0.5.17 8863 + "@types/react": 19.2.0 8864 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8865 react: 18.3.1 8866 react-dom: 18.3.1(react@18.3.1) 8867 use-sync-external-store: 1.6.0(react@18.3.1) 8868 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)": 8870 dependencies: 8871 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8872 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8873 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8874 + "@fluentui/react-theme": 9.2.0 8875 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8876 + "@griffel/react": 1.5.30(react@18.3.1) 8877 + "@swc/helpers": 0.5.17 8878 + "@types/react": 18.3.25 8879 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8880 react: 18.3.1 8881 react-dom: 18.3.1(react@18.3.1) 8882 transitivePeerDependencies: 8883 - scheduler 8884 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)": 8886 dependencies: 8887 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8888 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8889 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8890 + "@fluentui/react-theme": 9.2.0 8891 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8892 + "@griffel/react": 1.5.30(react@18.3.1) 8893 + "@swc/helpers": 0.5.17 8894 + "@types/react": 19.2.0 8895 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8896 react: 18.3.1 8897 react-dom: 18.3.1(react@18.3.1) 8898 transitivePeerDependencies: 8899 - scheduler 8900 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)": 8902 dependencies: 8903 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8904 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8905 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8906 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8907 + "@fluentui/react-theme": 9.2.0 8908 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8909 + "@griffel/core": 1.19.2 8910 + "@griffel/react": 1.5.30(react@18.3.1) 8911 + "@swc/helpers": 0.5.17 8912 + "@types/react": 18.3.25 8913 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8914 react: 18.3.1 8915 react-dom: 18.3.1(react@18.3.1) 8916 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)": 8918 dependencies: 8919 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8920 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8921 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8922 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8923 + "@fluentui/react-theme": 9.2.0 8924 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8925 + "@griffel/core": 1.19.2 8926 + "@griffel/react": 1.5.30(react@18.3.1) 8927 + "@swc/helpers": 0.5.17 8928 + "@types/react": 19.2.0 8929 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8930 react: 18.3.1 8931 react-dom: 18.3.1(react@18.3.1) 8932 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)": 8934 dependencies: 8935 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8936 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8937 + "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8938 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8939 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8940 + "@fluentui/react-theme": 9.2.0 8941 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8942 + "@griffel/react": 1.5.30(react@18.3.1) 8943 + "@swc/helpers": 0.5.17 8944 + "@types/react": 18.3.25 8945 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8946 react: 18.3.1 8947 react-dom: 18.3.1(react@18.3.1) 8948 transitivePeerDependencies: 8949 - scheduler 8950 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)": 8952 dependencies: 8953 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 8954 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8955 + "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8956 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8957 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8958 + "@fluentui/react-theme": 9.2.0 8959 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8960 + "@griffel/react": 1.5.30(react@18.3.1) 8961 + "@swc/helpers": 0.5.17 8962 + "@types/react": 19.2.0 8963 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8964 react: 18.3.1 8965 react-dom: 18.3.1(react@18.3.1) 8966 transitivePeerDependencies: 8967 - scheduler 8968 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)": 8970 dependencies: 8971 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8972 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 8973 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 8974 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8975 + "@fluentui/react-theme": 9.2.0 8976 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 8977 + "@griffel/react": 1.5.30(react@18.3.1) 8978 + "@swc/helpers": 0.5.17 8979 + "@types/react": 18.3.25 8980 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 8981 react: 18.3.1 8982 react-dom: 18.3.1(react@18.3.1) 8983 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)": 8985 dependencies: 8986 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 8987 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 8988 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 8989 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 8990 + "@fluentui/react-theme": 9.2.0 8991 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 8992 + "@griffel/react": 1.5.30(react@18.3.1) 8993 + "@swc/helpers": 0.5.17 8994 + "@types/react": 19.2.0 8995 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 8996 react: 18.3.1 8997 react-dom: 18.3.1(react@18.3.1) 8998 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)": 9000 dependencies: 9001 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9002 + "@fluentui/react-input": 9.7.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9003 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9004 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9005 + "@fluentui/react-theme": 9.2.0 9006 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9007 + "@griffel/react": 1.5.30(react@18.3.1) 9008 + "@swc/helpers": 0.5.17 9009 + "@types/react": 18.3.25 9010 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9011 react: 18.3.1 9012 react-dom: 18.3.1(react@18.3.1) 9013 transitivePeerDependencies: 9014 - scheduler 9015 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)": 9017 dependencies: 9018 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9019 + "@fluentui/react-input": 9.7.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9020 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9021 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9022 + "@fluentui/react-theme": 9.2.0 9023 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9024 + "@griffel/react": 1.5.30(react@18.3.1) 9025 + "@swc/helpers": 0.5.17 9026 + "@types/react": 19.2.0 9027 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9028 react: 18.3.1 9029 react-dom: 18.3.1(react@18.3.1) 9030 transitivePeerDependencies: 9031 - scheduler 9032 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)": 9034 dependencies: 9035 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9036 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9037 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9038 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9039 + "@fluentui/react-theme": 9.2.0 9040 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9041 + "@griffel/react": 1.5.30(react@18.3.1) 9042 + "@swc/helpers": 0.5.17 9043 + "@types/react": 18.3.25 9044 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9045 react: 18.3.1 9046 react-dom: 18.3.1(react@18.3.1) 9047 transitivePeerDependencies: 9048 - scheduler 9049 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)": 9051 dependencies: 9052 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9053 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9054 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9055 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9056 + "@fluentui/react-theme": 9.2.0 9057 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9058 + "@griffel/react": 1.5.30(react@18.3.1) 9059 + "@swc/helpers": 0.5.17 9060 + "@types/react": 19.2.0 9061 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9062 react: 18.3.1 9063 react-dom: 18.3.1(react@18.3.1) 9064 transitivePeerDependencies: 9065 - scheduler 9066 9067 + "@fluentui/react-shared-contexts@9.25.2(@types/react@18.3.25)(react@18.3.1)": 9068 dependencies: 9069 + "@fluentui/react-theme": 9.2.0 9070 + "@swc/helpers": 0.5.17 9071 + "@types/react": 18.3.25 9072 react: 18.3.1 9073 9074 + "@fluentui/react-shared-contexts@9.25.2(@types/react@19.2.0)(react@18.3.1)": 9075 dependencies: 9076 + "@fluentui/react-theme": 9.2.0 9077 + "@swc/helpers": 0.5.17 9078 + "@types/react": 19.2.0 9079 react: 18.3.1 9080 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)": 9082 dependencies: 9083 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9084 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9085 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9086 + "@fluentui/react-theme": 9.2.0 9087 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9088 + "@griffel/react": 1.5.30(react@18.3.1) 9089 + "@swc/helpers": 0.5.17 9090 + "@types/react": 18.3.25 9091 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9092 react: 18.3.1 9093 react-dom: 18.3.1(react@18.3.1) 9094 transitivePeerDependencies: 9095 - scheduler 9096 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)": 9098 dependencies: 9099 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9100 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9101 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9102 + "@fluentui/react-theme": 9.2.0 9103 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9104 + "@griffel/react": 1.5.30(react@18.3.1) 9105 + "@swc/helpers": 0.5.17 9106 + "@types/react": 19.2.0 9107 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9108 react: 18.3.1 9109 react-dom: 18.3.1(react@18.3.1) 9110 transitivePeerDependencies: 9111 - scheduler 9112 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)": 9114 dependencies: 9115 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9116 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9117 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9118 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9119 + "@fluentui/react-theme": 9.2.0 9120 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9121 + "@griffel/react": 1.5.30(react@18.3.1) 9122 + "@swc/helpers": 0.5.17 9123 + "@types/react": 18.3.25 9124 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9125 react: 18.3.1 9126 react-dom: 18.3.1(react@18.3.1) 9127 transitivePeerDependencies: 9128 - scheduler 9129 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)": 9131 dependencies: 9132 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9133 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9134 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9135 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9136 + "@fluentui/react-theme": 9.2.0 9137 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9138 + "@griffel/react": 1.5.30(react@18.3.1) 9139 + "@swc/helpers": 0.5.17 9140 + "@types/react": 19.2.0 9141 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9142 react: 18.3.1 9143 react-dom: 18.3.1(react@18.3.1) 9144 transitivePeerDependencies: 9145 - scheduler 9146 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)": 9148 dependencies: 9149 + "@fluentui/keyboard-keys": 9.0.8 9150 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9151 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9152 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9153 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9154 + "@fluentui/react-theme": 9.2.0 9155 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9156 + "@griffel/react": 1.5.30(react@18.3.1) 9157 + "@swc/helpers": 0.5.17 9158 + "@types/react": 18.3.25 9159 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9160 react: 18.3.1 9161 react-dom: 18.3.1(react@18.3.1) 9162 transitivePeerDependencies: 9163 - scheduler 9164 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)": 9166 dependencies: 9167 + "@fluentui/keyboard-keys": 9.0.8 9168 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9169 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9170 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9171 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9172 + "@fluentui/react-theme": 9.2.0 9173 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9174 + "@griffel/react": 1.5.30(react@18.3.1) 9175 + "@swc/helpers": 0.5.17 9176 + "@types/react": 19.2.0 9177 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9178 react: 18.3.1 9179 react-dom: 18.3.1(react@18.3.1) 9180 transitivePeerDependencies: 9181 - scheduler 9182 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)": 9184 dependencies: 9185 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9186 + "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9187 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9188 + "@fluentui/react-theme": 9.2.0 9189 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9190 + "@griffel/react": 1.5.30(react@18.3.1) 9191 + "@swc/helpers": 0.5.17 9192 + "@types/react": 18.3.25 9193 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9194 react: 18.3.1 9195 react-dom: 18.3.1(react@18.3.1) 9196 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)": 9198 dependencies: 9199 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9200 + "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9201 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9202 + "@fluentui/react-theme": 9.2.0 9203 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9204 + "@griffel/react": 1.5.30(react@18.3.1) 9205 + "@swc/helpers": 0.5.17 9206 + "@types/react": 19.2.0 9207 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9208 react: 18.3.1 9209 react-dom: 18.3.1(react@18.3.1) 9210 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)": 9212 dependencies: 9213 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9214 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9215 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9216 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9217 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9218 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9219 + "@fluentui/react-theme": 9.2.0 9220 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9221 + "@griffel/react": 1.5.30(react@18.3.1) 9222 + "@swc/helpers": 0.5.17 9223 + "@types/react": 18.3.25 9224 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9225 react: 18.3.1 9226 react-dom: 18.3.1(react@18.3.1) 9227 transitivePeerDependencies: 9228 - scheduler 9229 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)": 9231 dependencies: 9232 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9233 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9234 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9235 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9236 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9237 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9238 + "@fluentui/react-theme": 9.2.0 9239 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9240 + "@griffel/react": 1.5.30(react@18.3.1) 9241 + "@swc/helpers": 0.5.17 9242 + "@types/react": 19.2.0 9243 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9244 react: 18.3.1 9245 react-dom: 18.3.1(react@18.3.1) 9246 transitivePeerDependencies: 9247 - scheduler 9248 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)": 9250 dependencies: 9251 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9252 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9253 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9254 + "@fluentui/react-label": 9.3.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9255 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9256 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9257 + "@fluentui/react-theme": 9.2.0 9258 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9259 + "@griffel/react": 1.5.30(react@18.3.1) 9260 + "@swc/helpers": 0.5.17 9261 + "@types/react": 18.3.25 9262 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9263 react: 18.3.1 9264 react-dom: 18.3.1(react@18.3.1) 9265 transitivePeerDependencies: 9266 - scheduler 9267 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)": 9269 dependencies: 9270 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9271 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9272 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9273 + "@fluentui/react-label": 9.3.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9274 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9275 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9276 + "@fluentui/react-theme": 9.2.0 9277 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9278 + "@griffel/react": 1.5.30(react@18.3.1) 9279 + "@swc/helpers": 0.5.17 9280 + "@types/react": 19.2.0 9281 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9282 react: 18.3.1 9283 react-dom: 18.3.1(react@18.3.1) 9284 transitivePeerDependencies: 9285 - scheduler 9286 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)": 9288 dependencies: 9289 + "@fluentui/keyboard-keys": 9.0.8 9290 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9291 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9292 + "@fluentui/react-checkbox": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9293 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9294 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9295 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9296 + "@fluentui/react-radio": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9297 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9298 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9299 + "@fluentui/react-theme": 9.2.0 9300 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9301 + "@griffel/react": 1.5.30(react@18.3.1) 9302 + "@swc/helpers": 0.5.17 9303 + "@types/react": 18.3.25 9304 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9305 react: 18.3.1 9306 react-dom: 18.3.1(react@18.3.1) 9307 transitivePeerDependencies: 9308 - scheduler 9309 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)": 9311 dependencies: 9312 + "@fluentui/keyboard-keys": 9.0.8 9313 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9314 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9315 + "@fluentui/react-checkbox": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9316 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9317 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9318 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9319 + "@fluentui/react-radio": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9320 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9321 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9322 + "@fluentui/react-theme": 9.2.0 9323 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9324 + "@griffel/react": 1.5.30(react@18.3.1) 9325 + "@swc/helpers": 0.5.17 9326 + "@types/react": 19.2.0 9327 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9328 react: 18.3.1 9329 react-dom: 18.3.1(react@18.3.1) 9330 transitivePeerDependencies: 9331 - scheduler 9332 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)": 9334 dependencies: 9335 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9336 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9337 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9338 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9339 + "@fluentui/react-theme": 9.2.0 9340 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9341 + "@griffel/react": 1.5.30(react@18.3.1) 9342 + "@swc/helpers": 0.5.17 9343 + "@types/react": 18.3.25 9344 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9345 react: 18.3.1 9346 react-dom: 18.3.1(react@18.3.1) 9347 transitivePeerDependencies: 9348 - scheduler 9349 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)": 9351 dependencies: 9352 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9353 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9354 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9355 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9356 + "@fluentui/react-theme": 9.2.0 9357 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9358 + "@griffel/react": 1.5.30(react@18.3.1) 9359 + "@swc/helpers": 0.5.17 9360 + "@types/react": 19.2.0 9361 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9362 react: 18.3.1 9363 react-dom: 18.3.1(react@18.3.1) 9364 transitivePeerDependencies: 9365 - scheduler 9366 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)": 9368 dependencies: 9369 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9370 + "@fluentui/react-theme": 9.2.0 9371 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9372 + "@griffel/react": 1.5.30(react@18.3.1) 9373 + "@swc/helpers": 0.5.17 9374 + "@types/react": 18.3.25 9375 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9376 keyborg: 2.6.0 9377 react: 18.3.1 9378 react-dom: 18.3.1(react@18.3.1) 9379 tabster: 8.5.6 9380 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)": 9382 dependencies: 9383 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9384 + "@fluentui/react-theme": 9.2.0 9385 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9386 + "@griffel/react": 1.5.30(react@18.3.1) 9387 + "@swc/helpers": 0.5.17 9388 + "@types/react": 19.2.0 9389 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9390 keyborg: 2.6.0 9391 react: 18.3.1 9392 react-dom: 18.3.1(react@18.3.1) 9393 tabster: 8.5.6 9394 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)": 9396 dependencies: 9397 + "@fluentui/keyboard-keys": 9.0.8 9398 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9399 + "@fluentui/react-combobox": 9.16.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9400 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9401 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9402 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9403 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9404 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9405 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9406 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9407 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9408 + "@fluentui/react-tags": 9.7.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9409 + "@fluentui/react-theme": 9.2.0 9410 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9411 + "@griffel/react": 1.5.30(react@18.3.1) 9412 + "@swc/helpers": 0.5.17 9413 + "@types/react": 18.3.25 9414 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9415 react: 18.3.1 9416 react-dom: 18.3.1(react@18.3.1) 9417 transitivePeerDependencies: 9418 - scheduler 9419 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)": 9421 dependencies: 9422 + "@fluentui/keyboard-keys": 9.0.8 9423 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9424 + "@fluentui/react-combobox": 9.16.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9425 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9426 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9427 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9428 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9429 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9430 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9431 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9432 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9433 + "@fluentui/react-tags": 9.7.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9434 + "@fluentui/react-theme": 9.2.0 9435 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9436 + "@griffel/react": 1.5.30(react@18.3.1) 9437 + "@swc/helpers": 0.5.17 9438 + "@types/react": 19.2.0 9439 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9440 react: 18.3.1 9441 react-dom: 18.3.1(react@18.3.1) 9442 transitivePeerDependencies: 9443 - scheduler 9444 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)": 9446 dependencies: 9447 + "@fluentui/keyboard-keys": 9.0.8 9448 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9449 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9450 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9451 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9452 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9453 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9454 + "@fluentui/react-theme": 9.2.0 9455 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9456 + "@griffel/react": 1.5.30(react@18.3.1) 9457 + "@swc/helpers": 0.5.17 9458 + "@types/react": 18.3.25 9459 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9460 react: 18.3.1 9461 react-dom: 18.3.1(react@18.3.1) 9462 transitivePeerDependencies: 9463 - scheduler 9464 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)": 9466 dependencies: 9467 + "@fluentui/keyboard-keys": 9.0.8 9468 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9469 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9470 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9471 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9472 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9473 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9474 + "@fluentui/react-theme": 9.2.0 9475 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9476 + "@griffel/react": 1.5.30(react@18.3.1) 9477 + "@swc/helpers": 0.5.17 9478 + "@types/react": 19.2.0 9479 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9480 react: 18.3.1 9481 react-dom: 18.3.1(react@18.3.1) 9482 transitivePeerDependencies: 9483 - scheduler 9484 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)": 9486 dependencies: 9487 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9488 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9489 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9490 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9491 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9492 + "@fluentui/react-popover": 9.12.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9493 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9494 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9495 + "@fluentui/react-theme": 9.2.0 9496 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9497 + "@griffel/react": 1.5.30(react@18.3.1) 9498 + "@swc/helpers": 0.5.17 9499 + "@types/react": 18.3.25 9500 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9501 react: 18.3.1 9502 react-dom: 18.3.1(react@18.3.1) 9503 use-sync-external-store: 1.6.0(react@18.3.1) 9504 transitivePeerDependencies: 9505 - scheduler 9506 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)": 9508 dependencies: 9509 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9510 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9511 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9512 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9513 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9514 + "@fluentui/react-popover": 9.12.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9515 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9516 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9517 + "@fluentui/react-theme": 9.2.0 9518 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9519 + "@griffel/react": 1.5.30(react@18.3.1) 9520 + "@swc/helpers": 0.5.17 9521 + "@types/react": 19.2.0 9522 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9523 react: 18.3.1 9524 react-dom: 18.3.1(react@18.3.1) 9525 use-sync-external-store: 1.6.0(react@18.3.1) 9526 transitivePeerDependencies: 9527 - scheduler 9528 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)": 9530 dependencies: 9531 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9532 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9533 + "@fluentui/react-theme": 9.2.0 9534 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9535 + "@griffel/react": 1.5.30(react@18.3.1) 9536 + "@swc/helpers": 0.5.17 9537 + "@types/react": 18.3.25 9538 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9539 react: 18.3.1 9540 react-dom: 18.3.1(react@18.3.1) 9541 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)": 9543 dependencies: 9544 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9545 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9546 + "@fluentui/react-theme": 9.2.0 9547 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9548 + "@griffel/react": 1.5.30(react@18.3.1) 9549 + "@swc/helpers": 0.5.17 9550 + "@types/react": 19.2.0 9551 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9552 react: 18.3.1 9553 react-dom: 18.3.1(react@18.3.1) 9554 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)": 9556 dependencies: 9557 + "@fluentui/react-field": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9558 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9559 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9560 + "@fluentui/react-theme": 9.2.0 9561 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9562 + "@griffel/react": 1.5.30(react@18.3.1) 9563 + "@swc/helpers": 0.5.17 9564 + "@types/react": 18.3.25 9565 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9566 react: 18.3.1 9567 react-dom: 18.3.1(react@18.3.1) 9568 transitivePeerDependencies: 9569 - scheduler 9570 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)": 9572 dependencies: 9573 + "@fluentui/react-field": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9574 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9575 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9576 + "@fluentui/react-theme": 9.2.0 9577 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9578 + "@griffel/react": 1.5.30(react@18.3.1) 9579 + "@swc/helpers": 0.5.17 9580 + "@types/react": 19.2.0 9581 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9582 react: 18.3.1 9583 react-dom: 18.3.1(react@18.3.1) 9584 transitivePeerDependencies: 9585 - scheduler 9586 9587 + "@fluentui/react-theme@9.2.0": 9588 dependencies: 9589 + "@fluentui/tokens": 1.0.0-alpha.22 9590 + "@swc/helpers": 0.5.17 9591 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)": 9593 dependencies: 9594 + "@fluentui/keyboard-keys": 9.0.8 9595 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9596 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9597 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9598 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9599 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9600 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9601 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9602 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9603 + "@fluentui/react-theme": 9.2.0 9604 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9605 + "@griffel/react": 1.5.30(react@18.3.1) 9606 + "@swc/helpers": 0.5.17 9607 + "@types/react": 18.3.25 9608 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9609 react: 18.3.1 9610 react-dom: 18.3.1(react@18.3.1) 9611 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)": 9613 dependencies: 9614 + "@fluentui/keyboard-keys": 9.0.8 9615 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9616 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9617 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9618 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9619 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9620 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9621 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9622 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9623 + "@fluentui/react-theme": 9.2.0 9624 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9625 + "@griffel/react": 1.5.30(react@18.3.1) 9626 + "@swc/helpers": 0.5.17 9627 + "@types/react": 19.2.0 9628 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9629 react: 18.3.1 9630 react-dom: 18.3.1(react@18.3.1) 9631 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)": 9633 dependencies: 9634 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9635 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9636 + "@fluentui/react-divider": 9.4.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9637 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9638 + "@fluentui/react-radio": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9639 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9640 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9641 + "@fluentui/react-theme": 9.2.0 9642 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9643 + "@griffel/react": 1.5.30(react@18.3.1) 9644 + "@swc/helpers": 0.5.17 9645 + "@types/react": 18.3.25 9646 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9647 react: 18.3.1 9648 react-dom: 18.3.1(react@18.3.1) 9649 transitivePeerDependencies: 9650 - scheduler 9651 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)": 9653 dependencies: 9654 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9655 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9656 + "@fluentui/react-divider": 9.4.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9657 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9658 + "@fluentui/react-radio": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9659 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9660 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9661 + "@fluentui/react-theme": 9.2.0 9662 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9663 + "@griffel/react": 1.5.30(react@18.3.1) 9664 + "@swc/helpers": 0.5.17 9665 + "@types/react": 19.2.0 9666 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9667 react: 18.3.1 9668 react-dom: 18.3.1(react@18.3.1) 9669 transitivePeerDependencies: 9670 - scheduler 9671 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)": 9673 dependencies: 9674 + "@fluentui/keyboard-keys": 9.0.8 9675 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9676 + "@fluentui/react-portal": 9.8.3(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9677 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9678 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9679 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9680 + "@fluentui/react-theme": 9.2.0 9681 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9682 + "@griffel/react": 1.5.30(react@18.3.1) 9683 + "@swc/helpers": 0.5.17 9684 + "@types/react": 18.3.25 9685 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9686 react: 18.3.1 9687 react-dom: 18.3.1(react@18.3.1) 9688 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)": 9690 dependencies: 9691 + "@fluentui/keyboard-keys": 9.0.8 9692 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9693 + "@fluentui/react-portal": 9.8.3(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9694 + "@fluentui/react-positioning": 9.20.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9695 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9696 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9697 + "@fluentui/react-theme": 9.2.0 9698 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9699 + "@griffel/react": 1.5.30(react@18.3.1) 9700 + "@swc/helpers": 0.5.17 9701 + "@types/react": 19.2.0 9702 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9703 react: 18.3.1 9704 react-dom: 18.3.1(react@18.3.1) 9705 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)": 9707 dependencies: 9708 + "@fluentui/keyboard-keys": 9.0.8 9709 + "@fluentui/react-aria": 9.17.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9710 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9711 + "@fluentui/react-button": 9.6.7(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9712 + "@fluentui/react-checkbox": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9713 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9714 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9715 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9716 + "@fluentui/react-motion": 9.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9717 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9718 + "@fluentui/react-radio": 9.5.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9719 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9720 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9721 + "@fluentui/react-theme": 9.2.0 9722 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9723 + "@griffel/react": 1.5.30(react@18.3.1) 9724 + "@swc/helpers": 0.5.17 9725 + "@types/react": 18.3.25 9726 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9727 react: 18.3.1 9728 react-dom: 18.3.1(react@18.3.1) 9729 transitivePeerDependencies: 9730 - scheduler 9731 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)": 9733 dependencies: 9734 + "@fluentui/keyboard-keys": 9.0.8 9735 + "@fluentui/react-aria": 9.17.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9736 + "@fluentui/react-avatar": 9.9.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9737 + "@fluentui/react-button": 9.6.7(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9738 + "@fluentui/react-checkbox": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9739 + "@fluentui/react-context-selector": 9.2.8(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9740 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 9741 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9742 + "@fluentui/react-motion": 9.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9743 + "@fluentui/react-motion-components-preview": 0.11.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9744 + "@fluentui/react-radio": 9.5.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 9745 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9746 + "@fluentui/react-tabster": 9.26.6(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 9747 + "@fluentui/react-theme": 9.2.0 9748 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9749 + "@griffel/react": 1.5.30(react@18.3.1) 9750 + "@swc/helpers": 0.5.17 9751 + "@types/react": 19.2.0 9752 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9753 react: 18.3.1 9754 react-dom: 18.3.1(react@18.3.1) 9755 transitivePeerDependencies: 9756 - scheduler 9757 9758 + "@fluentui/react-utilities@9.25.0(@types/react@18.3.25)(react@18.3.1)": 9759 dependencies: 9760 + "@fluentui/keyboard-keys": 9.0.8 9761 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9762 + "@swc/helpers": 0.5.17 9763 + "@types/react": 18.3.25 9764 react: 18.3.1 9765 9766 + "@fluentui/react-utilities@9.25.0(@types/react@19.2.0)(react@18.3.1)": 9767 dependencies: 9768 + "@fluentui/keyboard-keys": 9.0.8 9769 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9770 + "@swc/helpers": 0.5.17 9771 + "@types/react": 19.2.0 9772 react: 18.3.1 9773 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)": 9775 dependencies: 9776 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@18.3.25)(react@18.3.1) 9777 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@18.3.25)(react@18.3.1) 9778 + "@fluentui/react-utilities": 9.25.0(@types/react@18.3.25)(react@18.3.1) 9779 + "@griffel/react": 1.5.30(react@18.3.1) 9780 + "@swc/helpers": 0.5.17 9781 + "@types/react": 18.3.25 9782 + "@types/react-dom": 18.3.7(@types/react@18.3.25) 9783 react: 18.3.1 9784 react-dom: 18.3.1(react@18.3.1) 9785 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)": 9787 dependencies: 9788 + "@fluentui/react-jsx-runtime": 9.2.1(@types/react@19.2.0)(react@18.3.1) 9789 + "@fluentui/react-shared-contexts": 9.25.2(@types/react@19.2.0)(react@18.3.1) 9790 + "@fluentui/react-utilities": 9.25.0(@types/react@19.2.0)(react@18.3.1) 9791 + "@griffel/react": 1.5.30(react@18.3.1) 9792 + "@swc/helpers": 0.5.17 9793 + "@types/react": 19.2.0 9794 + "@types/react-dom": 19.2.0(@types/react@19.2.0) 9795 react: 18.3.1 9796 react-dom: 18.3.1(react@18.3.1) 9797 9798 + "@fluentui/tokens@1.0.0-alpha.22": 9799 dependencies: 9800 + "@swc/helpers": 0.5.17 9801 9802 + "@griffel/core@1.19.2": 9803 dependencies: 9804 + "@emotion/hash": 0.9.2 9805 + "@griffel/style-types": 1.3.0 9806 csstype: 3.1.3 9807 rtl-css-js: 1.16.1 9808 stylis: 4.3.6 9809 tslib: 2.8.1 9810 9811 + "@griffel/react@1.5.30(react@18.3.1)": 9812 dependencies: 9813 + "@griffel/core": 1.19.2 9814 react: 18.3.1 9815 tslib: 2.8.1 9816 9817 + "@griffel/style-types@1.3.0": 9818 dependencies: 9819 csstype: 3.1.3 9820 9821 + "@img/colour@1.0.0": 9822 optional: true 9823 9824 + "@img/sharp-darwin-arm64@0.34.4": 9825 optionalDependencies: 9826 + "@img/sharp-libvips-darwin-arm64": 1.2.3 9827 optional: true 9828 9829 + "@img/sharp-darwin-x64@0.34.4": 9830 optionalDependencies: 9831 + "@img/sharp-libvips-darwin-x64": 1.2.3 9832 optional: true 9833 9834 + "@img/sharp-libvips-darwin-arm64@1.2.3": 9835 optional: true 9836 9837 + "@img/sharp-libvips-darwin-x64@1.2.3": 9838 optional: true 9839 9840 + "@img/sharp-libvips-linux-arm64@1.2.3": 9841 optional: true 9842 9843 + "@img/sharp-libvips-linux-arm@1.2.3": 9844 optional: true 9845 9846 + "@img/sharp-libvips-linux-ppc64@1.2.3": 9847 optional: true 9848 9849 + "@img/sharp-libvips-linux-s390x@1.2.3": 9850 optional: true 9851 9852 + "@img/sharp-libvips-linux-x64@1.2.3": 9853 optional: true 9854 9855 + "@img/sharp-libvips-linuxmusl-arm64@1.2.3": 9856 optional: true 9857 9858 + "@img/sharp-libvips-linuxmusl-x64@1.2.3": 9859 optional: true 9860 9861 + "@img/sharp-linux-arm64@0.34.4": 9862 optionalDependencies: 9863 + "@img/sharp-libvips-linux-arm64": 1.2.3 9864 optional: true 9865 9866 + "@img/sharp-linux-arm@0.34.4": 9867 optionalDependencies: 9868 + "@img/sharp-libvips-linux-arm": 1.2.3 9869 optional: true 9870 9871 + "@img/sharp-linux-ppc64@0.34.4": 9872 optionalDependencies: 9873 + "@img/sharp-libvips-linux-ppc64": 1.2.3 9874 optional: true 9875 9876 + "@img/sharp-linux-s390x@0.34.4": 9877 optionalDependencies: 9878 + "@img/sharp-libvips-linux-s390x": 1.2.3 9879 optional: true 9880 9881 + "@img/sharp-linux-x64@0.34.4": 9882 optionalDependencies: 9883 + "@img/sharp-libvips-linux-x64": 1.2.3 9884 optional: true 9885 9886 + "@img/sharp-linuxmusl-arm64@0.34.4": 9887 optionalDependencies: 9888 + "@img/sharp-libvips-linuxmusl-arm64": 1.2.3 9889 optional: true 9890 9891 + "@img/sharp-linuxmusl-x64@0.34.4": 9892 optionalDependencies: 9893 + "@img/sharp-libvips-linuxmusl-x64": 1.2.3 9894 optional: true 9895 9896 + "@img/sharp-wasm32@0.34.4": 9897 dependencies: 9898 + "@emnapi/runtime": 1.5.0 9899 optional: true 9900 9901 + "@img/sharp-win32-arm64@0.34.4": 9902 optional: true 9903 9904 + "@img/sharp-win32-ia32@0.34.4": 9905 optional: true 9906 9907 + "@img/sharp-win32-x64@0.34.4": 9908 optional: true 9909 9910 + "@inquirer/ansi@1.0.0": {} 9911 9912 + "@inquirer/checkbox@4.2.4(@types/node@20.19.19)": 9913 dependencies: 9914 + "@inquirer/ansi": 1.0.0 9915 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9916 + "@inquirer/figures": 1.0.13 9917 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 9918 yoctocolors-cjs: 2.1.3 9919 optionalDependencies: 9920 + "@types/node": 20.19.19 9921 9922 + "@inquirer/confirm@5.1.18(@types/node@20.19.19)": 9923 dependencies: 9924 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9925 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 9926 optionalDependencies: 9927 + "@types/node": 20.19.19 9928 9929 + "@inquirer/core@10.2.2(@types/node@20.19.19)": 9930 dependencies: 9931 + "@inquirer/ansi": 1.0.0 9932 + "@inquirer/figures": 1.0.13 9933 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 9934 cli-width: 4.1.0 9935 mute-stream: 2.0.0 9936 signal-exit: 4.1.0 9937 wrap-ansi: 6.2.0 9938 yoctocolors-cjs: 2.1.3 9939 optionalDependencies: 9940 + "@types/node": 20.19.19 9941 9942 + "@inquirer/editor@4.2.20(@types/node@20.19.19)": 9943 dependencies: 9944 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9945 + "@inquirer/external-editor": 1.0.2(@types/node@20.19.19) 9946 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 9947 optionalDependencies: 9948 + "@types/node": 20.19.19 9949 9950 + "@inquirer/expand@4.0.20(@types/node@20.19.19)": 9951 dependencies: 9952 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9953 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 9954 yoctocolors-cjs: 2.1.3 9955 optionalDependencies: 9956 + "@types/node": 20.19.19 9957 9958 + "@inquirer/external-editor@1.0.2(@types/node@20.19.19)": 9959 dependencies: 9960 chardet: 2.1.0 9961 iconv-lite: 0.7.0 9962 optionalDependencies: 9963 + "@types/node": 20.19.19 9964 9965 + "@inquirer/figures@1.0.13": {} 9966 9967 + "@inquirer/input@4.2.4(@types/node@20.19.19)": 9968 dependencies: 9969 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9970 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 9971 optionalDependencies: 9972 + "@types/node": 20.19.19 9973 9974 + "@inquirer/number@3.0.20(@types/node@20.19.19)": 9975 dependencies: 9976 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9977 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 9978 optionalDependencies: 9979 + "@types/node": 20.19.19 9980 9981 + "@inquirer/password@4.0.20(@types/node@20.19.19)": 9982 dependencies: 9983 + "@inquirer/ansi": 1.0.0 9984 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 9985 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 9986 optionalDependencies: 9987 + "@types/node": 20.19.19 9988 9989 + "@inquirer/prompts@7.8.6(@types/node@20.19.19)": 9990 dependencies: 9991 + "@inquirer/checkbox": 4.2.4(@types/node@20.19.19) 9992 + "@inquirer/confirm": 5.1.18(@types/node@20.19.19) 9993 + "@inquirer/editor": 4.2.20(@types/node@20.19.19) 9994 + "@inquirer/expand": 4.0.20(@types/node@20.19.19) 9995 + "@inquirer/input": 4.2.4(@types/node@20.19.19) 9996 + "@inquirer/number": 3.0.20(@types/node@20.19.19) 9997 + "@inquirer/password": 4.0.20(@types/node@20.19.19) 9998 + "@inquirer/rawlist": 4.1.8(@types/node@20.19.19) 9999 + "@inquirer/search": 3.1.3(@types/node@20.19.19) 10000 + "@inquirer/select": 4.3.4(@types/node@20.19.19) 10001 optionalDependencies: 10002 + "@types/node": 20.19.19 10003 10004 + "@inquirer/rawlist@4.1.8(@types/node@20.19.19)": 10005 dependencies: 10006 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 10007 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 10008 yoctocolors-cjs: 2.1.3 10009 optionalDependencies: 10010 + "@types/node": 20.19.19 10011 10012 + "@inquirer/search@3.1.3(@types/node@20.19.19)": 10013 dependencies: 10014 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 10015 + "@inquirer/figures": 1.0.13 10016 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 10017 yoctocolors-cjs: 2.1.3 10018 optionalDependencies: 10019 + "@types/node": 20.19.19 10020 10021 + "@inquirer/select@4.3.4(@types/node@20.19.19)": 10022 dependencies: 10023 + "@inquirer/ansi": 1.0.0 10024 + "@inquirer/core": 10.2.2(@types/node@20.19.19) 10025 + "@inquirer/figures": 1.0.13 10026 + "@inquirer/type": 3.0.8(@types/node@20.19.19) 10027 yoctocolors-cjs: 2.1.3 10028 optionalDependencies: 10029 + "@types/node": 20.19.19 10030 10031 + "@inquirer/type@3.0.8(@types/node@20.19.19)": 10032 optionalDependencies: 10033 + "@types/node": 20.19.19 10034 10035 + "@ipld/dag-cbor@7.0.3": 10036 dependencies: 10037 cborg: 1.10.2 10038 multiformats: 9.9.0 10039 10040 + "@isaacs/fs-minipass@4.0.1": 10041 dependencies: 10042 minipass: 7.1.2 10043 10044 + "@jest/schemas@29.6.3": 10045 dependencies: 10046 + "@sinclair/typebox": 0.27.8 10047 10048 + "@jridgewell/gen-mapping@0.3.13": 10049 dependencies: 10050 + "@jridgewell/sourcemap-codec": 1.5.5 10051 + "@jridgewell/trace-mapping": 0.3.31 10052 10053 + "@jridgewell/remapping@2.3.5": 10054 dependencies: 10055 + "@jridgewell/gen-mapping": 0.3.13 10056 + "@jridgewell/trace-mapping": 0.3.31 10057 10058 + "@jridgewell/resolve-uri@3.1.2": {} 10059 10060 + "@jridgewell/sourcemap-codec@1.5.5": {} 10061 10062 + "@jridgewell/trace-mapping@0.3.31": 10063 dependencies: 10064 + "@jridgewell/resolve-uri": 3.1.2 10065 + "@jridgewell/sourcemap-codec": 1.5.5 10066 10067 + "@jspm/core@2.1.0": {} 10068 10069 + "@noble/curves@1.9.7": 10070 dependencies: 10071 + "@noble/hashes": 1.8.0 10072 10073 + "@noble/hashes@1.8.0": {} 10074 10075 + "@nodelib/fs.scandir@2.1.5": 10076 dependencies: 10077 + "@nodelib/fs.stat": 2.0.5 10078 run-parallel: 1.2.0 10079 10080 + "@nodelib/fs.stat@2.0.5": {} 10081 10082 + "@nodelib/fs.walk@1.2.8": 10083 dependencies: 10084 + "@nodelib/fs.scandir": 2.1.5 10085 fastq: 1.19.1 10086 10087 + "@oslojs/encoding@1.1.0": {} 10088 10089 + "@rolldown/pluginutils@1.0.0-beta.27": {} 10090 10091 + "@rollup/pluginutils@5.3.0(rollup@4.52.4)": 10092 dependencies: 10093 + "@types/estree": 1.0.8 10094 estree-walker: 2.0.2 10095 picomatch: 4.0.3 10096 optionalDependencies: 10097 rollup: 4.52.4 10098 10099 + "@rollup/rollup-android-arm-eabi@4.52.4": 10100 optional: true 10101 10102 + "@rollup/rollup-android-arm64@4.52.4": 10103 optional: true 10104 10105 + "@rollup/rollup-darwin-arm64@4.52.4": 10106 optional: true 10107 10108 + "@rollup/rollup-darwin-x64@4.52.4": 10109 optional: true 10110 10111 + "@rollup/rollup-freebsd-arm64@4.52.4": 10112 optional: true 10113 10114 + "@rollup/rollup-freebsd-x64@4.52.4": 10115 optional: true 10116 10117 + "@rollup/rollup-linux-arm-gnueabihf@4.52.4": 10118 optional: true 10119 10120 + "@rollup/rollup-linux-arm-musleabihf@4.52.4": 10121 optional: true 10122 10123 + "@rollup/rollup-linux-arm64-gnu@4.52.4": 10124 optional: true 10125 10126 + "@rollup/rollup-linux-arm64-musl@4.52.4": 10127 optional: true 10128 10129 + "@rollup/rollup-linux-loong64-gnu@4.52.4": 10130 optional: true 10131 10132 + "@rollup/rollup-linux-ppc64-gnu@4.52.4": 10133 optional: true 10134 10135 + "@rollup/rollup-linux-riscv64-gnu@4.52.4": 10136 optional: true 10137 10138 + "@rollup/rollup-linux-riscv64-musl@4.52.4": 10139 optional: true 10140 10141 + "@rollup/rollup-linux-s390x-gnu@4.52.4": 10142 optional: true 10143 10144 + "@rollup/rollup-linux-x64-gnu@4.40.0": 10145 optional: true 10146 10147 + "@rollup/rollup-linux-x64-gnu@4.52.4": 10148 optional: true 10149 10150 + "@rollup/rollup-linux-x64-musl@4.52.4": 10151 optional: true 10152 10153 + "@rollup/rollup-openharmony-arm64@4.52.4": 10154 optional: true 10155 10156 + "@rollup/rollup-win32-arm64-msvc@4.52.4": 10157 optional: true 10158 10159 + "@rollup/rollup-win32-ia32-msvc@4.52.4": 10160 optional: true 10161 10162 + "@rollup/rollup-win32-x64-gnu@4.52.4": 10163 optional: true 10164 10165 + "@rollup/rollup-win32-x64-msvc@4.52.4": 10166 optional: true 10167 10168 + "@scarf/scarf@1.4.0": {} 10169 10170 + "@shikijs/core@3.13.0": 10171 dependencies: 10172 + "@shikijs/types": 3.13.0 10173 + "@shikijs/vscode-textmate": 10.0.2 10174 + "@types/hast": 3.0.4 10175 hast-util-to-html: 9.0.5 10176 10177 + "@shikijs/engine-javascript@3.13.0": 10178 dependencies: 10179 + "@shikijs/types": 3.13.0 10180 + "@shikijs/vscode-textmate": 10.0.2 10181 oniguruma-to-es: 4.3.3 10182 10183 + "@shikijs/engine-oniguruma@3.13.0": 10184 dependencies: 10185 + "@shikijs/types": 3.13.0 10186 + "@shikijs/vscode-textmate": 10.0.2 10187 10188 + "@shikijs/langs@3.13.0": 10189 dependencies: 10190 + "@shikijs/types": 3.13.0 10191 10192 + "@shikijs/themes@3.13.0": 10193 dependencies: 10194 + "@shikijs/types": 3.13.0 10195 10196 + "@shikijs/types@3.13.0": 10197 dependencies: 10198 + "@shikijs/vscode-textmate": 10.0.2 10199 + "@types/hast": 3.0.4 10200 10201 + "@shikijs/vscode-textmate@10.0.2": {} 10202 10203 + "@sinclair/typebox@0.27.8": {} 10204 10205 + "@sindresorhus/merge-streams@2.3.0": {} 10206 10207 + "@swc/helpers@0.5.17": 10208 dependencies: 10209 tslib: 2.8.1 10210 10211 + "@ts-morph/common@0.25.0": 10212 dependencies: 10213 minimatch: 9.0.5 10214 path-browserify: 1.0.1 10215 tinyglobby: 0.2.15 10216 10217 + "@types/babel__core@7.20.5": 10218 dependencies: 10219 + "@babel/parser": 7.28.4 10220 + "@babel/types": 7.28.4 10221 + "@types/babel__generator": 7.27.0 10222 + "@types/babel__template": 7.4.4 10223 + "@types/babel__traverse": 7.28.0 10224 10225 + "@types/babel__generator@7.27.0": 10226 dependencies: 10227 + "@babel/types": 7.28.4 10228 10229 + "@types/babel__template@7.4.4": 10230 dependencies: 10231 + "@babel/parser": 7.28.4 10232 + "@babel/types": 7.28.4 10233 10234 + "@types/babel__traverse@7.28.0": 10235 dependencies: 10236 + "@babel/types": 7.28.4 10237 10238 + "@types/debug@4.1.12": 10239 dependencies: 10240 + "@types/ms": 2.1.0 10241 10242 + "@types/estree@1.0.8": {} 10243 10244 + "@types/fontkit@2.0.8": 10245 dependencies: 10246 + "@types/node": 20.19.19 10247 10248 + "@types/hast@3.0.4": 10249 dependencies: 10250 + "@types/unist": 3.0.3 10251 10252 + "@types/json-schema@7.0.15": {} 10253 10254 + "@types/mdast@4.0.4": 10255 dependencies: 10256 + "@types/unist": 3.0.3 10257 10258 + "@types/ms@2.1.0": {} 10259 10260 + "@types/nlcst@2.0.3": 10261 dependencies: 10262 + "@types/unist": 3.0.3 10263 10264 + "@types/node@20.19.19": 10265 dependencies: 10266 undici-types: 6.21.0 10267 10268 + "@types/prop-types@15.7.15": {} 10269 10270 + "@types/react-dom@18.3.7(@types/react@18.3.25)": 10271 dependencies: 10272 + "@types/react": 18.3.25 10273 10274 + "@types/react-dom@19.2.0(@types/react@19.2.0)": 10275 dependencies: 10276 + "@types/react": 19.2.0 10277 10278 + "@types/react@18.3.25": 10279 dependencies: 10280 + "@types/prop-types": 15.7.15 10281 csstype: 3.1.3 10282 10283 + "@types/react@19.2.0": 10284 dependencies: 10285 csstype: 3.1.3 10286 10287 + "@types/unist@3.0.3": {} 10288 10289 + "@typespec/asset-emitter@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 10290 dependencies: 10291 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10292 10293 + "@typespec/bundler@0.4.4(@types/node@20.19.19)": 10294 dependencies: 10295 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10296 esbuild: 0.25.10 10297 esbuild-plugins-node-modules-polyfill: 1.7.1(esbuild@0.25.10) 10298 node-stdlib-browser: 1.3.1 10299 picocolors: 1.1.1 10300 yargs: 18.0.0 10301 transitivePeerDependencies: 10302 + - "@types/node" 10303 10304 + "@typespec/compiler@1.4.0(@types/node@20.19.19)": 10305 dependencies: 10306 + "@babel/code-frame": 7.27.1 10307 + "@inquirer/prompts": 7.8.6(@types/node@20.19.19) 10308 ajv: 8.17.1 10309 change-case: 5.4.4 10310 env-paths: 3.0.0 ··· 10321 yaml: 2.8.1 10322 yargs: 18.0.0 10323 transitivePeerDependencies: 10324 + - "@types/node" 10325 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)": 10327 dependencies: 10328 + "@fluentui/react-components": 9.69.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10329 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 10330 + "@fluentui/react-list": 9.6.1(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10331 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10332 react: 18.3.1 10333 react-dom: 18.3.1(react@18.3.1) 10334 react-hotkeys-hook: 5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 10335 transitivePeerDependencies: 10336 + - "@types/react" 10337 + - "@types/react-dom" 10338 - scheduler 10339 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)": 10341 dependencies: 10342 + "@fluentui/react-components": 9.69.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10343 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 10344 + "@fluentui/react-list": 9.6.1(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10345 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10346 react: 18.3.1 10347 react-dom: 18.3.1(react@18.3.1) 10348 react-hotkeys-hook: 5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1) 10349 transitivePeerDependencies: 10350 + - "@types/react" 10351 + - "@types/react-dom" 10352 - scheduler 10353 10354 + "@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 10355 dependencies: 10356 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10357 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)))": 10359 dependencies: 10360 + "@apidevtools/swagger-parser": 12.0.0(openapi-types@12.1.3) 10361 + "@typespec/asset-emitter": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10362 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10363 + "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10364 + "@typespec/openapi": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10365 openapi-types: 12.1.3 10366 yaml: 2.8.1 10367 optionalDependencies: 10368 + "@typespec/versioning": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10369 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)))": 10371 dependencies: 10372 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10373 + "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10374 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)": 10376 dependencies: 10377 + "@fluentui/react-components": 9.69.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10378 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 10379 + "@typespec/bundler": 0.4.4(@types/node@20.19.19) 10380 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10381 + "@typespec/html-program-viewer": 0.74.0(@types/react-dom@18.3.7(@types/react@18.3.25))(@types/react@18.3.25)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0) 10382 + "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10383 + "@typespec/openapi": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10384 + "@typespec/openapi3": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))(@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))))(@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10385 + "@typespec/protobuf": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10386 + "@typespec/rest": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10387 + "@typespec/versioning": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10388 clsx: 2.1.1 10389 debounce: 2.2.0 10390 lzutf8: 0.6.3 ··· 10396 vscode-languageserver: 9.0.1 10397 vscode-languageserver-textdocument: 1.0.12 10398 transitivePeerDependencies: 10399 + - "@types/node" 10400 + - "@types/react" 10401 + - "@types/react-dom" 10402 + - "@typespec/json-schema" 10403 + - "@typespec/streams" 10404 + - "@typespec/xml" 10405 - scheduler 10406 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)": 10408 dependencies: 10409 + "@fluentui/react-components": 9.69.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(scheduler@0.27.0) 10410 + "@fluentui/react-icons": 2.0.311(react@18.3.1) 10411 + "@typespec/bundler": 0.4.4(@types/node@20.19.19) 10412 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10413 + "@typespec/html-program-viewer": 0.74.0(@types/react-dom@19.2.0(@types/react@19.2.0))(@types/react@19.2.0)(@typespec/compiler@1.4.0(@types/node@20.19.19))(scheduler@0.27.0) 10414 + "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10415 + "@typespec/openapi": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10416 + "@typespec/openapi3": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)))(@typespec/openapi@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))))(@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10417 + "@typespec/protobuf": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10418 + "@typespec/rest": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))(@typespec/http@1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19))) 10419 + "@typespec/versioning": 0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10420 clsx: 2.1.1 10421 debounce: 2.2.0 10422 lzutf8: 0.6.3 ··· 10428 vscode-languageserver: 9.0.1 10429 vscode-languageserver-textdocument: 1.0.12 10430 transitivePeerDependencies: 10431 + - "@types/node" 10432 + - "@types/react" 10433 + - "@types/react-dom" 10434 + - "@typespec/json-schema" 10435 + - "@typespec/streams" 10436 + - "@typespec/xml" 10437 - scheduler 10438 10439 + "@typespec/protobuf@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 10440 dependencies: 10441 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10442 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)))": 10444 dependencies: 10445 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10446 + "@typespec/http": 1.4.0(@typespec/compiler@1.4.0(@types/node@20.19.19)) 10447 10448 + "@typespec/versioning@0.74.0(@typespec/compiler@1.4.0(@types/node@20.19.19))": 10449 dependencies: 10450 + "@typespec/compiler": 1.4.0(@types/node@20.19.19) 10451 10452 + "@ungap/structured-clone@1.3.0": {} 10453 10454 + "@vitejs/plugin-react@4.7.0(vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1))": 10455 dependencies: 10456 + "@babel/core": 7.28.4 10457 + "@babel/plugin-transform-react-jsx-self": 7.27.1(@babel/core@7.28.4) 10458 + "@babel/plugin-transform-react-jsx-source": 7.27.1(@babel/core@7.28.4) 10459 + "@rolldown/pluginutils": 1.0.0-beta.27 10460 + "@types/babel__core": 7.20.5 10461 react-refresh: 0.17.0 10462 vite: 6.3.6(@types/node@20.19.19)(yaml@2.8.1) 10463 transitivePeerDependencies: 10464 - supports-color 10465 10466 + "@vitest/expect@1.6.1": 10467 dependencies: 10468 + "@vitest/spy": 1.6.1 10469 + "@vitest/utils": 1.6.1 10470 chai: 4.5.0 10471 10472 + "@vitest/runner@1.6.1": 10473 dependencies: 10474 + "@vitest/utils": 1.6.1 10475 p-limit: 5.0.0 10476 pathe: 1.1.2 10477 10478 + "@vitest/snapshot@1.6.1": 10479 dependencies: 10480 magic-string: 0.30.19 10481 pathe: 1.1.2 10482 pretty-format: 29.7.0 10483 10484 + "@vitest/spy@1.6.1": 10485 dependencies: 10486 tinyspy: 2.2.1 10487 10488 + "@vitest/utils@1.6.1": 10489 dependencies: 10490 diff-sequences: 29.6.3 10491 estree-walker: 3.0.3 ··· 10565 10566 astro@5.14.1(@types/node@20.19.19)(rollup@4.52.4)(typescript@5.9.3)(yaml@2.8.1): 10567 dependencies: 10568 + "@astrojs/compiler": 2.13.0 10569 + "@astrojs/internal-helpers": 0.7.3 10570 + "@astrojs/markdown-remark": 6.3.7 10571 + "@astrojs/telemetry": 3.3.0 10572 + "@capsizecss/unpack": 2.4.0 10573 + "@oslojs/encoding": 1.1.0 10574 + "@rollup/pluginutils": 5.3.0(rollup@4.52.4) 10575 acorn: 8.15.0 10576 aria-query: 5.3.2 10577 axobject-query: 4.1.0 ··· 10630 optionalDependencies: 10631 sharp: 0.34.4 10632 transitivePeerDependencies: 10633 + - "@azure/app-configuration" 10634 + - "@azure/cosmos" 10635 + - "@azure/data-tables" 10636 + - "@azure/identity" 10637 + - "@azure/keyvault-secrets" 10638 + - "@azure/storage-blob" 10639 + - "@capacitor/preferences" 10640 + - "@deno/kv" 10641 + - "@netlify/blobs" 10642 + - "@planetscale/database" 10643 + - "@types/node" 10644 + - "@upstash/redis" 10645 + - "@vercel/blob" 10646 + - "@vercel/functions" 10647 + - "@vercel/kv" 10648 - aws4fetch 10649 - db0 10650 - encoding ··· 10832 dependencies: 10833 node-gyp-build-optional-packages: 5.1.1 10834 optionalDependencies: 10835 + "@cbor-extract/cbor-extract-darwin-arm64": 2.2.0 10836 + "@cbor-extract/cbor-extract-darwin-x64": 2.2.0 10837 + "@cbor-extract/cbor-extract-linux-arm": 2.2.0 10838 + "@cbor-extract/cbor-extract-linux-arm64": 2.2.0 10839 + "@cbor-extract/cbor-extract-linux-x64": 2.2.0 10840 + "@cbor-extract/cbor-extract-win32-x64": 2.2.0 10841 optional: true 10842 10843 cbor-x@1.6.0: ··· 11158 11159 esbuild-plugins-node-modules-polyfill@1.7.1(esbuild@0.25.10): 11160 dependencies: 11161 + "@jspm/core": 2.1.0 11162 esbuild: 0.25.10 11163 local-pkg: 1.1.2 11164 resolve.exports: 2.0.3 11165 11166 esbuild@0.21.5: 11167 optionalDependencies: 11168 + "@esbuild/aix-ppc64": 0.21.5 11169 + "@esbuild/android-arm": 0.21.5 11170 + "@esbuild/android-arm64": 0.21.5 11171 + "@esbuild/android-x64": 0.21.5 11172 + "@esbuild/darwin-arm64": 0.21.5 11173 + "@esbuild/darwin-x64": 0.21.5 11174 + "@esbuild/freebsd-arm64": 0.21.5 11175 + "@esbuild/freebsd-x64": 0.21.5 11176 + "@esbuild/linux-arm": 0.21.5 11177 + "@esbuild/linux-arm64": 0.21.5 11178 + "@esbuild/linux-ia32": 0.21.5 11179 + "@esbuild/linux-loong64": 0.21.5 11180 + "@esbuild/linux-mips64el": 0.21.5 11181 + "@esbuild/linux-ppc64": 0.21.5 11182 + "@esbuild/linux-riscv64": 0.21.5 11183 + "@esbuild/linux-s390x": 0.21.5 11184 + "@esbuild/linux-x64": 0.21.5 11185 + "@esbuild/netbsd-x64": 0.21.5 11186 + "@esbuild/openbsd-x64": 0.21.5 11187 + "@esbuild/sunos-x64": 0.21.5 11188 + "@esbuild/win32-arm64": 0.21.5 11189 + "@esbuild/win32-ia32": 0.21.5 11190 + "@esbuild/win32-x64": 0.21.5 11191 11192 esbuild@0.25.10: 11193 optionalDependencies: 11194 + "@esbuild/aix-ppc64": 0.25.10 11195 + "@esbuild/android-arm": 0.25.10 11196 + "@esbuild/android-arm64": 0.25.10 11197 + "@esbuild/android-x64": 0.25.10 11198 + "@esbuild/darwin-arm64": 0.25.10 11199 + "@esbuild/darwin-x64": 0.25.10 11200 + "@esbuild/freebsd-arm64": 0.25.10 11201 + "@esbuild/freebsd-x64": 0.25.10 11202 + "@esbuild/linux-arm": 0.25.10 11203 + "@esbuild/linux-arm64": 0.25.10 11204 + "@esbuild/linux-ia32": 0.25.10 11205 + "@esbuild/linux-loong64": 0.25.10 11206 + "@esbuild/linux-mips64el": 0.25.10 11207 + "@esbuild/linux-ppc64": 0.25.10 11208 + "@esbuild/linux-riscv64": 0.25.10 11209 + "@esbuild/linux-s390x": 0.25.10 11210 + "@esbuild/linux-x64": 0.25.10 11211 + "@esbuild/netbsd-arm64": 0.25.10 11212 + "@esbuild/netbsd-x64": 0.25.10 11213 + "@esbuild/openbsd-arm64": 0.25.10 11214 + "@esbuild/openbsd-x64": 0.25.10 11215 + "@esbuild/openharmony-arm64": 0.25.10 11216 + "@esbuild/sunos-x64": 0.25.10 11217 + "@esbuild/win32-arm64": 0.25.10 11218 + "@esbuild/win32-ia32": 0.25.10 11219 + "@esbuild/win32-x64": 0.25.10 11220 11221 escalade@3.2.0: {} 11222 ··· 11228 11229 estree-walker@3.0.3: 11230 dependencies: 11231 + "@types/estree": 1.0.8 11232 11233 etag@1.8.1: {} 11234 ··· 11309 11310 fast-glob@3.3.3: 11311 dependencies: 11312 + "@nodelib/fs.stat": 2.0.5 11313 + "@nodelib/fs.walk": 1.2.8 11314 glob-parent: 5.1.2 11315 merge2: 1.4.1 11316 micromatch: 4.0.8 ··· 11352 11353 fontace@0.3.0: 11354 dependencies: 11355 + "@types/fontkit": 2.0.8 11356 fontkit: 2.0.4 11357 11358 fontkit@2.0.4: 11359 dependencies: 11360 + "@swc/helpers": 0.5.17 11361 brotli: 1.3.3 11362 clone: 2.1.2 11363 dfa: 1.2.0 ··· 11420 11421 globby@14.1.0: 11422 dependencies: 11423 + "@sindresorhus/merge-streams": 2.3.0 11424 fast-glob: 3.3.3 11425 ignore: 7.0.5 11426 path-type: 6.0.0 ··· 11478 11479 hast-util-from-html@2.0.3: 11480 dependencies: 11481 + "@types/hast": 3.0.4 11482 devlop: 1.1.0 11483 hast-util-from-parse5: 8.0.3 11484 parse5: 7.3.0 ··· 11487 11488 hast-util-from-parse5@8.0.3: 11489 dependencies: 11490 + "@types/hast": 3.0.4 11491 + "@types/unist": 3.0.3 11492 devlop: 1.1.0 11493 hastscript: 9.0.1 11494 property-information: 7.1.0 ··· 11498 11499 hast-util-is-element@3.0.0: 11500 dependencies: 11501 + "@types/hast": 3.0.4 11502 11503 hast-util-parse-selector@4.0.0: 11504 dependencies: 11505 + "@types/hast": 3.0.4 11506 11507 hast-util-raw@9.1.0: 11508 dependencies: 11509 + "@types/hast": 3.0.4 11510 + "@types/unist": 3.0.3 11511 + "@ungap/structured-clone": 1.3.0 11512 hast-util-from-parse5: 8.0.3 11513 hast-util-to-parse5: 8.0.0 11514 html-void-elements: 3.0.0 ··· 11522 11523 hast-util-to-html@9.0.5: 11524 dependencies: 11525 + "@types/hast": 3.0.4 11526 + "@types/unist": 3.0.3 11527 ccount: 2.0.1 11528 comma-separated-tokens: 2.0.3 11529 hast-util-whitespace: 3.0.0 ··· 11536 11537 hast-util-to-parse5@8.0.0: 11538 dependencies: 11539 + "@types/hast": 3.0.4 11540 comma-separated-tokens: 2.0.3 11541 devlop: 1.1.0 11542 property-information: 6.5.0 ··· 11546 11547 hast-util-to-text@4.0.2: 11548 dependencies: 11549 + "@types/hast": 3.0.4 11550 + "@types/unist": 3.0.3 11551 hast-util-is-element: 3.0.0 11552 unist-util-find-after: 5.0.0 11553 11554 hast-util-whitespace@3.0.0: 11555 dependencies: 11556 + "@types/hast": 3.0.4 11557 11558 hastscript@9.0.1: 11559 dependencies: 11560 + "@types/hast": 3.0.4 11561 comma-separated-tokens: 2.0.3 11562 hast-util-parse-selector: 4.0.0 11563 property-information: 7.1.0 ··· 11737 11738 magic-string@0.30.19: 11739 dependencies: 11740 + "@jridgewell/sourcemap-codec": 1.5.5 11741 11742 magicast@0.3.5: 11743 dependencies: 11744 + "@babel/parser": 7.28.4 11745 + "@babel/types": 7.28.4 11746 source-map-js: 1.2.1 11747 11748 map-stream@0.1.0: {} ··· 11759 11760 mdast-util-definitions@6.0.0: 11761 dependencies: 11762 + "@types/mdast": 4.0.4 11763 + "@types/unist": 3.0.3 11764 unist-util-visit: 5.0.0 11765 11766 mdast-util-find-and-replace@3.0.2: 11767 dependencies: 11768 + "@types/mdast": 4.0.4 11769 escape-string-regexp: 5.0.0 11770 unist-util-is: 6.0.0 11771 unist-util-visit-parents: 6.0.1 11772 11773 mdast-util-from-markdown@2.0.2: 11774 dependencies: 11775 + "@types/mdast": 4.0.4 11776 + "@types/unist": 3.0.3 11777 decode-named-character-reference: 1.2.0 11778 devlop: 1.1.0 11779 mdast-util-to-string: 4.0.0 ··· 11789 11790 mdast-util-gfm-autolink-literal@2.0.1: 11791 dependencies: 11792 + "@types/mdast": 4.0.4 11793 ccount: 2.0.1 11794 devlop: 1.1.0 11795 mdast-util-find-and-replace: 3.0.2 ··· 11797 11798 mdast-util-gfm-footnote@2.1.0: 11799 dependencies: 11800 + "@types/mdast": 4.0.4 11801 devlop: 1.1.0 11802 mdast-util-from-markdown: 2.0.2 11803 mdast-util-to-markdown: 2.1.2 ··· 11807 11808 mdast-util-gfm-strikethrough@2.0.0: 11809 dependencies: 11810 + "@types/mdast": 4.0.4 11811 mdast-util-from-markdown: 2.0.2 11812 mdast-util-to-markdown: 2.1.2 11813 transitivePeerDependencies: ··· 11815 11816 mdast-util-gfm-table@2.0.0: 11817 dependencies: 11818 + "@types/mdast": 4.0.4 11819 devlop: 1.1.0 11820 markdown-table: 3.0.4 11821 mdast-util-from-markdown: 2.0.2 ··· 11825 11826 mdast-util-gfm-task-list-item@2.0.0: 11827 dependencies: 11828 + "@types/mdast": 4.0.4 11829 devlop: 1.1.0 11830 mdast-util-from-markdown: 2.0.2 11831 mdast-util-to-markdown: 2.1.2 ··· 11846 11847 mdast-util-phrasing@4.1.0: 11848 dependencies: 11849 + "@types/mdast": 4.0.4 11850 unist-util-is: 6.0.0 11851 11852 mdast-util-to-hast@13.2.0: 11853 dependencies: 11854 + "@types/hast": 3.0.4 11855 + "@types/mdast": 4.0.4 11856 + "@ungap/structured-clone": 1.3.0 11857 devlop: 1.1.0 11858 micromark-util-sanitize-uri: 2.0.1 11859 trim-lines: 3.0.1 ··· 11863 11864 mdast-util-to-markdown@2.1.2: 11865 dependencies: 11866 + "@types/mdast": 4.0.4 11867 + "@types/unist": 3.0.3 11868 longest-streak: 3.1.0 11869 mdast-util-phrasing: 4.1.0 11870 mdast-util-to-string: 4.0.0 ··· 11875 11876 mdast-util-to-string@4.0.0: 11877 dependencies: 11878 + "@types/mdast": 4.0.4 11879 11880 mdn-data@2.12.2: {} 11881 ··· 12060 12061 micromark@4.0.2: 12062 dependencies: 12063 + "@types/debug": 4.1.12 12064 debug: 4.4.3 12065 decode-named-character-reference: 1.2.0 12066 devlop: 1.1.0 ··· 12143 12144 nlcst-to-string@4.0.0: 12145 dependencies: 12146 + "@types/nlcst": 2.0.3 12147 12148 node-cleanup@2.1.2: {} 12149 ··· 12285 12286 parse-latin@7.0.0: 12287 dependencies: 12288 + "@types/nlcst": 2.0.3 12289 + "@types/unist": 3.0.3 12290 nlcst-to-string: 4.0.0 12291 unist-util-modify-children: 4.0.0 12292 unist-util-visit-children: 3.0.0 ··· 12388 12389 pretty-format@29.7.0: 12390 dependencies: 12391 + "@jest/schemas": 29.6.3 12392 ansi-styles: 5.2.0 12393 react-is: 18.3.1 12394 ··· 12476 12477 react-error-boundary@6.0.0(react@18.3.1): 12478 dependencies: 12479 + "@babel/runtime": 7.28.4 12480 react: 18.3.1 12481 12482 react-hotkeys-hook@5.1.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1): ··· 12536 12537 rehype-parse@9.0.1: 12538 dependencies: 12539 + "@types/hast": 3.0.4 12540 hast-util-from-html: 2.0.3 12541 unified: 11.0.5 12542 12543 rehype-raw@7.0.0: 12544 dependencies: 12545 + "@types/hast": 3.0.4 12546 hast-util-raw: 9.1.0 12547 vfile: 6.0.3 12548 12549 rehype-stringify@10.0.1: 12550 dependencies: 12551 + "@types/hast": 3.0.4 12552 hast-util-to-html: 9.0.5 12553 unified: 11.0.5 12554 12555 rehype@13.0.2: 12556 dependencies: 12557 + "@types/hast": 3.0.4 12558 rehype-parse: 9.0.1 12559 rehype-stringify: 10.0.1 12560 unified: 11.0.5 12561 12562 remark-gfm@4.0.1: 12563 dependencies: 12564 + "@types/mdast": 4.0.4 12565 mdast-util-gfm: 3.1.0 12566 micromark-extension-gfm: 3.0.0 12567 remark-parse: 11.0.0 ··· 12572 12573 remark-parse@11.0.0: 12574 dependencies: 12575 + "@types/mdast": 4.0.4 12576 mdast-util-from-markdown: 2.0.2 12577 micromark-util-types: 2.0.2 12578 unified: 11.0.5 ··· 12581 12582 remark-rehype@11.1.2: 12583 dependencies: 12584 + "@types/hast": 3.0.4 12585 + "@types/mdast": 4.0.4 12586 mdast-util-to-hast: 13.2.0 12587 unified: 11.0.5 12588 vfile: 6.0.3 ··· 12596 12597 remark-stringify@11.0.0: 12598 dependencies: 12599 + "@types/mdast": 4.0.4 12600 mdast-util-to-markdown: 2.1.2 12601 unified: 11.0.5 12602 ··· 12616 12617 retext-latin@4.0.0: 12618 dependencies: 12619 + "@types/nlcst": 2.0.3 12620 parse-latin: 7.0.0 12621 unified: 11.0.5 12622 12623 retext-smartypants@6.2.0: 12624 dependencies: 12625 + "@types/nlcst": 2.0.3 12626 nlcst-to-string: 4.0.0 12627 unist-util-visit: 5.0.0 12628 12629 retext-stringify@4.0.0: 12630 dependencies: 12631 + "@types/nlcst": 2.0.3 12632 nlcst-to-string: 4.0.0 12633 unified: 11.0.5 12634 12635 retext@9.0.0: 12636 dependencies: 12637 + "@types/nlcst": 2.0.3 12638 retext-latin: 4.0.0 12639 retext-stringify: 4.0.0 12640 unified: 11.0.5 ··· 12648 12649 rollup@4.52.4: 12650 dependencies: 12651 + "@types/estree": 1.0.8 12652 optionalDependencies: 12653 + "@rollup/rollup-android-arm-eabi": 4.52.4 12654 + "@rollup/rollup-android-arm64": 4.52.4 12655 + "@rollup/rollup-darwin-arm64": 4.52.4 12656 + "@rollup/rollup-darwin-x64": 4.52.4 12657 + "@rollup/rollup-freebsd-arm64": 4.52.4 12658 + "@rollup/rollup-freebsd-x64": 4.52.4 12659 + "@rollup/rollup-linux-arm-gnueabihf": 4.52.4 12660 + "@rollup/rollup-linux-arm-musleabihf": 4.52.4 12661 + "@rollup/rollup-linux-arm64-gnu": 4.52.4 12662 + "@rollup/rollup-linux-arm64-musl": 4.52.4 12663 + "@rollup/rollup-linux-loong64-gnu": 4.52.4 12664 + "@rollup/rollup-linux-ppc64-gnu": 4.52.4 12665 + "@rollup/rollup-linux-riscv64-gnu": 4.52.4 12666 + "@rollup/rollup-linux-riscv64-musl": 4.52.4 12667 + "@rollup/rollup-linux-s390x-gnu": 4.52.4 12668 + "@rollup/rollup-linux-x64-gnu": 4.52.4 12669 + "@rollup/rollup-linux-x64-musl": 4.52.4 12670 + "@rollup/rollup-openharmony-arm64": 4.52.4 12671 + "@rollup/rollup-win32-arm64-msvc": 4.52.4 12672 + "@rollup/rollup-win32-ia32-msvc": 4.52.4 12673 + "@rollup/rollup-win32-x64-gnu": 4.52.4 12674 + "@rollup/rollup-win32-x64-msvc": 4.52.4 12675 fsevents: 2.3.3 12676 12677 rtl-css-js@1.16.1: 12678 dependencies: 12679 + "@babel/runtime": 7.28.4 12680 12681 run-parallel@1.2.0: 12682 dependencies: ··· 12758 12759 sharp@0.34.4: 12760 dependencies: 12761 + "@img/colour": 1.0.0 12762 detect-libc: 2.1.1 12763 semver: 7.7.2 12764 optionalDependencies: 12765 + "@img/sharp-darwin-arm64": 0.34.4 12766 + "@img/sharp-darwin-x64": 0.34.4 12767 + "@img/sharp-libvips-darwin-arm64": 1.2.3 12768 + "@img/sharp-libvips-darwin-x64": 1.2.3 12769 + "@img/sharp-libvips-linux-arm": 1.2.3 12770 + "@img/sharp-libvips-linux-arm64": 1.2.3 12771 + "@img/sharp-libvips-linux-ppc64": 1.2.3 12772 + "@img/sharp-libvips-linux-s390x": 1.2.3 12773 + "@img/sharp-libvips-linux-x64": 1.2.3 12774 + "@img/sharp-libvips-linuxmusl-arm64": 1.2.3 12775 + "@img/sharp-libvips-linuxmusl-x64": 1.2.3 12776 + "@img/sharp-linux-arm": 0.34.4 12777 + "@img/sharp-linux-arm64": 0.34.4 12778 + "@img/sharp-linux-ppc64": 0.34.4 12779 + "@img/sharp-linux-s390x": 0.34.4 12780 + "@img/sharp-linux-x64": 0.34.4 12781 + "@img/sharp-linuxmusl-arm64": 0.34.4 12782 + "@img/sharp-linuxmusl-x64": 0.34.4 12783 + "@img/sharp-wasm32": 0.34.4 12784 + "@img/sharp-win32-arm64": 0.34.4 12785 + "@img/sharp-win32-ia32": 0.34.4 12786 + "@img/sharp-win32-x64": 0.34.4 12787 optional: true 12788 12789 shebang-command@2.0.0: ··· 12796 12797 shiki@3.13.0: 12798 dependencies: 12799 + "@shikijs/core": 3.13.0 12800 + "@shikijs/engine-javascript": 3.13.0 12801 + "@shikijs/engine-oniguruma": 3.13.0 12802 + "@shikijs/langs": 3.13.0 12803 + "@shikijs/themes": 3.13.0 12804 + "@shikijs/types": 3.13.0 12805 + "@shikijs/vscode-textmate": 10.0.2 12806 + "@types/hast": 3.0.4 12807 12808 side-channel-list@1.0.0: 12809 dependencies: ··· 12934 12935 swagger-ui-dist@5.29.3: 12936 dependencies: 12937 + "@scarf/scarf": 1.4.0 12938 12939 tabster@8.5.6: 12940 dependencies: 12941 keyborg: 2.6.0 12942 tslib: 2.8.1 12943 optionalDependencies: 12944 + "@rollup/rollup-linux-x64-gnu": 4.40.0 12945 12946 tar@7.5.1: 12947 dependencies: 12948 + "@isaacs/fs-minipass": 4.0.1 12949 chownr: 3.0.0 12950 minipass: 7.1.2 12951 minizlib: 3.1.0 ··· 13004 13005 ts-morph@24.0.0: 13006 dependencies: 13007 + "@ts-morph/common": 0.25.0 13008 code-block-writer: 13.0.3 13009 13010 tsc-watch@7.2.0(typescript@5.9.3): ··· 13066 13067 unified@11.0.5: 13068 dependencies: 13069 + "@types/unist": 3.0.3 13070 bail: 2.0.2 13071 devlop: 1.1.0 13072 extend: 3.0.2 ··· 13082 13083 unist-util-find-after@5.0.0: 13084 dependencies: 13085 + "@types/unist": 3.0.3 13086 unist-util-is: 6.0.0 13087 13088 unist-util-is@6.0.0: 13089 dependencies: 13090 + "@types/unist": 3.0.3 13091 13092 unist-util-modify-children@4.0.0: 13093 dependencies: 13094 + "@types/unist": 3.0.3 13095 array-iterate: 2.0.1 13096 13097 unist-util-position@5.0.0: 13098 dependencies: 13099 + "@types/unist": 3.0.3 13100 13101 unist-util-remove-position@5.0.0: 13102 dependencies: 13103 + "@types/unist": 3.0.3 13104 unist-util-visit: 5.0.0 13105 13106 unist-util-stringify-position@4.0.0: 13107 dependencies: 13108 + "@types/unist": 3.0.3 13109 13110 unist-util-visit-children@3.0.0: 13111 dependencies: 13112 + "@types/unist": 3.0.3 13113 13114 unist-util-visit-parents@6.0.1: 13115 dependencies: 13116 + "@types/unist": 3.0.3 13117 unist-util-is: 6.0.0 13118 13119 unist-util-visit@5.0.0: 13120 dependencies: 13121 + "@types/unist": 3.0.3 13122 unist-util-is: 6.0.0 13123 unist-util-visit-parents: 6.0.1 13124 ··· 13166 13167 vfile-location@5.0.3: 13168 dependencies: 13169 + "@types/unist": 3.0.3 13170 vfile: 6.0.3 13171 13172 vfile-message@4.0.3: 13173 dependencies: 13174 + "@types/unist": 3.0.3 13175 unist-util-stringify-position: 4.0.0 13176 13177 vfile@6.0.3: 13178 dependencies: 13179 + "@types/unist": 3.0.3 13180 vfile-message: 4.0.3 13181 13182 vite-node@1.6.1(@types/node@20.19.19): ··· 13187 picocolors: 1.1.1 13188 vite: 5.4.20(@types/node@20.19.19) 13189 transitivePeerDependencies: 13190 + - "@types/node" 13191 - less 13192 - lightningcss 13193 - sass ··· 13203 postcss: 8.5.6 13204 rollup: 4.52.4 13205 optionalDependencies: 13206 + "@types/node": 20.19.19 13207 fsevents: 2.3.3 13208 13209 vite@6.3.6(@types/node@20.19.19)(yaml@2.8.1): ··· 13215 rollup: 4.52.4 13216 tinyglobby: 0.2.15 13217 optionalDependencies: 13218 + "@types/node": 20.19.19 13219 fsevents: 2.3.3 13220 yaml: 2.8.1 13221 ··· 13225 13226 vitest@1.6.1(@types/node@20.19.19): 13227 dependencies: 13228 + "@vitest/expect": 1.6.1 13229 + "@vitest/runner": 1.6.1 13230 + "@vitest/snapshot": 1.6.1 13231 + "@vitest/spy": 1.6.1 13232 + "@vitest/utils": 1.6.1 13233 acorn-walk: 8.3.4 13234 chai: 4.5.0 13235 debug: 4.4.3 ··· 13246 vite-node: 1.6.1(@types/node@20.19.19) 13247 why-is-node-running: 2.3.0 13248 optionalDependencies: 13249 + "@types/node": 20.19.19 13250 transitivePeerDependencies: 13251 - less 13252 - lightningcss