├── .npmignore ├── jest.config.js ├── src ├── constants.ts ├── index.ts ├── types │ └── dot-notation.ts ├── config │ └── config.ts ├── fs │ ├── load-save.ts │ └── ensure-settings-file.ts ├── utils │ └── dot-notation.ts ├── settings │ └── getter-setter.ts └── settings-manager │ └── settings-manager.ts ├── tsconfig.json ├── config └── typedoc.js ├── LICENSE ├── package.json ├── .gitignore ├── test └── dot-notation.test.js ├── README.md └── yarn.lock /.npmignore: -------------------------------------------------------------------------------- 1 | /config 2 | src 3 | docs 4 | -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('ts-jest').JestConfigWithTsJest} */ 2 | module.exports = { 3 | preset: 'ts-jest', 4 | testEnvironment: 'node', 5 | }; -------------------------------------------------------------------------------- /src/constants.ts: -------------------------------------------------------------------------------- 1 | import { IConfig } from './config/config'; 2 | 3 | export const CONFIG_DEFAULTS: IConfig = { 4 | fileName: 'settings', 5 | dir: null, 6 | prettify: false, 7 | numSpaces: 2 8 | } 9 | -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- 1 | export { has, get, set } from './settings//getter-setter'; 2 | export { getSettings as getAll } from './fs/load-save'; 3 | export { SettingsManager } from './settings-manager/settings-manager'; 4 | 5 | export * as CONSTANTS from './constants'; 6 | export { IConfig, ConfigOptions } from './config/config'; 7 | -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "compilerOptions": { 3 | "outDir": "./dist/", 4 | "module": "ES6", 5 | "declaration": true, 6 | "target": "es6", 7 | "moduleResolution": "node", 8 | "esModuleInterop": true, 9 | "allowJs": true, 10 | "lib": ["ES2016"], 11 | "skipLibCheck": true 12 | }, 13 | "include": [ 14 | "./src/index.ts" 15 | ] 16 | } 17 | -------------------------------------------------------------------------------- /src/types/dot-notation.ts: -------------------------------------------------------------------------------- 1 | type PathImpl = 2 | K extends string 3 | ? T[K] extends Record 4 | ? T[K] extends ArrayLike 5 | ? K | `${K}.${PathImpl>}` 6 | : K | `${K}.${PathImpl}` 7 | : K 8 | : never; 9 | 10 | export type Path = PathImpl | keyof T; 11 | 12 | export type PathValue> = 13 | P extends `${infer K}.${infer Rest}` 14 | ? K extends keyof T 15 | ? Rest extends Path 16 | ? PathValue 17 | : never 18 | : never 19 | : P extends keyof T 20 | ? T[P] 21 | : never; -------------------------------------------------------------------------------- /config/typedoc.js: -------------------------------------------------------------------------------- 1 | const { readdirSync, statSync } = require('fs'); 2 | const { join } = require('path'); 3 | 4 | const getListOfFiles = (dirPath) => { 5 | const list = []; 6 | 7 | readdirSync(dirPath).map((name) => { 8 | if (statSync(join(dirPath, name)).isDirectory()) { 9 | return list.push(...getListOfFiles(join(dirPath, name))); 10 | } 11 | else list.push(join(dirPath, name)); 12 | }) 13 | 14 | return list; 15 | } 16 | 17 | module.exports = { 18 | excludeProtected: true, 19 | excludePrivate: true, 20 | excludeInternal: true, 21 | includeVersion: true, 22 | name: 'Tauri Settings', 23 | // entryPoints: getListOfFiles(join(__dirname, '..', 'src')), 24 | entryPoints: [join(__dirname, '..', 'src', 'index.ts')], 25 | out: [join(__dirname, '..', 'docs')], 26 | readme: 'none', 27 | theme: 'default' 28 | } 29 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2021 ShadowWarriorPro 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "tauri-settings", 3 | "version": "0.3.5", 4 | "description": "A user settings manager for Tauri inspired by electron-settings.", 5 | "main": "dist/index.js", 6 | "typings": "dist/index.d.ts", 7 | "scripts": { 8 | "build": "tsc", 9 | "test": "jest", 10 | "dev": "tsc -w", 11 | "doc": "typedoc --options config/typedoc.js", 12 | "npm-publish": "yarn test && yarn build && yarn doc && yarn publish" 13 | }, 14 | "repository": { 15 | "type": "git", 16 | "url": "git+ssh://git@github.com/harshkhandeparkar/tauri-settings.git" 17 | }, 18 | "keywords": [ 19 | "tauri", 20 | "tauri-apps", 21 | "tauri-settings", 22 | "settings-manager" 23 | ], 24 | "author": "harshkhandeparkar", 25 | "license": "MIT", 26 | "bugs": { 27 | "url": "https://github.com/harshkhandeparkar/tauri-settings/issues" 28 | }, 29 | "homepage": "https://github.com/harshkhandeparkar/tauri-settings#readme", 30 | "devDependencies": { 31 | "@tauri-apps/api": "^1.2.0", 32 | "@types/jest": "^29.2.3", 33 | "jest": "^29.3.1", 34 | "lodash": "^4.17.21", 35 | "ts-jest": "^29.0.3", 36 | "typedoc": "^0.24.8", 37 | "typescript": "^5.1.5" 38 | } 39 | } 40 | -------------------------------------------------------------------------------- /src/config/config.ts: -------------------------------------------------------------------------------- 1 | import { CONFIG_DEFAULTS } from '../constants'; 2 | 3 | export interface IConfig { 4 | /** 5 | * The name of the file in which the settings should be saved. 6 | * The filename should be without any extension. 7 | * Default: 'settings' 8 | */ 9 | fileName: string; 10 | /** 11 | * Path to the directory in which the settings file is to be created. 12 | * Default: User's app config directory. See https://tauri.app/v1/api/js/path#appconfigdir 13 | */ 14 | dir: string | null; 15 | /** 16 | * Whether or not to prettify the JSON settings data before storing to the file. 17 | * Default: false 18 | */ 19 | prettify: boolean; 20 | /** 21 | * The number of spaces to use when prettifying the data. Will only work if the 'prettify' option is enabled. 22 | * Default: 2 23 | */ 24 | numSpaces: number; 25 | } 26 | 27 | export type ConfigOptions = IConfig | {}; 28 | 29 | /** 30 | * @internal 31 | */ 32 | export function parseOptions(options: ConfigOptions): IConfig { 33 | const finalConfig: IConfig = { 34 | ...CONFIG_DEFAULTS, 35 | ...options 36 | } 37 | 38 | finalConfig.fileName = finalConfig.fileName.split('.')[0] + '.json'; 39 | 40 | return finalConfig; 41 | } 42 | -------------------------------------------------------------------------------- /src/fs/load-save.ts: -------------------------------------------------------------------------------- 1 | import { ensureSettingsFile, STATUS } from './ensure-settings-file'; 2 | import { writeFile } from '@tauri-apps/api/fs'; 3 | import { ConfigOptions, parseOptions } from '../config/config'; 4 | 5 | /** 6 | * @internal 7 | */ 8 | export async function saveSettings 9 | 10 | (newSettings: SettingsSchema, path: string, options: ConfigOptions) 11 | { 12 | try { 13 | const finalConfig = parseOptions(options); 14 | 15 | return await writeFile({ 16 | contents: JSON.stringify(newSettings, null, finalConfig.prettify ? finalConfig.numSpaces : 0), 17 | path 18 | }) 19 | } 20 | catch (e) { 21 | throw e; 22 | } 23 | } 24 | 25 | 26 | /** 27 | * Get all the settings. 28 | * @returns The entire settings object. 29 | */ 30 | export async function getSettings 31 | 32 | (options: ConfigOptions = {}): Promise<{settings: SettingsSchema, path: string, status: STATUS}> 33 | { 34 | try { 35 | const settingsFile = await ensureSettingsFile(options); 36 | 37 | return { 38 | settings: JSON.parse(settingsFile.content) as SettingsSchema, 39 | path: settingsFile.path, 40 | status: settingsFile.status 41 | } 42 | } 43 | catch (e) { 44 | throw e; 45 | } 46 | } 47 | -------------------------------------------------------------------------------- /src/utils/dot-notation.ts: -------------------------------------------------------------------------------- 1 | import type { Path, PathValue } from '../types/dot-notation'; 2 | 3 | /** 4 | * @internal 5 | */ 6 | export function getDotNotation = Path>( 7 | settings: SettingsSchema, 8 | path: K 9 | ): PathValue | null { 10 | if (typeof path !== 'string') throw 'Error: path must be a string'; 11 | 12 | const keys = path.split('.'); 13 | 14 | let current: PathValue | SettingsSchema = settings; 15 | for (let i = 0; i < keys.length; i++) { 16 | const key = keys[i]; 17 | 18 | if (current[key] === undefined) { 19 | return null; 20 | } else { 21 | current = current[key]; 22 | } 23 | } 24 | 25 | return current as PathValue; 26 | } 27 | 28 | /** 29 | * @internal 30 | */ 31 | export function setDotNotation = Path>( 32 | settings: SettingsSchema, 33 | path: K, 34 | value: PathValue 35 | ): SettingsSchema { 36 | if (typeof path !== 'string') throw 'Error: path must be a string'; 37 | 38 | const keys = path.split('.'); 39 | 40 | let current: PathValue | SettingsSchema = settings; 41 | for (let i = 0; i < keys.length - 1; i++) { 42 | const key = keys[i]; 43 | 44 | if (current[key] === undefined) { 45 | // if a key does not exist, create it 46 | current[key] = {}; 47 | } 48 | 49 | current = current[key]; 50 | } 51 | 52 | current[keys[keys.length - 1]] = value; 53 | return settings; 54 | } -------------------------------------------------------------------------------- /src/fs/ensure-settings-file.ts: -------------------------------------------------------------------------------- 1 | import { appConfigDir, join } from '@tauri-apps/api/path'; 2 | import { createDir, readDir, readTextFile, writeFile } from '@tauri-apps/api/fs'; 3 | 4 | import { ConfigOptions, parseOptions } from '../config/config'; 5 | 6 | /** 7 | * @internal 8 | */ 9 | export enum STATUS { 10 | FILE_EXISTS = 'file_exists', 11 | FILE_CREATED = 'file_created' 12 | } 13 | 14 | /** 15 | * @internal 16 | */ 17 | export async function ensureSettingsFile(options: ConfigOptions = {}): Promise<{ 18 | status: STATUS, 19 | path: string, 20 | content: string, 21 | }> { 22 | try { 23 | const finalConfig = parseOptions(options); 24 | const finalDir = finalConfig.dir ?? await appConfigDir(); 25 | 26 | const settingsFilePath = await join(finalDir, finalConfig.fileName); 27 | 28 | // create appConfigDir() 29 | try { 30 | await readDir(finalDir); 31 | } 32 | catch (e) { 33 | // doesn't exist 34 | try { 35 | await createDir(finalDir, {recursive: true}); 36 | } 37 | catch (e) { 38 | throw e; 39 | } 40 | } 41 | 42 | try { 43 | const content = await readTextFile(settingsFilePath); 44 | 45 | return { 46 | status: STATUS.FILE_EXISTS, 47 | path: settingsFilePath, 48 | content 49 | } 50 | } 51 | catch(e) { 52 | // doesn't exist 53 | 54 | try { 55 | await writeFile({ 56 | contents: JSON.stringify({}, null, finalConfig.prettify ? finalConfig.numSpaces : 0), 57 | path: settingsFilePath 58 | }) 59 | 60 | return { 61 | status: STATUS.FILE_CREATED, 62 | path: settingsFilePath, 63 | content: JSON.stringify({}, null, finalConfig.prettify ? finalConfig.numSpaces : 0) 64 | } 65 | } 66 | catch (e) { 67 | throw e; 68 | } 69 | } 70 | } 71 | catch (e) { 72 | throw e; 73 | } 74 | } 75 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Logs 2 | logs 3 | *.log 4 | npm-debug.log* 5 | yarn-debug.log* 6 | yarn-error.log* 7 | lerna-debug.log* 8 | 9 | # Diagnostic reports (https://nodejs.org/api/report.html) 10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json 11 | 12 | # Runtime data 13 | pids 14 | *.pid 15 | *.seed 16 | *.pid.lock 17 | 18 | # Directory for instrumented libs generated by jscoverage/JSCover 19 | lib-cov 20 | 21 | # Coverage directory used by tools like istanbul 22 | coverage 23 | *.lcov 24 | 25 | # nyc test coverage 26 | .nyc_output 27 | 28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files) 29 | .grunt 30 | 31 | # Bower dependency directory (https://bower.io/) 32 | bower_components 33 | 34 | # node-waf configuration 35 | .lock-wscript 36 | 37 | # Compiled binary addons (https://nodejs.org/api/addons.html) 38 | build/Release 39 | 40 | # Dependency directories 41 | node_modules/ 42 | jspm_packages/ 43 | 44 | # TypeScript v1 declaration files 45 | typings/ 46 | 47 | # TypeScript cache 48 | *.tsbuildinfo 49 | 50 | # Optional npm cache directory 51 | .npm 52 | 53 | # Optional eslint cache 54 | .eslintcache 55 | 56 | # Microbundle cache 57 | .rpt2_cache/ 58 | .rts2_cache_cjs/ 59 | .rts2_cache_es/ 60 | .rts2_cache_umd/ 61 | 62 | # Optional REPL history 63 | .node_repl_history 64 | 65 | # Output of 'npm pack' 66 | *.tgz 67 | 68 | # Yarn Integrity file 69 | .yarn-integrity 70 | 71 | # dotenv environment variables file 72 | .env 73 | .env.test 74 | 75 | # parcel-bundler cache (https://parceljs.org/) 76 | .cache 77 | 78 | # Next.js build output 79 | .next 80 | 81 | # Nuxt.js build / generate output 82 | .nuxt 83 | dist 84 | 85 | # Gatsby files 86 | .cache/ 87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js 88 | # https://nextjs.org/blog/next-9-1#public-directory-support 89 | # public 90 | 91 | # vuepress build output 92 | .vuepress/dist 93 | 94 | # Serverless directories 95 | .serverless/ 96 | 97 | # FuseBox cache 98 | .fusebox/ 99 | 100 | # DynamoDB Local files 101 | .dynamodb/ 102 | 103 | # TernJS port file 104 | .tern-port 105 | 106 | TODO.txt 107 | docs 108 | -------------------------------------------------------------------------------- /test/dot-notation.test.js: -------------------------------------------------------------------------------- 1 | const { getDotNotation, setDotNotation } = require('../src/utils/dot-notation'); 2 | const cloneDeep = require('lodash/cloneDeep'); 3 | 4 | const settings = { 5 | theme: {mode: 'dark', accent: 'red'} 6 | } 7 | 8 | test('getDotNotation() returns the right value', () => { 9 | expect( 10 | getDotNotation( 11 | cloneDeep(settings), 12 | 'theme.mode' 13 | ) 14 | ).toBe('dark') 15 | }) 16 | 17 | test('getDotNotation() handles errors correctly', () => { 18 | expect(() => 19 | getDotNotation( 20 | cloneDeep(settings), 21 | 4 22 | ) 23 | ).toThrow('Error: path must be a string') 24 | }) 25 | 26 | test('getDotNotation() returns null for non-existent path', () => { 27 | expect( 28 | getDotNotation( 29 | cloneDeep(settings), 30 | 'theme.mode.accent' 31 | ) 32 | ).toBeNull() 33 | }) 34 | 35 | test('setDotNotation() sets the right value', () => { 36 | expect( 37 | setDotNotation( 38 | cloneDeep(settings), 39 | 'theme.mode', 40 | 'light' 41 | ) 42 | ).toStrictEqual({ 43 | ...settings, 44 | theme: { 45 | ...settings.theme, 46 | mode: 'light' 47 | } 48 | }) 49 | }) 50 | 51 | test('setDotNotation() creates non-existent keys', () => { 52 | expect( 53 | setDotNotation( 54 | cloneDeep(settings), 55 | 'theme.highContrast', 56 | true 57 | ) 58 | ).toStrictEqual({ 59 | ...settings, 60 | theme: { 61 | ...settings.theme, 62 | highContrast: true 63 | } 64 | }) 65 | 66 | expect( 67 | setDotNotation( 68 | cloneDeep(settings), 69 | 'theme.font', 70 | { 71 | size: 16, 72 | bold: true 73 | } 74 | ) 75 | ).toStrictEqual({ 76 | ...settings, 77 | theme: { 78 | ...settings.theme, 79 | font: { 80 | size: 16, 81 | bold: true 82 | } 83 | } 84 | }) 85 | 86 | expect( 87 | setDotNotation( 88 | cloneDeep(settings), 89 | 'theme.font.size', 90 | 16 91 | ) 92 | ).toStrictEqual({ 93 | ...settings, 94 | theme: { 95 | ...settings.theme, 96 | font: { 97 | size: 16 98 | } 99 | } 100 | }) 101 | }) 102 | 103 | test('setDotNotation() handles errors correctly', () => { 104 | expect(() => 105 | setDotNotation( 106 | cloneDeep(settings), 107 | 4, 108 | 'string' 109 | ) 110 | ).toThrow('Error: path must be a string') 111 | }) -------------------------------------------------------------------------------- /src/settings/getter-setter.ts: -------------------------------------------------------------------------------- 1 | import { ConfigOptions } from '../config/config'; 2 | import { getSettings, saveSettings } from '../fs/load-save'; 3 | import { getDotNotation, setDotNotation } from '../utils/dot-notation'; 4 | import type { Path, PathValue } from '../types/dot-notation'; 5 | 6 | /** 7 | * Checks whether a key exists in the settings. 8 | * @param key The key for the setting. Key supports dot notation. See https://github.com/harshkhandeparkar/tauri-settings#dot-notation. 9 | */ 10 | export async function has< 11 | SettingsSchema, 12 | K extends Path = Path 13 | > (key: K, options: ConfigOptions = {}): Promise 14 | { 15 | try { 16 | const settings = (await getSettings(options)).settings; 17 | const value = getDotNotation(settings, key); 18 | 19 | return value !== null; 20 | } 21 | catch (e) { 22 | throw e; 23 | } 24 | } 25 | 26 | /** 27 | * Get the value of a particular setting. 28 | * @param key The key for the setting. Key supports dot notation. See https://github.com/harshkhandeparkar/tauri-settings#dot-notation. 29 | * @returns The value of the setting 30 | */ 31 | export async function get< 32 | SettingsSchema, 33 | K extends Path = Path 34 | > (key: K, options: ConfigOptions = {}): Promise> 35 | { 36 | if (!await has(key)) throw 'Error: key does not exist'; 37 | 38 | try { 39 | const settings = (await getSettings(options)).settings; 40 | return getDotNotation(settings, key); 41 | } 42 | catch (e) { 43 | throw e; 44 | } 45 | } 46 | 47 | /** 48 | * Sets the value of a particular setting 49 | * @param key The key for the setting. Key supports dot notation. See https://github.com/harshkhandeparkar/tauri-settings#dot-notation. 50 | * @param value The new value 51 | * @returns The entire settings object 52 | */ 53 | export async function set< 54 | SettingsSchema, 55 | K extends Path = Path, 56 | V extends PathValue = PathValue 57 | > (key: K, value: V, options: ConfigOptions = {}): Promise 58 | { 59 | if (!await has(key)) throw 'Error: key does not exist'; 60 | 61 | try { 62 | const settings = await getSettings(options); 63 | setDotNotation(settings.settings, key, value); 64 | 65 | await saveSettings(settings.settings, settings.path, options); 66 | 67 | return settings.settings; 68 | } 69 | catch (e) { 70 | throw e; 71 | } 72 | } 73 | -------------------------------------------------------------------------------- /src/settings-manager/settings-manager.ts: -------------------------------------------------------------------------------- 1 | import { ConfigOptions } from '../config/config'; 2 | import { STATUS } from '../fs/ensure-settings-file'; 3 | 4 | import { getSettings, saveSettings } from '../fs/load-save'; 5 | import { get, set } from '../settings/getter-setter'; 6 | import { getDotNotation, setDotNotation } from '../utils/dot-notation'; 7 | import type { Path, PathValue } from '../types/dot-notation'; 8 | 9 | export class SettingsManager { 10 | /** 11 | * @internal 12 | */ 13 | settings: SettingsSchema; 14 | /** 15 | * The default values for the settings 16 | */ 17 | default: SettingsSchema; 18 | /** 19 | * @internal 20 | */ 21 | path: string; 22 | options: ConfigOptions; 23 | 24 | constructor(defaultSettings: SettingsSchema, options: ConfigOptions = {}) { 25 | this.default = { ...defaultSettings }; 26 | this.options = { ...options }; 27 | } 28 | 29 | /** 30 | * Initializes a settings file with the defaults. If settings exist, load them. 31 | * @returns The entire settings object 32 | */ 33 | async initialize(): Promise { 34 | const currentSettings = await getSettings(this.options); 35 | this.path = currentSettings.path; 36 | 37 | if (currentSettings.status === STATUS.FILE_CREATED) { 38 | this.settings = { ...this.default }; 39 | await this.saveSettings(); 40 | } 41 | else if (currentSettings.status === STATUS.FILE_EXISTS) { 42 | this.settings = { ...this.default, ...currentSettings.settings }; 43 | } 44 | 45 | return this.settings; 46 | } 47 | 48 | /** 49 | * @internal 50 | */ 51 | protected async saveSettings() { 52 | await saveSettings(this.settings, this.path, this.options); 53 | } 54 | 55 | /** 56 | * Checks whether a key exists in the settings cache. 57 | * @param key The key for the setting. Key supports dot notation. See https://github.com/harshkhandeparkar/tauri-settings#dot-notation. 58 | */ 59 | hasCache>(key: K): boolean { 60 | return getDotNotation(this.settings, key) !== null; 61 | } 62 | 63 | /** 64 | * Gets the value of a setting from the cache. 65 | * @param key The key for the setting. Key supports dot notation. See https://github.com/harshkhandeparkar/tauri-settings#dot-notation. 66 | * @returns The value of the setting 67 | */ 68 | getCache>(key: K): PathValue { 69 | if (!this.hasCache(key)) throw 'Error: key does not exist'; 70 | 71 | return getDotNotation(this.settings, key); 72 | } 73 | 74 | /** 75 | * Sets the value for a setting. Only updates cache. 76 | * @param key The key for the setting. Key supports dot notation. See https://github.com/harshkhandeparkar/tauri-settings#dot-notation. 77 | * @param value The new value for the setting 78 | * @returns The entire settings object 79 | */ 80 | setCache, V extends PathValue>(key: K, value: V): V { 81 | if (!this.hasCache(key)) throw 'Error: key does not exist'; 82 | 83 | setDotNotation(this.settings, key, value); 84 | 85 | return value; 86 | } 87 | 88 | /** 89 | * Gets the value of a setting directly from the storage. Also updates cache. 90 | * @param key The key for the setting. Key supports dot notation. See https://github.com/harshkhandeparkar/tauri-settings#dot-notation. 91 | * @returns The value of the setting 92 | */ 93 | async get>(key: K): Promise> { 94 | const value = await get(key, this.options); 95 | 96 | // to also update cache 97 | this.setCache(key, value); 98 | 99 | return value; 100 | } 101 | 102 | /** 103 | * Sets the value for a setting directly to the storage. Also updates cache. 104 | * @param key The key for the setting. Key supports dot notation. See https://github.com/harshkhandeparkar/tauri-settings#dot-notation. 105 | * @param value The new value for the setting 106 | * @returns The entire settings object 107 | */ 108 | async set, V extends PathValue>(key: K, value: V): Promise { 109 | // to also update cache 110 | this.setCache(key, value); 111 | 112 | return await set(key, value, this.options); 113 | } 114 | 115 | /** 116 | * Saves the current settings cache to the storage. 117 | * @returns The entire settings object 118 | */ 119 | async syncCache(): Promise { 120 | await this.saveSettings(); 121 | 122 | return this.settings; 123 | } 124 | } 125 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## Tauri Settings 2 | A user settings manager for [Tauri](https://tauri.app) inspired by [electron-settings](https://github.com/nathanbuchar/electron-settings). 3 | 4 | ### Table of Contents 5 | - [Installation And Usage](#installation-and-usage) 6 | - [Differences From `electron-settings`](#differences-from-electron-settings) 7 | - [API Docs](https://harshkhandeparkar.github.io/tauri-settings/) 8 | - [License](LICENSE) 9 | 10 | ### Installation And Usage 11 | #### Install The Package 12 | The package is available on npm and can be installed using npm or yarn. 13 | ```shell 14 | # using npm 15 | npm install tauri-settings 16 | 17 | # using yarn 18 | yarn add tauri-settings 19 | 20 | # using pnpm 21 | pnpm add tauri-settings 22 | ``` 23 | 24 | #### Install The Tauri API 25 | If you haven't installed `@tauri-apps/api` then you will have to install it using npm or yarn as this package internally uses the API. 26 | ```shell 27 | # using npm 28 | npm install @tauri-apps/api 29 | 30 | # using yarn 31 | yarn add @tauri-apps/api 32 | ``` 33 | 34 | #### Enable Tauri APIs 35 | The following APIs need to be added to the Tauri [allowlist](https://tauri.app/v1/api/config/#allowlistconfig). 36 | ```jsonc 37 | { 38 | "allowlist": { 39 | "fs": { // see https://tauri.app/v1/api/config/#fsallowlistconfig 40 | "createDir": true, 41 | "readDir": true, 42 | "readFile": true, 43 | "writeFile": true, 44 | "scope": ["$APPCONFIG", "$APPCONFIG/*"] 45 | }, 46 | "path": { 47 | "all": true 48 | } 49 | } 50 | } 51 | ``` 52 | 53 | #### Usage 54 | `tauri-settings` exports a set of [standalone functions](#standalone-functions) for quick usage or a [`SettingsManager`](#settingsmanager) class with extra features such as caching. 55 | Typescript typings and JSDoc is provided for all the API methods. 56 | 57 | The API also uses typescript [generics](https://www.typescriptlang.org/docs/handbook/2/generics.html#hello-world-of-generics) to allow a defined schema to be used. In the following sections, `SettingsSchema` is an optional generic type for the settings schema. 58 | It is highly recommended to use a defined schema to prevent runtime errors. 59 | 60 | [`SettingsManager`](#settingsmanager) class can also be initialized with a `SettingsSchema` generic. This generic will be used by all the methods of the class instance. 61 | Apart from basic setters and getters, the [`SettingsManager`](#settingsmanager) class also caches the value of the settings in the memory for quick access. This can also be used to make the api calls synchronous. See [Differences From `electron-settings`: Asynchronous](#asynchronous). 62 | 63 | Using both the standalone methods and `SettingsManager` together can cause unexpected behaviour. If a setting is accessed both by the frontend and the backend then not using the caching feature is recommended. 64 | 65 | #### Standalone Functions 66 | `tauri-settings` exports the following API methods to directly set or get settings for quick usage. Alternatively you can also use [`SettingsManager`](#settingsmanager). 67 | Each of the following methods has an `options` parameter. See the [Config](#config) to learn more. 68 | 69 | - `async has(key, options = {})`: Async function that resolves with a boolean which is true if the given key exists in the settings. 70 | - `async get(key, options = {})`: Async function that resolves with the value of the setting corresponding to the given key. 71 | - `async set(key, value, options = {})`: Async function that sets the value of a given setting. Resolves with the entire settings object. 72 | - `async getAll(, options = {})`: Async function that resolves with the entire settings object. 73 | 74 | Here `key` uses [dot notation](#dot-notation). 75 | 76 | #### Examples 77 | ```ts 78 | type Schema = { 79 | theme: 'dark' | 'light'; 80 | startFullscreen: boolean; 81 | } 82 | 83 | get('theme').then((theme) => { 84 | // change the theme 85 | }) 86 | 87 | // when the theme is changed by the user 88 | set('theme').then(() => console.log('theme changed succesfully')); 89 | ``` 90 | 91 | See the complete [API Docs](https://harshkhandeparkar.github.io/tauri-settings/). 92 | 93 | #### SettingsManager 94 | `SettingsManager` is a class that can be used not only to set and get settings but it is meant to be a complete settings *manager*. 95 | It provides additional features such as caching the settings in the memory, setting defaults and in the future, listening to changes in the settings. 96 | 97 | The caching feature stores a copy of the settings on the RAM and does not directly alter the settings file on persistent storage. This can be useful in multiple cases: 98 | - Quick access without making filesystem changes 99 | - Updating settings in batch 100 | - Using the API syncrhonously (See [Differences From `electron-settings`: Asynchronous](#asynchronous)) 101 | - Deferring the filesystem events to a more convenient time 102 | 103 | The cached settings can be accessed by using the `hasCache`, `getCache` or `setCache` methods. 104 | The cache can be synced (written to persistent storage) at any time or the persistent storage can be accessed at any time using the `has`, `get` and `set` methods. 105 | 106 | [Dot notation](#dot-notation) is also supported here. 107 | 108 | `SettingsManager` class can also be initialized with the `SettingsSchema` generic. (see [Usage](#usage)) 109 | 110 | #### Examples 111 | ```ts 112 | // TypeScript 113 | 114 | import { SettingsManager } from 'tauri-settings'; 115 | 116 | type Schema = { 117 | theme: 'dark' | 'light'; 118 | startFullscreen: boolean; 119 | } 120 | 121 | const settingsManager = new SettingsManager( 122 | { // defaults 123 | theme: 'light', 124 | startFullscreen: false 125 | }, 126 | { // options 127 | fileName: 'customization-settings' 128 | } 129 | ) 130 | 131 | // checks whether the settings file exists and created it if not 132 | // loads the settings if it exists 133 | settingsManager.initialize().then(() => { 134 | // any key other than 'theme' and 'startFullscreen' will be invalid. 135 | // theme key will only accept 'dark' or 'light' as a value due to the generic. 136 | settingsManager.setCache('theme', 'dark'); 137 | } 138 | 139 | // at a later time 140 | await settingsManager.syncCache(); 141 | ``` 142 | 143 | ```js 144 | // JavaScript 145 | 146 | import { SettingsManager } from 'tauri-settings'; 147 | 148 | const settingsManager = new SettingsManager( 149 | { // defaults 150 | theme: 'light', 151 | startFullscreen: false 152 | }, 153 | { // options 154 | fileName: 'customization-settings' 155 | } 156 | ); 157 | 158 | // checks whether the settings file exists and created it if not 159 | // loads the settings if it exists 160 | settingsManager.initialize().then(() => { 161 | // there is no schema, so any key will be accepted 162 | // the user needs to add their own validation scheme 163 | settingsManager.setCache('theme', 'dark'); 164 | } 165 | 166 | // at a later time 167 | await settingsManager.syncCache(); 168 | 169 | ``` 170 | 171 | See the complete [API Docs](https://harshkhandeparkar.github.io/tauri-settings/). 172 | 173 | ### Differences From `electron-settings` 174 | #### Asynchronous 175 | Since the Tauri [`fs` API](https://tauri.app/v1/api/js/fs) is asynchronous, the API methods exported by `tauri-settings` are also asynchronous. Methods `setSync`, `getSync`, and `hasSync` from `electron-settings` are not available. 176 | 177 | Even though synchronous `fs` API is not available, the caching feature of [`SettingsManager`](#settingsmanager) can be used to synchronously set and read the settings. 178 | 179 | #### Dot Notation 180 | `electron-settings` allows you to access settings by using [dot notation](https://electron-settings.js.org/index.html#keypath). 181 | `tauri-settings` supports (Thanks to https://github.com/harshkhandeparkar/tauri-settings/pull/3) the above feature without the array notation `key.array[4]`. 182 | 183 | Example: 184 | If the settings schema looks like this: 185 | ```js 186 | { 187 | theme: { 188 | mode: 'dark', 189 | accent: 'red' 190 | } 191 | } 192 | ``` 193 | `get('theme.mode')` will return `dark`. 194 | 195 | The following will NOT work: 196 | ```js 197 | { 198 | search: { 199 | recents: ['keyword1', 'keyword2', 'keyword3'] 200 | } 201 | } 202 | ``` 203 | `get('search.recents[3]')` will return `null` whereas `get('search.recents')` will return the entire `recents` array. 204 | 205 | #### Config 206 | `electron-settings` exports a [`configure()`](https://electron-settings.js.org/index.html#configure) method to configure some of the options such as the fileName. 207 | However, `tauri-settings` doesn't export such a variable due to various reasons. Instead each API method such as `get` and `set`, as well as the `SettingsManager` class have an optional `options` parameter (See [API Docs](https://harshkhandeparkar.github.io/tauri-settings/)). 208 | 209 | **** 210 | #### Thank You 211 | -------------------------------------------------------------------------------- /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.23.5", "@babel/code-frame@^7.24.1", "@babel/code-frame@^7.24.2": 14 | version "7.24.2" 15 | resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.24.2.tgz#718b4b19841809a58b29b68cde80bc5e1aa6d9ae" 16 | integrity sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ== 17 | dependencies: 18 | "@babel/highlight" "^7.24.2" 19 | picocolors "^1.0.0" 20 | 21 | "@babel/compat-data@^7.23.5": 22 | version "7.24.4" 23 | resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.24.4.tgz#6f102372e9094f25d908ca0d34fc74c74606059a" 24 | integrity sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ== 25 | 26 | "@babel/core@^7.11.6", "@babel/core@^7.12.3", "@babel/core@^7.23.9": 27 | version "7.24.4" 28 | resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.24.4.tgz#1f758428e88e0d8c563874741bc4ffc4f71a4717" 29 | integrity sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg== 30 | dependencies: 31 | "@ampproject/remapping" "^2.2.0" 32 | "@babel/code-frame" "^7.24.2" 33 | "@babel/generator" "^7.24.4" 34 | "@babel/helper-compilation-targets" "^7.23.6" 35 | "@babel/helper-module-transforms" "^7.23.3" 36 | "@babel/helpers" "^7.24.4" 37 | "@babel/parser" "^7.24.4" 38 | "@babel/template" "^7.24.0" 39 | "@babel/traverse" "^7.24.1" 40 | "@babel/types" "^7.24.0" 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.24.1", "@babel/generator@^7.24.4", "@babel/generator@^7.7.2": 48 | version "7.24.4" 49 | resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.24.4.tgz#1fc55532b88adf952025d5d2d1e71f946cb1c498" 50 | integrity sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw== 51 | dependencies: 52 | "@babel/types" "^7.24.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.23.6": 58 | version "7.23.6" 59 | resolved "https://registry.yarnpkg.com/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz#4d79069b16cbcf1461289eccfbbd81501ae39991" 60 | integrity sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ== 61 | dependencies: 62 | "@babel/compat-data" "^7.23.5" 63 | "@babel/helper-validator-option" "^7.23.5" 64 | browserslist "^4.22.2" 65 | lru-cache "^5.1.1" 66 | semver "^6.3.1" 67 | 68 | "@babel/helper-environment-visitor@^7.22.20": 69 | version "7.22.20" 70 | resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167" 71 | integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA== 72 | 73 | "@babel/helper-function-name@^7.23.0": 74 | version "7.23.0" 75 | resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759" 76 | integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw== 77 | dependencies: 78 | "@babel/template" "^7.22.15" 79 | "@babel/types" "^7.23.0" 80 | 81 | "@babel/helper-hoist-variables@^7.22.5": 82 | version "7.22.5" 83 | resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb" 84 | integrity sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw== 85 | dependencies: 86 | "@babel/types" "^7.22.5" 87 | 88 | "@babel/helper-module-imports@^7.22.15": 89 | version "7.24.3" 90 | resolved "https://registry.yarnpkg.com/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz#6ac476e6d168c7c23ff3ba3cf4f7841d46ac8128" 91 | integrity sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg== 92 | dependencies: 93 | "@babel/types" "^7.24.0" 94 | 95 | "@babel/helper-module-transforms@^7.23.3": 96 | version "7.23.3" 97 | resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz#d7d12c3c5d30af5b3c0fcab2a6d5217773e2d0f1" 98 | integrity sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ== 99 | dependencies: 100 | "@babel/helper-environment-visitor" "^7.22.20" 101 | "@babel/helper-module-imports" "^7.22.15" 102 | "@babel/helper-simple-access" "^7.22.5" 103 | "@babel/helper-split-export-declaration" "^7.22.6" 104 | "@babel/helper-validator-identifier" "^7.22.20" 105 | 106 | "@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.0", "@babel/helper-plugin-utils@^7.8.0": 107 | version "7.24.0" 108 | resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz#945681931a52f15ce879fd5b86ce2dae6d3d7f2a" 109 | integrity sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w== 110 | 111 | "@babel/helper-simple-access@^7.22.5": 112 | version "7.22.5" 113 | resolved "https://registry.yarnpkg.com/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz#4938357dc7d782b80ed6dbb03a0fba3d22b1d5de" 114 | integrity sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w== 115 | dependencies: 116 | "@babel/types" "^7.22.5" 117 | 118 | "@babel/helper-split-export-declaration@^7.22.6": 119 | version "7.22.6" 120 | resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz#322c61b7310c0997fe4c323955667f18fcefb91c" 121 | integrity sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g== 122 | dependencies: 123 | "@babel/types" "^7.22.5" 124 | 125 | "@babel/helper-string-parser@^7.23.4": 126 | version "7.24.1" 127 | resolved "https://registry.yarnpkg.com/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz#f99c36d3593db9540705d0739a1f10b5e20c696e" 128 | integrity sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ== 129 | 130 | "@babel/helper-validator-identifier@^7.22.20": 131 | version "7.22.20" 132 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0" 133 | integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A== 134 | 135 | "@babel/helper-validator-option@^7.23.5": 136 | version "7.23.5" 137 | resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz#907a3fbd4523426285365d1206c423c4c5520307" 138 | integrity sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw== 139 | 140 | "@babel/helpers@^7.24.4": 141 | version "7.24.4" 142 | resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.24.4.tgz#dc00907fd0d95da74563c142ef4cd21f2cb856b6" 143 | integrity sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw== 144 | dependencies: 145 | "@babel/template" "^7.24.0" 146 | "@babel/traverse" "^7.24.1" 147 | "@babel/types" "^7.24.0" 148 | 149 | "@babel/highlight@^7.24.2": 150 | version "7.24.2" 151 | resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.24.2.tgz#3f539503efc83d3c59080a10e6634306e0370d26" 152 | integrity sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA== 153 | dependencies: 154 | "@babel/helper-validator-identifier" "^7.22.20" 155 | chalk "^2.4.2" 156 | js-tokens "^4.0.0" 157 | picocolors "^1.0.0" 158 | 159 | "@babel/parser@^7.1.0", "@babel/parser@^7.14.7", "@babel/parser@^7.20.7", "@babel/parser@^7.23.9", "@babel/parser@^7.24.0", "@babel/parser@^7.24.1", "@babel/parser@^7.24.4": 160 | version "7.24.4" 161 | resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.24.4.tgz#234487a110d89ad5a3ed4a8a566c36b9453e8c88" 162 | integrity sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg== 163 | 164 | "@babel/plugin-syntax-async-generators@^7.8.4": 165 | version "7.8.4" 166 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz#a983fb1aeb2ec3f6ed042a210f640e90e786fe0d" 167 | integrity sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw== 168 | dependencies: 169 | "@babel/helper-plugin-utils" "^7.8.0" 170 | 171 | "@babel/plugin-syntax-bigint@^7.8.3": 172 | version "7.8.3" 173 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz#4c9a6f669f5d0cdf1b90a1671e9a146be5300cea" 174 | integrity sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg== 175 | dependencies: 176 | "@babel/helper-plugin-utils" "^7.8.0" 177 | 178 | "@babel/plugin-syntax-class-properties@^7.8.3": 179 | version "7.12.13" 180 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz#b5c987274c4a3a82b89714796931a6b53544ae10" 181 | integrity sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA== 182 | dependencies: 183 | "@babel/helper-plugin-utils" "^7.12.13" 184 | 185 | "@babel/plugin-syntax-import-meta@^7.8.3": 186 | version "7.10.4" 187 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz#ee601348c370fa334d2207be158777496521fd51" 188 | integrity sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g== 189 | dependencies: 190 | "@babel/helper-plugin-utils" "^7.10.4" 191 | 192 | "@babel/plugin-syntax-json-strings@^7.8.3": 193 | version "7.8.3" 194 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz#01ca21b668cd8218c9e640cb6dd88c5412b2c96a" 195 | integrity sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA== 196 | dependencies: 197 | "@babel/helper-plugin-utils" "^7.8.0" 198 | 199 | "@babel/plugin-syntax-jsx@^7.7.2": 200 | version "7.24.1" 201 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz#3f6ca04b8c841811dbc3c5c5f837934e0d626c10" 202 | integrity sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA== 203 | dependencies: 204 | "@babel/helper-plugin-utils" "^7.24.0" 205 | 206 | "@babel/plugin-syntax-logical-assignment-operators@^7.8.3": 207 | version "7.10.4" 208 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz#ca91ef46303530448b906652bac2e9fe9941f699" 209 | integrity sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig== 210 | dependencies: 211 | "@babel/helper-plugin-utils" "^7.10.4" 212 | 213 | "@babel/plugin-syntax-nullish-coalescing-operator@^7.8.3": 214 | version "7.8.3" 215 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz#167ed70368886081f74b5c36c65a88c03b66d1a9" 216 | integrity sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ== 217 | dependencies: 218 | "@babel/helper-plugin-utils" "^7.8.0" 219 | 220 | "@babel/plugin-syntax-numeric-separator@^7.8.3": 221 | version "7.10.4" 222 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz#b9b070b3e33570cd9fd07ba7fa91c0dd37b9af97" 223 | integrity sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug== 224 | dependencies: 225 | "@babel/helper-plugin-utils" "^7.10.4" 226 | 227 | "@babel/plugin-syntax-object-rest-spread@^7.8.3": 228 | version "7.8.3" 229 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz#60e225edcbd98a640332a2e72dd3e66f1af55871" 230 | integrity sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA== 231 | dependencies: 232 | "@babel/helper-plugin-utils" "^7.8.0" 233 | 234 | "@babel/plugin-syntax-optional-catch-binding@^7.8.3": 235 | version "7.8.3" 236 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz#6111a265bcfb020eb9efd0fdfd7d26402b9ed6c1" 237 | integrity sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q== 238 | dependencies: 239 | "@babel/helper-plugin-utils" "^7.8.0" 240 | 241 | "@babel/plugin-syntax-optional-chaining@^7.8.3": 242 | version "7.8.3" 243 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz#4f69c2ab95167e0180cd5336613f8c5788f7d48a" 244 | integrity sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg== 245 | dependencies: 246 | "@babel/helper-plugin-utils" "^7.8.0" 247 | 248 | "@babel/plugin-syntax-top-level-await@^7.8.3": 249 | version "7.14.5" 250 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz#c1cfdadc35a646240001f06138247b741c34d94c" 251 | integrity sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw== 252 | dependencies: 253 | "@babel/helper-plugin-utils" "^7.14.5" 254 | 255 | "@babel/plugin-syntax-typescript@^7.7.2": 256 | version "7.24.1" 257 | resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz#b3bcc51f396d15f3591683f90239de143c076844" 258 | integrity sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw== 259 | dependencies: 260 | "@babel/helper-plugin-utils" "^7.24.0" 261 | 262 | "@babel/template@^7.22.15", "@babel/template@^7.24.0", "@babel/template@^7.3.3": 263 | version "7.24.0" 264 | resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.24.0.tgz#c6a524aa93a4a05d66aaf31654258fae69d87d50" 265 | integrity sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA== 266 | dependencies: 267 | "@babel/code-frame" "^7.23.5" 268 | "@babel/parser" "^7.24.0" 269 | "@babel/types" "^7.24.0" 270 | 271 | "@babel/traverse@^7.24.1": 272 | version "7.24.1" 273 | resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.24.1.tgz#d65c36ac9dd17282175d1e4a3c49d5b7988f530c" 274 | integrity sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ== 275 | dependencies: 276 | "@babel/code-frame" "^7.24.1" 277 | "@babel/generator" "^7.24.1" 278 | "@babel/helper-environment-visitor" "^7.22.20" 279 | "@babel/helper-function-name" "^7.23.0" 280 | "@babel/helper-hoist-variables" "^7.22.5" 281 | "@babel/helper-split-export-declaration" "^7.22.6" 282 | "@babel/parser" "^7.24.1" 283 | "@babel/types" "^7.24.0" 284 | debug "^4.3.1" 285 | globals "^11.1.0" 286 | 287 | "@babel/types@^7.0.0", "@babel/types@^7.20.7", "@babel/types@^7.22.5", "@babel/types@^7.23.0", "@babel/types@^7.24.0", "@babel/types@^7.3.3": 288 | version "7.24.0" 289 | resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.24.0.tgz#3b951f435a92e7333eba05b7566fd297960ea1bf" 290 | integrity sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w== 291 | dependencies: 292 | "@babel/helper-string-parser" "^7.23.4" 293 | "@babel/helper-validator-identifier" "^7.22.20" 294 | to-fast-properties "^2.0.0" 295 | 296 | "@bcoe/v8-coverage@^0.2.3": 297 | version "0.2.3" 298 | resolved "https://registry.yarnpkg.com/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz#75a2e8b51cb758a7553d6804a5932d7aace75c39" 299 | integrity sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw== 300 | 301 | "@istanbuljs/load-nyc-config@^1.0.0": 302 | version "1.1.0" 303 | resolved "https://registry.yarnpkg.com/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz#fd3db1d59ecf7cf121e80650bb86712f9b55eced" 304 | integrity sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ== 305 | dependencies: 306 | camelcase "^5.3.1" 307 | find-up "^4.1.0" 308 | get-package-type "^0.1.0" 309 | js-yaml "^3.13.1" 310 | resolve-from "^5.0.0" 311 | 312 | "@istanbuljs/schema@^0.1.2", "@istanbuljs/schema@^0.1.3": 313 | version "0.1.3" 314 | resolved "https://registry.yarnpkg.com/@istanbuljs/schema/-/schema-0.1.3.tgz#e45e384e4b8ec16bce2fd903af78450f6bf7ec98" 315 | integrity sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA== 316 | 317 | "@jest/console@^29.7.0": 318 | version "29.7.0" 319 | resolved "https://registry.yarnpkg.com/@jest/console/-/console-29.7.0.tgz#cd4822dbdb84529265c5a2bdb529a3c9cc950ffc" 320 | integrity sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg== 321 | dependencies: 322 | "@jest/types" "^29.6.3" 323 | "@types/node" "*" 324 | chalk "^4.0.0" 325 | jest-message-util "^29.7.0" 326 | jest-util "^29.7.0" 327 | slash "^3.0.0" 328 | 329 | "@jest/core@^29.7.0": 330 | version "29.7.0" 331 | resolved "https://registry.yarnpkg.com/@jest/core/-/core-29.7.0.tgz#b6cccc239f30ff36609658c5a5e2291757ce448f" 332 | integrity sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg== 333 | dependencies: 334 | "@jest/console" "^29.7.0" 335 | "@jest/reporters" "^29.7.0" 336 | "@jest/test-result" "^29.7.0" 337 | "@jest/transform" "^29.7.0" 338 | "@jest/types" "^29.6.3" 339 | "@types/node" "*" 340 | ansi-escapes "^4.2.1" 341 | chalk "^4.0.0" 342 | ci-info "^3.2.0" 343 | exit "^0.1.2" 344 | graceful-fs "^4.2.9" 345 | jest-changed-files "^29.7.0" 346 | jest-config "^29.7.0" 347 | jest-haste-map "^29.7.0" 348 | jest-message-util "^29.7.0" 349 | jest-regex-util "^29.6.3" 350 | jest-resolve "^29.7.0" 351 | jest-resolve-dependencies "^29.7.0" 352 | jest-runner "^29.7.0" 353 | jest-runtime "^29.7.0" 354 | jest-snapshot "^29.7.0" 355 | jest-util "^29.7.0" 356 | jest-validate "^29.7.0" 357 | jest-watcher "^29.7.0" 358 | micromatch "^4.0.4" 359 | pretty-format "^29.7.0" 360 | slash "^3.0.0" 361 | strip-ansi "^6.0.0" 362 | 363 | "@jest/environment@^29.7.0": 364 | version "29.7.0" 365 | resolved "https://registry.yarnpkg.com/@jest/environment/-/environment-29.7.0.tgz#24d61f54ff1f786f3cd4073b4b94416383baf2a7" 366 | integrity sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw== 367 | dependencies: 368 | "@jest/fake-timers" "^29.7.0" 369 | "@jest/types" "^29.6.3" 370 | "@types/node" "*" 371 | jest-mock "^29.7.0" 372 | 373 | "@jest/expect-utils@^29.7.0": 374 | version "29.7.0" 375 | resolved "https://registry.yarnpkg.com/@jest/expect-utils/-/expect-utils-29.7.0.tgz#023efe5d26a8a70f21677d0a1afc0f0a44e3a1c6" 376 | integrity sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA== 377 | dependencies: 378 | jest-get-type "^29.6.3" 379 | 380 | "@jest/expect@^29.7.0": 381 | version "29.7.0" 382 | resolved "https://registry.yarnpkg.com/@jest/expect/-/expect-29.7.0.tgz#76a3edb0cb753b70dfbfe23283510d3d45432bf2" 383 | integrity sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ== 384 | dependencies: 385 | expect "^29.7.0" 386 | jest-snapshot "^29.7.0" 387 | 388 | "@jest/fake-timers@^29.7.0": 389 | version "29.7.0" 390 | resolved "https://registry.yarnpkg.com/@jest/fake-timers/-/fake-timers-29.7.0.tgz#fd91bf1fffb16d7d0d24a426ab1a47a49881a565" 391 | integrity sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ== 392 | dependencies: 393 | "@jest/types" "^29.6.3" 394 | "@sinonjs/fake-timers" "^10.0.2" 395 | "@types/node" "*" 396 | jest-message-util "^29.7.0" 397 | jest-mock "^29.7.0" 398 | jest-util "^29.7.0" 399 | 400 | "@jest/globals@^29.7.0": 401 | version "29.7.0" 402 | resolved "https://registry.yarnpkg.com/@jest/globals/-/globals-29.7.0.tgz#8d9290f9ec47ff772607fa864ca1d5a2efae1d4d" 403 | integrity sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ== 404 | dependencies: 405 | "@jest/environment" "^29.7.0" 406 | "@jest/expect" "^29.7.0" 407 | "@jest/types" "^29.6.3" 408 | jest-mock "^29.7.0" 409 | 410 | "@jest/reporters@^29.7.0": 411 | version "29.7.0" 412 | resolved "https://registry.yarnpkg.com/@jest/reporters/-/reporters-29.7.0.tgz#04b262ecb3b8faa83b0b3d321623972393e8f4c7" 413 | integrity sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg== 414 | dependencies: 415 | "@bcoe/v8-coverage" "^0.2.3" 416 | "@jest/console" "^29.7.0" 417 | "@jest/test-result" "^29.7.0" 418 | "@jest/transform" "^29.7.0" 419 | "@jest/types" "^29.6.3" 420 | "@jridgewell/trace-mapping" "^0.3.18" 421 | "@types/node" "*" 422 | chalk "^4.0.0" 423 | collect-v8-coverage "^1.0.0" 424 | exit "^0.1.2" 425 | glob "^7.1.3" 426 | graceful-fs "^4.2.9" 427 | istanbul-lib-coverage "^3.0.0" 428 | istanbul-lib-instrument "^6.0.0" 429 | istanbul-lib-report "^3.0.0" 430 | istanbul-lib-source-maps "^4.0.0" 431 | istanbul-reports "^3.1.3" 432 | jest-message-util "^29.7.0" 433 | jest-util "^29.7.0" 434 | jest-worker "^29.7.0" 435 | slash "^3.0.0" 436 | string-length "^4.0.1" 437 | strip-ansi "^6.0.0" 438 | v8-to-istanbul "^9.0.1" 439 | 440 | "@jest/schemas@^29.6.3": 441 | version "29.6.3" 442 | resolved "https://registry.yarnpkg.com/@jest/schemas/-/schemas-29.6.3.tgz#430b5ce8a4e0044a7e3819663305a7b3091c8e03" 443 | integrity sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA== 444 | dependencies: 445 | "@sinclair/typebox" "^0.27.8" 446 | 447 | "@jest/source-map@^29.6.3": 448 | version "29.6.3" 449 | resolved "https://registry.yarnpkg.com/@jest/source-map/-/source-map-29.6.3.tgz#d90ba772095cf37a34a5eb9413f1b562a08554c4" 450 | integrity sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw== 451 | dependencies: 452 | "@jridgewell/trace-mapping" "^0.3.18" 453 | callsites "^3.0.0" 454 | graceful-fs "^4.2.9" 455 | 456 | "@jest/test-result@^29.7.0": 457 | version "29.7.0" 458 | resolved "https://registry.yarnpkg.com/@jest/test-result/-/test-result-29.7.0.tgz#8db9a80aa1a097bb2262572686734baed9b1657c" 459 | integrity sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA== 460 | dependencies: 461 | "@jest/console" "^29.7.0" 462 | "@jest/types" "^29.6.3" 463 | "@types/istanbul-lib-coverage" "^2.0.0" 464 | collect-v8-coverage "^1.0.0" 465 | 466 | "@jest/test-sequencer@^29.7.0": 467 | version "29.7.0" 468 | resolved "https://registry.yarnpkg.com/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz#6cef977ce1d39834a3aea887a1726628a6f072ce" 469 | integrity sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw== 470 | dependencies: 471 | "@jest/test-result" "^29.7.0" 472 | graceful-fs "^4.2.9" 473 | jest-haste-map "^29.7.0" 474 | slash "^3.0.0" 475 | 476 | "@jest/transform@^29.7.0": 477 | version "29.7.0" 478 | resolved "https://registry.yarnpkg.com/@jest/transform/-/transform-29.7.0.tgz#df2dd9c346c7d7768b8a06639994640c642e284c" 479 | integrity sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw== 480 | dependencies: 481 | "@babel/core" "^7.11.6" 482 | "@jest/types" "^29.6.3" 483 | "@jridgewell/trace-mapping" "^0.3.18" 484 | babel-plugin-istanbul "^6.1.1" 485 | chalk "^4.0.0" 486 | convert-source-map "^2.0.0" 487 | fast-json-stable-stringify "^2.1.0" 488 | graceful-fs "^4.2.9" 489 | jest-haste-map "^29.7.0" 490 | jest-regex-util "^29.6.3" 491 | jest-util "^29.7.0" 492 | micromatch "^4.0.4" 493 | pirates "^4.0.4" 494 | slash "^3.0.0" 495 | write-file-atomic "^4.0.2" 496 | 497 | "@jest/types@^29.6.3": 498 | version "29.6.3" 499 | resolved "https://registry.yarnpkg.com/@jest/types/-/types-29.6.3.tgz#1131f8cf634e7e84c5e77bab12f052af585fba59" 500 | integrity sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw== 501 | dependencies: 502 | "@jest/schemas" "^29.6.3" 503 | "@types/istanbul-lib-coverage" "^2.0.0" 504 | "@types/istanbul-reports" "^3.0.0" 505 | "@types/node" "*" 506 | "@types/yargs" "^17.0.8" 507 | chalk "^4.0.0" 508 | 509 | "@jridgewell/gen-mapping@^0.3.5": 510 | version "0.3.5" 511 | resolved "https://registry.yarnpkg.com/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz#dcce6aff74bdf6dad1a95802b69b04a2fcb1fb36" 512 | integrity sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg== 513 | dependencies: 514 | "@jridgewell/set-array" "^1.2.1" 515 | "@jridgewell/sourcemap-codec" "^1.4.10" 516 | "@jridgewell/trace-mapping" "^0.3.24" 517 | 518 | "@jridgewell/resolve-uri@^3.1.0": 519 | version "3.1.2" 520 | resolved "https://registry.yarnpkg.com/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz#7a0ee601f60f99a20c7c7c5ff0c80388c1189bd6" 521 | integrity sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw== 522 | 523 | "@jridgewell/set-array@^1.2.1": 524 | version "1.2.1" 525 | resolved "https://registry.yarnpkg.com/@jridgewell/set-array/-/set-array-1.2.1.tgz#558fb6472ed16a4c850b889530e6b36438c49280" 526 | integrity sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A== 527 | 528 | "@jridgewell/sourcemap-codec@^1.4.10", "@jridgewell/sourcemap-codec@^1.4.14": 529 | version "1.4.15" 530 | resolved "https://registry.yarnpkg.com/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz#d7c6e6755c78567a951e04ab52ef0fd26de59f32" 531 | integrity sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg== 532 | 533 | "@jridgewell/trace-mapping@^0.3.12", "@jridgewell/trace-mapping@^0.3.18", "@jridgewell/trace-mapping@^0.3.24", "@jridgewell/trace-mapping@^0.3.25": 534 | version "0.3.25" 535 | resolved "https://registry.yarnpkg.com/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz#15f190e98895f3fc23276ee14bc76b675c2e50f0" 536 | integrity sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ== 537 | dependencies: 538 | "@jridgewell/resolve-uri" "^3.1.0" 539 | "@jridgewell/sourcemap-codec" "^1.4.14" 540 | 541 | "@sinclair/typebox@^0.27.8": 542 | version "0.27.8" 543 | resolved "https://registry.yarnpkg.com/@sinclair/typebox/-/typebox-0.27.8.tgz#6667fac16c436b5434a387a34dedb013198f6e6e" 544 | integrity sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA== 545 | 546 | "@sinonjs/commons@^3.0.0": 547 | version "3.0.1" 548 | resolved "https://registry.yarnpkg.com/@sinonjs/commons/-/commons-3.0.1.tgz#1029357e44ca901a615585f6d27738dbc89084cd" 549 | integrity sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ== 550 | dependencies: 551 | type-detect "4.0.8" 552 | 553 | "@sinonjs/fake-timers@^10.0.2": 554 | version "10.3.0" 555 | resolved "https://registry.yarnpkg.com/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz#55fdff1ecab9f354019129daf4df0dd4d923ea66" 556 | integrity sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA== 557 | dependencies: 558 | "@sinonjs/commons" "^3.0.0" 559 | 560 | "@tauri-apps/api@^1.2.0": 561 | version "1.5.3" 562 | resolved "https://registry.yarnpkg.com/@tauri-apps/api/-/api-1.5.3.tgz#f7b362b1f30aadb0a8bbeb7ae111755c0ed33d73" 563 | integrity sha512-zxnDjHHKjOsrIzZm6nO5Xapb/BxqUq1tc7cGkFXsFkGTsSWgCPH1D8mm0XS9weJY2OaR73I3k3S+b7eSzJDfqA== 564 | 565 | "@types/babel__core@^7.1.14": 566 | version "7.20.5" 567 | resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.5.tgz#3df15f27ba85319caa07ba08d0721889bb39c017" 568 | integrity sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA== 569 | dependencies: 570 | "@babel/parser" "^7.20.7" 571 | "@babel/types" "^7.20.7" 572 | "@types/babel__generator" "*" 573 | "@types/babel__template" "*" 574 | "@types/babel__traverse" "*" 575 | 576 | "@types/babel__generator@*": 577 | version "7.6.8" 578 | resolved "https://registry.yarnpkg.com/@types/babel__generator/-/babel__generator-7.6.8.tgz#f836c61f48b1346e7d2b0d93c6dacc5b9535d3ab" 579 | integrity sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw== 580 | dependencies: 581 | "@babel/types" "^7.0.0" 582 | 583 | "@types/babel__template@*": 584 | version "7.4.4" 585 | resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.4.tgz#5672513701c1b2199bc6dad636a9d7491586766f" 586 | integrity sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A== 587 | dependencies: 588 | "@babel/parser" "^7.1.0" 589 | "@babel/types" "^7.0.0" 590 | 591 | "@types/babel__traverse@*", "@types/babel__traverse@^7.0.6": 592 | version "7.20.5" 593 | resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.5.tgz#7b7502be0aa80cc4ef22978846b983edaafcd4dd" 594 | integrity sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ== 595 | dependencies: 596 | "@babel/types" "^7.20.7" 597 | 598 | "@types/graceful-fs@^4.1.3": 599 | version "4.1.9" 600 | resolved "https://registry.yarnpkg.com/@types/graceful-fs/-/graceful-fs-4.1.9.tgz#2a06bc0f68a20ab37b3e36aa238be6abdf49e8b4" 601 | integrity sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ== 602 | dependencies: 603 | "@types/node" "*" 604 | 605 | "@types/istanbul-lib-coverage@*", "@types/istanbul-lib-coverage@^2.0.0", "@types/istanbul-lib-coverage@^2.0.1": 606 | version "2.0.6" 607 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz#7739c232a1fee9b4d3ce8985f314c0c6d33549d7" 608 | integrity sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w== 609 | 610 | "@types/istanbul-lib-report@*": 611 | version "3.0.3" 612 | resolved "https://registry.yarnpkg.com/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz#53047614ae72e19fc0401d872de3ae2b4ce350bf" 613 | integrity sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA== 614 | dependencies: 615 | "@types/istanbul-lib-coverage" "*" 616 | 617 | "@types/istanbul-reports@^3.0.0": 618 | version "3.0.4" 619 | resolved "https://registry.yarnpkg.com/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz#0f03e3d2f670fbdac586e34b433783070cc16f54" 620 | integrity sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ== 621 | dependencies: 622 | "@types/istanbul-lib-report" "*" 623 | 624 | "@types/jest@^29.2.3": 625 | version "29.5.12" 626 | resolved "https://registry.yarnpkg.com/@types/jest/-/jest-29.5.12.tgz#7f7dc6eb4cf246d2474ed78744b05d06ce025544" 627 | integrity sha512-eDC8bTvT/QhYdxJAulQikueigY5AsdBRH2yDKW3yveW7svY3+DzN84/2NUgkw10RTiJbWqZrTtoGVdYlvFJdLw== 628 | dependencies: 629 | expect "^29.0.0" 630 | pretty-format "^29.0.0" 631 | 632 | "@types/node@*": 633 | version "20.12.7" 634 | resolved "https://registry.yarnpkg.com/@types/node/-/node-20.12.7.tgz#04080362fa3dd6c5822061aa3124f5c152cff384" 635 | integrity sha512-wq0cICSkRLVaf3UGLMGItu/PtdY7oaXaI/RVU+xliKVOtRna3PRY57ZDfztpDL0n11vfymMUnXv8QwYCO7L1wg== 636 | dependencies: 637 | undici-types "~5.26.4" 638 | 639 | "@types/stack-utils@^2.0.0": 640 | version "2.0.3" 641 | resolved "https://registry.yarnpkg.com/@types/stack-utils/-/stack-utils-2.0.3.tgz#6209321eb2c1712a7e7466422b8cb1fc0d9dd5d8" 642 | integrity sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw== 643 | 644 | "@types/yargs-parser@*": 645 | version "21.0.3" 646 | resolved "https://registry.yarnpkg.com/@types/yargs-parser/-/yargs-parser-21.0.3.tgz#815e30b786d2e8f0dcd85fd5bcf5e1a04d008f15" 647 | integrity sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ== 648 | 649 | "@types/yargs@^17.0.8": 650 | version "17.0.32" 651 | resolved "https://registry.yarnpkg.com/@types/yargs/-/yargs-17.0.32.tgz#030774723a2f7faafebf645f4e5a48371dca6229" 652 | integrity sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog== 653 | dependencies: 654 | "@types/yargs-parser" "*" 655 | 656 | ansi-escapes@^4.2.1: 657 | version "4.3.2" 658 | resolved "https://registry.yarnpkg.com/ansi-escapes/-/ansi-escapes-4.3.2.tgz#6b2291d1db7d98b6521d5f1efa42d0f3a9feb65e" 659 | integrity sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ== 660 | dependencies: 661 | type-fest "^0.21.3" 662 | 663 | ansi-regex@^5.0.1: 664 | version "5.0.1" 665 | resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-5.0.1.tgz#082cb2c89c9fe8659a311a53bd6a4dc5301db304" 666 | integrity sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ== 667 | 668 | ansi-sequence-parser@^1.1.0: 669 | version "1.1.1" 670 | resolved "https://registry.yarnpkg.com/ansi-sequence-parser/-/ansi-sequence-parser-1.1.1.tgz#e0aa1cdcbc8f8bb0b5bca625aac41f5f056973cf" 671 | integrity sha512-vJXt3yiaUL4UU546s3rPXlsry/RnM730G1+HkpKE012AN0sx1eOrxSu95oKDIonskeLTijMgqWZ3uDEe3NFvyg== 672 | 673 | ansi-styles@^3.2.1: 674 | version "3.2.1" 675 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" 676 | integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== 677 | dependencies: 678 | color-convert "^1.9.0" 679 | 680 | ansi-styles@^4.0.0, ansi-styles@^4.1.0: 681 | version "4.3.0" 682 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-4.3.0.tgz#edd803628ae71c04c85ae7a0906edad34b648937" 683 | integrity sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg== 684 | dependencies: 685 | color-convert "^2.0.1" 686 | 687 | ansi-styles@^5.0.0: 688 | version "5.2.0" 689 | resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-5.2.0.tgz#07449690ad45777d1924ac2abb2fc8895dba836b" 690 | integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA== 691 | 692 | anymatch@^3.0.3: 693 | version "3.1.3" 694 | resolved "https://registry.yarnpkg.com/anymatch/-/anymatch-3.1.3.tgz#790c58b19ba1720a84205b57c618d5ad8524973e" 695 | integrity sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw== 696 | dependencies: 697 | normalize-path "^3.0.0" 698 | picomatch "^2.0.4" 699 | 700 | argparse@^1.0.7: 701 | version "1.0.10" 702 | resolved "https://registry.yarnpkg.com/argparse/-/argparse-1.0.10.tgz#bcd6791ea5ae09725e17e5ad988134cd40b3d911" 703 | integrity sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg== 704 | dependencies: 705 | sprintf-js "~1.0.2" 706 | 707 | babel-jest@^29.7.0: 708 | version "29.7.0" 709 | resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-29.7.0.tgz#f4369919225b684c56085998ac63dbd05be020d5" 710 | integrity sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg== 711 | dependencies: 712 | "@jest/transform" "^29.7.0" 713 | "@types/babel__core" "^7.1.14" 714 | babel-plugin-istanbul "^6.1.1" 715 | babel-preset-jest "^29.6.3" 716 | chalk "^4.0.0" 717 | graceful-fs "^4.2.9" 718 | slash "^3.0.0" 719 | 720 | babel-plugin-istanbul@^6.1.1: 721 | version "6.1.1" 722 | resolved "https://registry.yarnpkg.com/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz#fa88ec59232fd9b4e36dbbc540a8ec9a9b47da73" 723 | integrity sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA== 724 | dependencies: 725 | "@babel/helper-plugin-utils" "^7.0.0" 726 | "@istanbuljs/load-nyc-config" "^1.0.0" 727 | "@istanbuljs/schema" "^0.1.2" 728 | istanbul-lib-instrument "^5.0.4" 729 | test-exclude "^6.0.0" 730 | 731 | babel-plugin-jest-hoist@^29.6.3: 732 | version "29.6.3" 733 | resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz#aadbe943464182a8922c3c927c3067ff40d24626" 734 | integrity sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg== 735 | dependencies: 736 | "@babel/template" "^7.3.3" 737 | "@babel/types" "^7.3.3" 738 | "@types/babel__core" "^7.1.14" 739 | "@types/babel__traverse" "^7.0.6" 740 | 741 | babel-preset-current-node-syntax@^1.0.0: 742 | version "1.0.1" 743 | resolved "https://registry.yarnpkg.com/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz#b4399239b89b2a011f9ddbe3e4f401fc40cff73b" 744 | integrity sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ== 745 | dependencies: 746 | "@babel/plugin-syntax-async-generators" "^7.8.4" 747 | "@babel/plugin-syntax-bigint" "^7.8.3" 748 | "@babel/plugin-syntax-class-properties" "^7.8.3" 749 | "@babel/plugin-syntax-import-meta" "^7.8.3" 750 | "@babel/plugin-syntax-json-strings" "^7.8.3" 751 | "@babel/plugin-syntax-logical-assignment-operators" "^7.8.3" 752 | "@babel/plugin-syntax-nullish-coalescing-operator" "^7.8.3" 753 | "@babel/plugin-syntax-numeric-separator" "^7.8.3" 754 | "@babel/plugin-syntax-object-rest-spread" "^7.8.3" 755 | "@babel/plugin-syntax-optional-catch-binding" "^7.8.3" 756 | "@babel/plugin-syntax-optional-chaining" "^7.8.3" 757 | "@babel/plugin-syntax-top-level-await" "^7.8.3" 758 | 759 | babel-preset-jest@^29.6.3: 760 | version "29.6.3" 761 | resolved "https://registry.yarnpkg.com/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz#fa05fa510e7d493896d7b0dd2033601c840f171c" 762 | integrity sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA== 763 | dependencies: 764 | babel-plugin-jest-hoist "^29.6.3" 765 | babel-preset-current-node-syntax "^1.0.0" 766 | 767 | balanced-match@^1.0.0: 768 | version "1.0.2" 769 | resolved "https://registry.yarnpkg.com/balanced-match/-/balanced-match-1.0.2.tgz#e83e3a7e3f300b34cb9d87f615fa0cbf357690ee" 770 | integrity sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw== 771 | 772 | brace-expansion@^1.1.7: 773 | version "1.1.11" 774 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-1.1.11.tgz#3c7fcbf529d87226f3d2f52b966ff5271eb441dd" 775 | integrity sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA== 776 | dependencies: 777 | balanced-match "^1.0.0" 778 | concat-map "0.0.1" 779 | 780 | brace-expansion@^2.0.1: 781 | version "2.0.1" 782 | resolved "https://registry.yarnpkg.com/brace-expansion/-/brace-expansion-2.0.1.tgz#1edc459e0f0c548486ecf9fc99f2221364b9a0ae" 783 | integrity sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA== 784 | dependencies: 785 | balanced-match "^1.0.0" 786 | 787 | braces@^3.0.2: 788 | version "3.0.2" 789 | resolved "https://registry.yarnpkg.com/braces/-/braces-3.0.2.tgz#3454e1a462ee8d599e236df336cd9ea4f8afe107" 790 | integrity sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A== 791 | dependencies: 792 | fill-range "^7.0.1" 793 | 794 | browserslist@^4.22.2: 795 | version "4.23.0" 796 | resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-4.23.0.tgz#8f3acc2bbe73af7213399430890f86c63a5674ab" 797 | integrity sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ== 798 | dependencies: 799 | caniuse-lite "^1.0.30001587" 800 | electron-to-chromium "^1.4.668" 801 | node-releases "^2.0.14" 802 | update-browserslist-db "^1.0.13" 803 | 804 | bs-logger@0.x: 805 | version "0.2.6" 806 | resolved "https://registry.yarnpkg.com/bs-logger/-/bs-logger-0.2.6.tgz#eb7d365307a72cf974cc6cda76b68354ad336bd8" 807 | integrity sha512-pd8DCoxmbgc7hyPKOvxtqNcjYoOsABPQdcCUjGp3d42VR2CX1ORhk2A87oqqu5R1kk+76nsxZupkmyd+MVtCog== 808 | dependencies: 809 | fast-json-stable-stringify "2.x" 810 | 811 | bser@2.1.1: 812 | version "2.1.1" 813 | resolved "https://registry.yarnpkg.com/bser/-/bser-2.1.1.tgz#e6787da20ece9d07998533cfd9de6f5c38f4bc05" 814 | integrity sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ== 815 | dependencies: 816 | node-int64 "^0.4.0" 817 | 818 | buffer-from@^1.0.0: 819 | version "1.1.2" 820 | resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.2.tgz#2b146a6fd72e80b4f55d255f35ed59a3a9a41bd5" 821 | integrity sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ== 822 | 823 | callsites@^3.0.0: 824 | version "3.1.0" 825 | resolved "https://registry.yarnpkg.com/callsites/-/callsites-3.1.0.tgz#b3630abd8943432f54b3f0519238e33cd7df2f73" 826 | integrity sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ== 827 | 828 | camelcase@^5.3.1: 829 | version "5.3.1" 830 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-5.3.1.tgz#e3c9b31569e106811df242f715725a1f4c494320" 831 | integrity sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg== 832 | 833 | camelcase@^6.2.0: 834 | version "6.3.0" 835 | resolved "https://registry.yarnpkg.com/camelcase/-/camelcase-6.3.0.tgz#5685b95eb209ac9c0c177467778c9c84df58ba9a" 836 | integrity sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA== 837 | 838 | caniuse-lite@^1.0.30001587: 839 | version "1.0.30001609" 840 | resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30001609.tgz#fc34fad75c0c6d6d6303bdbceec2da8f203dabd6" 841 | integrity sha512-JFPQs34lHKx1B5t1EpQpWH4c+29zIyn/haGsbpfq3suuV9v56enjFt23zqijxGTMwy1p/4H2tjnQMY+p1WoAyA== 842 | 843 | chalk@^2.4.2: 844 | version "2.4.2" 845 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" 846 | integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== 847 | dependencies: 848 | ansi-styles "^3.2.1" 849 | escape-string-regexp "^1.0.5" 850 | supports-color "^5.3.0" 851 | 852 | chalk@^4.0.0: 853 | version "4.1.2" 854 | resolved "https://registry.yarnpkg.com/chalk/-/chalk-4.1.2.tgz#aac4e2b7734a740867aeb16bf02aad556a1e7a01" 855 | integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA== 856 | dependencies: 857 | ansi-styles "^4.1.0" 858 | supports-color "^7.1.0" 859 | 860 | char-regex@^1.0.2: 861 | version "1.0.2" 862 | resolved "https://registry.yarnpkg.com/char-regex/-/char-regex-1.0.2.tgz#d744358226217f981ed58f479b1d6bcc29545dcf" 863 | integrity sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw== 864 | 865 | ci-info@^3.2.0: 866 | version "3.9.0" 867 | resolved "https://registry.yarnpkg.com/ci-info/-/ci-info-3.9.0.tgz#4279a62028a7b1f262f3473fc9605f5e218c59b4" 868 | integrity sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ== 869 | 870 | cjs-module-lexer@^1.0.0: 871 | version "1.2.3" 872 | resolved "https://registry.yarnpkg.com/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz#6c370ab19f8a3394e318fe682686ec0ac684d107" 873 | integrity sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ== 874 | 875 | cliui@^8.0.1: 876 | version "8.0.1" 877 | resolved "https://registry.yarnpkg.com/cliui/-/cliui-8.0.1.tgz#0c04b075db02cbfe60dc8e6cf2f5486b1a3608aa" 878 | integrity sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ== 879 | dependencies: 880 | string-width "^4.2.0" 881 | strip-ansi "^6.0.1" 882 | wrap-ansi "^7.0.0" 883 | 884 | co@^4.6.0: 885 | version "4.6.0" 886 | resolved "https://registry.yarnpkg.com/co/-/co-4.6.0.tgz#6ea6bdf3d853ae54ccb8e47bfa0bf3f9031fb184" 887 | integrity sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ== 888 | 889 | collect-v8-coverage@^1.0.0: 890 | version "1.0.2" 891 | resolved "https://registry.yarnpkg.com/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz#c0b29bcd33bcd0779a1344c2136051e6afd3d9e9" 892 | integrity sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q== 893 | 894 | color-convert@^1.9.0: 895 | version "1.9.3" 896 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" 897 | integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== 898 | dependencies: 899 | color-name "1.1.3" 900 | 901 | color-convert@^2.0.1: 902 | version "2.0.1" 903 | resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-2.0.1.tgz#72d3a68d598c9bdb3af2ad1e84f21d896abd4de3" 904 | integrity sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ== 905 | dependencies: 906 | color-name "~1.1.4" 907 | 908 | color-name@1.1.3: 909 | version "1.1.3" 910 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" 911 | integrity sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw== 912 | 913 | color-name@~1.1.4: 914 | version "1.1.4" 915 | resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.4.tgz#c2a09a87acbde69543de6f63fa3995c826c536a2" 916 | integrity sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA== 917 | 918 | concat-map@0.0.1: 919 | version "0.0.1" 920 | resolved "https://registry.yarnpkg.com/concat-map/-/concat-map-0.0.1.tgz#d8a96bd77fd68df7793a73036a3ba0d5405d477b" 921 | integrity sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg== 922 | 923 | convert-source-map@^2.0.0: 924 | version "2.0.0" 925 | resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a" 926 | integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg== 927 | 928 | create-jest@^29.7.0: 929 | version "29.7.0" 930 | resolved "https://registry.yarnpkg.com/create-jest/-/create-jest-29.7.0.tgz#a355c5b3cb1e1af02ba177fe7afd7feee49a5320" 931 | integrity sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q== 932 | dependencies: 933 | "@jest/types" "^29.6.3" 934 | chalk "^4.0.0" 935 | exit "^0.1.2" 936 | graceful-fs "^4.2.9" 937 | jest-config "^29.7.0" 938 | jest-util "^29.7.0" 939 | prompts "^2.0.1" 940 | 941 | cross-spawn@^7.0.3: 942 | version "7.0.3" 943 | resolved "https://registry.yarnpkg.com/cross-spawn/-/cross-spawn-7.0.3.tgz#f73a85b9d5d41d045551c177e2882d4ac85728a6" 944 | integrity sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w== 945 | dependencies: 946 | path-key "^3.1.0" 947 | shebang-command "^2.0.0" 948 | which "^2.0.1" 949 | 950 | debug@^4.1.0, debug@^4.1.1, debug@^4.3.1: 951 | version "4.3.4" 952 | resolved "https://registry.yarnpkg.com/debug/-/debug-4.3.4.tgz#1319f6579357f2338d3337d2cdd4914bb5dcc865" 953 | integrity sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ== 954 | dependencies: 955 | ms "2.1.2" 956 | 957 | dedent@^1.0.0: 958 | version "1.5.3" 959 | resolved "https://registry.yarnpkg.com/dedent/-/dedent-1.5.3.tgz#99aee19eb9bae55a67327717b6e848d0bf777e5a" 960 | integrity sha512-NHQtfOOW68WD8lgypbLA5oT+Bt0xXJhiYvoR6SmmNXZfpzOGXwdKWmcwG8N7PwVVWV3eF/68nmD9BaJSsTBhyQ== 961 | 962 | deepmerge@^4.2.2: 963 | version "4.3.1" 964 | resolved "https://registry.yarnpkg.com/deepmerge/-/deepmerge-4.3.1.tgz#44b5f2147cd3b00d4b56137685966f26fd25dd4a" 965 | integrity sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A== 966 | 967 | detect-newline@^3.0.0: 968 | version "3.1.0" 969 | resolved "https://registry.yarnpkg.com/detect-newline/-/detect-newline-3.1.0.tgz#576f5dfc63ae1a192ff192d8ad3af6308991b651" 970 | integrity sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA== 971 | 972 | diff-sequences@^29.6.3: 973 | version "29.6.3" 974 | resolved "https://registry.yarnpkg.com/diff-sequences/-/diff-sequences-29.6.3.tgz#4deaf894d11407c51efc8418012f9e70b84ea921" 975 | integrity sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q== 976 | 977 | electron-to-chromium@^1.4.668: 978 | version "1.4.736" 979 | resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.4.736.tgz#ecb4348f4d5c70fb1e31c347e5bad6b751066416" 980 | integrity sha512-Rer6wc3ynLelKNM4lOCg7/zPQj8tPOCB2hzD32PX9wd3hgRRi9MxEbmkFCokzcEhRVMiOVLjnL9ig9cefJ+6+Q== 981 | 982 | emittery@^0.13.1: 983 | version "0.13.1" 984 | resolved "https://registry.yarnpkg.com/emittery/-/emittery-0.13.1.tgz#c04b8c3457490e0847ae51fced3af52d338e3dad" 985 | integrity sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ== 986 | 987 | emoji-regex@^8.0.0: 988 | version "8.0.0" 989 | resolved "https://registry.yarnpkg.com/emoji-regex/-/emoji-regex-8.0.0.tgz#e818fd69ce5ccfcb404594f842963bf53164cc37" 990 | integrity sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A== 991 | 992 | error-ex@^1.3.1: 993 | version "1.3.2" 994 | resolved "https://registry.yarnpkg.com/error-ex/-/error-ex-1.3.2.tgz#b4ac40648107fdcdcfae242f428bea8a14d4f1bf" 995 | integrity sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g== 996 | dependencies: 997 | is-arrayish "^0.2.1" 998 | 999 | escalade@^3.1.1: 1000 | version "3.1.2" 1001 | resolved "https://registry.yarnpkg.com/escalade/-/escalade-3.1.2.tgz#54076e9ab29ea5bf3d8f1ed62acffbb88272df27" 1002 | integrity sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA== 1003 | 1004 | escape-string-regexp@^1.0.5: 1005 | version "1.0.5" 1006 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" 1007 | integrity sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg== 1008 | 1009 | escape-string-regexp@^2.0.0: 1010 | version "2.0.0" 1011 | resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz#a30304e99daa32e23b2fd20f51babd07cffca344" 1012 | integrity sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w== 1013 | 1014 | esprima@^4.0.0: 1015 | version "4.0.1" 1016 | resolved "https://registry.yarnpkg.com/esprima/-/esprima-4.0.1.tgz#13b04cdb3e6c5d19df91ab6987a8695619b0aa71" 1017 | integrity sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A== 1018 | 1019 | execa@^5.0.0: 1020 | version "5.1.1" 1021 | resolved "https://registry.yarnpkg.com/execa/-/execa-5.1.1.tgz#f80ad9cbf4298f7bd1d4c9555c21e93741c411dd" 1022 | integrity sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg== 1023 | dependencies: 1024 | cross-spawn "^7.0.3" 1025 | get-stream "^6.0.0" 1026 | human-signals "^2.1.0" 1027 | is-stream "^2.0.0" 1028 | merge-stream "^2.0.0" 1029 | npm-run-path "^4.0.1" 1030 | onetime "^5.1.2" 1031 | signal-exit "^3.0.3" 1032 | strip-final-newline "^2.0.0" 1033 | 1034 | exit@^0.1.2: 1035 | version "0.1.2" 1036 | resolved "https://registry.yarnpkg.com/exit/-/exit-0.1.2.tgz#0632638f8d877cc82107d30a0fff1a17cba1cd0c" 1037 | integrity sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ== 1038 | 1039 | expect@^29.0.0, expect@^29.7.0: 1040 | version "29.7.0" 1041 | resolved "https://registry.yarnpkg.com/expect/-/expect-29.7.0.tgz#578874590dcb3214514084c08115d8aee61e11bc" 1042 | integrity sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw== 1043 | dependencies: 1044 | "@jest/expect-utils" "^29.7.0" 1045 | jest-get-type "^29.6.3" 1046 | jest-matcher-utils "^29.7.0" 1047 | jest-message-util "^29.7.0" 1048 | jest-util "^29.7.0" 1049 | 1050 | fast-json-stable-stringify@2.x, fast-json-stable-stringify@^2.1.0: 1051 | version "2.1.0" 1052 | resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633" 1053 | integrity sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw== 1054 | 1055 | fb-watchman@^2.0.0: 1056 | version "2.0.2" 1057 | resolved "https://registry.yarnpkg.com/fb-watchman/-/fb-watchman-2.0.2.tgz#e9524ee6b5c77e9e5001af0f85f3adbb8623255c" 1058 | integrity sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA== 1059 | dependencies: 1060 | bser "2.1.1" 1061 | 1062 | fill-range@^7.0.1: 1063 | version "7.0.1" 1064 | resolved "https://registry.yarnpkg.com/fill-range/-/fill-range-7.0.1.tgz#1919a6a7c75fe38b2c7c77e5198535da9acdda40" 1065 | integrity sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ== 1066 | dependencies: 1067 | to-regex-range "^5.0.1" 1068 | 1069 | find-up@^4.0.0, find-up@^4.1.0: 1070 | version "4.1.0" 1071 | resolved "https://registry.yarnpkg.com/find-up/-/find-up-4.1.0.tgz#97afe7d6cdc0bc5928584b7c8d7b16e8a9aa5d19" 1072 | integrity sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw== 1073 | dependencies: 1074 | locate-path "^5.0.0" 1075 | path-exists "^4.0.0" 1076 | 1077 | fs.realpath@^1.0.0: 1078 | version "1.0.0" 1079 | resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" 1080 | integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw== 1081 | 1082 | fsevents@^2.3.2: 1083 | version "2.3.3" 1084 | resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6" 1085 | integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw== 1086 | 1087 | function-bind@^1.1.2: 1088 | version "1.1.2" 1089 | resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.2.tgz#2c02d864d97f3ea6c8830c464cbd11ab6eab7a1c" 1090 | integrity sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA== 1091 | 1092 | gensync@^1.0.0-beta.2: 1093 | version "1.0.0-beta.2" 1094 | resolved "https://registry.yarnpkg.com/gensync/-/gensync-1.0.0-beta.2.tgz#32a6ee76c3d7f52d46b2b1ae5d93fea8580a25e0" 1095 | integrity sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg== 1096 | 1097 | get-caller-file@^2.0.5: 1098 | version "2.0.5" 1099 | resolved "https://registry.yarnpkg.com/get-caller-file/-/get-caller-file-2.0.5.tgz#4f94412a82db32f36e3b0b9741f8a97feb031f7e" 1100 | integrity sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg== 1101 | 1102 | get-package-type@^0.1.0: 1103 | version "0.1.0" 1104 | resolved "https://registry.yarnpkg.com/get-package-type/-/get-package-type-0.1.0.tgz#8de2d803cff44df3bc6c456e6668b36c3926e11a" 1105 | integrity sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q== 1106 | 1107 | get-stream@^6.0.0: 1108 | version "6.0.1" 1109 | resolved "https://registry.yarnpkg.com/get-stream/-/get-stream-6.0.1.tgz#a262d8eef67aced57c2852ad6167526a43cbf7b7" 1110 | integrity sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg== 1111 | 1112 | glob@^7.1.3, glob@^7.1.4: 1113 | version "7.2.3" 1114 | resolved "https://registry.yarnpkg.com/glob/-/glob-7.2.3.tgz#b8df0fb802bbfa8e89bd1d938b4e16578ed44f2b" 1115 | integrity sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q== 1116 | dependencies: 1117 | fs.realpath "^1.0.0" 1118 | inflight "^1.0.4" 1119 | inherits "2" 1120 | minimatch "^3.1.1" 1121 | once "^1.3.0" 1122 | path-is-absolute "^1.0.0" 1123 | 1124 | globals@^11.1.0: 1125 | version "11.12.0" 1126 | resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" 1127 | integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== 1128 | 1129 | graceful-fs@^4.2.9: 1130 | version "4.2.11" 1131 | resolved "https://registry.yarnpkg.com/graceful-fs/-/graceful-fs-4.2.11.tgz#4183e4e8bf08bb6e05bbb2f7d2e0c8f712ca40e3" 1132 | integrity sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ== 1133 | 1134 | has-flag@^3.0.0: 1135 | version "3.0.0" 1136 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" 1137 | integrity sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw== 1138 | 1139 | has-flag@^4.0.0: 1140 | version "4.0.0" 1141 | resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-4.0.0.tgz#944771fd9c81c81265c4d6941860da06bb59479b" 1142 | integrity sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ== 1143 | 1144 | hasown@^2.0.0: 1145 | version "2.0.2" 1146 | resolved "https://registry.yarnpkg.com/hasown/-/hasown-2.0.2.tgz#003eaf91be7adc372e84ec59dc37252cedb80003" 1147 | integrity sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ== 1148 | dependencies: 1149 | function-bind "^1.1.2" 1150 | 1151 | html-escaper@^2.0.0: 1152 | version "2.0.2" 1153 | resolved "https://registry.yarnpkg.com/html-escaper/-/html-escaper-2.0.2.tgz#dfd60027da36a36dfcbe236262c00a5822681453" 1154 | integrity sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg== 1155 | 1156 | human-signals@^2.1.0: 1157 | version "2.1.0" 1158 | resolved "https://registry.yarnpkg.com/human-signals/-/human-signals-2.1.0.tgz#dc91fcba42e4d06e4abaed33b3e7a3c02f514ea0" 1159 | integrity sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw== 1160 | 1161 | import-local@^3.0.2: 1162 | version "3.1.0" 1163 | resolved "https://registry.yarnpkg.com/import-local/-/import-local-3.1.0.tgz#b4479df8a5fd44f6cdce24070675676063c95cb4" 1164 | integrity sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg== 1165 | dependencies: 1166 | pkg-dir "^4.2.0" 1167 | resolve-cwd "^3.0.0" 1168 | 1169 | imurmurhash@^0.1.4: 1170 | version "0.1.4" 1171 | resolved "https://registry.yarnpkg.com/imurmurhash/-/imurmurhash-0.1.4.tgz#9218b9b2b928a238b13dc4fb6b6d576f231453ea" 1172 | integrity sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA== 1173 | 1174 | inflight@^1.0.4: 1175 | version "1.0.6" 1176 | resolved "https://registry.yarnpkg.com/inflight/-/inflight-1.0.6.tgz#49bd6331d7d02d0c09bc910a1075ba8165b56df9" 1177 | integrity sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA== 1178 | dependencies: 1179 | once "^1.3.0" 1180 | wrappy "1" 1181 | 1182 | inherits@2: 1183 | version "2.0.4" 1184 | resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" 1185 | integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== 1186 | 1187 | is-arrayish@^0.2.1: 1188 | version "0.2.1" 1189 | resolved "https://registry.yarnpkg.com/is-arrayish/-/is-arrayish-0.2.1.tgz#77c99840527aa8ecb1a8ba697b80645a7a926a9d" 1190 | integrity sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg== 1191 | 1192 | is-core-module@^2.13.0: 1193 | version "2.13.1" 1194 | resolved "https://registry.yarnpkg.com/is-core-module/-/is-core-module-2.13.1.tgz#ad0d7532c6fea9da1ebdc82742d74525c6273384" 1195 | integrity sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw== 1196 | dependencies: 1197 | hasown "^2.0.0" 1198 | 1199 | is-fullwidth-code-point@^3.0.0: 1200 | version "3.0.0" 1201 | resolved "https://registry.yarnpkg.com/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz#f116f8064fe90b3f7844a38997c0b75051269f1d" 1202 | integrity sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg== 1203 | 1204 | is-generator-fn@^2.0.0: 1205 | version "2.1.0" 1206 | resolved "https://registry.yarnpkg.com/is-generator-fn/-/is-generator-fn-2.1.0.tgz#7d140adc389aaf3011a8f2a2a4cfa6faadffb118" 1207 | integrity sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ== 1208 | 1209 | is-number@^7.0.0: 1210 | version "7.0.0" 1211 | resolved "https://registry.yarnpkg.com/is-number/-/is-number-7.0.0.tgz#7535345b896734d5f80c4d06c50955527a14f12b" 1212 | integrity sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng== 1213 | 1214 | is-stream@^2.0.0: 1215 | version "2.0.1" 1216 | resolved "https://registry.yarnpkg.com/is-stream/-/is-stream-2.0.1.tgz#fac1e3d53b97ad5a9d0ae9cef2389f5810a5c077" 1217 | integrity sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg== 1218 | 1219 | isexe@^2.0.0: 1220 | version "2.0.0" 1221 | resolved "https://registry.yarnpkg.com/isexe/-/isexe-2.0.0.tgz#e8fbf374dc556ff8947a10dcb0572d633f2cfa10" 1222 | integrity sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw== 1223 | 1224 | istanbul-lib-coverage@^3.0.0, istanbul-lib-coverage@^3.2.0: 1225 | version "3.2.2" 1226 | resolved "https://registry.yarnpkg.com/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz#2d166c4b0644d43a39f04bf6c2edd1e585f31756" 1227 | integrity sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg== 1228 | 1229 | istanbul-lib-instrument@^5.0.4: 1230 | version "5.2.1" 1231 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz#d10c8885c2125574e1c231cacadf955675e1ce3d" 1232 | integrity sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg== 1233 | dependencies: 1234 | "@babel/core" "^7.12.3" 1235 | "@babel/parser" "^7.14.7" 1236 | "@istanbuljs/schema" "^0.1.2" 1237 | istanbul-lib-coverage "^3.2.0" 1238 | semver "^6.3.0" 1239 | 1240 | istanbul-lib-instrument@^6.0.0: 1241 | version "6.0.2" 1242 | resolved "https://registry.yarnpkg.com/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.2.tgz#91655936cf7380e4e473383081e38478b69993b1" 1243 | integrity sha512-1WUsZ9R1lA0HtBSohTkm39WTPlNKSJ5iFk7UwqXkBLoHQT+hfqPsfsTDVuZdKGaBwn7din9bS7SsnoAr943hvw== 1244 | dependencies: 1245 | "@babel/core" "^7.23.9" 1246 | "@babel/parser" "^7.23.9" 1247 | "@istanbuljs/schema" "^0.1.3" 1248 | istanbul-lib-coverage "^3.2.0" 1249 | semver "^7.5.4" 1250 | 1251 | istanbul-lib-report@^3.0.0: 1252 | version "3.0.1" 1253 | resolved "https://registry.yarnpkg.com/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz#908305bac9a5bd175ac6a74489eafd0fc2445a7d" 1254 | integrity sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw== 1255 | dependencies: 1256 | istanbul-lib-coverage "^3.0.0" 1257 | make-dir "^4.0.0" 1258 | supports-color "^7.1.0" 1259 | 1260 | istanbul-lib-source-maps@^4.0.0: 1261 | version "4.0.1" 1262 | resolved "https://registry.yarnpkg.com/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz#895f3a709fcfba34c6de5a42939022f3e4358551" 1263 | integrity sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw== 1264 | dependencies: 1265 | debug "^4.1.1" 1266 | istanbul-lib-coverage "^3.0.0" 1267 | source-map "^0.6.1" 1268 | 1269 | istanbul-reports@^3.1.3: 1270 | version "3.1.7" 1271 | resolved "https://registry.yarnpkg.com/istanbul-reports/-/istanbul-reports-3.1.7.tgz#daed12b9e1dca518e15c056e1e537e741280fa0b" 1272 | integrity sha512-BewmUXImeuRk2YY0PVbxgKAysvhRPUQE0h5QRM++nVWyubKGV0l8qQ5op8+B2DOmwSe63Jivj0BjkPQVf8fP5g== 1273 | dependencies: 1274 | html-escaper "^2.0.0" 1275 | istanbul-lib-report "^3.0.0" 1276 | 1277 | jest-changed-files@^29.7.0: 1278 | version "29.7.0" 1279 | resolved "https://registry.yarnpkg.com/jest-changed-files/-/jest-changed-files-29.7.0.tgz#1c06d07e77c78e1585d020424dedc10d6e17ac3a" 1280 | integrity sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w== 1281 | dependencies: 1282 | execa "^5.0.0" 1283 | jest-util "^29.7.0" 1284 | p-limit "^3.1.0" 1285 | 1286 | jest-circus@^29.7.0: 1287 | version "29.7.0" 1288 | resolved "https://registry.yarnpkg.com/jest-circus/-/jest-circus-29.7.0.tgz#b6817a45fcc835d8b16d5962d0c026473ee3668a" 1289 | integrity sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw== 1290 | dependencies: 1291 | "@jest/environment" "^29.7.0" 1292 | "@jest/expect" "^29.7.0" 1293 | "@jest/test-result" "^29.7.0" 1294 | "@jest/types" "^29.6.3" 1295 | "@types/node" "*" 1296 | chalk "^4.0.0" 1297 | co "^4.6.0" 1298 | dedent "^1.0.0" 1299 | is-generator-fn "^2.0.0" 1300 | jest-each "^29.7.0" 1301 | jest-matcher-utils "^29.7.0" 1302 | jest-message-util "^29.7.0" 1303 | jest-runtime "^29.7.0" 1304 | jest-snapshot "^29.7.0" 1305 | jest-util "^29.7.0" 1306 | p-limit "^3.1.0" 1307 | pretty-format "^29.7.0" 1308 | pure-rand "^6.0.0" 1309 | slash "^3.0.0" 1310 | stack-utils "^2.0.3" 1311 | 1312 | jest-cli@^29.7.0: 1313 | version "29.7.0" 1314 | resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-29.7.0.tgz#5592c940798e0cae677eec169264f2d839a37995" 1315 | integrity sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg== 1316 | dependencies: 1317 | "@jest/core" "^29.7.0" 1318 | "@jest/test-result" "^29.7.0" 1319 | "@jest/types" "^29.6.3" 1320 | chalk "^4.0.0" 1321 | create-jest "^29.7.0" 1322 | exit "^0.1.2" 1323 | import-local "^3.0.2" 1324 | jest-config "^29.7.0" 1325 | jest-util "^29.7.0" 1326 | jest-validate "^29.7.0" 1327 | yargs "^17.3.1" 1328 | 1329 | jest-config@^29.7.0: 1330 | version "29.7.0" 1331 | resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-29.7.0.tgz#bcbda8806dbcc01b1e316a46bb74085a84b0245f" 1332 | integrity sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ== 1333 | dependencies: 1334 | "@babel/core" "^7.11.6" 1335 | "@jest/test-sequencer" "^29.7.0" 1336 | "@jest/types" "^29.6.3" 1337 | babel-jest "^29.7.0" 1338 | chalk "^4.0.0" 1339 | ci-info "^3.2.0" 1340 | deepmerge "^4.2.2" 1341 | glob "^7.1.3" 1342 | graceful-fs "^4.2.9" 1343 | jest-circus "^29.7.0" 1344 | jest-environment-node "^29.7.0" 1345 | jest-get-type "^29.6.3" 1346 | jest-regex-util "^29.6.3" 1347 | jest-resolve "^29.7.0" 1348 | jest-runner "^29.7.0" 1349 | jest-util "^29.7.0" 1350 | jest-validate "^29.7.0" 1351 | micromatch "^4.0.4" 1352 | parse-json "^5.2.0" 1353 | pretty-format "^29.7.0" 1354 | slash "^3.0.0" 1355 | strip-json-comments "^3.1.1" 1356 | 1357 | jest-diff@^29.7.0: 1358 | version "29.7.0" 1359 | resolved "https://registry.yarnpkg.com/jest-diff/-/jest-diff-29.7.0.tgz#017934a66ebb7ecf6f205e84699be10afd70458a" 1360 | integrity sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw== 1361 | dependencies: 1362 | chalk "^4.0.0" 1363 | diff-sequences "^29.6.3" 1364 | jest-get-type "^29.6.3" 1365 | pretty-format "^29.7.0" 1366 | 1367 | jest-docblock@^29.7.0: 1368 | version "29.7.0" 1369 | resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-29.7.0.tgz#8fddb6adc3cdc955c93e2a87f61cfd350d5d119a" 1370 | integrity sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g== 1371 | dependencies: 1372 | detect-newline "^3.0.0" 1373 | 1374 | jest-each@^29.7.0: 1375 | version "29.7.0" 1376 | resolved "https://registry.yarnpkg.com/jest-each/-/jest-each-29.7.0.tgz#162a9b3f2328bdd991beaabffbb74745e56577d1" 1377 | integrity sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ== 1378 | dependencies: 1379 | "@jest/types" "^29.6.3" 1380 | chalk "^4.0.0" 1381 | jest-get-type "^29.6.3" 1382 | jest-util "^29.7.0" 1383 | pretty-format "^29.7.0" 1384 | 1385 | jest-environment-node@^29.7.0: 1386 | version "29.7.0" 1387 | resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-29.7.0.tgz#0b93e111dda8ec120bc8300e6d1fb9576e164376" 1388 | integrity sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw== 1389 | dependencies: 1390 | "@jest/environment" "^29.7.0" 1391 | "@jest/fake-timers" "^29.7.0" 1392 | "@jest/types" "^29.6.3" 1393 | "@types/node" "*" 1394 | jest-mock "^29.7.0" 1395 | jest-util "^29.7.0" 1396 | 1397 | jest-get-type@^29.6.3: 1398 | version "29.6.3" 1399 | resolved "https://registry.yarnpkg.com/jest-get-type/-/jest-get-type-29.6.3.tgz#36f499fdcea197c1045a127319c0481723908fd1" 1400 | integrity sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw== 1401 | 1402 | jest-haste-map@^29.7.0: 1403 | version "29.7.0" 1404 | resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-29.7.0.tgz#3c2396524482f5a0506376e6c858c3bbcc17b104" 1405 | integrity sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA== 1406 | dependencies: 1407 | "@jest/types" "^29.6.3" 1408 | "@types/graceful-fs" "^4.1.3" 1409 | "@types/node" "*" 1410 | anymatch "^3.0.3" 1411 | fb-watchman "^2.0.0" 1412 | graceful-fs "^4.2.9" 1413 | jest-regex-util "^29.6.3" 1414 | jest-util "^29.7.0" 1415 | jest-worker "^29.7.0" 1416 | micromatch "^4.0.4" 1417 | walker "^1.0.8" 1418 | optionalDependencies: 1419 | fsevents "^2.3.2" 1420 | 1421 | jest-leak-detector@^29.7.0: 1422 | version "29.7.0" 1423 | resolved "https://registry.yarnpkg.com/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz#5b7ec0dadfdfec0ca383dc9aa016d36b5ea4c728" 1424 | integrity sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw== 1425 | dependencies: 1426 | jest-get-type "^29.6.3" 1427 | pretty-format "^29.7.0" 1428 | 1429 | jest-matcher-utils@^29.7.0: 1430 | version "29.7.0" 1431 | resolved "https://registry.yarnpkg.com/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz#ae8fec79ff249fd592ce80e3ee474e83a6c44f12" 1432 | integrity sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g== 1433 | dependencies: 1434 | chalk "^4.0.0" 1435 | jest-diff "^29.7.0" 1436 | jest-get-type "^29.6.3" 1437 | pretty-format "^29.7.0" 1438 | 1439 | jest-message-util@^29.7.0: 1440 | version "29.7.0" 1441 | resolved "https://registry.yarnpkg.com/jest-message-util/-/jest-message-util-29.7.0.tgz#8bc392e204e95dfe7564abbe72a404e28e51f7f3" 1442 | integrity sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w== 1443 | dependencies: 1444 | "@babel/code-frame" "^7.12.13" 1445 | "@jest/types" "^29.6.3" 1446 | "@types/stack-utils" "^2.0.0" 1447 | chalk "^4.0.0" 1448 | graceful-fs "^4.2.9" 1449 | micromatch "^4.0.4" 1450 | pretty-format "^29.7.0" 1451 | slash "^3.0.0" 1452 | stack-utils "^2.0.3" 1453 | 1454 | jest-mock@^29.7.0: 1455 | version "29.7.0" 1456 | resolved "https://registry.yarnpkg.com/jest-mock/-/jest-mock-29.7.0.tgz#4e836cf60e99c6fcfabe9f99d017f3fdd50a6347" 1457 | integrity sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw== 1458 | dependencies: 1459 | "@jest/types" "^29.6.3" 1460 | "@types/node" "*" 1461 | jest-util "^29.7.0" 1462 | 1463 | jest-pnp-resolver@^1.2.2: 1464 | version "1.2.3" 1465 | resolved "https://registry.yarnpkg.com/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz#930b1546164d4ad5937d5540e711d4d38d4cad2e" 1466 | integrity sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w== 1467 | 1468 | jest-regex-util@^29.6.3: 1469 | version "29.6.3" 1470 | resolved "https://registry.yarnpkg.com/jest-regex-util/-/jest-regex-util-29.6.3.tgz#4a556d9c776af68e1c5f48194f4d0327d24e8a52" 1471 | integrity sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg== 1472 | 1473 | jest-resolve-dependencies@^29.7.0: 1474 | version "29.7.0" 1475 | resolved "https://registry.yarnpkg.com/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz#1b04f2c095f37fc776ff40803dc92921b1e88428" 1476 | integrity sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA== 1477 | dependencies: 1478 | jest-regex-util "^29.6.3" 1479 | jest-snapshot "^29.7.0" 1480 | 1481 | jest-resolve@^29.7.0: 1482 | version "29.7.0" 1483 | resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-29.7.0.tgz#64d6a8992dd26f635ab0c01e5eef4399c6bcbc30" 1484 | integrity sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA== 1485 | dependencies: 1486 | chalk "^4.0.0" 1487 | graceful-fs "^4.2.9" 1488 | jest-haste-map "^29.7.0" 1489 | jest-pnp-resolver "^1.2.2" 1490 | jest-util "^29.7.0" 1491 | jest-validate "^29.7.0" 1492 | resolve "^1.20.0" 1493 | resolve.exports "^2.0.0" 1494 | slash "^3.0.0" 1495 | 1496 | jest-runner@^29.7.0: 1497 | version "29.7.0" 1498 | resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-29.7.0.tgz#809af072d408a53dcfd2e849a4c976d3132f718e" 1499 | integrity sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ== 1500 | dependencies: 1501 | "@jest/console" "^29.7.0" 1502 | "@jest/environment" "^29.7.0" 1503 | "@jest/test-result" "^29.7.0" 1504 | "@jest/transform" "^29.7.0" 1505 | "@jest/types" "^29.6.3" 1506 | "@types/node" "*" 1507 | chalk "^4.0.0" 1508 | emittery "^0.13.1" 1509 | graceful-fs "^4.2.9" 1510 | jest-docblock "^29.7.0" 1511 | jest-environment-node "^29.7.0" 1512 | jest-haste-map "^29.7.0" 1513 | jest-leak-detector "^29.7.0" 1514 | jest-message-util "^29.7.0" 1515 | jest-resolve "^29.7.0" 1516 | jest-runtime "^29.7.0" 1517 | jest-util "^29.7.0" 1518 | jest-watcher "^29.7.0" 1519 | jest-worker "^29.7.0" 1520 | p-limit "^3.1.0" 1521 | source-map-support "0.5.13" 1522 | 1523 | jest-runtime@^29.7.0: 1524 | version "29.7.0" 1525 | resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-29.7.0.tgz#efecb3141cf7d3767a3a0cc8f7c9990587d3d817" 1526 | integrity sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ== 1527 | dependencies: 1528 | "@jest/environment" "^29.7.0" 1529 | "@jest/fake-timers" "^29.7.0" 1530 | "@jest/globals" "^29.7.0" 1531 | "@jest/source-map" "^29.6.3" 1532 | "@jest/test-result" "^29.7.0" 1533 | "@jest/transform" "^29.7.0" 1534 | "@jest/types" "^29.6.3" 1535 | "@types/node" "*" 1536 | chalk "^4.0.0" 1537 | cjs-module-lexer "^1.0.0" 1538 | collect-v8-coverage "^1.0.0" 1539 | glob "^7.1.3" 1540 | graceful-fs "^4.2.9" 1541 | jest-haste-map "^29.7.0" 1542 | jest-message-util "^29.7.0" 1543 | jest-mock "^29.7.0" 1544 | jest-regex-util "^29.6.3" 1545 | jest-resolve "^29.7.0" 1546 | jest-snapshot "^29.7.0" 1547 | jest-util "^29.7.0" 1548 | slash "^3.0.0" 1549 | strip-bom "^4.0.0" 1550 | 1551 | jest-snapshot@^29.7.0: 1552 | version "29.7.0" 1553 | resolved "https://registry.yarnpkg.com/jest-snapshot/-/jest-snapshot-29.7.0.tgz#c2c574c3f51865da1bb329036778a69bf88a6be5" 1554 | integrity sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw== 1555 | dependencies: 1556 | "@babel/core" "^7.11.6" 1557 | "@babel/generator" "^7.7.2" 1558 | "@babel/plugin-syntax-jsx" "^7.7.2" 1559 | "@babel/plugin-syntax-typescript" "^7.7.2" 1560 | "@babel/types" "^7.3.3" 1561 | "@jest/expect-utils" "^29.7.0" 1562 | "@jest/transform" "^29.7.0" 1563 | "@jest/types" "^29.6.3" 1564 | babel-preset-current-node-syntax "^1.0.0" 1565 | chalk "^4.0.0" 1566 | expect "^29.7.0" 1567 | graceful-fs "^4.2.9" 1568 | jest-diff "^29.7.0" 1569 | jest-get-type "^29.6.3" 1570 | jest-matcher-utils "^29.7.0" 1571 | jest-message-util "^29.7.0" 1572 | jest-util "^29.7.0" 1573 | natural-compare "^1.4.0" 1574 | pretty-format "^29.7.0" 1575 | semver "^7.5.3" 1576 | 1577 | jest-util@^29.0.0, jest-util@^29.7.0: 1578 | version "29.7.0" 1579 | resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-29.7.0.tgz#23c2b62bfb22be82b44de98055802ff3710fc0bc" 1580 | integrity sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA== 1581 | dependencies: 1582 | "@jest/types" "^29.6.3" 1583 | "@types/node" "*" 1584 | chalk "^4.0.0" 1585 | ci-info "^3.2.0" 1586 | graceful-fs "^4.2.9" 1587 | picomatch "^2.2.3" 1588 | 1589 | jest-validate@^29.7.0: 1590 | version "29.7.0" 1591 | resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-29.7.0.tgz#7bf705511c64da591d46b15fce41400d52147d9c" 1592 | integrity sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw== 1593 | dependencies: 1594 | "@jest/types" "^29.6.3" 1595 | camelcase "^6.2.0" 1596 | chalk "^4.0.0" 1597 | jest-get-type "^29.6.3" 1598 | leven "^3.1.0" 1599 | pretty-format "^29.7.0" 1600 | 1601 | jest-watcher@^29.7.0: 1602 | version "29.7.0" 1603 | resolved "https://registry.yarnpkg.com/jest-watcher/-/jest-watcher-29.7.0.tgz#7810d30d619c3a62093223ce6bb359ca1b28a2f2" 1604 | integrity sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g== 1605 | dependencies: 1606 | "@jest/test-result" "^29.7.0" 1607 | "@jest/types" "^29.6.3" 1608 | "@types/node" "*" 1609 | ansi-escapes "^4.2.1" 1610 | chalk "^4.0.0" 1611 | emittery "^0.13.1" 1612 | jest-util "^29.7.0" 1613 | string-length "^4.0.1" 1614 | 1615 | jest-worker@^29.7.0: 1616 | version "29.7.0" 1617 | resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-29.7.0.tgz#acad073acbbaeb7262bd5389e1bcf43e10058d4a" 1618 | integrity sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw== 1619 | dependencies: 1620 | "@types/node" "*" 1621 | jest-util "^29.7.0" 1622 | merge-stream "^2.0.0" 1623 | supports-color "^8.0.0" 1624 | 1625 | jest@^29.3.1: 1626 | version "29.7.0" 1627 | resolved "https://registry.yarnpkg.com/jest/-/jest-29.7.0.tgz#994676fc24177f088f1c5e3737f5697204ff2613" 1628 | integrity sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw== 1629 | dependencies: 1630 | "@jest/core" "^29.7.0" 1631 | "@jest/types" "^29.6.3" 1632 | import-local "^3.0.2" 1633 | jest-cli "^29.7.0" 1634 | 1635 | js-tokens@^4.0.0: 1636 | version "4.0.0" 1637 | resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" 1638 | integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== 1639 | 1640 | js-yaml@^3.13.1: 1641 | version "3.14.1" 1642 | resolved "https://registry.yarnpkg.com/js-yaml/-/js-yaml-3.14.1.tgz#dae812fdb3825fa306609a8717383c50c36a0537" 1643 | integrity sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g== 1644 | dependencies: 1645 | argparse "^1.0.7" 1646 | esprima "^4.0.0" 1647 | 1648 | jsesc@^2.5.1: 1649 | version "2.5.2" 1650 | resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" 1651 | integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== 1652 | 1653 | json-parse-even-better-errors@^2.3.0: 1654 | version "2.3.1" 1655 | resolved "https://registry.yarnpkg.com/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz#7c47805a94319928e05777405dc12e1f7a4ee02d" 1656 | integrity sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w== 1657 | 1658 | json5@^2.2.3: 1659 | version "2.2.3" 1660 | resolved "https://registry.yarnpkg.com/json5/-/json5-2.2.3.tgz#78cd6f1a19bdc12b73db5ad0c61efd66c1e29283" 1661 | integrity sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg== 1662 | 1663 | jsonc-parser@^3.2.0: 1664 | version "3.2.1" 1665 | resolved "https://registry.yarnpkg.com/jsonc-parser/-/jsonc-parser-3.2.1.tgz#031904571ccf929d7670ee8c547545081cb37f1a" 1666 | integrity sha512-AilxAyFOAcK5wA1+LeaySVBrHsGQvUFCDWXKpZjzaL0PqW+xfBOttn8GNtWKFWqneyMZj41MWF9Kl6iPWLwgOA== 1667 | 1668 | kleur@^3.0.3: 1669 | version "3.0.3" 1670 | resolved "https://registry.yarnpkg.com/kleur/-/kleur-3.0.3.tgz#a79c9ecc86ee1ce3fa6206d1216c501f147fc07e" 1671 | integrity sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w== 1672 | 1673 | leven@^3.1.0: 1674 | version "3.1.0" 1675 | resolved "https://registry.yarnpkg.com/leven/-/leven-3.1.0.tgz#77891de834064cccba82ae7842bb6b14a13ed7f2" 1676 | integrity sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A== 1677 | 1678 | lines-and-columns@^1.1.6: 1679 | version "1.2.4" 1680 | resolved "https://registry.yarnpkg.com/lines-and-columns/-/lines-and-columns-1.2.4.tgz#eca284f75d2965079309dc0ad9255abb2ebc1632" 1681 | integrity sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg== 1682 | 1683 | locate-path@^5.0.0: 1684 | version "5.0.0" 1685 | resolved "https://registry.yarnpkg.com/locate-path/-/locate-path-5.0.0.tgz#1afba396afd676a6d42504d0a67a3a7eb9f62aa0" 1686 | integrity sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g== 1687 | dependencies: 1688 | p-locate "^4.1.0" 1689 | 1690 | lodash.memoize@4.x: 1691 | version "4.1.2" 1692 | resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe" 1693 | integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag== 1694 | 1695 | lodash@^4.17.21: 1696 | version "4.17.21" 1697 | resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.21.tgz#679591c564c3bffaae8454cf0b3df370c3d6911c" 1698 | integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg== 1699 | 1700 | lru-cache@^5.1.1: 1701 | version "5.1.1" 1702 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-5.1.1.tgz#1da27e6710271947695daf6848e847f01d84b920" 1703 | integrity sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w== 1704 | dependencies: 1705 | yallist "^3.0.2" 1706 | 1707 | lru-cache@^6.0.0: 1708 | version "6.0.0" 1709 | resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" 1710 | integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== 1711 | dependencies: 1712 | yallist "^4.0.0" 1713 | 1714 | lunr@^2.3.9: 1715 | version "2.3.9" 1716 | resolved "https://registry.yarnpkg.com/lunr/-/lunr-2.3.9.tgz#18b123142832337dd6e964df1a5a7707b25d35e1" 1717 | integrity sha512-zTU3DaZaF3Rt9rhN3uBMGQD3dD2/vFQqnvZCDv4dl5iOzq2IZQqTxu90r4E5J+nP70J3ilqVCrbho2eWaeW8Ow== 1718 | 1719 | make-dir@^4.0.0: 1720 | version "4.0.0" 1721 | resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-4.0.0.tgz#c3c2307a771277cd9638305f915c29ae741b614e" 1722 | integrity sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw== 1723 | dependencies: 1724 | semver "^7.5.3" 1725 | 1726 | make-error@1.x: 1727 | version "1.3.6" 1728 | resolved "https://registry.yarnpkg.com/make-error/-/make-error-1.3.6.tgz#2eb2e37ea9b67c4891f684a1394799af484cf7a2" 1729 | integrity sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw== 1730 | 1731 | makeerror@1.0.12: 1732 | version "1.0.12" 1733 | resolved "https://registry.yarnpkg.com/makeerror/-/makeerror-1.0.12.tgz#3e5dd2079a82e812e983cc6610c4a2cb0eaa801a" 1734 | integrity sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg== 1735 | dependencies: 1736 | tmpl "1.0.5" 1737 | 1738 | marked@^4.3.0: 1739 | version "4.3.0" 1740 | resolved "https://registry.yarnpkg.com/marked/-/marked-4.3.0.tgz#796362821b019f734054582038b116481b456cf3" 1741 | integrity sha512-PRsaiG84bK+AMvxziE/lCFss8juXjNaWzVbN5tXAm4XjeaS9NAHhop+PjQxz2A9h8Q4M/xGmzP8vqNwy6JeK0A== 1742 | 1743 | merge-stream@^2.0.0: 1744 | version "2.0.0" 1745 | resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" 1746 | integrity sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w== 1747 | 1748 | micromatch@^4.0.4: 1749 | version "4.0.5" 1750 | resolved "https://registry.yarnpkg.com/micromatch/-/micromatch-4.0.5.tgz#bc8999a7cbbf77cdc89f132f6e467051b49090c6" 1751 | integrity sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA== 1752 | dependencies: 1753 | braces "^3.0.2" 1754 | picomatch "^2.3.1" 1755 | 1756 | mimic-fn@^2.1.0: 1757 | version "2.1.0" 1758 | resolved "https://registry.yarnpkg.com/mimic-fn/-/mimic-fn-2.1.0.tgz#7ed2c2ccccaf84d3ffcb7a69b57711fc2083401b" 1759 | integrity sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg== 1760 | 1761 | minimatch@^3.0.4, minimatch@^3.1.1: 1762 | version "3.1.2" 1763 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-3.1.2.tgz#19cd194bfd3e428f049a70817c038d89ab4be35b" 1764 | integrity sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw== 1765 | dependencies: 1766 | brace-expansion "^1.1.7" 1767 | 1768 | minimatch@^9.0.0: 1769 | version "9.0.4" 1770 | resolved "https://registry.yarnpkg.com/minimatch/-/minimatch-9.0.4.tgz#8e49c731d1749cbec05050ee5145147b32496a51" 1771 | integrity sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw== 1772 | dependencies: 1773 | brace-expansion "^2.0.1" 1774 | 1775 | ms@2.1.2: 1776 | version "2.1.2" 1777 | resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" 1778 | integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== 1779 | 1780 | natural-compare@^1.4.0: 1781 | version "1.4.0" 1782 | resolved "https://registry.yarnpkg.com/natural-compare/-/natural-compare-1.4.0.tgz#4abebfeed7541f2c27acfb29bdbbd15c8d5ba4f7" 1783 | integrity sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw== 1784 | 1785 | node-int64@^0.4.0: 1786 | version "0.4.0" 1787 | resolved "https://registry.yarnpkg.com/node-int64/-/node-int64-0.4.0.tgz#87a9065cdb355d3182d8f94ce11188b825c68a3b" 1788 | integrity sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw== 1789 | 1790 | node-releases@^2.0.14: 1791 | version "2.0.14" 1792 | resolved "https://registry.yarnpkg.com/node-releases/-/node-releases-2.0.14.tgz#2ffb053bceb8b2be8495ece1ab6ce600c4461b0b" 1793 | integrity sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw== 1794 | 1795 | normalize-path@^3.0.0: 1796 | version "3.0.0" 1797 | resolved "https://registry.yarnpkg.com/normalize-path/-/normalize-path-3.0.0.tgz#0dcd69ff23a1c9b11fd0978316644a0388216a65" 1798 | integrity sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA== 1799 | 1800 | npm-run-path@^4.0.1: 1801 | version "4.0.1" 1802 | resolved "https://registry.yarnpkg.com/npm-run-path/-/npm-run-path-4.0.1.tgz#b7ecd1e5ed53da8e37a55e1c2269e0b97ed748ea" 1803 | integrity sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw== 1804 | dependencies: 1805 | path-key "^3.0.0" 1806 | 1807 | once@^1.3.0: 1808 | version "1.4.0" 1809 | resolved "https://registry.yarnpkg.com/once/-/once-1.4.0.tgz#583b1aa775961d4b113ac17d9c50baef9dd76bd1" 1810 | integrity sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w== 1811 | dependencies: 1812 | wrappy "1" 1813 | 1814 | onetime@^5.1.2: 1815 | version "5.1.2" 1816 | resolved "https://registry.yarnpkg.com/onetime/-/onetime-5.1.2.tgz#d0e96ebb56b07476df1dd9c4806e5237985ca45e" 1817 | integrity sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg== 1818 | dependencies: 1819 | mimic-fn "^2.1.0" 1820 | 1821 | p-limit@^2.2.0: 1822 | version "2.3.0" 1823 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-2.3.0.tgz#3dd33c647a214fdfffd835933eb086da0dc21db1" 1824 | integrity sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w== 1825 | dependencies: 1826 | p-try "^2.0.0" 1827 | 1828 | p-limit@^3.1.0: 1829 | version "3.1.0" 1830 | resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.1.0.tgz#e1daccbe78d0d1388ca18c64fea38e3e57e3706b" 1831 | integrity sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ== 1832 | dependencies: 1833 | yocto-queue "^0.1.0" 1834 | 1835 | p-locate@^4.1.0: 1836 | version "4.1.0" 1837 | resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-4.1.0.tgz#a3428bb7088b3a60292f66919278b7c297ad4f07" 1838 | integrity sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A== 1839 | dependencies: 1840 | p-limit "^2.2.0" 1841 | 1842 | p-try@^2.0.0: 1843 | version "2.2.0" 1844 | resolved "https://registry.yarnpkg.com/p-try/-/p-try-2.2.0.tgz#cb2868540e313d61de58fafbe35ce9004d5540e6" 1845 | integrity sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ== 1846 | 1847 | parse-json@^5.2.0: 1848 | version "5.2.0" 1849 | resolved "https://registry.yarnpkg.com/parse-json/-/parse-json-5.2.0.tgz#c76fc66dee54231c962b22bcc8a72cf2f99753cd" 1850 | integrity sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg== 1851 | dependencies: 1852 | "@babel/code-frame" "^7.0.0" 1853 | error-ex "^1.3.1" 1854 | json-parse-even-better-errors "^2.3.0" 1855 | lines-and-columns "^1.1.6" 1856 | 1857 | path-exists@^4.0.0: 1858 | version "4.0.0" 1859 | resolved "https://registry.yarnpkg.com/path-exists/-/path-exists-4.0.0.tgz#513bdbe2d3b95d7762e8c1137efa195c6c61b5b3" 1860 | integrity sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w== 1861 | 1862 | path-is-absolute@^1.0.0: 1863 | version "1.0.1" 1864 | resolved "https://registry.yarnpkg.com/path-is-absolute/-/path-is-absolute-1.0.1.tgz#174b9268735534ffbc7ace6bf53a5a9e1b5c5f5f" 1865 | integrity sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg== 1866 | 1867 | path-key@^3.0.0, path-key@^3.1.0: 1868 | version "3.1.1" 1869 | resolved "https://registry.yarnpkg.com/path-key/-/path-key-3.1.1.tgz#581f6ade658cbba65a0d3380de7753295054f375" 1870 | integrity sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q== 1871 | 1872 | path-parse@^1.0.7: 1873 | version "1.0.7" 1874 | resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.7.tgz#fbc114b60ca42b30d9daf5858e4bd68bbedb6735" 1875 | integrity sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw== 1876 | 1877 | picocolors@^1.0.0: 1878 | version "1.0.0" 1879 | resolved "https://registry.yarnpkg.com/picocolors/-/picocolors-1.0.0.tgz#cb5bdc74ff3f51892236eaf79d68bc44564ab81c" 1880 | integrity sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ== 1881 | 1882 | picomatch@^2.0.4, picomatch@^2.2.3, picomatch@^2.3.1: 1883 | version "2.3.1" 1884 | resolved "https://registry.yarnpkg.com/picomatch/-/picomatch-2.3.1.tgz#3ba3833733646d9d3e4995946c1365a67fb07a42" 1885 | integrity sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA== 1886 | 1887 | pirates@^4.0.4: 1888 | version "4.0.6" 1889 | resolved "https://registry.yarnpkg.com/pirates/-/pirates-4.0.6.tgz#3018ae32ecfcff6c29ba2267cbf21166ac1f36b9" 1890 | integrity sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg== 1891 | 1892 | pkg-dir@^4.2.0: 1893 | version "4.2.0" 1894 | resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-4.2.0.tgz#f099133df7ede422e81d1d8448270eeb3e4261f3" 1895 | integrity sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ== 1896 | dependencies: 1897 | find-up "^4.0.0" 1898 | 1899 | pretty-format@^29.0.0, pretty-format@^29.7.0: 1900 | version "29.7.0" 1901 | resolved "https://registry.yarnpkg.com/pretty-format/-/pretty-format-29.7.0.tgz#ca42c758310f365bfa71a0bda0a807160b776812" 1902 | integrity sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ== 1903 | dependencies: 1904 | "@jest/schemas" "^29.6.3" 1905 | ansi-styles "^5.0.0" 1906 | react-is "^18.0.0" 1907 | 1908 | prompts@^2.0.1: 1909 | version "2.4.2" 1910 | resolved "https://registry.yarnpkg.com/prompts/-/prompts-2.4.2.tgz#7b57e73b3a48029ad10ebd44f74b01722a4cb069" 1911 | integrity sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q== 1912 | dependencies: 1913 | kleur "^3.0.3" 1914 | sisteransi "^1.0.5" 1915 | 1916 | pure-rand@^6.0.0: 1917 | version "6.1.0" 1918 | resolved "https://registry.yarnpkg.com/pure-rand/-/pure-rand-6.1.0.tgz#d173cf23258231976ccbdb05247c9787957604f2" 1919 | integrity sha512-bVWawvoZoBYpp6yIoQtQXHZjmz35RSVHnUOTefl8Vcjr8snTPY1wnpSPMWekcFwbxI6gtmT7rSYPFvz71ldiOA== 1920 | 1921 | react-is@^18.0.0: 1922 | version "18.2.0" 1923 | resolved "https://registry.yarnpkg.com/react-is/-/react-is-18.2.0.tgz#199431eeaaa2e09f86427efbb4f1473edb47609b" 1924 | integrity sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w== 1925 | 1926 | require-directory@^2.1.1: 1927 | version "2.1.1" 1928 | resolved "https://registry.yarnpkg.com/require-directory/-/require-directory-2.1.1.tgz#8c64ad5fd30dab1c976e2344ffe7f792a6a6df42" 1929 | integrity sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q== 1930 | 1931 | resolve-cwd@^3.0.0: 1932 | version "3.0.0" 1933 | resolved "https://registry.yarnpkg.com/resolve-cwd/-/resolve-cwd-3.0.0.tgz#0f0075f1bb2544766cf73ba6a6e2adfebcb13f2d" 1934 | integrity sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg== 1935 | dependencies: 1936 | resolve-from "^5.0.0" 1937 | 1938 | resolve-from@^5.0.0: 1939 | version "5.0.0" 1940 | resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-5.0.0.tgz#c35225843df8f776df21c57557bc087e9dfdfc69" 1941 | integrity sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw== 1942 | 1943 | resolve.exports@^2.0.0: 1944 | version "2.0.2" 1945 | resolved "https://registry.yarnpkg.com/resolve.exports/-/resolve.exports-2.0.2.tgz#f8c934b8e6a13f539e38b7098e2e36134f01e800" 1946 | integrity sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg== 1947 | 1948 | resolve@^1.20.0: 1949 | version "1.22.8" 1950 | resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.22.8.tgz#b6c87a9f2aa06dfab52e3d70ac8cde321fa5a48d" 1951 | integrity sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw== 1952 | dependencies: 1953 | is-core-module "^2.13.0" 1954 | path-parse "^1.0.7" 1955 | supports-preserve-symlinks-flag "^1.0.0" 1956 | 1957 | semver@^6.3.0, semver@^6.3.1: 1958 | version "6.3.1" 1959 | resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" 1960 | integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== 1961 | 1962 | semver@^7.5.3, semver@^7.5.4: 1963 | version "7.6.0" 1964 | resolved "https://registry.yarnpkg.com/semver/-/semver-7.6.0.tgz#1a46a4db4bffcccd97b743b5005c8325f23d4e2d" 1965 | integrity sha512-EnwXhrlwXMk9gKu5/flx5sv/an57AkRplG3hTK68W7FRDN+k+OWBj65M7719OkA82XLBxrcX0KSHj+X5COhOVg== 1966 | dependencies: 1967 | lru-cache "^6.0.0" 1968 | 1969 | shebang-command@^2.0.0: 1970 | version "2.0.0" 1971 | resolved "https://registry.yarnpkg.com/shebang-command/-/shebang-command-2.0.0.tgz#ccd0af4f8835fbdc265b82461aaf0c36663f34ea" 1972 | integrity sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA== 1973 | dependencies: 1974 | shebang-regex "^3.0.0" 1975 | 1976 | shebang-regex@^3.0.0: 1977 | version "3.0.0" 1978 | resolved "https://registry.yarnpkg.com/shebang-regex/-/shebang-regex-3.0.0.tgz#ae16f1644d873ecad843b0307b143362d4c42172" 1979 | integrity sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A== 1980 | 1981 | shiki@^0.14.1: 1982 | version "0.14.7" 1983 | resolved "https://registry.yarnpkg.com/shiki/-/shiki-0.14.7.tgz#c3c9e1853e9737845f1d2ef81b31bcfb07056d4e" 1984 | integrity sha512-dNPAPrxSc87ua2sKJ3H5dQ/6ZaY8RNnaAqK+t0eG7p0Soi2ydiqbGOTaZCqaYvA/uZYfS1LJnemt3Q+mSfcPCg== 1985 | dependencies: 1986 | ansi-sequence-parser "^1.1.0" 1987 | jsonc-parser "^3.2.0" 1988 | vscode-oniguruma "^1.7.0" 1989 | vscode-textmate "^8.0.0" 1990 | 1991 | signal-exit@^3.0.3, signal-exit@^3.0.7: 1992 | version "3.0.7" 1993 | resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.7.tgz#a9a1767f8af84155114eaabd73f99273c8f59ad9" 1994 | integrity sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ== 1995 | 1996 | sisteransi@^1.0.5: 1997 | version "1.0.5" 1998 | resolved "https://registry.yarnpkg.com/sisteransi/-/sisteransi-1.0.5.tgz#134d681297756437cc05ca01370d3a7a571075ed" 1999 | integrity sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg== 2000 | 2001 | slash@^3.0.0: 2002 | version "3.0.0" 2003 | resolved "https://registry.yarnpkg.com/slash/-/slash-3.0.0.tgz#6539be870c165adbd5240220dbe361f1bc4d4634" 2004 | integrity sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q== 2005 | 2006 | source-map-support@0.5.13: 2007 | version "0.5.13" 2008 | resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.13.tgz#31b24a9c2e73c2de85066c0feb7d44767ed52932" 2009 | integrity sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w== 2010 | dependencies: 2011 | buffer-from "^1.0.0" 2012 | source-map "^0.6.0" 2013 | 2014 | source-map@^0.6.0, source-map@^0.6.1: 2015 | version "0.6.1" 2016 | resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.6.1.tgz#74722af32e9614e9c287a8d0bbde48b5e2f1a263" 2017 | integrity sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g== 2018 | 2019 | sprintf-js@~1.0.2: 2020 | version "1.0.3" 2021 | resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c" 2022 | integrity sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g== 2023 | 2024 | stack-utils@^2.0.3: 2025 | version "2.0.6" 2026 | resolved "https://registry.yarnpkg.com/stack-utils/-/stack-utils-2.0.6.tgz#aaf0748169c02fc33c8232abccf933f54a1cc34f" 2027 | integrity sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ== 2028 | dependencies: 2029 | escape-string-regexp "^2.0.0" 2030 | 2031 | string-length@^4.0.1: 2032 | version "4.0.2" 2033 | resolved "https://registry.yarnpkg.com/string-length/-/string-length-4.0.2.tgz#a8a8dc7bd5c1a82b9b3c8b87e125f66871b6e57a" 2034 | integrity sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ== 2035 | dependencies: 2036 | char-regex "^1.0.2" 2037 | strip-ansi "^6.0.0" 2038 | 2039 | string-width@^4.1.0, string-width@^4.2.0, string-width@^4.2.3: 2040 | version "4.2.3" 2041 | resolved "https://registry.yarnpkg.com/string-width/-/string-width-4.2.3.tgz#269c7117d27b05ad2e536830a8ec895ef9c6d010" 2042 | integrity sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g== 2043 | dependencies: 2044 | emoji-regex "^8.0.0" 2045 | is-fullwidth-code-point "^3.0.0" 2046 | strip-ansi "^6.0.1" 2047 | 2048 | strip-ansi@^6.0.0, strip-ansi@^6.0.1: 2049 | version "6.0.1" 2050 | resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-6.0.1.tgz#9e26c63d30f53443e9489495b2105d37b67a85d9" 2051 | integrity sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A== 2052 | dependencies: 2053 | ansi-regex "^5.0.1" 2054 | 2055 | strip-bom@^4.0.0: 2056 | version "4.0.0" 2057 | resolved "https://registry.yarnpkg.com/strip-bom/-/strip-bom-4.0.0.tgz#9c3505c1db45bcedca3d9cf7a16f5c5aa3901878" 2058 | integrity sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w== 2059 | 2060 | strip-final-newline@^2.0.0: 2061 | version "2.0.0" 2062 | resolved "https://registry.yarnpkg.com/strip-final-newline/-/strip-final-newline-2.0.0.tgz#89b852fb2fcbe936f6f4b3187afb0a12c1ab58ad" 2063 | integrity sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA== 2064 | 2065 | strip-json-comments@^3.1.1: 2066 | version "3.1.1" 2067 | resolved "https://registry.yarnpkg.com/strip-json-comments/-/strip-json-comments-3.1.1.tgz#31f1281b3832630434831c310c01cccda8cbe006" 2068 | integrity sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig== 2069 | 2070 | supports-color@^5.3.0: 2071 | version "5.5.0" 2072 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" 2073 | integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== 2074 | dependencies: 2075 | has-flag "^3.0.0" 2076 | 2077 | supports-color@^7.1.0: 2078 | version "7.2.0" 2079 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-7.2.0.tgz#1b7dcdcb32b8138801b3e478ba6a51caa89648da" 2080 | integrity sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw== 2081 | dependencies: 2082 | has-flag "^4.0.0" 2083 | 2084 | supports-color@^8.0.0: 2085 | version "8.1.1" 2086 | resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-8.1.1.tgz#cd6fc17e28500cff56c1b86c0a7fd4a54a73005c" 2087 | integrity sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q== 2088 | dependencies: 2089 | has-flag "^4.0.0" 2090 | 2091 | supports-preserve-symlinks-flag@^1.0.0: 2092 | version "1.0.0" 2093 | resolved "https://registry.yarnpkg.com/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz#6eda4bd344a3c94aea376d4cc31bc77311039e09" 2094 | integrity sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w== 2095 | 2096 | test-exclude@^6.0.0: 2097 | version "6.0.0" 2098 | resolved "https://registry.yarnpkg.com/test-exclude/-/test-exclude-6.0.0.tgz#04a8698661d805ea6fa293b6cb9e63ac044ef15e" 2099 | integrity sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w== 2100 | dependencies: 2101 | "@istanbuljs/schema" "^0.1.2" 2102 | glob "^7.1.4" 2103 | minimatch "^3.0.4" 2104 | 2105 | tmpl@1.0.5: 2106 | version "1.0.5" 2107 | resolved "https://registry.yarnpkg.com/tmpl/-/tmpl-1.0.5.tgz#8683e0b902bb9c20c4f726e3c0b69f36518c07cc" 2108 | integrity sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw== 2109 | 2110 | to-fast-properties@^2.0.0: 2111 | version "2.0.0" 2112 | resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" 2113 | integrity sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog== 2114 | 2115 | to-regex-range@^5.0.1: 2116 | version "5.0.1" 2117 | resolved "https://registry.yarnpkg.com/to-regex-range/-/to-regex-range-5.0.1.tgz#1648c44aae7c8d988a326018ed72f5b4dd0392e4" 2118 | integrity sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ== 2119 | dependencies: 2120 | is-number "^7.0.0" 2121 | 2122 | ts-jest@^29.0.3: 2123 | version "29.1.2" 2124 | resolved "https://registry.yarnpkg.com/ts-jest/-/ts-jest-29.1.2.tgz#7613d8c81c43c8cb312c6904027257e814c40e09" 2125 | integrity sha512-br6GJoH/WUX4pu7FbZXuWGKGNDuU7b8Uj77g/Sp7puZV6EXzuByl6JrECvm0MzVzSTkSHWTihsXt+5XYER5b+g== 2126 | dependencies: 2127 | bs-logger "0.x" 2128 | fast-json-stable-stringify "2.x" 2129 | jest-util "^29.0.0" 2130 | json5 "^2.2.3" 2131 | lodash.memoize "4.x" 2132 | make-error "1.x" 2133 | semver "^7.5.3" 2134 | yargs-parser "^21.0.1" 2135 | 2136 | type-detect@4.0.8: 2137 | version "4.0.8" 2138 | resolved "https://registry.yarnpkg.com/type-detect/-/type-detect-4.0.8.tgz#7646fb5f18871cfbb7749e69bd39a6388eb7450c" 2139 | integrity sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g== 2140 | 2141 | type-fest@^0.21.3: 2142 | version "0.21.3" 2143 | resolved "https://registry.yarnpkg.com/type-fest/-/type-fest-0.21.3.tgz#d260a24b0198436e133fa26a524a6d65fa3b2e37" 2144 | integrity sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w== 2145 | 2146 | typedoc@^0.24.8: 2147 | version "0.24.8" 2148 | resolved "https://registry.yarnpkg.com/typedoc/-/typedoc-0.24.8.tgz#cce9f47ba6a8d52389f5e583716a2b3b4335b63e" 2149 | integrity sha512-ahJ6Cpcvxwaxfu4KtjA8qZNqS43wYt6JL27wYiIgl1vd38WW/KWX11YuAeZhuz9v+ttrutSsgK+XO1CjL1kA3w== 2150 | dependencies: 2151 | lunr "^2.3.9" 2152 | marked "^4.3.0" 2153 | minimatch "^9.0.0" 2154 | shiki "^0.14.1" 2155 | 2156 | typescript@^5.1.5: 2157 | version "5.4.5" 2158 | resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.4.5.tgz#42ccef2c571fdbd0f6718b1d1f5e6e5ef006f611" 2159 | integrity sha512-vcI4UpRgg81oIRUFwR0WSIHKt11nJ7SAVlYNIu+QpqeyXP+gpQJy/Z4+F0aGxSE4MqwjyXvW/TzgkLAx2AGHwQ== 2160 | 2161 | undici-types@~5.26.4: 2162 | version "5.26.5" 2163 | resolved "https://registry.yarnpkg.com/undici-types/-/undici-types-5.26.5.tgz#bcd539893d00b56e964fd2657a4866b221a65617" 2164 | integrity sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA== 2165 | 2166 | update-browserslist-db@^1.0.13: 2167 | version "1.0.13" 2168 | resolved "https://registry.yarnpkg.com/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz#3c5e4f5c083661bd38ef64b6328c26ed6c8248c4" 2169 | integrity sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg== 2170 | dependencies: 2171 | escalade "^3.1.1" 2172 | picocolors "^1.0.0" 2173 | 2174 | v8-to-istanbul@^9.0.1: 2175 | version "9.2.0" 2176 | resolved "https://registry.yarnpkg.com/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz#2ed7644a245cddd83d4e087b9b33b3e62dfd10ad" 2177 | integrity sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA== 2178 | dependencies: 2179 | "@jridgewell/trace-mapping" "^0.3.12" 2180 | "@types/istanbul-lib-coverage" "^2.0.1" 2181 | convert-source-map "^2.0.0" 2182 | 2183 | vscode-oniguruma@^1.7.0: 2184 | version "1.7.0" 2185 | resolved "https://registry.yarnpkg.com/vscode-oniguruma/-/vscode-oniguruma-1.7.0.tgz#439bfad8fe71abd7798338d1cd3dc53a8beea94b" 2186 | integrity sha512-L9WMGRfrjOhgHSdOYgCt/yRMsXzLDJSL7BPrOZt73gU0iWO4mpqzqQzOz5srxqTvMBaR0XZTSrVWo4j55Rc6cA== 2187 | 2188 | vscode-textmate@^8.0.0: 2189 | version "8.0.0" 2190 | resolved "https://registry.yarnpkg.com/vscode-textmate/-/vscode-textmate-8.0.0.tgz#2c7a3b1163ef0441097e0b5d6389cd5504b59e5d" 2191 | integrity sha512-AFbieoL7a5LMqcnOF04ji+rpXadgOXnZsxQr//r83kLPr7biP7am3g9zbaZIaBGwBRWeSvoMD4mgPdX3e4NWBg== 2192 | 2193 | walker@^1.0.8: 2194 | version "1.0.8" 2195 | resolved "https://registry.yarnpkg.com/walker/-/walker-1.0.8.tgz#bd498db477afe573dc04185f011d3ab8a8d7653f" 2196 | integrity sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ== 2197 | dependencies: 2198 | makeerror "1.0.12" 2199 | 2200 | which@^2.0.1: 2201 | version "2.0.2" 2202 | resolved "https://registry.yarnpkg.com/which/-/which-2.0.2.tgz#7c6a8dd0a636a0327e10b59c9286eee93f3f51b1" 2203 | integrity sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA== 2204 | dependencies: 2205 | isexe "^2.0.0" 2206 | 2207 | wrap-ansi@^7.0.0: 2208 | version "7.0.0" 2209 | resolved "https://registry.yarnpkg.com/wrap-ansi/-/wrap-ansi-7.0.0.tgz#67e145cff510a6a6984bdf1152911d69d2eb9e43" 2210 | integrity sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q== 2211 | dependencies: 2212 | ansi-styles "^4.0.0" 2213 | string-width "^4.1.0" 2214 | strip-ansi "^6.0.0" 2215 | 2216 | wrappy@1: 2217 | version "1.0.2" 2218 | resolved "https://registry.yarnpkg.com/wrappy/-/wrappy-1.0.2.tgz#b5243d8f3ec1aa35f1364605bc0d1036e30ab69f" 2219 | integrity sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ== 2220 | 2221 | write-file-atomic@^4.0.2: 2222 | version "4.0.2" 2223 | resolved "https://registry.yarnpkg.com/write-file-atomic/-/write-file-atomic-4.0.2.tgz#a9df01ae5b77858a027fd2e80768ee433555fcfd" 2224 | integrity sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg== 2225 | dependencies: 2226 | imurmurhash "^0.1.4" 2227 | signal-exit "^3.0.7" 2228 | 2229 | y18n@^5.0.5: 2230 | version "5.0.8" 2231 | resolved "https://registry.yarnpkg.com/y18n/-/y18n-5.0.8.tgz#7f4934d0f7ca8c56f95314939ddcd2dd91ce1d55" 2232 | integrity sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA== 2233 | 2234 | yallist@^3.0.2: 2235 | version "3.1.1" 2236 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-3.1.1.tgz#dbb7daf9bfd8bac9ab45ebf602b8cbad0d5d08fd" 2237 | integrity sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g== 2238 | 2239 | yallist@^4.0.0: 2240 | version "4.0.0" 2241 | resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" 2242 | integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== 2243 | 2244 | yargs-parser@^21.0.1, yargs-parser@^21.1.1: 2245 | version "21.1.1" 2246 | resolved "https://registry.yarnpkg.com/yargs-parser/-/yargs-parser-21.1.1.tgz#9096bceebf990d21bb31fa9516e0ede294a77d35" 2247 | integrity sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw== 2248 | 2249 | yargs@^17.3.1: 2250 | version "17.7.2" 2251 | resolved "https://registry.yarnpkg.com/yargs/-/yargs-17.7.2.tgz#991df39aca675a192b816e1e0363f9d75d2aa269" 2252 | integrity sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w== 2253 | dependencies: 2254 | cliui "^8.0.1" 2255 | escalade "^3.1.1" 2256 | get-caller-file "^2.0.5" 2257 | require-directory "^2.1.1" 2258 | string-width "^4.2.3" 2259 | y18n "^5.0.5" 2260 | yargs-parser "^21.1.1" 2261 | 2262 | yocto-queue@^0.1.0: 2263 | version "0.1.0" 2264 | resolved "https://registry.yarnpkg.com/yocto-queue/-/yocto-queue-0.1.0.tgz#0294eb3dee05028d31ee1a5fa2c556a6aaf10a1b" 2265 | integrity sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q== 2266 | --------------------------------------------------------------------------------