├── tsconfig.json ├── .prettierrc.yaml ├── eslint.config.mjs ├── jest.config.cjs ├── src ├── index.ts ├── MatrixReference │ ├── index.ts │ ├── Permalinks.test.ts │ ├── MatrixUserID.ts │ ├── MatrixGlob.ts │ ├── Permalinks.ts │ └── MatrixRoomReference.ts └── StringlyTypedMatrix │ ├── index.ts │ ├── StringEventID.ts │ ├── StringRoomID.ts │ ├── StringServerName.ts │ ├── StringlyTypedMatrix.test.ts │ ├── StringRoomAlias.ts │ └── StringUserID.ts ├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── release-package.yml │ └── checks.yml ├── README.md ├── REUSE.toml ├── LICENSES ├── MIT.txt ├── CC0-1.0.txt ├── Apache-2.0.txt └── CC-BY-SA-4.0.txt ├── .pre-commit-config.yaml ├── package.json ├── CHANGELOG.md ├── .gitignore └── yarn.lock /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "@gnuxie/tsconfig/tsconfig.json", 3 | "compilerOptions": { 4 | "declarationDir": "dist", 5 | "outDir": "dist" 6 | } 7 | } 8 | -------------------------------------------------------------------------------- /.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Gnuxie 2 | # 3 | # SPDX-License-Identifier: CC0-1.0 4 | 5 | tabWidth: 2 6 | useTabs: false 7 | semi: true 8 | trailingComma: "es5" 9 | -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2024 Gnuxie 2 | // 3 | // SPDX-License-Identifier: CC0-1.0 4 | 5 | import { gnuxieEslint } from "@gnuxie/tsconfig"; 6 | 7 | export default [ 8 | ...gnuxieEslint 9 | ]; 10 | -------------------------------------------------------------------------------- /jest.config.cjs: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2024 Gnuxie 2 | // 3 | // SPDX-License-Identifier: CC0-1.0 4 | 5 | module.exports = { 6 | preset: "ts-jest", 7 | testEnvironment: "node", 8 | roots: ["/src"], 9 | }; 10 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 - 2024 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from neightrix-basic-types 7 | // https://github.com/the-draupnir-project/neightrix-basic-types 8 | // 9 | 10 | export * from "./MatrixReference"; 11 | export * from "./StringlyTypedMatrix"; 12 | -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Gnuxie 2 | # 3 | # SPDX-License-Identifier: CC0-1.0 4 | 5 | root = true 6 | 7 | [*] 8 | charset = utf-8 9 | indent_style = space 10 | indent_size = 2 11 | end_of_line = lf 12 | insert_final_newline = true 13 | trim_trailing_whitespace = true 14 | 15 | [LICENSES/**.txt] 16 | trim_trailing_whitespace = false 17 | indent_style = space 18 | indent_size = unset 19 | -------------------------------------------------------------------------------- /src/MatrixReference/index.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 - 2024 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from neightrix-basic-types 7 | // https://github.com/the-draupnir-project/neightrix-basic-types 8 | // 9 | 10 | export * from "./MatrixGlob"; 11 | export * from "./MatrixRoomReference"; 12 | export * from "./MatrixUserID"; 13 | export * from "./Permalinks"; 14 | -------------------------------------------------------------------------------- /src/StringlyTypedMatrix/index.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 - 2025 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from neightrix-basic-types 7 | // https://github.com/the-draupnir-project/neightrix-basic-types 8 | // 9 | 10 | export * from "./StringEventID"; 11 | export * from "./StringRoomAlias"; 12 | export * from "./StringRoomID"; 13 | export * from "./StringServerName"; 14 | export * from "./StringUserID"; 15 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Gnuxie 2 | # 3 | # SPDX-License-Identifier: CC0-1.0 4 | 5 | version: 2 6 | updates: 7 | - package-ecosystem: 'npm' 8 | directory: '/' 9 | schedule: 10 | interval: 'monthly' 11 | groups: 12 | development-dependencies: 13 | dependency-type: 'development' 14 | production-dependencies: 15 | dependency-type: 'production' 16 | 17 | - package-ecosystem: 'github-actions' 18 | directory: '/' 19 | schedule: 20 | interval: 'monthly' 21 | groups: 22 | github-actions: 23 | patterns: 24 | - '*' 25 | -------------------------------------------------------------------------------- /.github/workflows/release-package.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Gnuxie 2 | # 3 | # SPDX-License-Identifier: CC0-1.0 4 | 5 | name: Node.js Package 6 | 7 | on: 8 | release: 9 | types: [created] 10 | 11 | jobs: 12 | publish-gpr: 13 | runs-on: ubuntu-latest 14 | permissions: 15 | packages: write 16 | contents: read 17 | steps: 18 | - uses: actions/checkout@v4 19 | - uses: actions/setup-node@v4 20 | with: 21 | node-version: 18 22 | registry-url: https://registry.npmjs.org 23 | - run: rm -rf node_modules && yarn install --frozen-lockfile 24 | - run: yarn publish --access public 25 | env: 26 | NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | # Matrix basic types 8 | 9 | Do you type [Matrix](https://matrix.org) roomIDs, userIDs, and eventIDs as 10 | `string`? 11 | 12 | Have you ever accidentally mixed the two up? 13 | 14 | Well fear no more, this library provides distinct types for each kind of 15 | identifier, and also a wrapper for the various ways of referring to rooms. 16 | 17 | ```typescript 18 | async function acceptInvitation( 19 | inviteSender: StringUserID, 20 | room: MatrixRoomID 21 | ): Promise> { 22 | console.log( 23 | `accepting invitation from ${inviteSender} to ${room.toPermalink()}` 24 | ); 25 | return await client.joinRoom(room.toRoomIDOrAlias(), room.getViaServers()); 26 | } 27 | ``` 28 | -------------------------------------------------------------------------------- /src/StringlyTypedMatrix/StringEventID.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 - 2025 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from matrix-basic-types 7 | // https://github.com/the-draupnir-project/matrix-basic-types 8 | // 9 | 10 | export type StringEventIDBrand = { 11 | readonly StringEventID: unique symbol; 12 | }; 13 | export type StringEventID = string & StringEventIDBrand; 14 | 15 | export function isStringEventID(string: string): string is StringEventID { 16 | return string.startsWith("$"); 17 | } 18 | 19 | export function StringEventID( 20 | value: string 21 | ): T extends StringEventID ? StringEventID : never { 22 | if (isStringEventID(value)) { 23 | return value as T extends StringEventID ? StringEventID : never; 24 | } 25 | throw new TypeError("Not a valid StringEventID"); 26 | } 27 | -------------------------------------------------------------------------------- /.github/workflows/checks.yml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Gnuxie 2 | # 3 | # SPDX-License-Identifier: CC0-1.0 4 | 5 | name: Checks 6 | 7 | on: 8 | push: 9 | branches: [main] 10 | pull_request: 11 | branches: [main] 12 | 13 | jobs: 14 | lint: 15 | name: Lint 16 | runs-on: ubuntu-latest 17 | steps: 18 | - uses: actions/checkout@v4 19 | - name: Specifically use node LTS. 20 | uses: actions/setup-node@v4 21 | with: 22 | node-version: "18" 23 | - run: yarn install 24 | - run: yarn build 25 | - run: yarn lint 26 | unit: 27 | name: Unit Tests 28 | runs-on: ubuntu-latest 29 | steps: 30 | - uses: actions/checkout@v4 31 | 32 | - name: Specifically use node LTS. 33 | uses: actions/setup-node@v4 34 | with: 35 | node-version: "18" 36 | - run: yarn install 37 | - run: yarn build 38 | - run: yarn test 39 | -------------------------------------------------------------------------------- /REUSE.toml: -------------------------------------------------------------------------------- 1 | version = 1 2 | SPDX-PackageName = "@the-draupnir-project/matrix-basic-types" 3 | SPDX-PackageSupplier = "Gnuxie " 4 | SPDX-PackageDownloadLocation = "https://github.com/the-draupnir-project/matrix-basic-types" 5 | 6 | [[annotations]] 7 | path = "tsconfig.json" 8 | precedence = "aggregate" 9 | SPDX-FileCopyrightText = "Gnuxie " 10 | SPDX-License-Identifier = "CC0-1.0" 11 | 12 | [[annotations]] 13 | path = "yarn.lock" 14 | precedence = "aggregate" 15 | SPDX-FileCopyrightText = "Gnuxie " 16 | SPDX-License-Identifier = "CC0-1.0" 17 | 18 | [[annotations]] 19 | path = "REUSE.toml" 20 | precedence = "aggregate" 21 | SPDX-FileCopyrightText = "Gnuxie " 22 | SPDX-License-Identifier = "CC0-1.0" 23 | 24 | [[annotations]] 25 | path = "package.json" 26 | precedence = "aggregate" 27 | SPDX-FileCopyrightText = "Gnuxie " 28 | SPDX-License-Identifier = "Apache-2.0" 29 | -------------------------------------------------------------------------------- /src/StringlyTypedMatrix/StringRoomID.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 - 2025 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from matrix-basic-types 7 | // https://github.com/the-draupnir-project/matrix-basic-types 8 | // 9 | 10 | const StringRoomIDRegex = /^!([^:]*:\S*|[a-zA-Z0-9-_]{43})/; 11 | 12 | export type StringRoomIDBrand = { 13 | readonly StringRoomID: unique symbol; 14 | }; 15 | export type StringRoomID = string & StringRoomIDBrand; 16 | 17 | export function isStringRoomID(string: string): string is StringRoomID { 18 | return StringRoomIDRegex.test(string); 19 | } 20 | 21 | export function StringRoomID( 22 | value: unknown 23 | ): T extends StringRoomID ? StringRoomID : never { 24 | if (typeof value === "string" && isStringRoomID(value)) { 25 | return value as T extends StringRoomID ? StringRoomID : never; 26 | } 27 | throw new TypeError("Not a valid StringRoomID"); 28 | } 29 | -------------------------------------------------------------------------------- /LICENSES/MIT.txt: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: 6 | 7 | The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. 8 | 9 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. 10 | -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Gnuxie 2 | # 3 | # SPDX-License-Identifier: CC0-1.0 4 | 5 | # See https://pre-commit.com for more information 6 | # See https://pre-commit.com/hooks.html for more hooks 7 | # See https://pre-commit.ci for more information 8 | ci: 9 | autoupdate_schedule: monthly 10 | skip: [yarn-lint] 11 | repos: 12 | - repo: https://github.com/pre-commit/pre-commit-hooks 13 | rev: v4.6.0 14 | hooks: 15 | - id: trailing-whitespace 16 | args: ["--markdown-linebreak-ext", "md"] 17 | exclude_types: [svg] 18 | - id: end-of-file-fixer 19 | - id: check-yaml 20 | - id: check-added-large-files 21 | - repo: https://github.com/editorconfig-checker/editorconfig-checker.python 22 | rev: "2.7.3" 23 | hooks: 24 | - id: editorconfig-checker 25 | alias: ec 26 | - repo: https://github.com/fsfe/reuse-tool 27 | rev: v4.0.3 28 | hooks: 29 | - id: reuse 30 | - repo: local 31 | hooks: 32 | - id: yarn-lint 33 | name: linter 34 | entry: yarn lint --cache --quiet 35 | language: system 36 | -------------------------------------------------------------------------------- /src/MatrixReference/Permalinks.test.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2024 Gnuxie 2 | // 3 | // SPDX-License-Identifier: MIT 4 | 5 | import { isError } from "@gnuxie/typescript-result"; 6 | import { 7 | MatrixEventReference, 8 | MatrixRoomReference, 9 | } from "./MatrixRoomReference"; 10 | 11 | it("Parses a MatrixRoomID", function () { 12 | const url = "https://matrix.to/#/!foo:example.com?via=example.com"; 13 | const parseResult = MatrixRoomReference.fromPermalink(url); 14 | if (isError(parseResult)) { 15 | throw new TypeError(`Stuff is broken mare`); 16 | } 17 | expect(parseResult.ok.toRoomIDOrAlias()).toBe("!foo:example.com"); 18 | }); 19 | 20 | it("Parses a MatrixRoomReference to an event", function () { 21 | const url = 22 | "https://matrix.to/#/!ljEauqZaRNkUHrjWpz%3Alocalhost%3A9999/%24Krd34VAtqnAi1GHL0CRVYBiMN4KTCaWEF_Zn3021kr8"; 23 | const parseResult = MatrixEventReference.fromPermalink(url); 24 | if (isError(parseResult)) { 25 | throw new TypeError(`Stuff is broken mare`); 26 | } 27 | expect(parseResult.ok.eventID).toBe( 28 | "$Krd34VAtqnAi1GHL0CRVYBiMN4KTCaWEF_Zn3021kr8" 29 | ); 30 | }); 31 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "@the-draupnir-project/matrix-basic-types", 3 | "version": "1.4.1", 4 | "main": "dist/index.js", 5 | "types": "dist/index.d.ts", 6 | "files": [ 7 | "dist" 8 | ], 9 | "author": { 10 | "name": "Gnuxie", 11 | "email": "Gnuxie@protonmail.com" 12 | }, 13 | "license": "Apache-2.0", 14 | "repository": { 15 | "url": "https://github.com/the-draupnir-project/matrix-basic-types.git", 16 | "type": "git" 17 | }, 18 | "private": false, 19 | "scripts": { 20 | "build": "rm -rf dist && yarn tsc --project tsconfig.json", 21 | "lint": "yarn eslint src && yarn prettier src --check", 22 | "prepare": "yarn build", 23 | "test": "yarn jest" 24 | }, 25 | "devDependencies": { 26 | "@eslint/js": "^9.8.0", 27 | "@gnuxie/tsconfig": "^0.5.3", 28 | "@types/eslint__js": "^8.42.3", 29 | "@types/glob-to-regexp": "^0.4.4", 30 | "@types/jest": "^29.5.12", 31 | "@types/node": "^22.0.0", 32 | "eslint": "^9.8.0", 33 | "jest": "^29.7.0", 34 | "prettier": "^3.3.3", 35 | "ts-jest": "^29.2.3", 36 | "typescript": "^5.5.4", 37 | "typescript-eslint": "^7.18.0" 38 | }, 39 | "dependencies": { 40 | "@gnuxie/typescript-result": "^1.0.0", 41 | "glob-to-regexp": "^0.4.1" 42 | } 43 | } 44 | -------------------------------------------------------------------------------- /src/MatrixReference/MatrixUserID.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Gnuxie 2 | // SPDX-FileCopyrightText: 2018 - 2022 Travis Ralston 3 | // 4 | // SPDX-License-Identifier: MIT 5 | // 6 | // SPDX-FileAttributionText: 7 | // This modified file incorporates work from matrix-bot-sdk 8 | // https://github.com/turt2live/matrix-bot-sdk 9 | // 10 | 11 | import { 12 | StringUserID, 13 | userLocalpart, 14 | userServerName, 15 | } from "../StringlyTypedMatrix"; 16 | import { StringServerName } from "../StringlyTypedMatrix/StringServerName"; 17 | import { Permalinks } from "./Permalinks"; 18 | 19 | export class MatrixUserID { 20 | public constructor(private readonly userID: StringUserID) { 21 | // nothing to do. 22 | } 23 | 24 | public static fromUserID(userID: StringUserID): MatrixUserID { 25 | return new MatrixUserID(userID); 26 | } 27 | 28 | public toString(): StringUserID { 29 | return this.userID; 30 | } 31 | 32 | public toPermalink(): string { 33 | return Permalinks.forUser(this.userID); 34 | } 35 | 36 | public get localpart(): string { 37 | return userLocalpart(this.userID); 38 | } 39 | 40 | public get serverName(): StringServerName { 41 | return userServerName(this.userID); 42 | } 43 | 44 | public isContainingGlobCharacters(): boolean { 45 | return /[*?]/.test(this.userID); 46 | } 47 | } 48 | -------------------------------------------------------------------------------- /src/StringlyTypedMatrix/StringServerName.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2025 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from matrix-basic-types 7 | // https://github.com/the-draupnir-project/matrix-basic-types 8 | // 9 | 10 | /** 11 | * Do NOT use this regex to verify incoming events because servers are fucking shit 12 | * and cannot validate anything when it counts. 13 | */ 14 | export const StringServerNameRegexPart = 15 | /(?:(?:\d{1,3}\.){3}\d{1,3}|\[[0-9A-Fa-f:.]{2,45}\]|[A-Za-z0-9.-]{1,255})(?::\d{1,5})?/; 16 | export const StringServerNameRegex = new RegExp( 17 | `^${StringServerNameRegexPart.source}$` 18 | ); 19 | 20 | export type StringServerNameBrand = { 21 | readonly StringServerName: unique symbol; 22 | }; 23 | export type StringServerName = string & StringServerNameBrand; 24 | 25 | export function isStringServerName(string: string): string is StringServerName { 26 | return StringServerNameRegex.test(string); 27 | } 28 | 29 | export function StringServerName( 30 | string: unknown 31 | ): T extends StringServerName ? StringServerName : never { 32 | if (typeof string === "string" && isStringServerName(string)) { 33 | return string as T extends StringServerName ? StringServerName : never; 34 | } 35 | throw new TypeError("Not a valid StringServerName"); 36 | } 37 | -------------------------------------------------------------------------------- /src/MatrixReference/MatrixGlob.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Gnuxie 2 | // SPDX-FileCopyrightText: 2018 - 2022 Travis Ralston 3 | // 4 | // SPDX-License-Identifier: MIT 5 | // 6 | // SPDX-FileAttributionText: 7 | // This modified file incorporates work from matrix-bot-sdk 8 | // https://github.com/turt2live/matrix-bot-sdk 9 | // 10 | 11 | import globToRegexp from "glob-to-regexp"; 12 | 13 | /** 14 | * Represents a common Matrix glob. This is commonly used 15 | * for server ACLs and similar functions. 16 | * @category Utilities 17 | */ 18 | export class MatrixGlob { 19 | /** 20 | * The regular expression which represents this glob. 21 | */ 22 | public readonly regex: RegExp; 23 | 24 | /** 25 | * Creates a new Matrix Glob 26 | * @param {string} glob The glob to convert. Eg: "*.example.org" 27 | */ 28 | constructor(glob: string) { 29 | const globRegex = globToRegexp(glob, { 30 | extended: false, 31 | globstar: false, 32 | }); 33 | 34 | // We need to convert `?` manually because globToRegexp's extended mode 35 | // does more than we want it to. 36 | const replaced = globRegex.toString().replace(/\\\?/g, "."); 37 | this.regex = new RegExp(replaced.substring(1, replaced.length - 1)); 38 | } 39 | 40 | /** 41 | * Tests the glob against a value, returning true if it matches. 42 | * @param {string} val The value to test. 43 | * @returns {boolean} True if the value matches the glob, false otherwise. 44 | */ 45 | public test(val: string): boolean { 46 | return this.regex.test(val); 47 | } 48 | } 49 | -------------------------------------------------------------------------------- /src/StringlyTypedMatrix/StringlyTypedMatrix.test.ts: -------------------------------------------------------------------------------- 1 | // Copyright 2024 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | import { 5 | StringRoomAlias, 6 | isStringRoomAlias, 7 | isStringRoomID, 8 | isStringUserID, 9 | roomAliasLocalpart, 10 | userServerName, 11 | userLocalpart, 12 | StringUserID, 13 | isStringServerName, 14 | roomAliasServerName, 15 | } from "./"; 16 | 17 | test("isStringUserID", function () { 18 | expect(isStringUserID("@foo:localhost:9999")).toBe(true); 19 | expect(isStringUserID("@foo@mastodon.social")).toBe(false); 20 | expect(isStringUserID("@ synapse is really bad :example.com")).toBe(true); 21 | }); 22 | 23 | test("StringUserID serverName", function () { 24 | expect(userServerName(StringUserID("@foo:localhost:9999"))).toBe( 25 | "localhost:9999" 26 | ); 27 | }); 28 | 29 | test("StringUserID localpart", function () { 30 | expect(userLocalpart(StringUserID("@foo:localhost:9999"))).toBe("foo"); 31 | }); 32 | 33 | test("StringRoomID", function () { 34 | expect(isStringRoomID("!foo:localhost:9999")).toBe(true); 35 | expect(isStringRoomID("@foo:localhost:9999")).toBe(false); 36 | }); 37 | 38 | test("StringRoomAlias", function () { 39 | expect(isStringRoomAlias("#foo:example.com")).toBe(true); 40 | expect(isStringRoomAlias("!foo:example.com")).toBe(false); 41 | }); 42 | 43 | test("StringRoomAlias roomAliasLocalpart", function () { 44 | expect(roomAliasLocalpart(StringRoomAlias("#foo:example.com"))).toBe("foo"); 45 | }); 46 | 47 | test("StringroomAlias serverName", function () { 48 | expect(roomAliasServerName(StringRoomAlias("#foo:localhost:9999"))).toBe( 49 | "localhost:9999" 50 | ); 51 | }); 52 | 53 | test("StringServerName", function () { 54 | expect(isStringServerName("example.com")).toBe(true); 55 | }); 56 | 57 | // test accessing server names!!!! 58 | -------------------------------------------------------------------------------- /src/StringlyTypedMatrix/StringRoomAlias.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 - 2025 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from matrix-basic-types 7 | // https://github.com/the-draupnir-project/matrix-basic-types 8 | // 9 | 10 | import { StringServerName } from "./StringServerName"; 11 | 12 | const StringRoomAliasRegex = 13 | /^#(?[^:]*):(?\S*)$/; 14 | 15 | export type StringRoomAliasBrand = { 16 | readonly StringRoomAlias: unique symbol; 17 | }; 18 | export type StringRoomAlias = string & StringRoomAliasBrand; 19 | export function StringRoomAlias( 20 | value: unknown 21 | ): T extends StringRoomAlias ? StringRoomAlias : never { 22 | if (typeof value === "string" && isStringRoomAlias(value)) { 23 | return value as T extends StringRoomAlias ? StringRoomAlias : never; 24 | } 25 | throw new TypeError("Not a valid StringRoomAlias"); 26 | } 27 | 28 | export function isStringRoomAlias(string: string): string is StringRoomAlias { 29 | return StringRoomAliasRegex.test(string); 30 | } 31 | 32 | export function roomAliasLocalpart(alias: StringRoomAlias): string { 33 | const match = StringRoomAliasRegex.exec(alias)?.groups?.roomAliasLocalpart; 34 | if (match === undefined) { 35 | throw new TypeError( 36 | "Somehow a StringRoomAlias was created that is invalid." 37 | ); 38 | } 39 | return match; 40 | } 41 | 42 | export function roomAliasServerName(alias: StringRoomAlias): StringServerName { 43 | const match = StringRoomAliasRegex.exec(alias)?.groups?.roomAliasServerName; 44 | if (match === undefined) { 45 | throw new TypeError( 46 | "Somehow a StringRoomAlias was created that is invalid." 47 | ); 48 | } 49 | return match as StringServerName; 50 | } 51 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- 1 | 6 | 7 | # Changelog 8 | 9 | All notable changes to this project will be documented in this file. 10 | 11 | The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), 12 | and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). 13 | 14 | ## [1.4.1] - 2025-10-01 15 | 16 | ### Added 17 | 18 | - `toPermalink` methods to `MatrixEventReference`. 19 | 20 | ## [1.4.0] - 2025-07-16 21 | 22 | ### Changed 23 | 24 | - `roomServerName` function has been removed. 25 | - room ID format changed to support room version's with room ID's that don't have server names. 26 | 27 | ## [1.3.0] 0 2025-03-21 28 | 29 | - Support extracting server names from everything 30 | - Export matrix.to url regex. 31 | 32 | ## [1.2.0] - 2025-03-03 33 | 34 | - Put a hard limit of 5 on the number of via servers allowed in a room reference. 35 | 36 | ## [1.1.0] - 2024-12-10 37 | 38 | ### Added 39 | 40 | - `StringRoomID`, `StringRoomAlias`, `StringUserID`, and 41 | `StringEventID` all now have functions to check if their argument is 42 | the associated type from `unknown`. Helpful for surrounding string 43 | literals in tests without using `as` to cast. 44 | 45 | ## [1.0.0] - 2024-12-10 46 | 47 | ### Changed 48 | 49 | - The branding technique for string types such as `StringUserID` has 50 | been changed to enable compatibility with libraries like zod, which 51 | seem to want to structurally replicate types rather than refer to 52 | them by name. 53 | 54 | ## [0.2.0] - 2024-09-11 55 | 56 | ### Changed 57 | 58 | - Updated to `@gnuxie/typescript-result@1.0.0`. 59 | 60 | ## [0.1.1] - 2024-07-30 61 | 62 | ### Added 63 | 64 | - GitHub workflow file for actually releasing the package. 65 | 66 | ## [0.1.0] - 2024-07-30 67 | 68 | - Initial release. 69 | -------------------------------------------------------------------------------- /src/StringlyTypedMatrix/StringUserID.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 - 2024 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from neightrix-basic-types 7 | // https://github.com/the-draupnir-project/neightrix-basic-types 8 | // 9 | 10 | import { StringServerName } from "./StringServerName"; 11 | 12 | /** 13 | * Do not use this, Synapse does not validate user ids and it isn't an auth check.... 14 | */ 15 | export const HistoricalStringUserIDLocalpartRegex = /(?[!-9;-~]+)/; 16 | export const StringUserIDRegex = /^@(?[^:]*):(?\S*)$/; 17 | 18 | export type StringUserIDBrand = { 19 | readonly StringUserID: unique symbol; 20 | }; 21 | export type StringUserID = string & StringUserIDBrand; 22 | 23 | export function isStringUserID(string: string): string is StringUserID { 24 | return StringUserIDRegex.test(string); 25 | } 26 | 27 | export function StringUserID( 28 | string: unknown 29 | ): T extends StringUserID ? StringUserID : never { 30 | if (typeof string === "string" && isStringUserID(string)) { 31 | return string as T extends StringUserID ? StringUserID : never; 32 | } 33 | throw new TypeError("Not a valid StringUserID"); 34 | } 35 | 36 | export function userServerName(userID: StringUserID): StringServerName { 37 | const match = StringUserIDRegex.exec(userID)?.groups?.serverName; 38 | if (match === undefined) { 39 | throw new TypeError("Somehow a StringUserID was created that is invalid."); 40 | } 41 | return match as StringServerName; 42 | } 43 | 44 | export function userLocalpart(userID: StringUserID): string { 45 | const match = StringUserIDRegex.exec(userID)?.groups?.localpart; 46 | if (match === undefined) { 47 | throw new TypeError("Somehow a StringUserID was created that is invalid."); 48 | } 49 | return match; 50 | } 51 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # SPDX-FileCopyrightText: 2024 Gnuxie 2 | # 3 | # SPDX-License-Identifier: CC0-1.0 4 | 5 | # Created by https://www.gitignore.io/api/node,macos,visualstudiocode 6 | # Edit at https://www.gitignore.io/?templates=node,macos,visualstudiocode 7 | 8 | ### macOS ### 9 | # General 10 | .DS_Store 11 | .AppleDouble 12 | .LSOverride 13 | 14 | # Icon must end with two \r 15 | Icon 16 | 17 | # Thumbnails 18 | ._* 19 | 20 | # Files that might appear in the root of a volume 21 | .DocumentRevisions-V100 22 | .fseventsd 23 | .Spotlight-V100 24 | .TemporaryItems 25 | .Trashes 26 | .VolumeIcon.icns 27 | .com.apple.timemachine.donotpresent 28 | 29 | # Directories potentially created on remote AFP share 30 | .AppleDB 31 | .AppleDesktop 32 | Network Trash Folder 33 | Temporary Items 34 | .apdisk 35 | 36 | ### Node ### 37 | # Logs 38 | logs 39 | *.log 40 | npm-debug.log* 41 | yarn-debug.log* 42 | yarn-error.log* 43 | lerna-debug.log* 44 | 45 | # Diagnostic reports (https://nodejs.org/api/report.html) 46 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 47 | 48 | # Runtime data 49 | pids 50 | *.pid 51 | *.seed 52 | *.pid.lock 53 | 54 | # Directory for instrumented libs generated by jscoverage/JSCover 55 | lib-cov 56 | 57 | # Coverage directory used by tools like istanbul 58 | coverage 59 | *.lcov 60 | 61 | # nyc test coverage 62 | .nyc_output 63 | 64 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 65 | .grunt 66 | 67 | # Bower dependency directory (https://bower.io/) 68 | bower_components 69 | 70 | # node-waf configuration 71 | .lock-wscript 72 | 73 | # Compiled binary addons (https://nodejs.org/api/addons.html) 74 | build/Release 75 | 76 | # Dependency directories 77 | node_modules/ 78 | jspm_packages/ 79 | 80 | # TypeScript v1 declaration files 81 | typings/ 82 | 83 | # TypeScript cache 84 | *.tsbuildinfo 85 | 86 | # Optional npm cache directory 87 | .npm 88 | 89 | # Optional eslint cache 90 | .eslintcache 91 | 92 | # Optional REPL history 93 | .node_repl_history 94 | 95 | # Output of 'npm pack' 96 | *.tgz 97 | 98 | # Yarn Integrity file 99 | .yarn-integrity 100 | 101 | # dotenv environment variables file 102 | .env 103 | .env.test 104 | 105 | # parcel-bundler cache (https://parceljs.org/) 106 | .cache 107 | 108 | # next.js build output 109 | .next 110 | 111 | # nuxt.js build output 112 | .nuxt 113 | 114 | # react / gatsby 115 | public/ 116 | 117 | # vuepress build output 118 | .vuepress/dist 119 | 120 | # Serverless directories 121 | .serverless/ 122 | 123 | # FuseBox cache 124 | .fusebox/ 125 | 126 | # DynamoDB Local files 127 | .dynamodb/ 128 | 129 | ### VisualStudioCode ### 130 | .vscode 131 | ### VisualStudioCode Patch ### 132 | # Ignore all local history of files 133 | .history 134 | 135 | # End of https://www.gitignore.io/api/node,macos,visualstudiocode 136 | 137 | docs 138 | dist 139 | -------------------------------------------------------------------------------- /src/MatrixReference/Permalinks.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2023 Gnuxie 2 | // SPDX-FileCopyrightText: 2018 - 2022 Travis Ralston 3 | // 4 | // SPDX-License-Identifier: MIT 5 | // 6 | // SPDX-FileAttributionText: 7 | // This modified file incorporates work from matrix-bot-sdk 8 | // https://github.com/turt2live/matrix-bot-sdk 9 | // 10 | 11 | import { Ok, Result, ResultError } from "@gnuxie/typescript-result"; 12 | import { 13 | StringEventID, 14 | StringRoomAlias, 15 | StringRoomID, 16 | StringUserID, 17 | isStringEventID, 18 | isStringRoomAlias, 19 | isStringRoomID, 20 | isStringUserID, 21 | } from "../StringlyTypedMatrix"; 22 | 23 | export const MatrixToRegex = 24 | /^https:\/\/matrix\.to\/#\/(?[^/?]+)\/?(?[^?]+)?(?\?[^]*)?$/; 25 | 26 | /** 27 | * The parts of a permalink. 28 | * @see Permalinks 29 | * @category Utilities 30 | */ 31 | export interface PermalinkParts { 32 | /** 33 | * The roomID that the Permalink references. 34 | */ 35 | roomID?: StringRoomID; 36 | 37 | /** 38 | * The roomAlias that the Permalink references. 39 | */ 40 | roomAlias?: StringRoomAlias; 41 | 42 | /** 43 | * The user ID the permalink references. May be undefined. 44 | */ 45 | userID?: StringUserID; 46 | 47 | /** 48 | * The event ID the permalink references. May be undefined. 49 | */ 50 | eventID?: StringEventID; 51 | 52 | /** 53 | * The servers the permalink is routed through. 54 | */ 55 | viaServers: string[]; 56 | } 57 | 58 | /** 59 | * Functions for handling permalinks 60 | * @category Utilities 61 | */ 62 | export class Permalinks { 63 | private constructor() { 64 | // nothing to do. 65 | } 66 | 67 | private static encodeViaArgs(servers: string[]): string { 68 | if (servers.length === 0) return ""; 69 | 70 | return `?via=${servers.join("&via=")}`; 71 | } 72 | 73 | /** 74 | * Creates a room permalink. 75 | * @param {string} roomIDOrAlias The room ID or alias to create a permalink for. 76 | * @param {string[]} viaServers The servers to route the permalink through. 77 | * @returns {string} A room permalink. 78 | */ 79 | public static forRoom( 80 | roomIDOrAlias: StringRoomID | StringRoomAlias, 81 | viaServers: string[] = [] 82 | ): string { 83 | return `https://matrix.to/#/${encodeURIComponent( 84 | roomIDOrAlias 85 | )}${Permalinks.encodeViaArgs(viaServers)}`; 86 | } 87 | 88 | /** 89 | * Creates a user permalink. 90 | * @param {string} userID The user ID to create a permalink for. 91 | * @returns {string} A user permalink. 92 | */ 93 | public static forUser(userID: StringUserID): string { 94 | return `https://matrix.to/#/${encodeURIComponent(userID)}`; 95 | } 96 | 97 | /** 98 | * Creates an event permalink. 99 | * @param {string} roomIDOrAlias The room ID or alias to create a permalink in. 100 | * @param {string} eventID The event ID to reference in the permalink. 101 | * @param {string[]} viaServers The servers to route the permalink through. 102 | * @returns {string} An event permalink. 103 | */ 104 | public static forEvent( 105 | roomIDOrAlias: StringRoomID | StringRoomAlias, 106 | eventID: StringEventID, 107 | viaServers: string[] = [] 108 | ): string { 109 | return `https://matrix.to/#/${encodeURIComponent( 110 | roomIDOrAlias 111 | )}/${encodeURIComponent(eventID)}${Permalinks.encodeViaArgs(viaServers)}`; 112 | } 113 | 114 | /** 115 | * Parses a permalink URL into usable parts. 116 | * @param {string} matrixTo The matrix.to URL to parse. 117 | * @returns {PermalinkParts} The parts of the permalink. 118 | */ 119 | public static parseUrl(matrixTo: string): Result { 120 | const url = MatrixToRegex.exec(matrixTo)?.groups; 121 | if (!url) { 122 | return ResultError.Result(`Not a valid matrix.to URL: ${matrixTo}`); 123 | } 124 | const viaServers = new URLSearchParams(url.query).getAll("via"); 125 | const eventID = url.eventId && decodeURIComponent(url.eventId); 126 | if (eventID !== undefined && !isStringEventID(eventID)) { 127 | return ResultError.Result(`Invalid EventID in matrix.to URL ${eventID}`); 128 | } 129 | if (url.entity === undefined) { 130 | return ResultError.Result( 131 | `Invalid Entity in matrix.to URL ${url.entity}` 132 | ); 133 | } 134 | const entity = decodeURIComponent(url.entity); 135 | if (entity[0] === "@") { 136 | if (!isStringUserID(entity)) { 137 | return ResultError.Result( 138 | `Invalid User ID in matrix.to URL: ${entity}` 139 | ); 140 | } 141 | return Ok({ 142 | userID: entity, 143 | viaServers: [], 144 | }); 145 | } else if (entity[0] === "!") { 146 | if (!isStringRoomID(entity)) { 147 | return ResultError.Result(`Invalid RoomID in matrix.to URL ${entity}`); 148 | } 149 | return Ok({ 150 | roomID: entity, 151 | ...(eventID === undefined ? {} : { eventID }), 152 | viaServers, 153 | }); 154 | } else if (entity[0] === "#") { 155 | if (!isStringRoomAlias(entity)) { 156 | return ResultError.Result( 157 | `Invalid RoomAlias in matrix.to URL ${entity}` 158 | ); 159 | } 160 | return Ok({ 161 | roomAlias: entity, 162 | ...(eventID === undefined ? {} : { eventID }), 163 | viaServers, 164 | }); 165 | } else { 166 | return ResultError.Result(`Unexpected entity in matrix.to URL ${entity}`); 167 | } 168 | } 169 | } 170 | -------------------------------------------------------------------------------- /LICENSES/CC0-1.0.txt: -------------------------------------------------------------------------------- 1 | Creative Commons Legal Code 2 | 3 | CC0 1.0 Universal 4 | 5 | CREATIVE COMMONS CORPORATION IS NOT A LAW FIRM AND DOES NOT PROVIDE 6 | LEGAL SERVICES. DISTRIBUTION OF THIS DOCUMENT DOES NOT CREATE AN 7 | ATTORNEY-CLIENT RELATIONSHIP. CREATIVE COMMONS PROVIDES THIS 8 | INFORMATION ON AN "AS-IS" BASIS. CREATIVE COMMONS MAKES NO WARRANTIES 9 | REGARDING THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS 10 | PROVIDED HEREUNDER, AND DISCLAIMS LIABILITY FOR DAMAGES RESULTING FROM 11 | THE USE OF THIS DOCUMENT OR THE INFORMATION OR WORKS PROVIDED 12 | HEREUNDER. 13 | 14 | Statement of Purpose 15 | 16 | The laws of most jurisdictions throughout the world automatically confer 17 | exclusive Copyright and Related Rights (defined below) upon the creator 18 | and subsequent owner(s) (each and all, an "owner") of an original work of 19 | authorship and/or a database (each, a "Work"). 20 | 21 | Certain owners wish to permanently relinquish those rights to a Work for 22 | the purpose of contributing to a commons of creative, cultural and 23 | scientific works ("Commons") that the public can reliably and without fear 24 | of later claims of infringement build upon, modify, incorporate in other 25 | works, reuse and redistribute as freely as possible in any form whatsoever 26 | and for any purposes, including without limitation commercial purposes. 27 | These owners may contribute to the Commons to promote the ideal of a free 28 | culture and the further production of creative, cultural and scientific 29 | works, or to gain reputation or greater distribution for their Work in 30 | part through the use and efforts of others. 31 | 32 | For these and/or other purposes and motivations, and without any 33 | expectation of additional consideration or compensation, the person 34 | associating CC0 with a Work (the "Affirmer"), to the extent that he or she 35 | is an owner of Copyright and Related Rights in the Work, voluntarily 36 | elects to apply CC0 to the Work and publicly distribute the Work under its 37 | terms, with knowledge of his or her Copyright and Related Rights in the 38 | Work and the meaning and intended legal effect of CC0 on those rights. 39 | 40 | 1. Copyright and Related Rights. A Work made available under CC0 may be 41 | protected by copyright and related or neighboring rights ("Copyright and 42 | Related Rights"). Copyright and Related Rights include, but are not 43 | limited to, the following: 44 | 45 | i. the right to reproduce, adapt, distribute, perform, display, 46 | communicate, and translate a Work; 47 | ii. moral rights retained by the original author(s) and/or performer(s); 48 | iii. publicity and privacy rights pertaining to a person's image or 49 | likeness depicted in a Work; 50 | iv. rights protecting against unfair competition in regards to a Work, 51 | subject to the limitations in paragraph 4(a), below; 52 | v. rights protecting the extraction, dissemination, use and reuse of data 53 | in a Work; 54 | vi. database rights (such as those arising under Directive 96/9/EC of the 55 | European Parliament and of the Council of 11 March 1996 on the legal 56 | protection of databases, and under any national implementation 57 | thereof, including any amended or successor version of such 58 | directive); and 59 | vii. other similar, equivalent or corresponding rights throughout the 60 | world based on applicable law or treaty, and any national 61 | implementations thereof. 62 | 63 | 2. Waiver. To the greatest extent permitted by, but not in contravention 64 | of, applicable law, Affirmer hereby overtly, fully, permanently, 65 | irrevocably and unconditionally waives, abandons, and surrenders all of 66 | Affirmer's Copyright and Related Rights and associated claims and causes 67 | of action, whether now known or unknown (including existing as well as 68 | future claims and causes of action), in the Work (i) in all territories 69 | worldwide, (ii) for the maximum duration provided by applicable law or 70 | treaty (including future time extensions), (iii) in any current or future 71 | medium and for any number of copies, and (iv) for any purpose whatsoever, 72 | including without limitation commercial, advertising or promotional 73 | purposes (the "Waiver"). Affirmer makes the Waiver for the benefit of each 74 | member of the public at large and to the detriment of Affirmer's heirs and 75 | successors, fully intending that such Waiver shall not be subject to 76 | revocation, rescission, cancellation, termination, or any other legal or 77 | equitable action to disrupt the quiet enjoyment of the Work by the public 78 | as contemplated by Affirmer's express Statement of Purpose. 79 | 80 | 3. Public License Fallback. Should any part of the Waiver for any reason 81 | be judged legally invalid or ineffective under applicable law, then the 82 | Waiver shall be preserved to the maximum extent permitted taking into 83 | account Affirmer's express Statement of Purpose. In addition, to the 84 | extent the Waiver is so judged Affirmer hereby grants to each affected 85 | person a royalty-free, non transferable, non sublicensable, non exclusive, 86 | irrevocable and unconditional license to exercise Affirmer's Copyright and 87 | Related Rights in the Work (i) in all territories worldwide, (ii) for the 88 | maximum duration provided by applicable law or treaty (including future 89 | time extensions), (iii) in any current or future medium and for any number 90 | of copies, and (iv) for any purpose whatsoever, including without 91 | limitation commercial, advertising or promotional purposes (the 92 | "License"). The License shall be deemed effective as of the date CC0 was 93 | applied by Affirmer to the Work. Should any part of the License for any 94 | reason be judged legally invalid or ineffective under applicable law, such 95 | partial invalidity or ineffectiveness shall not invalidate the remainder 96 | of the License, and in such case Affirmer hereby affirms that he or she 97 | will not (i) exercise any of his or her remaining Copyright and Related 98 | Rights in the Work or (ii) assert any associated claims and causes of 99 | action with respect to the Work, in either case contrary to Affirmer's 100 | express Statement of Purpose. 101 | 102 | 4. Limitations and Disclaimers. 103 | 104 | a. No trademark or patent rights held by Affirmer are waived, abandoned, 105 | surrendered, licensed or otherwise affected by this document. 106 | b. Affirmer offers the Work as-is and makes no representations or 107 | warranties of any kind concerning the Work, express, implied, 108 | statutory or otherwise, including without limitation warranties of 109 | title, merchantability, fitness for a particular purpose, non 110 | infringement, or the absence of latent or other defects, accuracy, or 111 | the present or absence of errors, whether or not discoverable, all to 112 | the greatest extent permissible under applicable law. 113 | c. Affirmer disclaims responsibility for clearing rights of other persons 114 | that may apply to the Work or any use thereof, including without 115 | limitation any person's Copyright and Related Rights in the Work. 116 | Further, Affirmer disclaims responsibility for obtaining any necessary 117 | consents, permissions or other rights required for any use of the 118 | Work. 119 | d. Affirmer understands and acknowledges that Creative Commons is not a 120 | party to this document and has no duty or obligation with respect to 121 | this CC0 or use of the Work. 122 | -------------------------------------------------------------------------------- /src/MatrixReference/MatrixRoomReference.ts: -------------------------------------------------------------------------------- 1 | // SPDX-FileCopyrightText: 2022 - 2025 Gnuxie 2 | // 3 | // SPDX-License-Identifier: Apache-2.0 4 | // 5 | // SPDX-FileAttributionText: 6 | // This modified file incorporates work from matrix-basic-types 7 | // https://github.com/the-draupnir-project/matrix-basic-types 8 | // 9 | 10 | import { Ok, Result, ResultError, isError } from "@gnuxie/typescript-result"; 11 | import { 12 | StringEventID, 13 | StringRoomAlias, 14 | StringRoomID, 15 | isStringRoomAlias, 16 | isStringRoomID, 17 | roomAliasServerName, 18 | } from "../StringlyTypedMatrix"; 19 | import { Permalinks } from "./Permalinks"; 20 | import { StringServerName } from "../StringlyTypedMatrix/StringServerName"; 21 | 22 | /** 23 | * Some servers can return a huge list of via servers for a room which can 24 | * cause some pretty serious problems for message rendering. 25 | */ 26 | function limitViaServers(viaServers: string[]): string[] { 27 | if (viaServers.length > 5) { 28 | return viaServers.slice(0, 5); 29 | } else { 30 | return viaServers; 31 | } 32 | } 33 | 34 | export type MatrixRoomReference = MatrixRoomID | MatrixRoomAlias; 35 | 36 | // we disable this warning because it's not relevant, we're not making a module 37 | // we're trying to add generic functions to a type. 38 | // Comes at a cost that anyone actually using this from JS and not TS is 39 | // going to be confused. 40 | // eslint-disable-next-line @typescript-eslint/no-namespace 41 | export namespace MatrixRoomReference { 42 | export function fromAlias(alias: StringRoomAlias): MatrixRoomReference { 43 | return new MatrixRoomAlias(alias); 44 | } 45 | 46 | export function fromRoomID( 47 | roomId: StringRoomID, 48 | viaServers: string[] = [] 49 | ): MatrixRoomID { 50 | return new MatrixRoomID(roomId, viaServers); 51 | } 52 | 53 | /** 54 | * Create a `MatrixRoomReference` from a room ID or a room alias. 55 | * @param roomIDOrAlias The room ID or the room alias. 56 | * @param viaServers If a room ID is being provided, then these server names 57 | * can be used to find the room. 58 | */ 59 | export function fromRoomIDOrAlias( 60 | roomIDOrAlias: StringRoomID | StringRoomAlias, 61 | viaServers: string[] = [] 62 | ): MatrixRoomReference { 63 | if (roomIDOrAlias.startsWith("!")) { 64 | return new MatrixRoomID(roomIDOrAlias, viaServers); 65 | } else { 66 | return new MatrixRoomAlias(roomIDOrAlias, viaServers); 67 | } 68 | } 69 | 70 | export function fromPermalink(link: string): Result { 71 | const partsResult = Permalinks.parseUrl(link); 72 | if (isError(partsResult)) { 73 | return partsResult; 74 | } 75 | const parts = partsResult.ok; 76 | if (parts.roomID !== undefined) { 77 | return Ok(new MatrixRoomID(parts.roomID, parts.viaServers)); 78 | } else if (parts.roomAlias !== undefined) { 79 | return Ok(new MatrixRoomAlias(parts.roomAlias, parts.viaServers)); 80 | } else { 81 | return ResultError.Result( 82 | `There isn't a reference to a room in the URL: ${link}` 83 | ); 84 | } 85 | } 86 | 87 | /** 88 | * Try parse a roomID, roomAlias or a permalink. 89 | */ 90 | export function fromString(string: string): Result { 91 | if (isStringRoomID(string)) { 92 | return Ok(MatrixRoomReference.fromRoomID(string)); 93 | } else if (isStringRoomAlias(string)) { 94 | return Ok(MatrixRoomReference.fromRoomIDOrAlias(string)); 95 | } else { 96 | return MatrixRoomReference.fromPermalink(string); 97 | } 98 | } 99 | } 100 | /** 101 | * This is a universal reference for a matrix room. 102 | * This is really useful because there are at least 3 ways of referring to a Matrix room, 103 | * and some of them require extra steps to be useful in certain contexts (aliases, permalinks). 104 | */ 105 | abstract class AbstractMatrixRoomReference { 106 | private readonly viaServers: string[]; 107 | protected constructor( 108 | protected readonly reference: StringRoomID | StringRoomAlias, 109 | viaServers: string[] = [] 110 | ) { 111 | this.viaServers = limitViaServers(viaServers); 112 | } 113 | 114 | public toPermalink(): string { 115 | return Permalinks.forRoom(this.reference, this.viaServers); 116 | } 117 | 118 | /** 119 | * We don't include a `toRoomId` that uses `forceResolveAlias` as this would erase `viaServers`, 120 | * which will be necessary to use if our homeserver hasn't joined the room yet. 121 | * @returns A string representing a room id or alias. 122 | */ 123 | public toRoomIDOrAlias(): StringRoomID | StringRoomAlias { 124 | return this.reference; 125 | } 126 | 127 | public getViaServers(): string[] { 128 | // don't want them mutating the viaServers in this reference. 129 | return [...this.viaServers]; 130 | } 131 | 132 | public toString(): string { 133 | return this.toPermalink(); 134 | } 135 | } 136 | 137 | /** 138 | * A concrete `MatrixRoomReference` that represents only a room ID. 139 | * @see {@link MatrixRoomReference}. 140 | */ 141 | export class MatrixRoomID extends AbstractMatrixRoomReference { 142 | public constructor(reference: string, viaServers: string[] = []) { 143 | if (!isStringRoomID(reference)) { 144 | throw new TypeError(`invalid reference for roomID ${reference}`); 145 | } 146 | super(reference, viaServers); 147 | } 148 | 149 | public toRoomIDOrAlias(): StringRoomID { 150 | return this.reference as StringRoomID; 151 | } 152 | } 153 | 154 | /** 155 | * A concrete `MatrixRoomReference` the represents only a room alias. 156 | * @see {@link MatrixRoomReference}. 157 | */ 158 | export class MatrixRoomAlias extends AbstractMatrixRoomReference { 159 | public constructor(reference: string, viaServers: string[] = []) { 160 | if (!isStringRoomAlias(reference)) { 161 | throw new TypeError(`invalid reference for RoomAlias ${reference}`); 162 | } 163 | super(reference, viaServers); 164 | } 165 | 166 | public toRoomIDOrAlias(): StringRoomAlias { 167 | return this.reference as StringRoomAlias; 168 | } 169 | 170 | public get serverName(): StringServerName { 171 | return roomAliasServerName(this.reference as StringRoomAlias); 172 | } 173 | } 174 | 175 | export type MatrixEventReference = MatrixEventViaRoomID | MatrixEventViaAlias; 176 | 177 | // we disable this warning because it's not relevant, we're not making a module 178 | // we're trying to add generic functions to a type. 179 | // Comes at a cost that anyone actually using this from JS and not TS is 180 | // going to be confused. 181 | // eslint-disable-next-line @typescript-eslint/no-namespace 182 | export namespace MatrixEventReference { 183 | export function fromPermalink(link: string): Result { 184 | const partsResult = Permalinks.parseUrl(link); 185 | if (isError(partsResult)) { 186 | return partsResult; 187 | } 188 | const parts = partsResult.ok; 189 | if (parts.roomID !== undefined && parts.eventID !== undefined) { 190 | return Ok( 191 | new MatrixEventViaRoomID( 192 | new MatrixRoomID(parts.roomID, parts.viaServers), 193 | parts.eventID 194 | ) 195 | ); 196 | } else if (parts.roomAlias !== undefined && parts.eventID !== undefined) { 197 | return Ok( 198 | new MatrixEventViaAlias( 199 | new MatrixRoomAlias(parts.roomAlias, parts.viaServers), 200 | parts.eventID 201 | ) 202 | ); 203 | } else { 204 | return ResultError.Result( 205 | `There isn't a reference to an event in the URL: ${link}` 206 | ); 207 | } 208 | } 209 | } 210 | 211 | export class MatrixEventViaRoomID { 212 | public constructor( 213 | public readonly room: MatrixRoomID, 214 | public readonly eventID: StringEventID 215 | ) { 216 | // nothing to do. 217 | } 218 | 219 | public get reference() { 220 | return this.room; 221 | } 222 | 223 | public toPermalink(): string { 224 | return `${this.room.toPermalink()}/${encodeURIComponent(this.eventID)}`; 225 | } 226 | } 227 | 228 | export class MatrixEventViaAlias { 229 | public constructor( 230 | public readonly alias: MatrixRoomAlias, 231 | public readonly eventID: StringEventID 232 | ) { 233 | // nothing to do. 234 | } 235 | 236 | public get reference() { 237 | return this.alias; 238 | } 239 | 240 | public toPermalink(): string { 241 | return `${this.alias.toPermalink()}/${encodeURIComponent(this.eventID)}`; 242 | } 243 | } 244 | -------------------------------------------------------------------------------- /LICENSES/Apache-2.0.txt: -------------------------------------------------------------------------------- 1 | Apache License 2 | Version 2.0, January 2004 3 | http://www.apache.org/licenses/ 4 | 5 | TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 6 | 7 | 1. Definitions. 8 | 9 | "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. 10 | 11 | "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. 12 | 13 | "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 14 | 15 | "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. 16 | 17 | "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. 18 | 19 | "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. 20 | 21 | "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). 22 | 23 | "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. 24 | 25 | "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." 26 | 27 | "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 28 | 29 | 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 30 | 31 | 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 32 | 33 | 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: 34 | 35 | (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and 36 | 37 | (b) You must cause any modified files to carry prominent notices stating that You changed the files; and 38 | 39 | (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and 40 | 41 | (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. 42 | 43 | You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 44 | 45 | 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 46 | 47 | 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 48 | 49 | 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 50 | 51 | 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 52 | 53 | 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. 54 | 55 | END OF TERMS AND CONDITIONS 56 | 57 | APPENDIX: How to apply the Apache License to your work. 58 | 59 | To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. 60 | 61 | Copyright [yyyy] [name of copyright owner] 62 | 63 | Licensed under the Apache License, Version 2.0 (the "License"); 64 | you may not use this file except in compliance with the License. 65 | You may obtain a copy of the License at 66 | 67 | http://www.apache.org/licenses/LICENSE-2.0 68 | 69 | Unless required by applicable law or agreed to in writing, software 70 | distributed under the License is distributed on an "AS IS" BASIS, 71 | WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 72 | See the License for the specific language governing permissions and 73 | limitations under the License. 74 | -------------------------------------------------------------------------------- /LICENSES/CC-BY-SA-4.0.txt: -------------------------------------------------------------------------------- 1 | Creative Commons Attribution-ShareAlike 4.0 International 2 | 3 | Creative Commons Corporation (“Creative Commons”) is not a law firm and does not provide legal services or legal advice. Distribution of Creative Commons public licenses does not create a lawyer-client or other relationship. Creative Commons makes its licenses and related information available on an “as-is” basis. Creative Commons gives no warranties regarding its licenses, any material licensed under their terms and conditions, or any related information. Creative Commons disclaims all liability for damages resulting from their use to the fullest extent possible. 4 | 5 | Using Creative Commons Public Licenses 6 | 7 | Creative Commons public licenses provide a standard set of terms and conditions that creators and other rights holders may use to share original works of authorship and other material subject to copyright and certain other rights specified in the public license below. The following considerations are for informational purposes only, are not exhaustive, and do not form part of our licenses. 8 | 9 | Considerations for licensors: Our public licenses are intended for use by those authorized to give the public permission to use material in ways otherwise restricted by copyright and certain other rights. Our licenses are irrevocable. Licensors should read and understand the terms and conditions of the license they choose before applying it. Licensors should also secure all rights necessary before applying our licenses so that the public can reuse the material as expected. Licensors should clearly mark any material not subject to the license. This includes other CC-licensed material, or material used under an exception or limitation to copyright. More considerations for licensors. 10 | 11 | Considerations for the public: By using one of our public licenses, a licensor grants the public permission to use the licensed material under specified terms and conditions. If the licensor’s permission is not necessary for any reason–for example, because of any applicable exception or limitation to copyright–then that use is not regulated by the license. Our licenses grant only permissions under copyright and certain other rights that a licensor has authority to grant. Use of the licensed material may still be restricted for other reasons, including because others have copyright or other rights in the material. A licensor may make special requests, such as asking that all changes be marked or described. 12 | 13 | Although not required by our licenses, you are encouraged to respect those requests where reasonable. More considerations for the public. 14 | 15 | Creative Commons Attribution-ShareAlike 4.0 International Public License 16 | 17 | By exercising the Licensed Rights (defined below), You accept and agree to be bound by the terms and conditions of this Creative Commons Attribution-ShareAlike 4.0 International Public License ("Public License"). To the extent this Public License may be interpreted as a contract, You are granted the Licensed Rights in consideration of Your acceptance of these terms and conditions, and the Licensor grants You such rights in consideration of benefits the Licensor receives from making the Licensed Material available under these terms and conditions. 18 | 19 | Section 1 – Definitions. 20 | 21 | a. Adapted Material means material subject to Copyright and Similar Rights that is derived from or based upon the Licensed Material and in which the Licensed Material is translated, altered, arranged, transformed, or otherwise modified in a manner requiring permission under the Copyright and Similar Rights held by the Licensor. For purposes of this Public License, where the Licensed Material is a musical work, performance, or sound recording, Adapted Material is always produced where the Licensed Material is synched in timed relation with a moving image. 22 | 23 | b. Adapter's License means the license You apply to Your Copyright and Similar Rights in Your contributions to Adapted Material in accordance with the terms and conditions of this Public License. 24 | 25 | c. BY-SA Compatible License means a license listed at creativecommons.org/compatiblelicenses, approved by Creative Commons as essentially the equivalent of this Public License. 26 | 27 | d. Copyright and Similar Rights means copyright and/or similar rights closely related to copyright including, without limitation, performance, broadcast, sound recording, and Sui Generis Database Rights, without regard to how the rights are labeled or categorized. For purposes of this Public License, the rights specified in Section 2(b)(1)-(2) are not Copyright and Similar Rights. 28 | 29 | e. Effective Technological Measures means those measures that, in the absence of proper authority, may not be circumvented under laws fulfilling obligations under Article 11 of the WIPO Copyright Treaty adopted on December 20, 1996, and/or similar international agreements. 30 | 31 | f. Exceptions and Limitations means fair use, fair dealing, and/or any other exception or limitation to Copyright and Similar Rights that applies to Your use of the Licensed Material. 32 | 33 | g. License Elements means the license attributes listed in the name of a Creative Commons Public License. The License Elements of this Public License are Attribution and ShareAlike. 34 | 35 | h. Licensed Material means the artistic or literary work, database, or other material to which the Licensor applied this Public License. 36 | 37 | i. Licensed Rights means the rights granted to You subject to the terms and conditions of this Public License, which are limited to all Copyright and Similar Rights that apply to Your use of the Licensed Material and that the Licensor has authority to license. 38 | 39 | j. Licensor means the individual(s) or entity(ies) granting rights under this Public License. 40 | 41 | k. Share means to provide material to the public by any means or process that requires permission under the Licensed Rights, such as reproduction, public display, public performance, distribution, dissemination, communication, or importation, and to make material available to the public including in ways that members of the public may access the material from a place and at a time individually chosen by them. 42 | 43 | l. Sui Generis Database Rights means rights other than copyright resulting from Directive 96/9/EC of the European Parliament and of the Council of 11 March 1996 on the legal protection of databases, as amended and/or succeeded, as well as other essentially equivalent rights anywhere in the world. 44 | 45 | m. You means the individual or entity exercising the Licensed Rights under this Public License. Your has a corresponding meaning. 46 | 47 | Section 2 – Scope. 48 | 49 | a. License grant. 50 | 51 | 1. Subject to the terms and conditions of this Public License, the Licensor hereby grants You a worldwide, royalty-free, non-sublicensable, non-exclusive, irrevocable license to exercise the Licensed Rights in the Licensed Material to: 52 | 53 | A. reproduce and Share the Licensed Material, in whole or in part; and 54 | 55 | B. produce, reproduce, and Share Adapted Material. 56 | 57 | 2. Exceptions and Limitations. For the avoidance of doubt, where Exceptions and Limitations apply to Your use, this Public License does not apply, and You do not need to comply with its terms and conditions. 58 | 59 | 3. Term. The term of this Public License is specified in Section 6(a). 60 | 61 | 4. Media and formats; technical modifications allowed. The Licensor authorizes You to exercise the Licensed Rights in all media and formats whether now known or hereafter created, and to make technical modifications necessary to do so. The Licensor waives and/or agrees not to assert any right or authority to forbid You from making technical modifications necessary to exercise the Licensed Rights, including technical modifications necessary to circumvent Effective Technological Measures. For purposes of this Public License, simply making modifications authorized by this Section 2(a)(4) never produces Adapted Material. 62 | 63 | 5. Downstream recipients. 64 | 65 | A. Offer from the Licensor – Licensed Material. Every recipient of the Licensed Material automatically receives an offer from the Licensor to exercise the Licensed Rights under the terms and conditions of this Public License. 66 | 67 | B. Additional offer from the Licensor – Adapted Material. Every recipient of Adapted Material from You automatically receives an offer from the Licensor to exercise the Licensed Rights in the Adapted Material under the conditions of the Adapter’s License You apply. 68 | 69 | C. No downstream restrictions. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, the Licensed Material if doing so restricts exercise of the Licensed Rights by any recipient of the Licensed Material. 70 | 71 | 6. No endorsement. Nothing in this Public License constitutes or may be construed as permission to assert or imply that You are, or that Your use of the Licensed Material is, connected with, or sponsored, endorsed, or granted official status by, the Licensor or others designated to receive attribution as provided in Section 3(a)(1)(A)(i). 72 | 73 | b. Other rights. 74 | 75 | 1. Moral rights, such as the right of integrity, are not licensed under this Public License, nor are publicity, privacy, and/or other similar personality rights; however, to the extent possible, the Licensor waives and/or agrees not to assert any such rights held by the Licensor to the limited extent necessary to allow You to exercise the Licensed Rights, but not otherwise. 76 | 77 | 2. Patent and trademark rights are not licensed under this Public License. 78 | 79 | 3. To the extent possible, the Licensor waives any right to collect royalties from You for the exercise of the Licensed Rights, whether directly or through a collecting society under any voluntary or waivable statutory or compulsory licensing scheme. In all other cases the Licensor expressly reserves any right to collect such royalties. 80 | 81 | Section 3 – License Conditions. 82 | 83 | Your exercise of the Licensed Rights is expressly made subject to the following conditions. 84 | 85 | a. Attribution. 86 | 87 | 1. If You Share the Licensed Material (including in modified form), You must: 88 | 89 | A. retain the following if it is supplied by the Licensor with the Licensed Material: 90 | 91 | i. identification of the creator(s) of the Licensed Material and any others designated to receive attribution, in any reasonable manner requested by the Licensor (including by pseudonym if designated); 92 | 93 | ii. a copyright notice; 94 | 95 | iii. a notice that refers to this Public License; 96 | 97 | iv. a notice that refers to the disclaimer of warranties; 98 | 99 | v. a URI or hyperlink to the Licensed Material to the extent reasonably practicable; 100 | 101 | B. indicate if You modified the Licensed Material and retain an indication of any previous modifications; and 102 | 103 | C. indicate the Licensed Material is licensed under this Public License, and include the text of, or the URI or hyperlink to, this Public License. 104 | 105 | 2. You may satisfy the conditions in Section 3(a)(1) in any reasonable manner based on the medium, means, and context in which You Share the Licensed Material. For example, it may be reasonable to satisfy the conditions by providing a URI or hyperlink to a resource that includes the required information. 106 | 107 | 3. If requested by the Licensor, You must remove any of the information required by Section 3(a)(1)(A) to the extent reasonably practicable. 108 | 109 | b. ShareAlike.In addition to the conditions in Section 3(a), if You Share Adapted Material You produce, the following conditions also apply. 110 | 111 | 1. The Adapter’s License You apply must be a Creative Commons license with the same License Elements, this version or later, or a BY-SA Compatible License. 112 | 113 | 2. You must include the text of, or the URI or hyperlink to, the Adapter's License You apply. You may satisfy this condition in any reasonable manner based on the medium, means, and context in which You Share Adapted Material. 114 | 115 | 3. You may not offer or impose any additional or different terms or conditions on, or apply any Effective Technological Measures to, Adapted Material that restrict exercise of the rights granted under the Adapter's License You apply. 116 | 117 | Section 4 – Sui Generis Database Rights. 118 | 119 | Where the Licensed Rights include Sui Generis Database Rights that apply to Your use of the Licensed Material: 120 | 121 | a. for the avoidance of doubt, Section 2(a)(1) grants You the right to extract, reuse, reproduce, and Share all or a substantial portion of the contents of the database; 122 | 123 | b. if You include all or a substantial portion of the database contents in a database in which You have Sui Generis Database Rights, then the database in which You have Sui Generis Database Rights (but not its individual contents) is Adapted Material, including for purposes of Section 3(b); and 124 | 125 | c. You must comply with the conditions in Section 3(a) if You Share all or a substantial portion of the contents of the database. 126 | For the avoidance of doubt, this Section 4 supplements and does not replace Your obligations under this Public License where the Licensed Rights include other Copyright and Similar Rights. 127 | 128 | Section 5 – Disclaimer of Warranties and Limitation of Liability. 129 | 130 | a. Unless otherwise separately undertaken by the Licensor, to the extent possible, the Licensor offers the Licensed Material as-is and as-available, and makes no representations or warranties of any kind concerning the Licensed Material, whether express, implied, statutory, or other. This includes, without limitation, warranties of title, merchantability, fitness for a particular purpose, non-infringement, absence of latent or other defects, accuracy, or the presence or absence of errors, whether or not known or discoverable. Where disclaimers of warranties are not allowed in full or in part, this disclaimer may not apply to You. 131 | 132 | b. To the extent possible, in no event will the Licensor be liable to You on any legal theory (including, without limitation, negligence) or otherwise for any direct, special, indirect, incidental, consequential, punitive, exemplary, or other losses, costs, expenses, or damages arising out of this Public License or use of the Licensed Material, even if the Licensor has been advised of the possibility of such losses, costs, expenses, or damages. Where a limitation of liability is not allowed in full or in part, this limitation may not apply to You. 133 | 134 | c. The disclaimer of warranties and limitation of liability provided above shall be interpreted in a manner that, to the extent possible, most closely approximates an absolute disclaimer and waiver of all liability. 135 | 136 | Section 6 – Term and Termination. 137 | 138 | a. This Public License applies for the term of the Copyright and Similar Rights licensed here. However, if You fail to comply with this Public License, then Your rights under this Public License terminate automatically. 139 | 140 | b. Where Your right to use the Licensed Material has terminated under Section 6(a), it reinstates: 141 | 142 | 1. automatically as of the date the violation is cured, provided it is cured within 30 days of Your discovery of the violation; or 143 | 144 | 2. upon express reinstatement by the Licensor. 145 | 146 | c. For the avoidance of doubt, this Section 6(b) does not affect any right the Licensor may have to seek remedies for Your violations of this Public License. 147 | 148 | d. For the avoidance of doubt, the Licensor may also offer the Licensed Material under separate terms or conditions or stop distributing the Licensed Material at any time; however, doing so will not terminate this Public License. 149 | 150 | e. Sections 1, 5, 6, 7, and 8 survive termination of this Public License. 151 | 152 | Section 7 – Other Terms and Conditions. 153 | 154 | a. The Licensor shall not be bound by any additional or different terms or conditions communicated by You unless expressly agreed. 155 | 156 | b. Any arrangements, understandings, or agreements regarding the Licensed Material not stated herein are separate from and independent of the terms and conditions of this Public License. 157 | 158 | Section 8 – Interpretation. 159 | 160 | a. For the avoidance of doubt, this Public License does not, and shall not be interpreted to, reduce, limit, restrict, or impose conditions on any use of the Licensed Material that could lawfully be made without permission under this Public License. 161 | 162 | b. To the extent possible, if any provision of this Public License is deemed unenforceable, it shall be automatically reformed to the minimum extent necessary to make it enforceable. If the provision cannot be reformed, it shall be severed from this Public License without affecting the enforceability of the remaining terms and conditions. 163 | 164 | c. No term or condition of this Public License will be waived and no failure to comply consented to unless expressly agreed to by the Licensor. 165 | 166 | d. Nothing in this Public License constitutes or may be interpreted as a limitation upon, or waiver of, any privileges and immunities that apply to the Licensor or You, including from the legal processes of any jurisdiction or authority. 167 | 168 | Creative Commons is not a party to its public licenses. Notwithstanding, Creative Commons may elect to apply one of its public licenses to material it publishes and in those instances will be considered the “Licensor.” Except for the limited purpose of indicating that material is shared under a Creative Commons public license or as otherwise permitted by the Creative Commons policies published at creativecommons.org/policies, Creative Commons does not authorize the use of the trademark “Creative Commons” or any other trademark or logo of Creative Commons without its prior written consent including, without limitation, in connection with any unauthorized modifications to any of its public licenses or any other arrangements, understandings, or agreements concerning use of licensed material. For the avoidance of doubt, this paragraph does not form part of the public licenses. 169 | 170 | Creative Commons may be contacted at creativecommons.org. 171 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@ampproject/remapping@^2.2.0": 6 | version "2.3.0" 7 | resolved "https://registry.yarnpkg.com/@ampproject/remapping/-/remapping-2.3.0.tgz#ed441b6fa600072520ce18b43d2c8cc8caecc7f4" 8 | integrity sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw== 9 | dependencies: 10 | "@jridgewell/gen-mapping" "^0.3.5" 11 | "@jridgewell/trace-mapping" "^0.3.24" 12 | 13 | "@babel/code-frame@^7.0.0", "@babel/code-frame@^7.12.13", "@babel/code-frame@^7.24.7": 14 | version "7.24.7" 15 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.7.tgz#882fd9e09e8ee324e496bd040401c6f046ef4465" 16 | integrity sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA== 17 | dependencies: 18 | "@babel/highlight" "^7.24.7" 19 | picocolors "^1.0.0" 20 | 21 | "@babel/compat-data@^7.25.2": 22 | version "7.25.2" 23 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.25.2.tgz#e41928bd33475305c586f6acbbb7e3ade7a6f7f5" 24 | integrity sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ== 25 | 26 | "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9": 27 | version "7.25.2" 28 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.25.2.tgz#ed8eec275118d7613e77a352894cd12ded8eba77" 29 | integrity sha512-BBt3opiCOxUr9euZ5/ro/Xv8/V7yJ5bjYMqG/C1YAo8MIKAnumZalCN+msbci3Pigy4lIQfPUpfMM27HMGaYEA== 30 | dependencies: 31 | "@ampproject/remapping" "^2.2.0" 32 | "@babel/code-frame" "^7.24.7" 33 | "@babel/generator" "^7.25.0" 34 | "@babel/helper-compilation-targets" "^7.25.2" 35 | "@babel/helper-module-transforms" "^7.25.2" 36 | "@babel/helpers" "^7.25.0" 37 | "@babel/parser" "^7.25.0" 38 | "@babel/template" "^7.25.0" 39 | "@babel/traverse" "^7.25.2" 40 | "@babel/types" "^7.25.2" 41 | convert-source-map "^2.0.0" 42 | debug "^4.1.0" 43 | gensync "^1.0.0-beta.2" 44 | json5 "^2.2.3" 45 | semver "^6.3.1" 46 | 47 | "@babel/generator@^7.25.0", "@babel/generator@^7.7.2": 48 | version "7.25.0" 49 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.25.0.tgz#f858ddfa984350bc3d3b7f125073c9af6988f18e" 50 | integrity sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw== 51 | dependencies: 52 | "@babel/types" "^7.25.0" 53 | "@jridgewell/gen-mapping" "^0.3.5" 54 | "@jridgewell/trace-mapping" "^0.3.25" 55 | jsesc "^2.5.1" 56 | 57 | "@babel/helper-compilation-targets@^7.25.2": 58 | version "7.25.2" 59 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.25.2.tgz#e1d9410a90974a3a5a66e84ff55ef62e3c02d06c" 60 | integrity sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw== 61 | dependencies: 62 | "@babel/compat-data" "^7.25.2" 63 | "@babel/helper-validator-option" "^7.24.8" 64 | browserslist "^4.23.1" 65 | lru-cache "^5.1.1" 66 | semver "^6.3.1" 67 | 68 | "@babel/helper-module-imports@^7.24.7": 69 | version "7.24.7" 70 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.7.tgz#f2f980392de5b84c3328fc71d38bd81bbb83042b" 71 | integrity sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA== 72 | dependencies: 73 | "@babel/traverse" "^7.24.7" 74 | "@babel/types" "^7.24.7" 75 | 76 | "@babel/helper-module-transforms@^7.25.2": 77 | version "7.25.2" 78 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.25.2.tgz#ee713c29768100f2776edf04d4eb23b8d27a66e6" 79 | integrity sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ== 80 | dependencies: 81 | "@babel/helper-module-imports" "^7.24.7" 82 | "@babel/helper-simple-access" "^7.24.7" 83 | "@babel/helper-validator-identifier" "^7.24.7" 84 | "@babel/traverse" "^7.25.2" 85 | 86 | "@babel/helper-plugin-utils@^7.0.0", "@babel/helper-plugin-utils@^7.10.4", "@babel/helper-plugin-utils@^7.12.13", "@babel/helper-plugin-utils@^7.14.5", "@babel/helper-plugin-utils@^7.24.7", "@babel/helper-plugin-utils@^7.8.0": 87 | version "7.24.8" 88 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.8.tgz#94ee67e8ec0e5d44ea7baeb51e571bd26af07878" 89 | integrity sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg== 90 | 91 | "@babel/helper-simple-access@^7.24.7": 92 | version "7.24.7" 93 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.24.7.tgz#bcade8da3aec8ed16b9c4953b74e506b51b5edb3" 94 | integrity sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg== 95 | dependencies: 96 | "@babel/traverse" "^7.24.7" 97 | "@babel/types" "^7.24.7" 98 | 99 | "@babel/helper-string-parser@^7.24.8": 100 | version "7.24.8" 101 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.8.tgz#5b3329c9a58803d5df425e5785865881a81ca48d" 102 | integrity sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ== 103 | 104 | "@babel/helper-validator-identifier@^7.24.7": 105 | version "7.24.7" 106 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.24.7.tgz#75b889cfaf9e35c2aaf42cf0d72c8e91719251db" 107 | integrity sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w== 108 | 109 | "@babel/helper-validator-option@^7.24.8": 110 | version "7.24.8" 111 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.24.8.tgz#3725cdeea8b480e86d34df15304806a06975e33d" 112 | integrity sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q== 113 | 114 | "@babel/helpers@^7.25.0": 115 | version "7.25.0" 116 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.25.0.tgz#e69beb7841cb93a6505531ede34f34e6a073650a" 117 | integrity sha512-MjgLZ42aCm0oGjJj8CtSM3DB8NOOf8h2l7DCTePJs29u+v7yO/RBX9nShlKMgFnRks/Q4tBAe7Hxnov9VkGwLw== 118 | dependencies: 119 | "@babel/template" "^7.25.0" 120 | "@babel/types" "^7.25.0" 121 | 122 | "@babel/highlight@^7.24.7": 123 | version "7.24.7" 124 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.7.tgz#a05ab1df134b286558aae0ed41e6c5f731bf409d" 125 | integrity sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw== 126 | dependencies: 127 | "@babel/helper-validator-identifier" "^7.24.7" 128 | chalk "^2.4.2" 129 | js-tokens "^4.0.0" 130 | picocolors "^1.0.0" 131 | 132 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.25.0": 133 | version "7.25.0" 134 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.25.0.tgz#9fdc9237504d797b6e7b8f66e78ea7f570d256ad" 135 | integrity sha512-CzdIU9jdP0dg7HdyB+bHvDJGagUv+qtzZt5rYCWwW6tITNqV9odjp6Qu41gkG0ca5UfdDUWrKkiAnHHdGRnOrA== 136 | 137 | "@babel/plugin-syntax-async-generators@^7.8.4": 138 | version "7.8.4" 139 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 140 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 141 | dependencies: 142 | "@babel/helper-plugin-utils" "^7.8.0" 143 | 144 | "@babel/plugin-syntax-bigint@^7.8.3": 145 | version "7.8.3" 146 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 147 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 148 | dependencies: 149 | "@babel/helper-plugin-utils" "^7.8.0" 150 | 151 | "@babel/plugin-syntax-class-properties@^7.8.3": 152 | version "7.12.13" 153 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 154 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 155 | dependencies: 156 | "@babel/helper-plugin-utils" "^7.12.13" 157 | 158 | "@babel/plugin-syntax-import-meta@^7.8.3": 159 | version "7.10.4" 160 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 161 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 162 | dependencies: 163 | "@babel/helper-plugin-utils" "^7.10.4" 164 | 165 | "@babel/plugin-syntax-json-strings@^7.8.3": 166 | version "7.8.3" 167 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 168 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 169 | dependencies: 170 | "@babel/helper-plugin-utils" "^7.8.0" 171 | 172 | "@babel/plugin-syntax-jsx@^7.7.2": 173 | version "7.24.7" 174 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.7.tgz#39a1fa4a7e3d3d7f34e2acc6be585b718d30e02d" 175 | integrity sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ== 176 | dependencies: 177 | "@babel/helper-plugin-utils" "^7.24.7" 178 | 179 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 180 | version "7.10.4" 181 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 182 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 183 | dependencies: 184 | "@babel/helper-plugin-utils" "^7.10.4" 185 | 186 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 187 | version "7.8.3" 188 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 189 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 190 | dependencies: 191 | "@babel/helper-plugin-utils" "^7.8.0" 192 | 193 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 194 | version "7.10.4" 195 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 196 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 197 | dependencies: 198 | "@babel/helper-plugin-utils" "^7.10.4" 199 | 200 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 201 | version "7.8.3" 202 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 203 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 204 | dependencies: 205 | "@babel/helper-plugin-utils" "^7.8.0" 206 | 207 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 208 | version "7.8.3" 209 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 210 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 211 | dependencies: 212 | "@babel/helper-plugin-utils" "^7.8.0" 213 | 214 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 215 | version "7.8.3" 216 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 217 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 218 | dependencies: 219 | "@babel/helper-plugin-utils" "^7.8.0" 220 | 221 | "@babel/plugin-syntax-top-level-await@^7.8.3": 222 | version "7.14.5" 223 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 224 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 225 | dependencies: 226 | "@babel/helper-plugin-utils" "^7.14.5" 227 | 228 | "@babel/plugin-syntax-typescript@^7.7.2": 229 | version "7.24.7" 230 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.7.tgz#58d458271b4d3b6bb27ee6ac9525acbb259bad1c" 231 | integrity sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA== 232 | dependencies: 233 | "@babel/helper-plugin-utils" "^7.24.7" 234 | 235 | "@babel/template@^7.25.0", "@babel/template@^7.3.3": 236 | version "7.25.0" 237 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.25.0.tgz#e733dc3134b4fede528c15bc95e89cb98c52592a" 238 | integrity sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q== 239 | dependencies: 240 | "@babel/code-frame" "^7.24.7" 241 | "@babel/parser" "^7.25.0" 242 | "@babel/types" "^7.25.0" 243 | 244 | "@babel/traverse@^7.24.7", "@babel/traverse@^7.25.2": 245 | version "7.25.2" 246 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.25.2.tgz#1a0a4aef53177bead359ccd0c89f4426c805b2ae" 247 | integrity sha512-s4/r+a7xTnny2O6FcZzqgT6nE4/GHEdcqj4qAeglbUOh0TeglEfmNJFAd/OLoVtGd6ZhAO8GCVvCNUO5t/VJVQ== 248 | dependencies: 249 | "@babel/code-frame" "^7.24.7" 250 | "@babel/generator" "^7.25.0" 251 | "@babel/parser" "^7.25.0" 252 | "@babel/template" "^7.25.0" 253 | "@babel/types" "^7.25.2" 254 | debug "^4.3.1" 255 | globals "^11.1.0" 256 | 257 | "@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.24.7", "@babel/types@^7.25.0", "@babel/types@^7.25.2", "@babel/types@^7.3.3": 258 | version "7.25.2" 259 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.25.2.tgz#55fb231f7dc958cd69ea141a4c2997e819646125" 260 | integrity sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q== 261 | dependencies: 262 | "@babel/helper-string-parser" "^7.24.8" 263 | "@babel/helper-validator-identifier" "^7.24.7" 264 | to-fast-properties "^2.0.0" 265 | 266 | "@bcoe/v8-coverage@^0.2.3": 267 | version "0.2.3" 268 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 269 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 270 | 271 | "@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0": 272 | version "4.4.0" 273 | resolved "https://registry.yarnpkg.com/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz#a23514e8fb9af1269d5f7788aa556798d61c6b59" 274 | integrity sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA== 275 | dependencies: 276 | eslint-visitor-keys "^3.3.0" 277 | 278 | "@eslint-community/regexpp@^4.10.0", "@eslint-community/regexpp@^4.11.0": 279 | version "4.11.0" 280 | resolved "https://registry.yarnpkg.com/@eslint-community/regexpp/-/regexpp-4.11.0.tgz#b0ffd0312b4a3fd2d6f77237e7248a5ad3a680ae" 281 | integrity sha512-G/M/tIiMrTAxEWRfLfQJMmGNX28IxBg4PBz8XqQhqUHLFI6TL2htpIB1iQCj144V5ee/JaKyT9/WZ0MGZWfA7A== 282 | 283 | "@eslint/config-array@^0.17.1": 284 | version "0.17.1" 285 | resolved "https://registry.yarnpkg.com/@eslint/config-array/-/config-array-0.17.1.tgz#d9b8b8b6b946f47388f32bedfd3adf29ca8f8910" 286 | integrity sha512-BlYOpej8AQ8Ev9xVqroV7a02JK3SkBAaN9GfMMH9W6Ch8FlQlkjGw4Ir7+FgYwfirivAf4t+GtzuAxqfukmISA== 287 | dependencies: 288 | "@eslint/object-schema" "^2.1.4" 289 | debug "^4.3.1" 290 | minimatch "^3.1.2" 291 | 292 | "@eslint/eslintrc@^3.1.0": 293 | version "3.1.0" 294 | resolved "https://registry.yarnpkg.com/@eslint/eslintrc/-/eslintrc-3.1.0.tgz#dbd3482bfd91efa663cbe7aa1f506839868207b6" 295 | integrity sha512-4Bfj15dVJdoy3RfZmmo86RK1Fwzn6SstsvK9JS+BaVKqC6QQQQyXekNaC+g+LKNgkQ+2VhGAzm6hO40AhMR3zQ== 296 | dependencies: 297 | ajv "^6.12.4" 298 | debug "^4.3.2" 299 | espree "^10.0.1" 300 | globals "^14.0.0" 301 | ignore "^5.2.0" 302 | import-fresh "^3.2.1" 303 | js-yaml "^4.1.0" 304 | minimatch "^3.1.2" 305 | strip-json-comments "^3.1.1" 306 | 307 | "@eslint/js@9.8.0", "@eslint/js@^9.8.0": 308 | version "9.8.0" 309 | resolved "https://registry.yarnpkg.com/@eslint/js/-/js-9.8.0.tgz#ae9bc14bb839713c5056f5018bcefa955556d3a4" 310 | integrity sha512-MfluB7EUfxXtv3i/++oh89uzAr4PDI4nn201hsp+qaXqsjAWzinlZEHEfPgAX4doIlKvPG/i0A9dpKxOLII8yA== 311 | 312 | "@eslint/object-schema@^2.1.4": 313 | version "2.1.4" 314 | resolved "https://registry.yarnpkg.com/@eslint/object-schema/-/object-schema-2.1.4.tgz#9e69f8bb4031e11df79e03db09f9dbbae1740843" 315 | integrity sha512-BsWiH1yFGjXXS2yvrf5LyuoSIIbPrGUWob917o+BTKuZ7qJdxX8aJLRxs1fS9n6r7vESrq1OUqb68dANcFXuQQ== 316 | 317 | "@gnuxie/tsconfig@^0.5.3": 318 | version "0.5.3" 319 | resolved "https://registry.yarnpkg.com/@gnuxie/tsconfig/-/tsconfig-0.5.3.tgz#63dcd8161aaf7b8dbd5d8836f06f25ed82778831" 320 | integrity sha512-ENLfmCq7rKrgo03jZBZfZBeAcld6RHpUTmZ7rDB7c1clwEvDkP0BI1C/5TrPoIkRYKnpV55GSHxZDPNqseqq3A== 321 | 322 | "@gnuxie/typescript-result@^1.0.0": 323 | version "1.0.0" 324 | resolved "https://registry.yarnpkg.com/@gnuxie/typescript-result/-/typescript-result-1.0.0.tgz#d96ae02123261e42c03b2046e78d0cd6c5a24fb4" 325 | integrity sha512-evHf0XIR2wrpc8iDfQKaU+9jwrutjbDfnjmZOLij+8aFKjpOi4oSzaUfUBv89WyvEW0XtUZPUQpSe5KiE9t1ng== 326 | 327 | "@humanwhocodes/module-importer@^1.0.1": 328 | version "1.0.1" 329 | resolved "https://registry.yarnpkg.com/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz#af5b2691a22b44be847b0ca81641c5fb6ad0172c" 330 | integrity sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA== 331 | 332 | "@humanwhocodes/retry@^0.3.0": 333 | version "0.3.0" 334 | resolved "https://registry.yarnpkg.com/@humanwhocodes/retry/-/retry-0.3.0.tgz#6d86b8cb322660f03d3f0aa94b99bdd8e172d570" 335 | integrity sha512-d2CGZR2o7fS6sWB7DG/3a95bGKQyHMACZ5aW8qGkkqQpUoZV6C0X7Pc7l4ZNMZkfNBf4VWNe9E1jRsf0G146Ew== 336 | 337 | "@istanbuljs/load-nyc-config@^1.0.0": 338 | version "1.1.0" 339 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 340 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 341 | dependencies: 342 | camelcase "^5.3.1" 343 | find-up "^4.1.0" 344 | get-package-type "^0.1.0" 345 | js-yaml "^3.13.1" 346 | resolve-from "^5.0.0" 347 | 348 | "@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": 349 | version "0.1.3" 350 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 351 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 352 | 353 | "@jest/console@^29.7.0": 354 | version "29.7.0" 355 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" 356 | integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== 357 | dependencies: 358 | "@jest/types" "^29.6.3" 359 | "@types/node" "*" 360 | chalk "^4.0.0" 361 | jest-message-util "^29.7.0" 362 | jest-util "^29.7.0" 363 | slash "^3.0.0" 364 | 365 | "@jest/core@^29.7.0": 366 | version "29.7.0" 367 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" 368 | integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== 369 | dependencies: 370 | "@jest/console" "^29.7.0" 371 | "@jest/reporters" "^29.7.0" 372 | "@jest/test-result" "^29.7.0" 373 | "@jest/transform" "^29.7.0" 374 | "@jest/types" "^29.6.3" 375 | "@types/node" "*" 376 | ansi-escapes "^4.2.1" 377 | chalk "^4.0.0" 378 | ci-info "^3.2.0" 379 | exit "^0.1.2" 380 | graceful-fs "^4.2.9" 381 | jest-changed-files "^29.7.0" 382 | jest-config "^29.7.0" 383 | jest-haste-map "^29.7.0" 384 | jest-message-util "^29.7.0" 385 | jest-regex-util "^29.6.3" 386 | jest-resolve "^29.7.0" 387 | jest-resolve-dependencies "^29.7.0" 388 | jest-runner "^29.7.0" 389 | jest-runtime "^29.7.0" 390 | jest-snapshot "^29.7.0" 391 | jest-util "^29.7.0" 392 | jest-validate "^29.7.0" 393 | jest-watcher "^29.7.0" 394 | micromatch "^4.0.4" 395 | pretty-format "^29.7.0" 396 | slash "^3.0.0" 397 | strip-ansi "^6.0.0" 398 | 399 | "@jest/environment@^29.7.0": 400 | version "29.7.0" 401 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" 402 | integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== 403 | dependencies: 404 | "@jest/fake-timers" "^29.7.0" 405 | "@jest/types" "^29.6.3" 406 | "@types/node" "*" 407 | jest-mock "^29.7.0" 408 | 409 | "@jest/expect-utils@^29.7.0": 410 | version "29.7.0" 411 | resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" 412 | integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== 413 | dependencies: 414 | jest-get-type "^29.6.3" 415 | 416 | "@jest/expect@^29.7.0": 417 | version "29.7.0" 418 | resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" 419 | integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== 420 | dependencies: 421 | expect "^29.7.0" 422 | jest-snapshot "^29.7.0" 423 | 424 | "@jest/fake-timers@^29.7.0": 425 | version "29.7.0" 426 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" 427 | integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== 428 | dependencies: 429 | "@jest/types" "^29.6.3" 430 | "@sinonjs/fake-timers" "^10.0.2" 431 | "@types/node" "*" 432 | jest-message-util "^29.7.0" 433 | jest-mock "^29.7.0" 434 | jest-util "^29.7.0" 435 | 436 | "@jest/globals@^29.7.0": 437 | version "29.7.0" 438 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" 439 | integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== 440 | dependencies: 441 | "@jest/environment" "^29.7.0" 442 | "@jest/expect" "^29.7.0" 443 | "@jest/types" "^29.6.3" 444 | jest-mock "^29.7.0" 445 | 446 | "@jest/reporters@^29.7.0": 447 | version "29.7.0" 448 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" 449 | integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== 450 | dependencies: 451 | "@bcoe/v8-coverage" "^0.2.3" 452 | "@jest/console" "^29.7.0" 453 | "@jest/test-result" "^29.7.0" 454 | "@jest/transform" "^29.7.0" 455 | "@jest/types" "^29.6.3" 456 | "@jridgewell/trace-mapping" "^0.3.18" 457 | "@types/node" "*" 458 | chalk "^4.0.0" 459 | collect-v8-coverage "^1.0.0" 460 | exit "^0.1.2" 461 | glob "^7.1.3" 462 | graceful-fs "^4.2.9" 463 | istanbul-lib-coverage "^3.0.0" 464 | istanbul-lib-instrument "^6.0.0" 465 | istanbul-lib-report "^3.0.0" 466 | istanbul-lib-source-maps "^4.0.0" 467 | istanbul-reports "^3.1.3" 468 | jest-message-util "^29.7.0" 469 | jest-util "^29.7.0" 470 | jest-worker "^29.7.0" 471 | slash "^3.0.0" 472 | string-length "^4.0.1" 473 | strip-ansi "^6.0.0" 474 | v8-to-istanbul "^9.0.1" 475 | 476 | "@jest/schemas@^29.6.3": 477 | version "29.6.3" 478 | resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" 479 | integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== 480 | dependencies: 481 | "@sinclair/typebox" "^0.27.8" 482 | 483 | "@jest/source-map@^29.6.3": 484 | version "29.6.3" 485 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" 486 | integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== 487 | dependencies: 488 | "@jridgewell/trace-mapping" "^0.3.18" 489 | callsites "^3.0.0" 490 | graceful-fs "^4.2.9" 491 | 492 | "@jest/test-result@^29.7.0": 493 | version "29.7.0" 494 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" 495 | integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== 496 | dependencies: 497 | "@jest/console" "^29.7.0" 498 | "@jest/types" "^29.6.3" 499 | "@types/istanbul-lib-coverage" "^2.0.0" 500 | collect-v8-coverage "^1.0.0" 501 | 502 | "@jest/test-sequencer@^29.7.0": 503 | version "29.7.0" 504 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" 505 | integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== 506 | dependencies: 507 | "@jest/test-result" "^29.7.0" 508 | graceful-fs "^4.2.9" 509 | jest-haste-map "^29.7.0" 510 | slash "^3.0.0" 511 | 512 | "@jest/transform@^29.7.0": 513 | version "29.7.0" 514 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" 515 | integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== 516 | dependencies: 517 | "@babel/core" "^7.11.6" 518 | "@jest/types" "^29.6.3" 519 | "@jridgewell/trace-mapping" "^0.3.18" 520 | babel-plugin-istanbul "^6.1.1" 521 | chalk "^4.0.0" 522 | convert-source-map "^2.0.0" 523 | fast-json-stable-stringify "^2.1.0" 524 | graceful-fs "^4.2.9" 525 | jest-haste-map "^29.7.0" 526 | jest-regex-util "^29.6.3" 527 | jest-util "^29.7.0" 528 | micromatch "^4.0.4" 529 | pirates "^4.0.4" 530 | slash "^3.0.0" 531 | write-file-atomic "^4.0.2" 532 | 533 | "@jest/types@^29.6.3": 534 | version "29.6.3" 535 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" 536 | integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== 537 | dependencies: 538 | "@jest/schemas" "^29.6.3" 539 | "@types/istanbul-lib-coverage" "^2.0.0" 540 | "@types/istanbul-reports" "^3.0.0" 541 | "@types/node" "*" 542 | "@types/yargs" "^17.0.8" 543 | chalk "^4.0.0" 544 | 545 | "@jridgewell/gen-mapping@^0.3.5": 546 | version "0.3.5" 547 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" 548 | integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== 549 | dependencies: 550 | "@jridgewell/set-array" "^1.2.1" 551 | "@jridgewell/sourcemap-codec" "^1.4.10" 552 | "@jridgewell/trace-mapping" "^0.3.24" 553 | 554 | "@jridgewell/resolve-uri@^3.1.0": 555 | version "3.1.2" 556 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" 557 | integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== 558 | 559 | "@jridgewell/set-array@^1.2.1": 560 | version "1.2.1" 561 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" 562 | integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== 563 | 564 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 565 | version "1.5.0" 566 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz#3188bcb273a414b0d215fd22a58540b989b9409a" 567 | integrity sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ== 568 | 569 | "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": 570 | version "0.3.25" 571 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" 572 | integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== 573 | dependencies: 574 | "@jridgewell/resolve-uri" "^3.1.0" 575 | "@jridgewell/sourcemap-codec" "^1.4.14" 576 | 577 | "@nodelib/fs.scandir@2.1.5": 578 | version "2.1.5" 579 | resolved "https://registry.yarnpkg.com/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz#7619c2eb21b25483f6d167548b4cfd5a7488c3d5" 580 | integrity sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g== 581 | dependencies: 582 | "@nodelib/fs.stat" "2.0.5" 583 | run-parallel "^1.1.9" 584 | 585 | "@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2": 586 | version "2.0.5" 587 | resolved "https://registry.yarnpkg.com/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz#5bd262af94e9d25bd1e71b05deed44876a222e8b" 588 | integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A== 589 | 590 | "@nodelib/fs.walk@^1.2.3", "@nodelib/fs.walk@^1.2.8": 591 | version "1.2.8" 592 | resolved "https://registry.yarnpkg.com/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz#e95737e8bb6746ddedf69c556953494f196fe69a" 593 | integrity sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg== 594 | dependencies: 595 | "@nodelib/fs.scandir" "2.1.5" 596 | fastq "^1.6.0" 597 | 598 | "@sinclair/typebox@^0.27.8": 599 | version "0.27.8" 600 | resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" 601 | integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== 602 | 603 | "@sinonjs/commons@^3.0.0": 604 | version "3.0.1" 605 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" 606 | integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== 607 | dependencies: 608 | type-detect "4.0.8" 609 | 610 | "@sinonjs/fake-timers@^10.0.2": 611 | version "10.3.0" 612 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" 613 | integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== 614 | dependencies: 615 | "@sinonjs/commons" "^3.0.0" 616 | 617 | "@types/babel__core@^7.1.14": 618 | version "7.20.5" 619 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" 620 | integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== 621 | dependencies: 622 | "@babel/parser" "^7.20.7" 623 | "@babel/types" "^7.20.7" 624 | "@types/babel__generator" "*" 625 | "@types/babel__template" "*" 626 | "@types/babel__traverse" "*" 627 | 628 | "@types/babel__generator@*": 629 | version "7.6.8" 630 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" 631 | integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== 632 | dependencies: 633 | "@babel/types" "^7.0.0" 634 | 635 | "@types/babel__template@*": 636 | version "7.4.4" 637 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" 638 | integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== 639 | dependencies: 640 | "@babel/parser" "^7.1.0" 641 | "@babel/types" "^7.0.0" 642 | 643 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": 644 | version "7.20.6" 645 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.6.tgz#8dc9f0ae0f202c08d8d4dab648912c8d6038e3f7" 646 | integrity sha512-r1bzfrm0tomOI8g1SzvCaQHo6Lcv6zu0EA+W2kHrt8dyrHQxGzBBL4kdkzIS+jBMV+EYcMAEAqXqYaLJq5rOZg== 647 | dependencies: 648 | "@babel/types" "^7.20.7" 649 | 650 | "@types/eslint@*": 651 | version "9.6.0" 652 | resolved "https://registry.yarnpkg.com/@types/eslint/-/eslint-9.6.0.tgz#51d4fe4d0316da9e9f2c80884f2c20ed5fb022ff" 653 | integrity sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg== 654 | dependencies: 655 | "@types/estree" "*" 656 | "@types/json-schema" "*" 657 | 658 | "@types/eslint__js@^8.42.3": 659 | version "8.42.3" 660 | resolved "https://registry.yarnpkg.com/@types/eslint__js/-/eslint__js-8.42.3.tgz#d1fa13e5c1be63a10b4e3afe992779f81c1179a0" 661 | integrity sha512-alfG737uhmPdnvkrLdZLcEKJ/B8s9Y4hrZ+YAdzUeoArBlSUERA2E87ROfOaS4jd/C45fzOoZzidLc1IPwLqOw== 662 | dependencies: 663 | "@types/eslint" "*" 664 | 665 | "@types/estree@*": 666 | version "1.0.5" 667 | resolved "https://registry.yarnpkg.com/@types/estree/-/estree-1.0.5.tgz#a6ce3e556e00fd9895dd872dd172ad0d4bd687f4" 668 | integrity sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw== 669 | 670 | "@types/glob-to-regexp@^0.4.4": 671 | version "0.4.4" 672 | resolved "https://registry.yarnpkg.com/@types/glob-to-regexp/-/glob-to-regexp-0.4.4.tgz#409e71290253203185b1ea8a3d6ea406a4bdc902" 673 | integrity sha512-nDKoaKJYbnn1MZxUY0cA1bPmmgZbg0cTq7Rh13d0KWYNOiKbqoR+2d89SnRPszGh7ROzSwZ/GOjZ4jPbmmZ6Eg== 674 | 675 | "@types/graceful-fs@^4.1.3": 676 | version "4.1.9" 677 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" 678 | integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== 679 | dependencies: 680 | "@types/node" "*" 681 | 682 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 683 | version "2.0.6" 684 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" 685 | integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== 686 | 687 | "@types/istanbul-lib-report@*": 688 | version "3.0.3" 689 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" 690 | integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== 691 | dependencies: 692 | "@types/istanbul-lib-coverage" "*" 693 | 694 | "@types/istanbul-reports@^3.0.0": 695 | version "3.0.4" 696 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" 697 | integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== 698 | dependencies: 699 | "@types/istanbul-lib-report" "*" 700 | 701 | "@types/jest@^29.5.12": 702 | version "29.5.12" 703 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.12.tgz#7f7dc6eb4cf246d2474ed78744b05d06ce025544" 704 | integrity sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw== 705 | dependencies: 706 | expect "^29.0.0" 707 | pretty-format "^29.0.0" 708 | 709 | "@types/json-schema@*": 710 | version "7.0.15" 711 | resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.15.tgz#596a1747233694d50f6ad8a7869fcb6f56cf5841" 712 | integrity sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA== 713 | 714 | "@types/node@*", "@types/node@^22.0.0": 715 | version "22.0.0" 716 | resolved "https://registry.yarnpkg.com/@types/node/-/node-22.0.0.tgz#04862a2a71e62264426083abe1e27e87cac05a30" 717 | integrity sha512-VT7KSYudcPOzP5Q0wfbowyNLaVR8QWUdw+088uFWwfvpY6uCWaXpqV6ieLAu9WBcnTa7H4Z5RLK8I5t2FuOcqw== 718 | dependencies: 719 | undici-types "~6.11.1" 720 | 721 | "@types/stack-utils@^2.0.0": 722 | version "2.0.3" 723 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" 724 | integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== 725 | 726 | "@types/yargs-parser@*": 727 | version "21.0.3" 728 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" 729 | integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== 730 | 731 | "@types/yargs@^17.0.8": 732 | version "17.0.32" 733 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" 734 | integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== 735 | dependencies: 736 | "@types/yargs-parser" "*" 737 | 738 | "@typescript-eslint/eslint-plugin@7.18.0": 739 | version "7.18.0" 740 | resolved "https://registry.yarnpkg.com/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.18.0.tgz#b16d3cf3ee76bf572fdf511e79c248bdec619ea3" 741 | integrity sha512-94EQTWZ40mzBc42ATNIBimBEDltSJ9RQHCC8vc/PDbxi4k8dVwUAv4o98dk50M1zB+JGFxp43FP7f8+FP8R6Sw== 742 | dependencies: 743 | "@eslint-community/regexpp" "^4.10.0" 744 | "@typescript-eslint/scope-manager" "7.18.0" 745 | "@typescript-eslint/type-utils" "7.18.0" 746 | "@typescript-eslint/utils" "7.18.0" 747 | "@typescript-eslint/visitor-keys" "7.18.0" 748 | graphemer "^1.4.0" 749 | ignore "^5.3.1" 750 | natural-compare "^1.4.0" 751 | ts-api-utils "^1.3.0" 752 | 753 | "@typescript-eslint/parser@7.18.0": 754 | version "7.18.0" 755 | resolved "https://registry.yarnpkg.com/@typescript-eslint/parser/-/parser-7.18.0.tgz#83928d0f1b7f4afa974098c64b5ce6f9051f96a0" 756 | integrity sha512-4Z+L8I2OqhZV8qA132M4wNL30ypZGYOQVBfMgxDH/K5UX0PNqTu1c6za9ST5r9+tavvHiTWmBnKzpCJ/GlVFtg== 757 | dependencies: 758 | "@typescript-eslint/scope-manager" "7.18.0" 759 | "@typescript-eslint/types" "7.18.0" 760 | "@typescript-eslint/typescript-estree" "7.18.0" 761 | "@typescript-eslint/visitor-keys" "7.18.0" 762 | debug "^4.3.4" 763 | 764 | "@typescript-eslint/scope-manager@7.18.0": 765 | version "7.18.0" 766 | resolved "https://registry.yarnpkg.com/@typescript-eslint/scope-manager/-/scope-manager-7.18.0.tgz#c928e7a9fc2c0b3ed92ab3112c614d6bd9951c83" 767 | integrity sha512-jjhdIE/FPF2B7Z1uzc6i3oWKbGcHb87Qw7AWj6jmEqNOfDFbJWtjt/XfwCpvNkpGWlcJaog5vTR+VV8+w9JflA== 768 | dependencies: 769 | "@typescript-eslint/types" "7.18.0" 770 | "@typescript-eslint/visitor-keys" "7.18.0" 771 | 772 | "@typescript-eslint/type-utils@7.18.0": 773 | version "7.18.0" 774 | resolved "https://registry.yarnpkg.com/@typescript-eslint/type-utils/-/type-utils-7.18.0.tgz#2165ffaee00b1fbbdd2d40aa85232dab6998f53b" 775 | integrity sha512-XL0FJXuCLaDuX2sYqZUUSOJ2sG5/i1AAze+axqmLnSkNEVMVYLF+cbwlB2w8D1tinFuSikHmFta+P+HOofrLeA== 776 | dependencies: 777 | "@typescript-eslint/typescript-estree" "7.18.0" 778 | "@typescript-eslint/utils" "7.18.0" 779 | debug "^4.3.4" 780 | ts-api-utils "^1.3.0" 781 | 782 | "@typescript-eslint/types@7.18.0": 783 | version "7.18.0" 784 | resolved "https://registry.yarnpkg.com/@typescript-eslint/types/-/types-7.18.0.tgz#b90a57ccdea71797ffffa0321e744f379ec838c9" 785 | integrity sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ== 786 | 787 | "@typescript-eslint/typescript-estree@7.18.0": 788 | version "7.18.0" 789 | resolved "https://registry.yarnpkg.com/@typescript-eslint/typescript-estree/-/typescript-estree-7.18.0.tgz#b5868d486c51ce8f312309ba79bdb9f331b37931" 790 | integrity sha512-aP1v/BSPnnyhMHts8cf1qQ6Q1IFwwRvAQGRvBFkWlo3/lH29OXA3Pts+c10nxRxIBrDnoMqzhgdwVe5f2D6OzA== 791 | dependencies: 792 | "@typescript-eslint/types" "7.18.0" 793 | "@typescript-eslint/visitor-keys" "7.18.0" 794 | debug "^4.3.4" 795 | globby "^11.1.0" 796 | is-glob "^4.0.3" 797 | minimatch "^9.0.4" 798 | semver "^7.6.0" 799 | ts-api-utils "^1.3.0" 800 | 801 | "@typescript-eslint/utils@7.18.0": 802 | version "7.18.0" 803 | resolved "https://registry.yarnpkg.com/@typescript-eslint/utils/-/utils-7.18.0.tgz#bca01cde77f95fc6a8d5b0dbcbfb3d6ca4be451f" 804 | integrity sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw== 805 | dependencies: 806 | "@eslint-community/eslint-utils" "^4.4.0" 807 | "@typescript-eslint/scope-manager" "7.18.0" 808 | "@typescript-eslint/types" "7.18.0" 809 | "@typescript-eslint/typescript-estree" "7.18.0" 810 | 811 | "@typescript-eslint/visitor-keys@7.18.0": 812 | version "7.18.0" 813 | resolved "https://registry.yarnpkg.com/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz#0564629b6124d67607378d0f0332a0495b25e7d7" 814 | integrity sha512-cDF0/Gf81QpY3xYyJKDV14Zwdmid5+uuENhjH2EqFaF0ni+yAyq/LzMaIJdhNJXZI7uLzwIlA+V7oWoyn6Curg== 815 | dependencies: 816 | "@typescript-eslint/types" "7.18.0" 817 | eslint-visitor-keys "^3.4.3" 818 | 819 | acorn-jsx@^5.3.2: 820 | version "5.3.2" 821 | resolved "https://registry.yarnpkg.com/acorn-jsx/-/acorn-jsx-5.3.2.tgz#7ed5bb55908b3b2f1bc55c6af1653bada7f07937" 822 | integrity sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ== 823 | 824 | acorn@^8.12.0: 825 | version "8.12.1" 826 | resolved "https://registry.yarnpkg.com/acorn/-/acorn-8.12.1.tgz#71616bdccbe25e27a54439e0046e89ca76df2248" 827 | integrity sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg== 828 | 829 | ajv@^6.12.4: 830 | version "6.12.6" 831 | resolved "https://registry.yarnpkg.com/ajv/-/ajv-6.12.6.tgz#baf5a62e802b07d977034586f8c3baf5adf26df4" 832 | integrity sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g== 833 | dependencies: 834 | fast-deep-equal "^3.1.1" 835 | fast-json-stable-stringify "^2.0.0" 836 | json-schema-traverse "^0.4.1" 837 | uri-js "^4.2.2" 838 | 839 | ansi-escapes@^4.2.1: 840 | version "4.3.2" 841 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 842 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 843 | dependencies: 844 | type-fest "^0.21.3" 845 | 846 | ansi-regex@^5.0.1: 847 | version "5.0.1" 848 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 849 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 850 | 851 | ansi-styles@^3.2.1: 852 | version "3.2.1" 853 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 854 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 855 | dependencies: 856 | color-convert "^1.9.0" 857 | 858 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 859 | version "4.3.0" 860 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 861 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 862 | dependencies: 863 | color-convert "^2.0.1" 864 | 865 | ansi-styles@^5.0.0: 866 | version "5.2.0" 867 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 868 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 869 | 870 | anymatch@^3.0.3: 871 | version "3.1.3" 872 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 873 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 874 | dependencies: 875 | normalize-path "^3.0.0" 876 | picomatch "^2.0.4" 877 | 878 | argparse@^1.0.7: 879 | version "1.0.10" 880 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 881 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 882 | dependencies: 883 | sprintf-js "~1.0.2" 884 | 885 | argparse@^2.0.1: 886 | version "2.0.1" 887 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-2.0.1.tgz#246f50f3ca78a3240f6c997e8a9bd1eac49e4b38" 888 | integrity sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q== 889 | 890 | array-union@^2.1.0: 891 | version "2.1.0" 892 | resolved "https://registry.yarnpkg.com/array-union/-/array-union-2.1.0.tgz#b798420adbeb1de828d84acd8a2e23d3efe85e8d" 893 | integrity sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw== 894 | 895 | async@^3.2.3: 896 | version "3.2.5" 897 | resolved "https://registry.yarnpkg.com/async/-/async-3.2.5.tgz#ebd52a8fdaf7a2289a24df399f8d8485c8a46b66" 898 | integrity sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg== 899 | 900 | babel-jest@^29.7.0: 901 | version "29.7.0" 902 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" 903 | integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== 904 | dependencies: 905 | "@jest/transform" "^29.7.0" 906 | "@types/babel__core" "^7.1.14" 907 | babel-plugin-istanbul "^6.1.1" 908 | babel-preset-jest "^29.6.3" 909 | chalk "^4.0.0" 910 | graceful-fs "^4.2.9" 911 | slash "^3.0.0" 912 | 913 | babel-plugin-istanbul@^6.1.1: 914 | version "6.1.1" 915 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" 916 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 917 | dependencies: 918 | "@babel/helper-plugin-utils" "^7.0.0" 919 | "@istanbuljs/load-nyc-config" "^1.0.0" 920 | "@istanbuljs/schema" "^0.1.2" 921 | istanbul-lib-instrument "^5.0.4" 922 | test-exclude "^6.0.0" 923 | 924 | babel-plugin-jest-hoist@^29.6.3: 925 | version "29.6.3" 926 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" 927 | integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== 928 | dependencies: 929 | "@babel/template" "^7.3.3" 930 | "@babel/types" "^7.3.3" 931 | "@types/babel__core" "^7.1.14" 932 | "@types/babel__traverse" "^7.0.6" 933 | 934 | babel-preset-current-node-syntax@^1.0.0: 935 | version "1.0.1" 936 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 937 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 938 | dependencies: 939 | "@babel/plugin-syntax-async-generators" "^7.8.4" 940 | "@babel/plugin-syntax-bigint" "^7.8.3" 941 | "@babel/plugin-syntax-class-properties" "^7.8.3" 942 | "@babel/plugin-syntax-import-meta" "^7.8.3" 943 | "@babel/plugin-syntax-json-strings" "^7.8.3" 944 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 945 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 946 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 947 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 948 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 949 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 950 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 951 | 952 | babel-preset-jest@^29.6.3: 953 | version "29.6.3" 954 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" 955 | integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== 956 | dependencies: 957 | babel-plugin-jest-hoist "^29.6.3" 958 | babel-preset-current-node-syntax "^1.0.0" 959 | 960 | balanced-match@^1.0.0: 961 | version "1.0.2" 962 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 963 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 964 | 965 | brace-expansion@^1.1.7: 966 | version "1.1.11" 967 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 968 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 969 | dependencies: 970 | balanced-match "^1.0.0" 971 | concat-map "0.0.1" 972 | 973 | brace-expansion@^2.0.1: 974 | version "2.0.1" 975 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 976 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 977 | dependencies: 978 | balanced-match "^1.0.0" 979 | 980 | braces@^3.0.3: 981 | version "3.0.3" 982 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.3.tgz#490332f40919452272d55a8480adc0c441358789" 983 | integrity sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA== 984 | dependencies: 985 | fill-range "^7.1.1" 986 | 987 | browserslist@^4.23.1: 988 | version "4.23.2" 989 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.2.tgz#244fe803641f1c19c28c48c4b6ec9736eb3d32ed" 990 | integrity sha512-qkqSyistMYdxAcw+CzbZwlBy8AGmS/eEWs+sEV5TnLRGDOL+C5M2EnH6tlZyg0YoAxGJAFKh61En9BR941GnHA== 991 | dependencies: 992 | caniuse-lite "^1.0.30001640" 993 | electron-to-chromium "^1.4.820" 994 | node-releases "^2.0.14" 995 | update-browserslist-db "^1.1.0" 996 | 997 | bs-logger@0.x: 998 | version "0.2.6" 999 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 1000 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== 1001 | dependencies: 1002 | fast-json-stable-stringify "2.x" 1003 | 1004 | bser@2.1.1: 1005 | version "2.1.1" 1006 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 1007 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 1008 | dependencies: 1009 | node-int64 "^0.4.0" 1010 | 1011 | buffer-from@^1.0.0: 1012 | version "1.1.2" 1013 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 1014 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 1015 | 1016 | callsites@^3.0.0: 1017 | version "3.1.0" 1018 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 1019 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 1020 | 1021 | camelcase@^5.3.1: 1022 | version "5.3.1" 1023 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 1024 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 1025 | 1026 | camelcase@^6.2.0: 1027 | version "6.3.0" 1028 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 1029 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 1030 | 1031 | caniuse-lite@^1.0.30001640: 1032 | version "1.0.30001644" 1033 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001644.tgz#bcd4212a7a03bdedba1ea850b8a72bfe4bec2395" 1034 | integrity sha512-YGvlOZB4QhZuiis+ETS0VXR+MExbFf4fZYYeMTEE0aTQd/RdIjkTyZjLrbYVKnHzppDvnOhritRVv+i7Go6mHw== 1035 | 1036 | chalk@^2.4.2: 1037 | version "2.4.2" 1038 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 1039 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 1040 | dependencies: 1041 | ansi-styles "^3.2.1" 1042 | escape-string-regexp "^1.0.5" 1043 | supports-color "^5.3.0" 1044 | 1045 | chalk@^4.0.0, chalk@^4.0.2: 1046 | version "4.1.2" 1047 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 1048 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 1049 | dependencies: 1050 | ansi-styles "^4.1.0" 1051 | supports-color "^7.1.0" 1052 | 1053 | char-regex@^1.0.2: 1054 | version "1.0.2" 1055 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 1056 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 1057 | 1058 | ci-info@^3.2.0: 1059 | version "3.9.0" 1060 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" 1061 | integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== 1062 | 1063 | cjs-module-lexer@^1.0.0: 1064 | version "1.3.1" 1065 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.3.1.tgz#c485341ae8fd999ca4ee5af2d7a1c9ae01e0099c" 1066 | integrity sha512-a3KdPAANPbNE4ZUv9h6LckSl9zLsYOP4MBmhIPkRaeyybt+r4UghLvq+xw/YwUcC1gqylCkL4rdVs3Lwupjm4Q== 1067 | 1068 | cliui@^8.0.1: 1069 | version "8.0.1" 1070 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" 1071 | integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== 1072 | dependencies: 1073 | string-width "^4.2.0" 1074 | strip-ansi "^6.0.1" 1075 | wrap-ansi "^7.0.0" 1076 | 1077 | co@^4.6.0: 1078 | version "4.6.0" 1079 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 1080 | integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== 1081 | 1082 | collect-v8-coverage@^1.0.0: 1083 | version "1.0.2" 1084 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" 1085 | integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== 1086 | 1087 | color-convert@^1.9.0: 1088 | version "1.9.3" 1089 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 1090 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 1091 | dependencies: 1092 | color-name "1.1.3" 1093 | 1094 | color-convert@^2.0.1: 1095 | version "2.0.1" 1096 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 1097 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 1098 | dependencies: 1099 | color-name "~1.1.4" 1100 | 1101 | color-name@1.1.3: 1102 | version "1.1.3" 1103 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 1104 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 1105 | 1106 | color-name@~1.1.4: 1107 | version "1.1.4" 1108 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 1109 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 1110 | 1111 | concat-map@0.0.1: 1112 | version "0.0.1" 1113 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 1114 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 1115 | 1116 | convert-source-map@^2.0.0: 1117 | version "2.0.0" 1118 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" 1119 | integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== 1120 | 1121 | create-jest@^29.7.0: 1122 | version "29.7.0" 1123 | resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" 1124 | integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== 1125 | dependencies: 1126 | "@jest/types" "^29.6.3" 1127 | chalk "^4.0.0" 1128 | exit "^0.1.2" 1129 | graceful-fs "^4.2.9" 1130 | jest-config "^29.7.0" 1131 | jest-util "^29.7.0" 1132 | prompts "^2.0.1" 1133 | 1134 | cross-spawn@^7.0.2, cross-spawn@^7.0.3: 1135 | version "7.0.3" 1136 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 1137 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 1138 | dependencies: 1139 | path-key "^3.1.0" 1140 | shebang-command "^2.0.0" 1141 | which "^2.0.1" 1142 | 1143 | debug@^4.1.0, debug@^4.1.1, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4: 1144 | version "4.3.6" 1145 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.6.tgz#2ab2c38fbaffebf8aa95fdfe6d88438c7a13c52b" 1146 | integrity sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg== 1147 | dependencies: 1148 | ms "2.1.2" 1149 | 1150 | dedent@^1.0.0: 1151 | version "1.5.3" 1152 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" 1153 | integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== 1154 | 1155 | deep-is@^0.1.3: 1156 | version "0.1.4" 1157 | resolved "https://registry.yarnpkg.com/deep-is/-/deep-is-0.1.4.tgz#a6f2dce612fadd2ef1f519b73551f17e85199831" 1158 | integrity sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ== 1159 | 1160 | deepmerge@^4.2.2: 1161 | version "4.3.1" 1162 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" 1163 | integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== 1164 | 1165 | detect-newline@^3.0.0: 1166 | version "3.1.0" 1167 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 1168 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 1169 | 1170 | diff-sequences@^29.6.3: 1171 | version "29.6.3" 1172 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" 1173 | integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== 1174 | 1175 | dir-glob@^3.0.1: 1176 | version "3.0.1" 1177 | resolved "https://registry.yarnpkg.com/dir-glob/-/dir-glob-3.0.1.tgz#56dbf73d992a4a93ba1584f4534063fd2e41717f" 1178 | integrity sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA== 1179 | dependencies: 1180 | path-type "^4.0.0" 1181 | 1182 | ejs@^3.1.10: 1183 | version "3.1.10" 1184 | resolved "https://registry.yarnpkg.com/ejs/-/ejs-3.1.10.tgz#69ab8358b14e896f80cc39e62087b88500c3ac3b" 1185 | integrity sha512-UeJmFfOrAQS8OJWPZ4qtgHyWExa088/MtK5UEyoJGFH67cDEXkZSviOiKRCZ4Xij0zxI3JECgYs3oKx+AizQBA== 1186 | dependencies: 1187 | jake "^10.8.5" 1188 | 1189 | electron-to-chromium@^1.4.820: 1190 | version "1.5.3" 1191 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.5.3.tgz#032bbb8661c0449656fd896e805c8f7150229a0f" 1192 | integrity sha512-QNdYSS5i8D9axWp/6XIezRObRHqaav/ur9z1VzCDUCH1XIFOr9WQk5xmgunhsTpjjgDy3oLxO/WMOVZlpUQrlA== 1193 | 1194 | emittery@^0.13.1: 1195 | version "0.13.1" 1196 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" 1197 | integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== 1198 | 1199 | emoji-regex@^8.0.0: 1200 | version "8.0.0" 1201 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 1202 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 1203 | 1204 | error-ex@^1.3.1: 1205 | version "1.3.2" 1206 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 1207 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 1208 | dependencies: 1209 | is-arrayish "^0.2.1" 1210 | 1211 | escalade@^3.1.1, escalade@^3.1.2: 1212 | version "3.1.2" 1213 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" 1214 | integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== 1215 | 1216 | escape-string-regexp@^1.0.5: 1217 | version "1.0.5" 1218 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1219 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1220 | 1221 | escape-string-regexp@^2.0.0: 1222 | version "2.0.0" 1223 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1224 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1225 | 1226 | escape-string-regexp@^4.0.0: 1227 | version "4.0.0" 1228 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz#14ba83a5d373e3d311e5afca29cf5bfad965bf34" 1229 | integrity sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA== 1230 | 1231 | eslint-scope@^8.0.2: 1232 | version "8.0.2" 1233 | resolved "https://registry.yarnpkg.com/eslint-scope/-/eslint-scope-8.0.2.tgz#5cbb33d4384c9136083a71190d548158fe128f94" 1234 | integrity sha512-6E4xmrTw5wtxnLA5wYL3WDfhZ/1bUBGOXV0zQvVRDOtrR8D0p6W7fs3JweNYhwRYeGvd/1CKX2se0/2s7Q/nJA== 1235 | dependencies: 1236 | esrecurse "^4.3.0" 1237 | estraverse "^5.2.0" 1238 | 1239 | eslint-visitor-keys@^3.3.0, eslint-visitor-keys@^3.4.3: 1240 | version "3.4.3" 1241 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz#0cd72fe8550e3c2eae156a96a4dddcd1c8ac5800" 1242 | integrity sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag== 1243 | 1244 | eslint-visitor-keys@^4.0.0: 1245 | version "4.0.0" 1246 | resolved "https://registry.yarnpkg.com/eslint-visitor-keys/-/eslint-visitor-keys-4.0.0.tgz#e3adc021aa038a2a8e0b2f8b0ce8f66b9483b1fb" 1247 | integrity sha512-OtIRv/2GyiF6o/d8K7MYKKbXrOUBIK6SfkIRM4Z0dY3w+LiQ0vy3F57m0Z71bjbyeiWFiHJ8brqnmE6H6/jEuw== 1248 | 1249 | eslint@^9.8.0: 1250 | version "9.8.0" 1251 | resolved "https://registry.yarnpkg.com/eslint/-/eslint-9.8.0.tgz#a4f4a090c8ea2d10864d89a6603e02ce9f649f0f" 1252 | integrity sha512-K8qnZ/QJzT2dLKdZJVX6W4XOwBzutMYmt0lqUS+JdXgd+HTYFlonFgkJ8s44d/zMPPCnOOk0kMWCApCPhiOy9A== 1253 | dependencies: 1254 | "@eslint-community/eslint-utils" "^4.2.0" 1255 | "@eslint-community/regexpp" "^4.11.0" 1256 | "@eslint/config-array" "^0.17.1" 1257 | "@eslint/eslintrc" "^3.1.0" 1258 | "@eslint/js" "9.8.0" 1259 | "@humanwhocodes/module-importer" "^1.0.1" 1260 | "@humanwhocodes/retry" "^0.3.0" 1261 | "@nodelib/fs.walk" "^1.2.8" 1262 | ajv "^6.12.4" 1263 | chalk "^4.0.0" 1264 | cross-spawn "^7.0.2" 1265 | debug "^4.3.2" 1266 | escape-string-regexp "^4.0.0" 1267 | eslint-scope "^8.0.2" 1268 | eslint-visitor-keys "^4.0.0" 1269 | espree "^10.1.0" 1270 | esquery "^1.5.0" 1271 | esutils "^2.0.2" 1272 | fast-deep-equal "^3.1.3" 1273 | file-entry-cache "^8.0.0" 1274 | find-up "^5.0.0" 1275 | glob-parent "^6.0.2" 1276 | ignore "^5.2.0" 1277 | imurmurhash "^0.1.4" 1278 | is-glob "^4.0.0" 1279 | is-path-inside "^3.0.3" 1280 | json-stable-stringify-without-jsonify "^1.0.1" 1281 | levn "^0.4.1" 1282 | lodash.merge "^4.6.2" 1283 | minimatch "^3.1.2" 1284 | natural-compare "^1.4.0" 1285 | optionator "^0.9.3" 1286 | strip-ansi "^6.0.1" 1287 | text-table "^0.2.0" 1288 | 1289 | espree@^10.0.1, espree@^10.1.0: 1290 | version "10.1.0" 1291 | resolved "https://registry.yarnpkg.com/espree/-/espree-10.1.0.tgz#8788dae611574c0f070691f522e4116c5a11fc56" 1292 | integrity sha512-M1M6CpiE6ffoigIOWYO9UDP8TMUw9kqb21tf+08IgDYjCsOvCuDt4jQcZmoYxx+w7zlKw9/N0KXfto+I8/FrXA== 1293 | dependencies: 1294 | acorn "^8.12.0" 1295 | acorn-jsx "^5.3.2" 1296 | eslint-visitor-keys "^4.0.0" 1297 | 1298 | esprima@^4.0.0: 1299 | version "4.0.1" 1300 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1301 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1302 | 1303 | esquery@^1.5.0: 1304 | version "1.6.0" 1305 | resolved "https://registry.yarnpkg.com/esquery/-/esquery-1.6.0.tgz#91419234f804d852a82dceec3e16cdc22cf9dae7" 1306 | integrity sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg== 1307 | dependencies: 1308 | estraverse "^5.1.0" 1309 | 1310 | esrecurse@^4.3.0: 1311 | version "4.3.0" 1312 | resolved "https://registry.yarnpkg.com/esrecurse/-/esrecurse-4.3.0.tgz#7ad7964d679abb28bee72cec63758b1c5d2c9921" 1313 | integrity sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag== 1314 | dependencies: 1315 | estraverse "^5.2.0" 1316 | 1317 | estraverse@^5.1.0, estraverse@^5.2.0: 1318 | version "5.3.0" 1319 | resolved "https://registry.yarnpkg.com/estraverse/-/estraverse-5.3.0.tgz#2eea5290702f26ab8fe5370370ff86c965d21123" 1320 | integrity sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA== 1321 | 1322 | esutils@^2.0.2: 1323 | version "2.0.3" 1324 | resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" 1325 | integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== 1326 | 1327 | execa@^5.0.0: 1328 | version "5.1.1" 1329 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1330 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1331 | dependencies: 1332 | cross-spawn "^7.0.3" 1333 | get-stream "^6.0.0" 1334 | human-signals "^2.1.0" 1335 | is-stream "^2.0.0" 1336 | merge-stream "^2.0.0" 1337 | npm-run-path "^4.0.1" 1338 | onetime "^5.1.2" 1339 | signal-exit "^3.0.3" 1340 | strip-final-newline "^2.0.0" 1341 | 1342 | exit@^0.1.2: 1343 | version "0.1.2" 1344 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1345 | integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== 1346 | 1347 | expect@^29.0.0, expect@^29.7.0: 1348 | version "29.7.0" 1349 | resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" 1350 | integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== 1351 | dependencies: 1352 | "@jest/expect-utils" "^29.7.0" 1353 | jest-get-type "^29.6.3" 1354 | jest-matcher-utils "^29.7.0" 1355 | jest-message-util "^29.7.0" 1356 | jest-util "^29.7.0" 1357 | 1358 | fast-deep-equal@^3.1.1, fast-deep-equal@^3.1.3: 1359 | version "3.1.3" 1360 | resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz#3a7d56b559d6cbc3eb512325244e619a65c6c525" 1361 | integrity sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q== 1362 | 1363 | fast-glob@^3.2.9: 1364 | version "3.3.2" 1365 | resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.3.2.tgz#a904501e57cfdd2ffcded45e99a54fef55e46129" 1366 | integrity sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow== 1367 | dependencies: 1368 | "@nodelib/fs.stat" "^2.0.2" 1369 | "@nodelib/fs.walk" "^1.2.3" 1370 | glob-parent "^5.1.2" 1371 | merge2 "^1.3.0" 1372 | micromatch "^4.0.4" 1373 | 1374 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.0.0, fast-json-stable-stringify@^2.1.0: 1375 | version "2.1.0" 1376 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1377 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1378 | 1379 | fast-levenshtein@^2.0.6: 1380 | version "2.0.6" 1381 | resolved "https://registry.yarnpkg.com/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz#3d8a5c66883a16a30ca8643e851f19baa7797917" 1382 | integrity sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw== 1383 | 1384 | fastq@^1.6.0: 1385 | version "1.17.1" 1386 | resolved "https://registry.yarnpkg.com/fastq/-/fastq-1.17.1.tgz#2a523f07a4e7b1e81a42b91b8bf2254107753b47" 1387 | integrity sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w== 1388 | dependencies: 1389 | reusify "^1.0.4" 1390 | 1391 | fb-watchman@^2.0.0: 1392 | version "2.0.2" 1393 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" 1394 | integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== 1395 | dependencies: 1396 | bser "2.1.1" 1397 | 1398 | file-entry-cache@^8.0.0: 1399 | version "8.0.0" 1400 | resolved "https://registry.yarnpkg.com/file-entry-cache/-/file-entry-cache-8.0.0.tgz#7787bddcf1131bffb92636c69457bbc0edd6d81f" 1401 | integrity sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ== 1402 | dependencies: 1403 | flat-cache "^4.0.0" 1404 | 1405 | filelist@^1.0.4: 1406 | version "1.0.4" 1407 | resolved "https://registry.yarnpkg.com/filelist/-/filelist-1.0.4.tgz#f78978a1e944775ff9e62e744424f215e58352b5" 1408 | integrity sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q== 1409 | dependencies: 1410 | minimatch "^5.0.1" 1411 | 1412 | fill-range@^7.1.1: 1413 | version "7.1.1" 1414 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.1.1.tgz#44265d3cac07e3ea7dc247516380643754a05292" 1415 | integrity sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg== 1416 | dependencies: 1417 | to-regex-range "^5.0.1" 1418 | 1419 | find-up@^4.0.0, find-up@^4.1.0: 1420 | version "4.1.0" 1421 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1422 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1423 | dependencies: 1424 | locate-path "^5.0.0" 1425 | path-exists "^4.0.0" 1426 | 1427 | find-up@^5.0.0: 1428 | version "5.0.0" 1429 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-5.0.0.tgz#4c92819ecb7083561e4f4a240a86be5198f536fc" 1430 | integrity sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng== 1431 | dependencies: 1432 | locate-path "^6.0.0" 1433 | path-exists "^4.0.0" 1434 | 1435 | flat-cache@^4.0.0: 1436 | version "4.0.1" 1437 | resolved "https://registry.yarnpkg.com/flat-cache/-/flat-cache-4.0.1.tgz#0ece39fcb14ee012f4b0410bd33dd9c1f011127c" 1438 | integrity sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw== 1439 | dependencies: 1440 | flatted "^3.2.9" 1441 | keyv "^4.5.4" 1442 | 1443 | flatted@^3.2.9: 1444 | version "3.3.1" 1445 | resolved "https://registry.yarnpkg.com/flatted/-/flatted-3.3.1.tgz#21db470729a6734d4997002f439cb308987f567a" 1446 | integrity sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw== 1447 | 1448 | fs.realpath@^1.0.0: 1449 | version "1.0.0" 1450 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1451 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1452 | 1453 | fsevents@^2.3.2: 1454 | version "2.3.3" 1455 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 1456 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 1457 | 1458 | function-bind@^1.1.2: 1459 | version "1.1.2" 1460 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" 1461 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 1462 | 1463 | gensync@^1.0.0-beta.2: 1464 | version "1.0.0-beta.2" 1465 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1466 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1467 | 1468 | get-caller-file@^2.0.5: 1469 | version "2.0.5" 1470 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1471 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1472 | 1473 | get-package-type@^0.1.0: 1474 | version "0.1.0" 1475 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1476 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1477 | 1478 | get-stream@^6.0.0: 1479 | version "6.0.1" 1480 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1481 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1482 | 1483 | glob-parent@^5.1.2: 1484 | version "5.1.2" 1485 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-5.1.2.tgz#869832c58034fe68a4093c17dc15e8340d8401c4" 1486 | integrity sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow== 1487 | dependencies: 1488 | is-glob "^4.0.1" 1489 | 1490 | glob-parent@^6.0.2: 1491 | version "6.0.2" 1492 | resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3" 1493 | integrity sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A== 1494 | dependencies: 1495 | is-glob "^4.0.3" 1496 | 1497 | glob-to-regexp@^0.4.1: 1498 | version "0.4.1" 1499 | resolved "https://registry.yarnpkg.com/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz#c75297087c851b9a578bd217dd59a92f59fe546e" 1500 | integrity sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw== 1501 | 1502 | glob@^7.1.3, glob@^7.1.4: 1503 | version "7.2.3" 1504 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1505 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1506 | dependencies: 1507 | fs.realpath "^1.0.0" 1508 | inflight "^1.0.4" 1509 | inherits "2" 1510 | minimatch "^3.1.1" 1511 | once "^1.3.0" 1512 | path-is-absolute "^1.0.0" 1513 | 1514 | globals@^11.1.0: 1515 | version "11.12.0" 1516 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1517 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1518 | 1519 | globals@^14.0.0: 1520 | version "14.0.0" 1521 | resolved "https://registry.yarnpkg.com/globals/-/globals-14.0.0.tgz#898d7413c29babcf6bafe56fcadded858ada724e" 1522 | integrity sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ== 1523 | 1524 | globby@^11.1.0: 1525 | version "11.1.0" 1526 | resolved "https://registry.yarnpkg.com/globby/-/globby-11.1.0.tgz#bd4be98bb042f83d796f7e3811991fbe82a0d34b" 1527 | integrity sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g== 1528 | dependencies: 1529 | array-union "^2.1.0" 1530 | dir-glob "^3.0.1" 1531 | fast-glob "^3.2.9" 1532 | ignore "^5.2.0" 1533 | merge2 "^1.4.1" 1534 | slash "^3.0.0" 1535 | 1536 | graceful-fs@^4.2.9: 1537 | version "4.2.11" 1538 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" 1539 | integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== 1540 | 1541 | graphemer@^1.4.0: 1542 | version "1.4.0" 1543 | resolved "https://registry.yarnpkg.com/graphemer/-/graphemer-1.4.0.tgz#fb2f1d55e0e3a1849aeffc90c4fa0dd53a0e66c6" 1544 | integrity sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag== 1545 | 1546 | has-flag@^3.0.0: 1547 | version "3.0.0" 1548 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1549 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1550 | 1551 | has-flag@^4.0.0: 1552 | version "4.0.0" 1553 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1554 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1555 | 1556 | hasown@^2.0.2: 1557 | version "2.0.2" 1558 | resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" 1559 | integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== 1560 | dependencies: 1561 | function-bind "^1.1.2" 1562 | 1563 | html-escaper@^2.0.0: 1564 | version "2.0.2" 1565 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1566 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1567 | 1568 | human-signals@^2.1.0: 1569 | version "2.1.0" 1570 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1571 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1572 | 1573 | ignore@^5.2.0, ignore@^5.3.1: 1574 | version "5.3.1" 1575 | resolved "https://registry.yarnpkg.com/ignore/-/ignore-5.3.1.tgz#5073e554cd42c5b33b394375f538b8593e34d4ef" 1576 | integrity sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw== 1577 | 1578 | import-fresh@^3.2.1: 1579 | version "3.3.0" 1580 | resolved "https://registry.yarnpkg.com/import-fresh/-/import-fresh-3.3.0.tgz#37162c25fcb9ebaa2e6e53d5b4d88ce17d9e0c2b" 1581 | integrity sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw== 1582 | dependencies: 1583 | parent-module "^1.0.0" 1584 | resolve-from "^4.0.0" 1585 | 1586 | import-local@^3.0.2: 1587 | version "3.2.0" 1588 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.2.0.tgz#c3d5c745798c02a6f8b897726aba5100186ee260" 1589 | integrity sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA== 1590 | dependencies: 1591 | pkg-dir "^4.2.0" 1592 | resolve-cwd "^3.0.0" 1593 | 1594 | imurmurhash@^0.1.4: 1595 | version "0.1.4" 1596 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1597 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1598 | 1599 | inflight@^1.0.4: 1600 | version "1.0.6" 1601 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1602 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1603 | dependencies: 1604 | once "^1.3.0" 1605 | wrappy "1" 1606 | 1607 | inherits@2: 1608 | version "2.0.4" 1609 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1610 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1611 | 1612 | is-arrayish@^0.2.1: 1613 | version "0.2.1" 1614 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1615 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1616 | 1617 | is-core-module@^2.13.0: 1618 | version "2.15.0" 1619 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.15.0.tgz#71c72ec5442ace7e76b306e9d48db361f22699ea" 1620 | integrity sha512-Dd+Lb2/zvk9SKy1TGCt1wFJFo/MWBPMX5x7KcvLajWTGuomczdQX61PvY5yK6SVACwpoexWo81IfFyoKY2QnTA== 1621 | dependencies: 1622 | hasown "^2.0.2" 1623 | 1624 | is-extglob@^2.1.1: 1625 | version "2.1.1" 1626 | resolved "https://registry.yarnpkg.com/is-extglob/-/is-extglob-2.1.1.tgz#a88c02535791f02ed37c76a1b9ea9773c833f8c2" 1627 | integrity sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ== 1628 | 1629 | is-fullwidth-code-point@^3.0.0: 1630 | version "3.0.0" 1631 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1632 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1633 | 1634 | is-generator-fn@^2.0.0: 1635 | version "2.1.0" 1636 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1637 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1638 | 1639 | is-glob@^4.0.0, is-glob@^4.0.1, is-glob@^4.0.3: 1640 | version "4.0.3" 1641 | resolved "https://registry.yarnpkg.com/is-glob/-/is-glob-4.0.3.tgz#64f61e42cbbb2eec2071a9dac0b28ba1e65d5084" 1642 | integrity sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg== 1643 | dependencies: 1644 | is-extglob "^2.1.1" 1645 | 1646 | is-number@^7.0.0: 1647 | version "7.0.0" 1648 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1649 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1650 | 1651 | is-path-inside@^3.0.3: 1652 | version "3.0.3" 1653 | resolved "https://registry.yarnpkg.com/is-path-inside/-/is-path-inside-3.0.3.tgz#d231362e53a07ff2b0e0ea7fed049161ffd16283" 1654 | integrity sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ== 1655 | 1656 | is-stream@^2.0.0: 1657 | version "2.0.1" 1658 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 1659 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1660 | 1661 | isexe@^2.0.0: 1662 | version "2.0.0" 1663 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1664 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1665 | 1666 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 1667 | version "3.2.2" 1668 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" 1669 | integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== 1670 | 1671 | istanbul-lib-instrument@^5.0.4: 1672 | version "5.2.1" 1673 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" 1674 | integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== 1675 | dependencies: 1676 | "@babel/core" "^7.12.3" 1677 | "@babel/parser" "^7.14.7" 1678 | "@istanbuljs/schema" "^0.1.2" 1679 | istanbul-lib-coverage "^3.2.0" 1680 | semver "^6.3.0" 1681 | 1682 | istanbul-lib-instrument@^6.0.0: 1683 | version "6.0.3" 1684 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.3.tgz#fa15401df6c15874bcb2105f773325d78c666765" 1685 | integrity sha512-Vtgk7L/R2JHyyGW07spoFlB8/lpjiOLTjMdms6AFMraYt3BaJauod/NGrfnVG/y4Ix1JEuMRPDPEj2ua+zz1/Q== 1686 | dependencies: 1687 | "@babel/core" "^7.23.9" 1688 | "@babel/parser" "^7.23.9" 1689 | "@istanbuljs/schema" "^0.1.3" 1690 | istanbul-lib-coverage "^3.2.0" 1691 | semver "^7.5.4" 1692 | 1693 | istanbul-lib-report@^3.0.0: 1694 | version "3.0.1" 1695 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" 1696 | integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== 1697 | dependencies: 1698 | istanbul-lib-coverage "^3.0.0" 1699 | make-dir "^4.0.0" 1700 | supports-color "^7.1.0" 1701 | 1702 | istanbul-lib-source-maps@^4.0.0: 1703 | version "4.0.1" 1704 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 1705 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 1706 | dependencies: 1707 | debug "^4.1.1" 1708 | istanbul-lib-coverage "^3.0.0" 1709 | source-map "^0.6.1" 1710 | 1711 | istanbul-reports@^3.1.3: 1712 | version "3.1.7" 1713 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" 1714 | integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== 1715 | dependencies: 1716 | html-escaper "^2.0.0" 1717 | istanbul-lib-report "^3.0.0" 1718 | 1719 | jake@^10.8.5: 1720 | version "10.9.2" 1721 | resolved "https://registry.yarnpkg.com/jake/-/jake-10.9.2.tgz#6ae487e6a69afec3a5e167628996b59f35ae2b7f" 1722 | integrity sha512-2P4SQ0HrLQ+fw6llpLnOaGAvN2Zu6778SJMrCUwns4fOoG9ayrTiZk3VV8sCPkVZF8ab0zksVpS8FDY5pRCNBA== 1723 | dependencies: 1724 | async "^3.2.3" 1725 | chalk "^4.0.2" 1726 | filelist "^1.0.4" 1727 | minimatch "^3.1.2" 1728 | 1729 | jest-changed-files@^29.7.0: 1730 | version "29.7.0" 1731 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" 1732 | integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== 1733 | dependencies: 1734 | execa "^5.0.0" 1735 | jest-util "^29.7.0" 1736 | p-limit "^3.1.0" 1737 | 1738 | jest-circus@^29.7.0: 1739 | version "29.7.0" 1740 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" 1741 | integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== 1742 | dependencies: 1743 | "@jest/environment" "^29.7.0" 1744 | "@jest/expect" "^29.7.0" 1745 | "@jest/test-result" "^29.7.0" 1746 | "@jest/types" "^29.6.3" 1747 | "@types/node" "*" 1748 | chalk "^4.0.0" 1749 | co "^4.6.0" 1750 | dedent "^1.0.0" 1751 | is-generator-fn "^2.0.0" 1752 | jest-each "^29.7.0" 1753 | jest-matcher-utils "^29.7.0" 1754 | jest-message-util "^29.7.0" 1755 | jest-runtime "^29.7.0" 1756 | jest-snapshot "^29.7.0" 1757 | jest-util "^29.7.0" 1758 | p-limit "^3.1.0" 1759 | pretty-format "^29.7.0" 1760 | pure-rand "^6.0.0" 1761 | slash "^3.0.0" 1762 | stack-utils "^2.0.3" 1763 | 1764 | jest-cli@^29.7.0: 1765 | version "29.7.0" 1766 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" 1767 | integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== 1768 | dependencies: 1769 | "@jest/core" "^29.7.0" 1770 | "@jest/test-result" "^29.7.0" 1771 | "@jest/types" "^29.6.3" 1772 | chalk "^4.0.0" 1773 | create-jest "^29.7.0" 1774 | exit "^0.1.2" 1775 | import-local "^3.0.2" 1776 | jest-config "^29.7.0" 1777 | jest-util "^29.7.0" 1778 | jest-validate "^29.7.0" 1779 | yargs "^17.3.1" 1780 | 1781 | jest-config@^29.7.0: 1782 | version "29.7.0" 1783 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" 1784 | integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== 1785 | dependencies: 1786 | "@babel/core" "^7.11.6" 1787 | "@jest/test-sequencer" "^29.7.0" 1788 | "@jest/types" "^29.6.3" 1789 | babel-jest "^29.7.0" 1790 | chalk "^4.0.0" 1791 | ci-info "^3.2.0" 1792 | deepmerge "^4.2.2" 1793 | glob "^7.1.3" 1794 | graceful-fs "^4.2.9" 1795 | jest-circus "^29.7.0" 1796 | jest-environment-node "^29.7.0" 1797 | jest-get-type "^29.6.3" 1798 | jest-regex-util "^29.6.3" 1799 | jest-resolve "^29.7.0" 1800 | jest-runner "^29.7.0" 1801 | jest-util "^29.7.0" 1802 | jest-validate "^29.7.0" 1803 | micromatch "^4.0.4" 1804 | parse-json "^5.2.0" 1805 | pretty-format "^29.7.0" 1806 | slash "^3.0.0" 1807 | strip-json-comments "^3.1.1" 1808 | 1809 | jest-diff@^29.7.0: 1810 | version "29.7.0" 1811 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" 1812 | integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== 1813 | dependencies: 1814 | chalk "^4.0.0" 1815 | diff-sequences "^29.6.3" 1816 | jest-get-type "^29.6.3" 1817 | pretty-format "^29.7.0" 1818 | 1819 | jest-docblock@^29.7.0: 1820 | version "29.7.0" 1821 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" 1822 | integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== 1823 | dependencies: 1824 | detect-newline "^3.0.0" 1825 | 1826 | jest-each@^29.7.0: 1827 | version "29.7.0" 1828 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" 1829 | integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== 1830 | dependencies: 1831 | "@jest/types" "^29.6.3" 1832 | chalk "^4.0.0" 1833 | jest-get-type "^29.6.3" 1834 | jest-util "^29.7.0" 1835 | pretty-format "^29.7.0" 1836 | 1837 | jest-environment-node@^29.7.0: 1838 | version "29.7.0" 1839 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" 1840 | integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== 1841 | dependencies: 1842 | "@jest/environment" "^29.7.0" 1843 | "@jest/fake-timers" "^29.7.0" 1844 | "@jest/types" "^29.6.3" 1845 | "@types/node" "*" 1846 | jest-mock "^29.7.0" 1847 | jest-util "^29.7.0" 1848 | 1849 | jest-get-type@^29.6.3: 1850 | version "29.6.3" 1851 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" 1852 | integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== 1853 | 1854 | jest-haste-map@^29.7.0: 1855 | version "29.7.0" 1856 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" 1857 | integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== 1858 | dependencies: 1859 | "@jest/types" "^29.6.3" 1860 | "@types/graceful-fs" "^4.1.3" 1861 | "@types/node" "*" 1862 | anymatch "^3.0.3" 1863 | fb-watchman "^2.0.0" 1864 | graceful-fs "^4.2.9" 1865 | jest-regex-util "^29.6.3" 1866 | jest-util "^29.7.0" 1867 | jest-worker "^29.7.0" 1868 | micromatch "^4.0.4" 1869 | walker "^1.0.8" 1870 | optionalDependencies: 1871 | fsevents "^2.3.2" 1872 | 1873 | jest-leak-detector@^29.7.0: 1874 | version "29.7.0" 1875 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" 1876 | integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== 1877 | dependencies: 1878 | jest-get-type "^29.6.3" 1879 | pretty-format "^29.7.0" 1880 | 1881 | jest-matcher-utils@^29.7.0: 1882 | version "29.7.0" 1883 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" 1884 | integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== 1885 | dependencies: 1886 | chalk "^4.0.0" 1887 | jest-diff "^29.7.0" 1888 | jest-get-type "^29.6.3" 1889 | pretty-format "^29.7.0" 1890 | 1891 | jest-message-util@^29.7.0: 1892 | version "29.7.0" 1893 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" 1894 | integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== 1895 | dependencies: 1896 | "@babel/code-frame" "^7.12.13" 1897 | "@jest/types" "^29.6.3" 1898 | "@types/stack-utils" "^2.0.0" 1899 | chalk "^4.0.0" 1900 | graceful-fs "^4.2.9" 1901 | micromatch "^4.0.4" 1902 | pretty-format "^29.7.0" 1903 | slash "^3.0.0" 1904 | stack-utils "^2.0.3" 1905 | 1906 | jest-mock@^29.7.0: 1907 | version "29.7.0" 1908 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" 1909 | integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== 1910 | dependencies: 1911 | "@jest/types" "^29.6.3" 1912 | "@types/node" "*" 1913 | jest-util "^29.7.0" 1914 | 1915 | jest-pnp-resolver@^1.2.2: 1916 | version "1.2.3" 1917 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" 1918 | integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== 1919 | 1920 | jest-regex-util@^29.6.3: 1921 | version "29.6.3" 1922 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" 1923 | integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== 1924 | 1925 | jest-resolve-dependencies@^29.7.0: 1926 | version "29.7.0" 1927 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" 1928 | integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== 1929 | dependencies: 1930 | jest-regex-util "^29.6.3" 1931 | jest-snapshot "^29.7.0" 1932 | 1933 | jest-resolve@^29.7.0: 1934 | version "29.7.0" 1935 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" 1936 | integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== 1937 | dependencies: 1938 | chalk "^4.0.0" 1939 | graceful-fs "^4.2.9" 1940 | jest-haste-map "^29.7.0" 1941 | jest-pnp-resolver "^1.2.2" 1942 | jest-util "^29.7.0" 1943 | jest-validate "^29.7.0" 1944 | resolve "^1.20.0" 1945 | resolve.exports "^2.0.0" 1946 | slash "^3.0.0" 1947 | 1948 | jest-runner@^29.7.0: 1949 | version "29.7.0" 1950 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" 1951 | integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== 1952 | dependencies: 1953 | "@jest/console" "^29.7.0" 1954 | "@jest/environment" "^29.7.0" 1955 | "@jest/test-result" "^29.7.0" 1956 | "@jest/transform" "^29.7.0" 1957 | "@jest/types" "^29.6.3" 1958 | "@types/node" "*" 1959 | chalk "^4.0.0" 1960 | emittery "^0.13.1" 1961 | graceful-fs "^4.2.9" 1962 | jest-docblock "^29.7.0" 1963 | jest-environment-node "^29.7.0" 1964 | jest-haste-map "^29.7.0" 1965 | jest-leak-detector "^29.7.0" 1966 | jest-message-util "^29.7.0" 1967 | jest-resolve "^29.7.0" 1968 | jest-runtime "^29.7.0" 1969 | jest-util "^29.7.0" 1970 | jest-watcher "^29.7.0" 1971 | jest-worker "^29.7.0" 1972 | p-limit "^3.1.0" 1973 | source-map-support "0.5.13" 1974 | 1975 | jest-runtime@^29.7.0: 1976 | version "29.7.0" 1977 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" 1978 | integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== 1979 | dependencies: 1980 | "@jest/environment" "^29.7.0" 1981 | "@jest/fake-timers" "^29.7.0" 1982 | "@jest/globals" "^29.7.0" 1983 | "@jest/source-map" "^29.6.3" 1984 | "@jest/test-result" "^29.7.0" 1985 | "@jest/transform" "^29.7.0" 1986 | "@jest/types" "^29.6.3" 1987 | "@types/node" "*" 1988 | chalk "^4.0.0" 1989 | cjs-module-lexer "^1.0.0" 1990 | collect-v8-coverage "^1.0.0" 1991 | glob "^7.1.3" 1992 | graceful-fs "^4.2.9" 1993 | jest-haste-map "^29.7.0" 1994 | jest-message-util "^29.7.0" 1995 | jest-mock "^29.7.0" 1996 | jest-regex-util "^29.6.3" 1997 | jest-resolve "^29.7.0" 1998 | jest-snapshot "^29.7.0" 1999 | jest-util "^29.7.0" 2000 | slash "^3.0.0" 2001 | strip-bom "^4.0.0" 2002 | 2003 | jest-snapshot@^29.7.0: 2004 | version "29.7.0" 2005 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" 2006 | integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== 2007 | dependencies: 2008 | "@babel/core" "^7.11.6" 2009 | "@babel/generator" "^7.7.2" 2010 | "@babel/plugin-syntax-jsx" "^7.7.2" 2011 | "@babel/plugin-syntax-typescript" "^7.7.2" 2012 | "@babel/types" "^7.3.3" 2013 | "@jest/expect-utils" "^29.7.0" 2014 | "@jest/transform" "^29.7.0" 2015 | "@jest/types" "^29.6.3" 2016 | babel-preset-current-node-syntax "^1.0.0" 2017 | chalk "^4.0.0" 2018 | expect "^29.7.0" 2019 | graceful-fs "^4.2.9" 2020 | jest-diff "^29.7.0" 2021 | jest-get-type "^29.6.3" 2022 | jest-matcher-utils "^29.7.0" 2023 | jest-message-util "^29.7.0" 2024 | jest-util "^29.7.0" 2025 | natural-compare "^1.4.0" 2026 | pretty-format "^29.7.0" 2027 | semver "^7.5.3" 2028 | 2029 | jest-util@^29.0.0, jest-util@^29.7.0: 2030 | version "29.7.0" 2031 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" 2032 | integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== 2033 | dependencies: 2034 | "@jest/types" "^29.6.3" 2035 | "@types/node" "*" 2036 | chalk "^4.0.0" 2037 | ci-info "^3.2.0" 2038 | graceful-fs "^4.2.9" 2039 | picomatch "^2.2.3" 2040 | 2041 | jest-validate@^29.7.0: 2042 | version "29.7.0" 2043 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" 2044 | integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== 2045 | dependencies: 2046 | "@jest/types" "^29.6.3" 2047 | camelcase "^6.2.0" 2048 | chalk "^4.0.0" 2049 | jest-get-type "^29.6.3" 2050 | leven "^3.1.0" 2051 | pretty-format "^29.7.0" 2052 | 2053 | jest-watcher@^29.7.0: 2054 | version "29.7.0" 2055 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" 2056 | integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== 2057 | dependencies: 2058 | "@jest/test-result" "^29.7.0" 2059 | "@jest/types" "^29.6.3" 2060 | "@types/node" "*" 2061 | ansi-escapes "^4.2.1" 2062 | chalk "^4.0.0" 2063 | emittery "^0.13.1" 2064 | jest-util "^29.7.0" 2065 | string-length "^4.0.1" 2066 | 2067 | jest-worker@^29.7.0: 2068 | version "29.7.0" 2069 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" 2070 | integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== 2071 | dependencies: 2072 | "@types/node" "*" 2073 | jest-util "^29.7.0" 2074 | merge-stream "^2.0.0" 2075 | supports-color "^8.0.0" 2076 | 2077 | jest@^29.7.0: 2078 | version "29.7.0" 2079 | resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" 2080 | integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== 2081 | dependencies: 2082 | "@jest/core" "^29.7.0" 2083 | "@jest/types" "^29.6.3" 2084 | import-local "^3.0.2" 2085 | jest-cli "^29.7.0" 2086 | 2087 | js-tokens@^4.0.0: 2088 | version "4.0.0" 2089 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 2090 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 2091 | 2092 | js-yaml@^3.13.1: 2093 | version "3.14.1" 2094 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 2095 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 2096 | dependencies: 2097 | argparse "^1.0.7" 2098 | esprima "^4.0.0" 2099 | 2100 | js-yaml@^4.1.0: 2101 | version "4.1.0" 2102 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-4.1.0.tgz#c1fb65f8f5017901cdd2c951864ba18458a10602" 2103 | integrity sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA== 2104 | dependencies: 2105 | argparse "^2.0.1" 2106 | 2107 | jsesc@^2.5.1: 2108 | version "2.5.2" 2109 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 2110 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 2111 | 2112 | json-buffer@3.0.1: 2113 | version "3.0.1" 2114 | resolved "https://registry.yarnpkg.com/json-buffer/-/json-buffer-3.0.1.tgz#9338802a30d3b6605fbe0613e094008ca8c05a13" 2115 | integrity sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ== 2116 | 2117 | json-parse-even-better-errors@^2.3.0: 2118 | version "2.3.1" 2119 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 2120 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 2121 | 2122 | json-schema-traverse@^0.4.1: 2123 | version "0.4.1" 2124 | resolved "https://registry.yarnpkg.com/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz#69f6a87d9513ab8bb8fe63bdb0979c448e684660" 2125 | integrity sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg== 2126 | 2127 | json-stable-stringify-without-jsonify@^1.0.1: 2128 | version "1.0.1" 2129 | resolved "https://registry.yarnpkg.com/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz#9db7b59496ad3f3cfef30a75142d2d930ad72651" 2130 | integrity sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw== 2131 | 2132 | json5@^2.2.3: 2133 | version "2.2.3" 2134 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 2135 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 2136 | 2137 | keyv@^4.5.4: 2138 | version "4.5.4" 2139 | resolved "https://registry.yarnpkg.com/keyv/-/keyv-4.5.4.tgz#a879a99e29452f942439f2a405e3af8b31d4de93" 2140 | integrity sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw== 2141 | dependencies: 2142 | json-buffer "3.0.1" 2143 | 2144 | kleur@^3.0.3: 2145 | version "3.0.3" 2146 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 2147 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 2148 | 2149 | leven@^3.1.0: 2150 | version "3.1.0" 2151 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 2152 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 2153 | 2154 | levn@^0.4.1: 2155 | version "0.4.1" 2156 | resolved "https://registry.yarnpkg.com/levn/-/levn-0.4.1.tgz#ae4562c007473b932a6200d403268dd2fffc6ade" 2157 | integrity sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ== 2158 | dependencies: 2159 | prelude-ls "^1.2.1" 2160 | type-check "~0.4.0" 2161 | 2162 | lines-and-columns@^1.1.6: 2163 | version "1.2.4" 2164 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 2165 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 2166 | 2167 | locate-path@^5.0.0: 2168 | version "5.0.0" 2169 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 2170 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 2171 | dependencies: 2172 | p-locate "^4.1.0" 2173 | 2174 | locate-path@^6.0.0: 2175 | version "6.0.0" 2176 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-6.0.0.tgz#55321eb309febbc59c4801d931a72452a681d286" 2177 | integrity sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw== 2178 | dependencies: 2179 | p-locate "^5.0.0" 2180 | 2181 | lodash.memoize@4.x: 2182 | version "4.1.2" 2183 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 2184 | integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== 2185 | 2186 | lodash.merge@^4.6.2: 2187 | version "4.6.2" 2188 | resolved "https://registry.yarnpkg.com/lodash.merge/-/lodash.merge-4.6.2.tgz#558aa53b43b661e1925a0afdfa36a9a1085fe57a" 2189 | integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ== 2190 | 2191 | lru-cache@^5.1.1: 2192 | version "5.1.1" 2193 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 2194 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 2195 | dependencies: 2196 | yallist "^3.0.2" 2197 | 2198 | make-dir@^4.0.0: 2199 | version "4.0.0" 2200 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" 2201 | integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== 2202 | dependencies: 2203 | semver "^7.5.3" 2204 | 2205 | make-error@1.x: 2206 | version "1.3.6" 2207 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 2208 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 2209 | 2210 | makeerror@1.0.12: 2211 | version "1.0.12" 2212 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" 2213 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 2214 | dependencies: 2215 | tmpl "1.0.5" 2216 | 2217 | merge-stream@^2.0.0: 2218 | version "2.0.0" 2219 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 2220 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 2221 | 2222 | merge2@^1.3.0, merge2@^1.4.1: 2223 | version "1.4.1" 2224 | resolved "https://registry.yarnpkg.com/merge2/-/merge2-1.4.1.tgz#4368892f885e907455a6fd7dc55c0c9d404990ae" 2225 | integrity sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg== 2226 | 2227 | micromatch@^4.0.4: 2228 | version "4.0.7" 2229 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.7.tgz#33e8190d9fe474a9895525f5618eee136d46c2e5" 2230 | integrity sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q== 2231 | dependencies: 2232 | braces "^3.0.3" 2233 | picomatch "^2.3.1" 2234 | 2235 | mimic-fn@^2.1.0: 2236 | version "2.1.0" 2237 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 2238 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 2239 | 2240 | minimatch@^3.0.4, minimatch@^3.1.1, minimatch@^3.1.2: 2241 | version "3.1.2" 2242 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 2243 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 2244 | dependencies: 2245 | brace-expansion "^1.1.7" 2246 | 2247 | minimatch@^5.0.1: 2248 | version "5.1.6" 2249 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-5.1.6.tgz#1cfcb8cf5522ea69952cd2af95ae09477f122a96" 2250 | integrity sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g== 2251 | dependencies: 2252 | brace-expansion "^2.0.1" 2253 | 2254 | minimatch@^9.0.4: 2255 | version "9.0.5" 2256 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.5.tgz#d74f9dd6b57d83d8e98cfb82133b03978bc929e5" 2257 | integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow== 2258 | dependencies: 2259 | brace-expansion "^2.0.1" 2260 | 2261 | ms@2.1.2: 2262 | version "2.1.2" 2263 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 2264 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 2265 | 2266 | natural-compare@^1.4.0: 2267 | version "1.4.0" 2268 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 2269 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 2270 | 2271 | node-int64@^0.4.0: 2272 | version "0.4.0" 2273 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 2274 | integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== 2275 | 2276 | node-releases@^2.0.14: 2277 | version "2.0.18" 2278 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.18.tgz#f010e8d35e2fe8d6b2944f03f70213ecedc4ca3f" 2279 | integrity sha512-d9VeXT4SJ7ZeOqGX6R5EM022wpL+eWPooLI+5UpWn2jCT1aosUQEhQP214x33Wkwx3JQMvIm+tIoVOdodFS40g== 2280 | 2281 | normalize-path@^3.0.0: 2282 | version "3.0.0" 2283 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 2284 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 2285 | 2286 | npm-run-path@^4.0.1: 2287 | version "4.0.1" 2288 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 2289 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 2290 | dependencies: 2291 | path-key "^3.0.0" 2292 | 2293 | once@^1.3.0: 2294 | version "1.4.0" 2295 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 2296 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 2297 | dependencies: 2298 | wrappy "1" 2299 | 2300 | onetime@^5.1.2: 2301 | version "5.1.2" 2302 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 2303 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 2304 | dependencies: 2305 | mimic-fn "^2.1.0" 2306 | 2307 | optionator@^0.9.3: 2308 | version "0.9.4" 2309 | resolved "https://registry.yarnpkg.com/optionator/-/optionator-0.9.4.tgz#7ea1c1a5d91d764fb282139c88fe11e182a3a734" 2310 | integrity sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g== 2311 | dependencies: 2312 | deep-is "^0.1.3" 2313 | fast-levenshtein "^2.0.6" 2314 | levn "^0.4.1" 2315 | prelude-ls "^1.2.1" 2316 | type-check "^0.4.0" 2317 | word-wrap "^1.2.5" 2318 | 2319 | p-limit@^2.2.0: 2320 | version "2.3.0" 2321 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 2322 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 2323 | dependencies: 2324 | p-try "^2.0.0" 2325 | 2326 | p-limit@^3.0.2, p-limit@^3.1.0: 2327 | version "3.1.0" 2328 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 2329 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 2330 | dependencies: 2331 | yocto-queue "^0.1.0" 2332 | 2333 | p-locate@^4.1.0: 2334 | version "4.1.0" 2335 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 2336 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 2337 | dependencies: 2338 | p-limit "^2.2.0" 2339 | 2340 | p-locate@^5.0.0: 2341 | version "5.0.0" 2342 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-5.0.0.tgz#83c8315c6785005e3bd021839411c9e110e6d834" 2343 | integrity sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw== 2344 | dependencies: 2345 | p-limit "^3.0.2" 2346 | 2347 | p-try@^2.0.0: 2348 | version "2.2.0" 2349 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 2350 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 2351 | 2352 | parent-module@^1.0.0: 2353 | version "1.0.1" 2354 | resolved "https://registry.yarnpkg.com/parent-module/-/parent-module-1.0.1.tgz#691d2709e78c79fae3a156622452d00762caaaa2" 2355 | integrity sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g== 2356 | dependencies: 2357 | callsites "^3.0.0" 2358 | 2359 | parse-json@^5.2.0: 2360 | version "5.2.0" 2361 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 2362 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 2363 | dependencies: 2364 | "@babel/code-frame" "^7.0.0" 2365 | error-ex "^1.3.1" 2366 | json-parse-even-better-errors "^2.3.0" 2367 | lines-and-columns "^1.1.6" 2368 | 2369 | path-exists@^4.0.0: 2370 | version "4.0.0" 2371 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 2372 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 2373 | 2374 | path-is-absolute@^1.0.0: 2375 | version "1.0.1" 2376 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 2377 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 2378 | 2379 | path-key@^3.0.0, path-key@^3.1.0: 2380 | version "3.1.1" 2381 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 2382 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 2383 | 2384 | path-parse@^1.0.7: 2385 | version "1.0.7" 2386 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 2387 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 2388 | 2389 | path-type@^4.0.0: 2390 | version "4.0.0" 2391 | resolved "https://registry.yarnpkg.com/path-type/-/path-type-4.0.0.tgz#84ed01c0a7ba380afe09d90a8c180dcd9d03043b" 2392 | integrity sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw== 2393 | 2394 | picocolors@^1.0.0, picocolors@^1.0.1: 2395 | version "1.0.1" 2396 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.1.tgz#a8ad579b571952f0e5d25892de5445bcfe25aaa1" 2397 | integrity sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew== 2398 | 2399 | picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: 2400 | version "2.3.1" 2401 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 2402 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 2403 | 2404 | pirates@^4.0.4: 2405 | version "4.0.6" 2406 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" 2407 | integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== 2408 | 2409 | pkg-dir@^4.2.0: 2410 | version "4.2.0" 2411 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 2412 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 2413 | dependencies: 2414 | find-up "^4.0.0" 2415 | 2416 | prelude-ls@^1.2.1: 2417 | version "1.2.1" 2418 | resolved "https://registry.yarnpkg.com/prelude-ls/-/prelude-ls-1.2.1.tgz#debc6489d7a6e6b0e7611888cec880337d316396" 2419 | integrity sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g== 2420 | 2421 | prettier@^3.3.3: 2422 | version "3.3.3" 2423 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-3.3.3.tgz#30c54fe0be0d8d12e6ae61dbb10109ea00d53105" 2424 | integrity sha512-i2tDNA0O5IrMO757lfrdQZCc2jPNDVntV0m/+4whiDfWaTKfMNgR7Qz0NAeGz/nRqF4m5/6CLzbP4/liHt12Ew== 2425 | 2426 | pretty-format@^29.0.0, pretty-format@^29.7.0: 2427 | version "29.7.0" 2428 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" 2429 | integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== 2430 | dependencies: 2431 | "@jest/schemas" "^29.6.3" 2432 | ansi-styles "^5.0.0" 2433 | react-is "^18.0.0" 2434 | 2435 | prompts@^2.0.1: 2436 | version "2.4.2" 2437 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 2438 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 2439 | dependencies: 2440 | kleur "^3.0.3" 2441 | sisteransi "^1.0.5" 2442 | 2443 | punycode@^2.1.0: 2444 | version "2.3.1" 2445 | resolved "https://registry.yarnpkg.com/punycode/-/punycode-2.3.1.tgz#027422e2faec0b25e1549c3e1bd8309b9133b6e5" 2446 | integrity sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg== 2447 | 2448 | pure-rand@^6.0.0: 2449 | version "6.1.0" 2450 | resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" 2451 | integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== 2452 | 2453 | queue-microtask@^1.2.2: 2454 | version "1.2.3" 2455 | resolved "https://registry.yarnpkg.com/queue-microtask/-/queue-microtask-1.2.3.tgz#4929228bbc724dfac43e0efb058caf7b6cfb6243" 2456 | integrity sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A== 2457 | 2458 | react-is@^18.0.0: 2459 | version "18.3.1" 2460 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.3.1.tgz#e83557dc12eae63a99e003a46388b1dcbb44db7e" 2461 | integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg== 2462 | 2463 | require-directory@^2.1.1: 2464 | version "2.1.1" 2465 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 2466 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 2467 | 2468 | resolve-cwd@^3.0.0: 2469 | version "3.0.0" 2470 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 2471 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 2472 | dependencies: 2473 | resolve-from "^5.0.0" 2474 | 2475 | resolve-from@^4.0.0: 2476 | version "4.0.0" 2477 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" 2478 | integrity sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g== 2479 | 2480 | resolve-from@^5.0.0: 2481 | version "5.0.0" 2482 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 2483 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 2484 | 2485 | resolve.exports@^2.0.0: 2486 | version "2.0.2" 2487 | resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" 2488 | integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== 2489 | 2490 | resolve@^1.20.0: 2491 | version "1.22.8" 2492 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" 2493 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== 2494 | dependencies: 2495 | is-core-module "^2.13.0" 2496 | path-parse "^1.0.7" 2497 | supports-preserve-symlinks-flag "^1.0.0" 2498 | 2499 | reusify@^1.0.4: 2500 | version "1.0.4" 2501 | resolved "https://registry.yarnpkg.com/reusify/-/reusify-1.0.4.tgz#90da382b1e126efc02146e90845a88db12925d76" 2502 | integrity sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw== 2503 | 2504 | run-parallel@^1.1.9: 2505 | version "1.2.0" 2506 | resolved "https://registry.yarnpkg.com/run-parallel/-/run-parallel-1.2.0.tgz#66d1368da7bdf921eb9d95bd1a9229e7f21a43ee" 2507 | integrity sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA== 2508 | dependencies: 2509 | queue-microtask "^1.2.2" 2510 | 2511 | semver@^6.3.0, semver@^6.3.1: 2512 | version "6.3.1" 2513 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 2514 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 2515 | 2516 | semver@^7.5.3, semver@^7.5.4, semver@^7.6.0: 2517 | version "7.6.3" 2518 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.3.tgz#980f7b5550bc175fb4dc09403085627f9eb33143" 2519 | integrity sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A== 2520 | 2521 | shebang-command@^2.0.0: 2522 | version "2.0.0" 2523 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 2524 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 2525 | dependencies: 2526 | shebang-regex "^3.0.0" 2527 | 2528 | shebang-regex@^3.0.0: 2529 | version "3.0.0" 2530 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 2531 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 2532 | 2533 | signal-exit@^3.0.3, signal-exit@^3.0.7: 2534 | version "3.0.7" 2535 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 2536 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 2537 | 2538 | sisteransi@^1.0.5: 2539 | version "1.0.5" 2540 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 2541 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 2542 | 2543 | slash@^3.0.0: 2544 | version "3.0.0" 2545 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2546 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2547 | 2548 | source-map-support@0.5.13: 2549 | version "0.5.13" 2550 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" 2551 | integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== 2552 | dependencies: 2553 | buffer-from "^1.0.0" 2554 | source-map "^0.6.0" 2555 | 2556 | source-map@^0.6.0, source-map@^0.6.1: 2557 | version "0.6.1" 2558 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2559 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2560 | 2561 | sprintf-js@~1.0.2: 2562 | version "1.0.3" 2563 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2564 | integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== 2565 | 2566 | stack-utils@^2.0.3: 2567 | version "2.0.6" 2568 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" 2569 | integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== 2570 | dependencies: 2571 | escape-string-regexp "^2.0.0" 2572 | 2573 | string-length@^4.0.1: 2574 | version "4.0.2" 2575 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 2576 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 2577 | dependencies: 2578 | char-regex "^1.0.2" 2579 | strip-ansi "^6.0.0" 2580 | 2581 | string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 2582 | version "4.2.3" 2583 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2584 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2585 | dependencies: 2586 | emoji-regex "^8.0.0" 2587 | is-fullwidth-code-point "^3.0.0" 2588 | strip-ansi "^6.0.1" 2589 | 2590 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2591 | version "6.0.1" 2592 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2593 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2594 | dependencies: 2595 | ansi-regex "^5.0.1" 2596 | 2597 | strip-bom@^4.0.0: 2598 | version "4.0.0" 2599 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 2600 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 2601 | 2602 | strip-final-newline@^2.0.0: 2603 | version "2.0.0" 2604 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2605 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2606 | 2607 | strip-json-comments@^3.1.1: 2608 | version "3.1.1" 2609 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2610 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2611 | 2612 | supports-color@^5.3.0: 2613 | version "5.5.0" 2614 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2615 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2616 | dependencies: 2617 | has-flag "^3.0.0" 2618 | 2619 | supports-color@^7.1.0: 2620 | version "7.2.0" 2621 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2622 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2623 | dependencies: 2624 | has-flag "^4.0.0" 2625 | 2626 | supports-color@^8.0.0: 2627 | version "8.1.1" 2628 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 2629 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 2630 | dependencies: 2631 | has-flag "^4.0.0" 2632 | 2633 | supports-preserve-symlinks-flag@^1.0.0: 2634 | version "1.0.0" 2635 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2636 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2637 | 2638 | test-exclude@^6.0.0: 2639 | version "6.0.0" 2640 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 2641 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 2642 | dependencies: 2643 | "@istanbuljs/schema" "^0.1.2" 2644 | glob "^7.1.4" 2645 | minimatch "^3.0.4" 2646 | 2647 | text-table@^0.2.0: 2648 | version "0.2.0" 2649 | resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4" 2650 | integrity sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw== 2651 | 2652 | tmpl@1.0.5: 2653 | version "1.0.5" 2654 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 2655 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 2656 | 2657 | to-fast-properties@^2.0.0: 2658 | version "2.0.0" 2659 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2660 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 2661 | 2662 | to-regex-range@^5.0.1: 2663 | version "5.0.1" 2664 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2665 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2666 | dependencies: 2667 | is-number "^7.0.0" 2668 | 2669 | ts-api-utils@^1.3.0: 2670 | version "1.3.0" 2671 | resolved "https://registry.yarnpkg.com/ts-api-utils/-/ts-api-utils-1.3.0.tgz#4b490e27129f1e8e686b45cc4ab63714dc60eea1" 2672 | integrity sha512-UQMIo7pb8WRomKR1/+MFVLTroIvDVtMX3K6OUir8ynLyzB8Jeriont2bTAtmNPa1ekAgN7YPDyf6V+ygrdU+eQ== 2673 | 2674 | ts-jest@^29.2.3: 2675 | version "29.2.3" 2676 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.2.3.tgz#3d226ac36b8b820151a38f164414f9f6b412131f" 2677 | integrity sha512-yCcfVdiBFngVz9/keHin9EnsrQtQtEu3nRykNy9RVp+FiPFFbPJ3Sg6Qg4+TkmH0vMP5qsTKgXSsk80HRwvdgQ== 2678 | dependencies: 2679 | bs-logger "0.x" 2680 | ejs "^3.1.10" 2681 | fast-json-stable-stringify "2.x" 2682 | jest-util "^29.0.0" 2683 | json5 "^2.2.3" 2684 | lodash.memoize "4.x" 2685 | make-error "1.x" 2686 | semver "^7.5.3" 2687 | yargs-parser "^21.0.1" 2688 | 2689 | type-check@^0.4.0, type-check@~0.4.0: 2690 | version "0.4.0" 2691 | resolved "https://registry.yarnpkg.com/type-check/-/type-check-0.4.0.tgz#07b8203bfa7056c0657050e3ccd2c37730bab8f1" 2692 | integrity sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew== 2693 | dependencies: 2694 | prelude-ls "^1.2.1" 2695 | 2696 | type-detect@4.0.8: 2697 | version "4.0.8" 2698 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 2699 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2700 | 2701 | type-fest@^0.21.3: 2702 | version "0.21.3" 2703 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 2704 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 2705 | 2706 | typescript-eslint@^7.18.0: 2707 | version "7.18.0" 2708 | resolved "https://registry.yarnpkg.com/typescript-eslint/-/typescript-eslint-7.18.0.tgz#e90d57649b2ad37a7475875fa3e834a6d9f61eb2" 2709 | integrity sha512-PonBkP603E3tt05lDkbOMyaxJjvKqQrXsnow72sVeOFINDE/qNmnnd+f9b4N+U7W6MXnnYyrhtmF2t08QWwUbA== 2710 | dependencies: 2711 | "@typescript-eslint/eslint-plugin" "7.18.0" 2712 | "@typescript-eslint/parser" "7.18.0" 2713 | "@typescript-eslint/utils" "7.18.0" 2714 | 2715 | typescript@^5.5.4: 2716 | version "5.5.4" 2717 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.5.4.tgz#d9852d6c82bad2d2eda4fd74a5762a8f5909e9ba" 2718 | integrity sha512-Mtq29sKDAEYP7aljRgtPOpTvOfbwRWlS6dPRzwjdE+C0R4brX/GUyhHSecbHMFLNBLcJIPt9nl9yG5TZ1weH+Q== 2719 | 2720 | undici-types@~6.11.1: 2721 | version "6.11.1" 2722 | resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-6.11.1.tgz#432ea6e8efd54a48569705a699e62d8f4981b197" 2723 | integrity sha512-mIDEX2ek50x0OlRgxryxsenE5XaQD4on5U2inY7RApK3SOJpofyw7uW2AyfMKkhAxXIceo2DeWGVGwyvng1GNQ== 2724 | 2725 | update-browserslist-db@^1.1.0: 2726 | version "1.1.0" 2727 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.1.0.tgz#7ca61c0d8650766090728046e416a8cde682859e" 2728 | integrity sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ== 2729 | dependencies: 2730 | escalade "^3.1.2" 2731 | picocolors "^1.0.1" 2732 | 2733 | uri-js@^4.2.2: 2734 | version "4.4.1" 2735 | resolved "https://registry.yarnpkg.com/uri-js/-/uri-js-4.4.1.tgz#9b1a52595225859e55f669d928f88c6c57f2a77e" 2736 | integrity sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg== 2737 | dependencies: 2738 | punycode "^2.1.0" 2739 | 2740 | v8-to-istanbul@^9.0.1: 2741 | version "9.3.0" 2742 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.3.0.tgz#b9572abfa62bd556c16d75fdebc1a411d5ff3175" 2743 | integrity sha512-kiGUalWN+rgBJ/1OHZsBtU4rXZOfj/7rKQxULKlIzwzQSvMJUUNgPwJEEh7gU6xEVxC0ahoOBvN2YI8GH6FNgA== 2744 | dependencies: 2745 | "@jridgewell/trace-mapping" "^0.3.12" 2746 | "@types/istanbul-lib-coverage" "^2.0.1" 2747 | convert-source-map "^2.0.0" 2748 | 2749 | walker@^1.0.8: 2750 | version "1.0.8" 2751 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" 2752 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 2753 | dependencies: 2754 | makeerror "1.0.12" 2755 | 2756 | which@^2.0.1: 2757 | version "2.0.2" 2758 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2759 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2760 | dependencies: 2761 | isexe "^2.0.0" 2762 | 2763 | word-wrap@^1.2.5: 2764 | version "1.2.5" 2765 | resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.5.tgz#d2c45c6dd4fbce621a66f136cbe328afd0410b34" 2766 | integrity sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA== 2767 | 2768 | wrap-ansi@^7.0.0: 2769 | version "7.0.0" 2770 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2771 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2772 | dependencies: 2773 | ansi-styles "^4.0.0" 2774 | string-width "^4.1.0" 2775 | strip-ansi "^6.0.0" 2776 | 2777 | wrappy@1: 2778 | version "1.0.2" 2779 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2780 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2781 | 2782 | write-file-atomic@^4.0.2: 2783 | version "4.0.2" 2784 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" 2785 | integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== 2786 | dependencies: 2787 | imurmurhash "^0.1.4" 2788 | signal-exit "^3.0.7" 2789 | 2790 | y18n@^5.0.5: 2791 | version "5.0.8" 2792 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2793 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2794 | 2795 | yallist@^3.0.2: 2796 | version "3.1.1" 2797 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 2798 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 2799 | 2800 | yargs-parser@^21.0.1, yargs-parser@^21.1.1: 2801 | version "21.1.1" 2802 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 2803 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 2804 | 2805 | yargs@^17.3.1: 2806 | version "17.7.2" 2807 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" 2808 | integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== 2809 | dependencies: 2810 | cliui "^8.0.1" 2811 | escalade "^3.1.1" 2812 | get-caller-file "^2.0.5" 2813 | require-directory "^2.1.1" 2814 | string-width "^4.2.3" 2815 | y18n "^5.0.5" 2816 | yargs-parser "^21.1.1" 2817 | 2818 | yocto-queue@^0.1.0: 2819 | version "0.1.0" 2820 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2821 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2822 | --------------------------------------------------------------------------------