Nuke translationRunner, make `yarn i18n` work again
This commit is contained in:
parent
4bfd01b68a
commit
23d5fae391
|
@ -15,7 +15,7 @@ module.exports = (api) => {
|
||||||
['@babel/env', envOptions],
|
['@babel/env', envOptions],
|
||||||
],
|
],
|
||||||
plugins: [
|
plugins: [
|
||||||
['react-intl', { messagesDir: './build/messages/' }],
|
'formatjs',
|
||||||
'preval',
|
'preval',
|
||||||
],
|
],
|
||||||
'sourceType': 'unambiguous',
|
'sourceType': 'unambiguous',
|
||||||
|
|
|
@ -22,8 +22,7 @@
|
||||||
"build": "npx vite build --emptyOutDir",
|
"build": "npx vite build --emptyOutDir",
|
||||||
"preview": "npx vite preview",
|
"preview": "npx vite preview",
|
||||||
"audit:fix": "npx yarn-audit-fix",
|
"audit:fix": "npx yarn-audit-fix",
|
||||||
"manage:translations": "npx tsx ./scripts/translationRunner.ts",
|
"i18n": "npx formatjs extract 'src/**/*.{ts,tsx}' --ignore '**/*.d.ts' --out-file build/messages.json && npx formatjs compile build/messages.json --out-file src/locales/en.json",
|
||||||
"i18n": "rm -rf build tmp && npx cross-env NODE_ENV=production ${npm_execpath} run build && ${npm_execpath} manage:translations en",
|
|
||||||
"test": "npx vitest",
|
"test": "npx vitest",
|
||||||
"test:coverage": "${npm_execpath} run test --coverage",
|
"test:coverage": "${npm_execpath} run test --coverage",
|
||||||
"test:all": "${npm_execpath} run test:coverage && ${npm_execpath} run lint",
|
"test:all": "${npm_execpath} run test:coverage && ${npm_execpath} run lint",
|
||||||
|
@ -94,8 +93,8 @@
|
||||||
"autoprefixer": "^10.4.15",
|
"autoprefixer": "^10.4.15",
|
||||||
"axios": "^1.2.2",
|
"axios": "^1.2.2",
|
||||||
"axios-mock-adapter": "^1.22.0",
|
"axios-mock-adapter": "^1.22.0",
|
||||||
|
"babel-plugin-formatjs": "^10.5.6",
|
||||||
"babel-plugin-preval": "^5.1.0",
|
"babel-plugin-preval": "^5.1.0",
|
||||||
"babel-plugin-react-intl": "^8.0.0",
|
|
||||||
"blurhash": "^2.0.0",
|
"blurhash": "^2.0.0",
|
||||||
"bootstrap-icons": "^1.5.0",
|
"bootstrap-icons": "^1.5.0",
|
||||||
"bowser": "^2.11.0",
|
"bowser": "^2.11.0",
|
||||||
|
@ -116,7 +115,6 @@
|
||||||
"immutable": "^4.2.1",
|
"immutable": "^4.2.1",
|
||||||
"intersection-observer": "^0.12.2",
|
"intersection-observer": "^0.12.2",
|
||||||
"intl-messageformat": "10.5.3",
|
"intl-messageformat": "10.5.3",
|
||||||
"intl-messageformat-parser": "^6.0.0",
|
|
||||||
"intl-pluralrules": "^2.0.0",
|
"intl-pluralrules": "^2.0.0",
|
||||||
"leaflet": "^1.8.0",
|
"leaflet": "^1.8.0",
|
||||||
"lexical": "^0.12.2",
|
"lexical": "^0.12.2",
|
||||||
|
@ -179,6 +177,7 @@
|
||||||
"zod": "^3.21.4"
|
"zod": "^3.21.4"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
|
"@formatjs/cli": "^6.2.0",
|
||||||
"@gitbeaker/node": "^35.8.0",
|
"@gitbeaker/node": "^35.8.0",
|
||||||
"@jedmao/redux-mock-store": "^3.0.5",
|
"@jedmao/redux-mock-store": "^3.0.5",
|
||||||
"@testing-library/jest-dom": "^6.1.3",
|
"@testing-library/jest-dom": "^6.1.3",
|
||||||
|
@ -210,7 +209,6 @@
|
||||||
"stylelint": "^15.10.3",
|
"stylelint": "^15.10.3",
|
||||||
"stylelint-config-standard-scss": "^11.0.0",
|
"stylelint-config-standard-scss": "^11.0.0",
|
||||||
"tailwindcss": "^3.3.3",
|
"tailwindcss": "^3.3.3",
|
||||||
"tsx": "^3.13.0",
|
|
||||||
"vite-plugin-checker": "^0.6.2",
|
"vite-plugin-checker": "^0.6.2",
|
||||||
"vite-plugin-pwa": "^0.16.5",
|
"vite-plugin-pwa": "^0.16.5",
|
||||||
"vitest": "^0.34.4",
|
"vitest": "^0.34.4",
|
||||||
|
|
|
@ -1,249 +0,0 @@
|
||||||
import fs from 'fs';
|
|
||||||
import path from 'path';
|
|
||||||
import { fileURLToPath } from 'url';
|
|
||||||
|
|
||||||
import * as parser from 'intl-messageformat-parser';
|
|
||||||
import manager from 'react-intl-translations-manager';
|
|
||||||
import yargs from 'yargs/yargs';
|
|
||||||
|
|
||||||
import type { ExtractedDescriptor } from 'react-intl-translations-manager';
|
|
||||||
|
|
||||||
const { default: manageTranslations, readMessageFiles } = manager as unknown as typeof import('react-intl-translations-manager');
|
|
||||||
|
|
||||||
type Validator = (language: string) => void;
|
|
||||||
|
|
||||||
interface LanguageResult {
|
|
||||||
language: string;
|
|
||||||
error: any;
|
|
||||||
}
|
|
||||||
|
|
||||||
const RFC5646_REGEXP = /^[a-z]{2,3}(?:-(?:x|[A-Za-z]{2,4}))*$/;
|
|
||||||
|
|
||||||
const __dirname = path.dirname(fileURLToPath(import.meta.url));
|
|
||||||
const rootDirectory = path.resolve(__dirname, '..');
|
|
||||||
const translationsDirectory = path.resolve(rootDirectory, 'src', 'locales');
|
|
||||||
const messagesDirectory = path.resolve(rootDirectory, 'build', 'messages');
|
|
||||||
const availableLanguages = fs.readdirSync(translationsDirectory).reduce((languages, filename) => {
|
|
||||||
const basename = path.basename(filename, '.json');
|
|
||||||
if (RFC5646_REGEXP.test(basename)) {
|
|
||||||
languages.push(basename);
|
|
||||||
}
|
|
||||||
return languages;
|
|
||||||
}, [] as string[]);
|
|
||||||
|
|
||||||
const testRFC5646: Validator = (language) => {
|
|
||||||
if (!RFC5646_REGEXP.test(language)) {
|
|
||||||
throw new Error('Not RFC5646 name');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const testAvailability: Validator = (language) => {
|
|
||||||
if (!availableLanguages.includes(language)) {
|
|
||||||
throw new Error('Not an available language');
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const validateLanguages = (languages: string[], validators: Validator[]): void => {
|
|
||||||
const invalidLanguages = languages.reduce((acc, language): LanguageResult[] => {
|
|
||||||
try {
|
|
||||||
validators.forEach(validator => validator(language));
|
|
||||||
} catch (error) {
|
|
||||||
acc.push({ language, error });
|
|
||||||
}
|
|
||||||
return acc;
|
|
||||||
}, [] as LanguageResult[]);
|
|
||||||
|
|
||||||
if (invalidLanguages.length > 0) {
|
|
||||||
console.error(`
|
|
||||||
Error: Specified invalid LANGUAGES:
|
|
||||||
${invalidLanguages.map(({ language, error }) => `* ${language}: ${error.message}`).join('\n')}
|
|
||||||
|
|
||||||
Use yarn "manage:translations -- --help" for usage information
|
|
||||||
`);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
const usage = `Usage: yarn manage:translations [OPTIONS] [LANGUAGES]
|
|
||||||
|
|
||||||
Manage JavaScript translation files in Soapbox. Generates and update translations in translationsDirectory: ${translationsDirectory}
|
|
||||||
|
|
||||||
LANGUAGES
|
|
||||||
The RFC5646 language tag for the language you want to test or fix. If you want to input multiple languages, separate them with space.
|
|
||||||
|
|
||||||
Available languages:
|
|
||||||
${availableLanguages.join(', ')}
|
|
||||||
`;
|
|
||||||
|
|
||||||
const argv = yargs()
|
|
||||||
.usage(usage)
|
|
||||||
.option('f', {
|
|
||||||
alias: 'force',
|
|
||||||
default: false,
|
|
||||||
describe: 'force using the provided languages. create files if not exists.',
|
|
||||||
type: 'boolean',
|
|
||||||
})
|
|
||||||
.parseSync();
|
|
||||||
|
|
||||||
// check if message directory exists
|
|
||||||
if (!fs.existsSync(messagesDirectory)) {
|
|
||||||
console.error(`
|
|
||||||
Error: messagesDirectory not exists
|
|
||||||
(${messagesDirectory})
|
|
||||||
Try to run "yarn build" first`);
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
|
|
||||||
// determine the languages list
|
|
||||||
const languages: string[] = (argv._.length > 0) ? argv._.map(String) : availableLanguages;
|
|
||||||
|
|
||||||
const validators: Validator[] = [
|
|
||||||
testRFC5646,
|
|
||||||
];
|
|
||||||
|
|
||||||
if (!argv.force) {
|
|
||||||
validators.push(testAvailability);
|
|
||||||
}
|
|
||||||
|
|
||||||
// validate languages
|
|
||||||
validateLanguages(languages, validators);
|
|
||||||
|
|
||||||
// manage translations
|
|
||||||
manageTranslations({
|
|
||||||
messagesDirectory,
|
|
||||||
translationsDirectory,
|
|
||||||
detectDuplicateIds: false,
|
|
||||||
singleMessagesFile: false,
|
|
||||||
languages,
|
|
||||||
jsonOptions: {
|
|
||||||
trailingNewline: true,
|
|
||||||
},
|
|
||||||
});
|
|
||||||
|
|
||||||
// Check variable interpolations and print error messages if variables are
|
|
||||||
// used in translations which are not used in the default message.
|
|
||||||
/* eslint-disable no-console */
|
|
||||||
|
|
||||||
function findVariablesinAST(tree: parser.MessageFormatElement[]): Set<string> {
|
|
||||||
const result = new Set<string>();
|
|
||||||
tree.forEach((element) => {
|
|
||||||
switch (element.type) {
|
|
||||||
case parser.TYPE.argument:
|
|
||||||
case parser.TYPE.number:
|
|
||||||
result.add(element.value);
|
|
||||||
break;
|
|
||||||
case parser.TYPE.plural:
|
|
||||||
result.add(element.value);
|
|
||||||
Object.values(element.options)
|
|
||||||
.map(option => option.value)
|
|
||||||
.forEach(subtree =>
|
|
||||||
findVariablesinAST(subtree)
|
|
||||||
.forEach(variable => result.add(variable)));
|
|
||||||
break;
|
|
||||||
case parser.TYPE.literal:
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
console.log('unhandled element=', element);
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
function findVariables(string: string): Set<string> {
|
|
||||||
return findVariablesinAST(parser.parse(string));
|
|
||||||
}
|
|
||||||
|
|
||||||
const extractedMessagesFiles = readMessageFiles(translationsDirectory);
|
|
||||||
const extractedMessages = extractedMessagesFiles.reduce((acc, messageFile) => {
|
|
||||||
messageFile.descriptors.forEach((descriptor) => {
|
|
||||||
descriptor.descriptors?.forEach((item) => {
|
|
||||||
const variables = findVariables(item.defaultMessage);
|
|
||||||
acc.push({
|
|
||||||
id: item.id,
|
|
||||||
defaultMessage: item.defaultMessage,
|
|
||||||
variables: variables,
|
|
||||||
});
|
|
||||||
});
|
|
||||||
});
|
|
||||||
return acc;
|
|
||||||
}, [] as ExtractedDescriptor[]);
|
|
||||||
|
|
||||||
interface Translation {
|
|
||||||
language: string;
|
|
||||||
data: Record<string, string>;
|
|
||||||
}
|
|
||||||
|
|
||||||
const translations: Translation[] = languages.map((language: string) => {
|
|
||||||
return {
|
|
||||||
language: language,
|
|
||||||
data: JSON.parse(fs.readFileSync(path.join(translationsDirectory, language + '.json'), 'utf8')),
|
|
||||||
};
|
|
||||||
});
|
|
||||||
|
|
||||||
function difference<T>(a: Set<T>, b: Set<T>): Set<T> {
|
|
||||||
return new Set(Array.from(a).filter(x => !b.has(x)));
|
|
||||||
}
|
|
||||||
|
|
||||||
function pushIfUnique<T>(arr: T[], newItem: T): void {
|
|
||||||
if (arr.every((item) => {
|
|
||||||
return (JSON.stringify(item) !== JSON.stringify(newItem));
|
|
||||||
})) {
|
|
||||||
arr.push(newItem);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
interface Problem {
|
|
||||||
language: string;
|
|
||||||
id: ExtractedDescriptor['id'];
|
|
||||||
severity: 'error' | 'warning';
|
|
||||||
type: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
const problems: Problem[] = translations.reduce((acc, translation) => {
|
|
||||||
extractedMessages.forEach((message) => {
|
|
||||||
try {
|
|
||||||
const translationVariables = findVariables(translation.data[message.id!]);
|
|
||||||
if (Array.from(difference(translationVariables, message.variables)).length > 0) {
|
|
||||||
pushIfUnique(acc, {
|
|
||||||
language: translation.language,
|
|
||||||
id: message.id,
|
|
||||||
severity: 'error',
|
|
||||||
type: 'missing variable ',
|
|
||||||
});
|
|
||||||
} else if (Array.from(difference(message.variables, translationVariables)).length > 0) {
|
|
||||||
pushIfUnique(acc, {
|
|
||||||
language: translation.language,
|
|
||||||
id: message.id,
|
|
||||||
severity: 'warning',
|
|
||||||
type: 'inconsistent variables',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
} catch (error) {
|
|
||||||
pushIfUnique(acc, {
|
|
||||||
language: translation.language,
|
|
||||||
id: message.id,
|
|
||||||
severity: 'error',
|
|
||||||
type: 'syntax error ',
|
|
||||||
});
|
|
||||||
}
|
|
||||||
});
|
|
||||||
return acc;
|
|
||||||
}, [] as Problem[]);
|
|
||||||
|
|
||||||
if (problems.length > 0) {
|
|
||||||
console.error(`${problems.length} messages found with errors or warnings:`);
|
|
||||||
console.error('\nLoc\tIssue \tMessage ID');
|
|
||||||
console.error('-'.repeat(60));
|
|
||||||
|
|
||||||
problems.forEach((problem) => {
|
|
||||||
const color = (problem.severity === 'error') ? '\x1b[31m' : '';
|
|
||||||
console.error(`${color}${problem.language}\t${problem.type}\t${problem.id}\x1b[0m`);
|
|
||||||
});
|
|
||||||
console.error('\n');
|
|
||||||
if (problems.find((item) => {
|
|
||||||
return item.severity === 'error';
|
|
||||||
})) {
|
|
||||||
process.exit(1);
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -1,154 +0,0 @@
|
||||||
declare module 'react-intl-translations-manager' {
|
|
||||||
import type { MessageDescriptor } from 'react-intl';
|
|
||||||
|
|
||||||
export interface ExtractedDescriptor extends Omit<MessageDescriptor, 'defaultMessage'> {
|
|
||||||
variables: Set<any>;
|
|
||||||
descriptors?: ExtractedDescriptor[];
|
|
||||||
defaultMessage: string;
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ExtractedMessage {
|
|
||||||
path: string;
|
|
||||||
descriptors: ExtractedDescriptor[];
|
|
||||||
}
|
|
||||||
|
|
||||||
export interface ManageTranslationsConfig {
|
|
||||||
/**
|
|
||||||
* Directory where the babel plugin puts the extracted messages. This path is relative to your projects root.
|
|
||||||
*
|
|
||||||
* example: `src/locales/extractedMessages`
|
|
||||||
*/
|
|
||||||
messagesDirectory: string;
|
|
||||||
/**
|
|
||||||
* Directory of the translation files the translation manager needs to maintain.
|
|
||||||
*
|
|
||||||
* example: `src/locales/lang`
|
|
||||||
*/
|
|
||||||
translationsDirectory: string;
|
|
||||||
/**
|
|
||||||
* Directory of the whitelist files the translation manager needs to maintain. These files contain the key of translations that have the exact same text in a specific language as the defaultMessage. Specifying this key will suppress `unmaintained translation` warnings.
|
|
||||||
*
|
|
||||||
* example: `Dashboard` in english is also accepted as a valid translation for dutch.
|
|
||||||
*
|
|
||||||
* (optional, default: `translationsDirectory`)
|
|
||||||
*/
|
|
||||||
whitelistsDirectory?: string;
|
|
||||||
/**
|
|
||||||
* What languages the translation manager needs to maintain. Specifying no languages actually doesn't make sense, but won't break the translationManager either. (Please do not include the default language, react-intl will automatically include it.)
|
|
||||||
*
|
|
||||||
* example: for `['nl', 'fr']` the translation manager will maintain a `nl.json`, `fr.json`, `whitelist_nl.json` and a w`hitelist_fr.json` file
|
|
||||||
*
|
|
||||||
* (optional, default: `[]`)
|
|
||||||
*/
|
|
||||||
languages?: string[];
|
|
||||||
/**
|
|
||||||
* Option to output a single JSON file containing the aggregate of all extracted messages, grouped by the file they were extracted from.
|
|
||||||
*
|
|
||||||
* example:
|
|
||||||
*
|
|
||||||
* ```json
|
|
||||||
* [
|
|
||||||
* {
|
|
||||||
* "path": "src/components/foo.json",
|
|
||||||
* "descriptors": [
|
|
||||||
* {
|
|
||||||
* "id": "bar",
|
|
||||||
* "description": "Text for bar",
|
|
||||||
* "defaultMessage": "Bar"
|
|
||||||
* }
|
|
||||||
* ]
|
|
||||||
* }
|
|
||||||
* ]
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* (optional, default: `false`)
|
|
||||||
*/
|
|
||||||
singleMessagesFile?: boolean;
|
|
||||||
/**
|
|
||||||
* If you want the translationManager to log duplicate message ids or not
|
|
||||||
*
|
|
||||||
* (optional, default: `true`)
|
|
||||||
*/
|
|
||||||
detectDuplicateIds?: boolean;
|
|
||||||
/**
|
|
||||||
* If you want the translationManager to sort it's output, both json and console output
|
|
||||||
*
|
|
||||||
* (optional, default: `true`)
|
|
||||||
*/
|
|
||||||
sortKeys?: boolean;
|
|
||||||
/** (optional, default: `{ space: 2, trailingNewline: false }`)) */
|
|
||||||
jsonOptions?: any;
|
|
||||||
/**
|
|
||||||
* Here you can specify custom logging methods. If not specified a default printer is used.
|
|
||||||
*
|
|
||||||
* Possible printers to configure:
|
|
||||||
*
|
|
||||||
* ```js
|
|
||||||
* const printers = {
|
|
||||||
* printDuplicateIds: duplicateIds => {
|
|
||||||
* console.log(`You have ${duplicateIds.length} duplicate IDs`);
|
|
||||||
* },
|
|
||||||
* printLanguageReport: report => {
|
|
||||||
* console.log('Log report for a language');
|
|
||||||
* },
|
|
||||||
* printNoLanguageFile: lang => {
|
|
||||||
* console.log(
|
|
||||||
* `No existing ${lang} translation file found. A new one is created.`
|
|
||||||
* );
|
|
||||||
* },
|
|
||||||
* printNoLanguageWhitelistFile: lang => {
|
|
||||||
* console.log(`No existing ${lang} file found. A new one is created.`);
|
|
||||||
* }
|
|
||||||
* };
|
|
||||||
* ```
|
|
||||||
*
|
|
||||||
* (optional, default: `{}`)
|
|
||||||
*/
|
|
||||||
overridePrinters?: any;
|
|
||||||
/**
|
|
||||||
* Here you can specify overrides for the core hooks. If not specified, the default methods will be used.
|
|
||||||
*
|
|
||||||
* Possible overrides to configure:
|
|
||||||
*
|
|
||||||
* ```js
|
|
||||||
* const overrideCoreMethods = {
|
|
||||||
* provideExtractedMessages: () => {},
|
|
||||||
* outputSingleFile: () => {},
|
|
||||||
* outputDuplicateKeys: () => {},
|
|
||||||
* beforeReporting: () => {},
|
|
||||||
* provideLangTemplate: () => {},
|
|
||||||
* provideTranslationsFile: () => {},
|
|
||||||
* provideWhitelistFile: () => {},
|
|
||||||
* reportLanguage: () => {},
|
|
||||||
* afterReporting: () => {}
|
|
||||||
* };
|
|
||||||
* ```
|
|
||||||
*/
|
|
||||||
overrideCoreMethods?: any;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** This will maintain all translation files. Based on your config you will get output for duplicate ids, and per specified language you will get the deleted translations, added messages (new messages that need to be translated), and not yet translated messages. It will also maintain a whitelist file per language where you can specify translation keys where the translation is identical to the default message. This way you can avoid untranslated message warnings for these messages. */
|
|
||||||
export default function manageTranslations(config: ManageTranslationsConfig): void;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* This is a `babel-plugin-react-intl` specific helper method. It will read all extracted JSON file for the specified directory, filter out all files without any messages, and output an array with all messages.
|
|
||||||
*
|
|
||||||
* Example output:
|
|
||||||
*
|
|
||||||
* ```js
|
|
||||||
* const extractedMessages = [
|
|
||||||
* {
|
|
||||||
* path: 'src/components/Foo.json',
|
|
||||||
* descriptors: [
|
|
||||||
* {
|
|
||||||
* id: 'foo_ok',
|
|
||||||
* description: 'Ok text',
|
|
||||||
* defaultMessage: 'OK'
|
|
||||||
* }
|
|
||||||
* ]
|
|
||||||
* }
|
|
||||||
* ];
|
|
||||||
* ```
|
|
||||||
*/
|
|
||||||
export function readMessageFiles(messagesDirectory: string): ExtractedMessage[];
|
|
||||||
}
|
|
302
yarn.lock
302
yarn.lock
|
@ -52,7 +52,28 @@
|
||||||
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730"
|
resolved "https://registry.yarnpkg.com/@babel/compat-data/-/compat-data-7.22.9.tgz#71cdb00a1ce3a329ce4cbec3a44f9fef35669730"
|
||||||
integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==
|
integrity sha512-5UamI7xkUcJ3i9qVDS+KFDEK8/7oJ55/sJMB1Ge7IEapr7KfdfV/HErR+koZwOfd+SgtFKOKRhRakdg++DcJpQ==
|
||||||
|
|
||||||
"@babel/core@^7.11.1", "@babel/core@^7.22.9", "@babel/core@^7.9.0":
|
"@babel/core@^7.10.4":
|
||||||
|
version "7.23.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.23.0.tgz#f8259ae0e52a123eb40f552551e647b506a94d83"
|
||||||
|
integrity sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==
|
||||||
|
dependencies:
|
||||||
|
"@ampproject/remapping" "^2.2.0"
|
||||||
|
"@babel/code-frame" "^7.22.13"
|
||||||
|
"@babel/generator" "^7.23.0"
|
||||||
|
"@babel/helper-compilation-targets" "^7.22.15"
|
||||||
|
"@babel/helper-module-transforms" "^7.23.0"
|
||||||
|
"@babel/helpers" "^7.23.0"
|
||||||
|
"@babel/parser" "^7.23.0"
|
||||||
|
"@babel/template" "^7.22.15"
|
||||||
|
"@babel/traverse" "^7.23.0"
|
||||||
|
"@babel/types" "^7.23.0"
|
||||||
|
convert-source-map "^2.0.0"
|
||||||
|
debug "^4.1.0"
|
||||||
|
gensync "^1.0.0-beta.2"
|
||||||
|
json5 "^2.2.3"
|
||||||
|
semver "^6.3.1"
|
||||||
|
|
||||||
|
"@babel/core@^7.11.1", "@babel/core@^7.22.9":
|
||||||
version "7.22.19"
|
version "7.22.19"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.19.tgz#b38162460a6f3baf2a424bda720b24a8aafea241"
|
resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.22.19.tgz#b38162460a6f3baf2a424bda720b24a8aafea241"
|
||||||
integrity sha512-Q8Yj5X4LHVYTbLCKVz0//2D2aDmHF4xzCdEttYvKOnWvErGsa6geHXD6w46x64n5tP69VfeH+IfSrdyH3MLhwA==
|
integrity sha512-Q8Yj5X4LHVYTbLCKVz0//2D2aDmHF4xzCdEttYvKOnWvErGsa6geHXD6w46x64n5tP69VfeH+IfSrdyH3MLhwA==
|
||||||
|
@ -83,6 +104,16 @@
|
||||||
"@jridgewell/trace-mapping" "^0.3.17"
|
"@jridgewell/trace-mapping" "^0.3.17"
|
||||||
jsesc "^2.5.1"
|
jsesc "^2.5.1"
|
||||||
|
|
||||||
|
"@babel/generator@^7.23.0":
|
||||||
|
version "7.23.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.23.0.tgz#df5c386e2218be505b34837acbcb874d7a983420"
|
||||||
|
integrity sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==
|
||||||
|
dependencies:
|
||||||
|
"@babel/types" "^7.23.0"
|
||||||
|
"@jridgewell/gen-mapping" "^0.3.2"
|
||||||
|
"@jridgewell/trace-mapping" "^0.3.17"
|
||||||
|
jsesc "^2.5.1"
|
||||||
|
|
||||||
"@babel/helper-annotate-as-pure@^7.22.5":
|
"@babel/helper-annotate-as-pure@^7.22.5":
|
||||||
version "7.22.5"
|
version "7.22.5"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
|
resolved "https://registry.yarnpkg.com/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz#e7f06737b197d580a01edf75d97e2c8be99d3882"
|
||||||
|
@ -151,6 +182,11 @@
|
||||||
lodash.debounce "^4.0.8"
|
lodash.debounce "^4.0.8"
|
||||||
resolve "^1.14.2"
|
resolve "^1.14.2"
|
||||||
|
|
||||||
|
"@babel/helper-environment-visitor@^7.22.20":
|
||||||
|
version "7.22.20"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz#96159db61d34a29dba454c959f5ae4a649ba9167"
|
||||||
|
integrity sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==
|
||||||
|
|
||||||
"@babel/helper-environment-visitor@^7.22.5":
|
"@babel/helper-environment-visitor@^7.22.5":
|
||||||
version "7.22.5"
|
version "7.22.5"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98"
|
resolved "https://registry.yarnpkg.com/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.5.tgz#f06dd41b7c1f44e1f8da6c4055b41ab3a09a7e98"
|
||||||
|
@ -164,6 +200,14 @@
|
||||||
"@babel/template" "^7.22.5"
|
"@babel/template" "^7.22.5"
|
||||||
"@babel/types" "^7.22.5"
|
"@babel/types" "^7.22.5"
|
||||||
|
|
||||||
|
"@babel/helper-function-name@^7.23.0":
|
||||||
|
version "7.23.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz#1f9a3cdbd5b2698a670c30d2735f9af95ed52759"
|
||||||
|
integrity sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/template" "^7.22.15"
|
||||||
|
"@babel/types" "^7.23.0"
|
||||||
|
|
||||||
"@babel/helper-hoist-variables@^7.22.5":
|
"@babel/helper-hoist-variables@^7.22.5":
|
||||||
version "7.22.5"
|
version "7.22.5"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
|
resolved "https://registry.yarnpkg.com/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz#c01a007dac05c085914e8fb652b339db50d823bb"
|
||||||
|
@ -196,6 +240,17 @@
|
||||||
"@babel/helper-split-export-declaration" "^7.22.6"
|
"@babel/helper-split-export-declaration" "^7.22.6"
|
||||||
"@babel/helper-validator-identifier" "^7.22.19"
|
"@babel/helper-validator-identifier" "^7.22.19"
|
||||||
|
|
||||||
|
"@babel/helper-module-transforms@^7.23.0":
|
||||||
|
version "7.23.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz#3ec246457f6c842c0aee62a01f60739906f7047e"
|
||||||
|
integrity sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/helper-environment-visitor" "^7.22.20"
|
||||||
|
"@babel/helper-module-imports" "^7.22.15"
|
||||||
|
"@babel/helper-simple-access" "^7.22.5"
|
||||||
|
"@babel/helper-split-export-declaration" "^7.22.6"
|
||||||
|
"@babel/helper-validator-identifier" "^7.22.20"
|
||||||
|
|
||||||
"@babel/helper-optimise-call-expression@^7.22.5":
|
"@babel/helper-optimise-call-expression@^7.22.5":
|
||||||
version "7.22.5"
|
version "7.22.5"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
|
resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz#f21531a9ccbff644fdd156b4077c16ff0c3f609e"
|
||||||
|
@ -257,6 +312,11 @@
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.19.tgz#2f34ab1e445f5b95e2e6edfe50ea2449e610583a"
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.19.tgz#2f34ab1e445f5b95e2e6edfe50ea2449e610583a"
|
||||||
integrity sha512-Tinq7ybnEPFFXhlYOYFiSjespWQk0dq2dRNAiMdRTOYQzEGqnnNyrTxPYHP5r6wGjlF1rFgABdDV0g8EwD6Qbg==
|
integrity sha512-Tinq7ybnEPFFXhlYOYFiSjespWQk0dq2dRNAiMdRTOYQzEGqnnNyrTxPYHP5r6wGjlF1rFgABdDV0g8EwD6Qbg==
|
||||||
|
|
||||||
|
"@babel/helper-validator-identifier@^7.22.20":
|
||||||
|
version "7.22.20"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz#c4ae002c61d2879e724581d96665583dbc1dc0e0"
|
||||||
|
integrity sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==
|
||||||
|
|
||||||
"@babel/helper-validator-option@^7.22.15":
|
"@babel/helper-validator-option@^7.22.15":
|
||||||
version "7.22.15"
|
version "7.22.15"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040"
|
resolved "https://registry.yarnpkg.com/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz#694c30dfa1d09a6534cdfcafbe56789d36aba040"
|
||||||
|
@ -280,6 +340,15 @@
|
||||||
"@babel/traverse" "^7.22.15"
|
"@babel/traverse" "^7.22.15"
|
||||||
"@babel/types" "^7.22.15"
|
"@babel/types" "^7.22.15"
|
||||||
|
|
||||||
|
"@babel/helpers@^7.23.0":
|
||||||
|
version "7.23.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.23.2.tgz#2832549a6e37d484286e15ba36a5330483cac767"
|
||||||
|
integrity sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==
|
||||||
|
dependencies:
|
||||||
|
"@babel/template" "^7.22.15"
|
||||||
|
"@babel/traverse" "^7.23.2"
|
||||||
|
"@babel/types" "^7.23.0"
|
||||||
|
|
||||||
"@babel/highlight@^7.22.13":
|
"@babel/highlight@^7.22.13":
|
||||||
version "7.22.13"
|
version "7.22.13"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.13.tgz#9cda839e5d3be9ca9e8c26b6dd69e7548f0cbf16"
|
resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.22.13.tgz#9cda839e5d3be9ca9e8c26b6dd69e7548f0cbf16"
|
||||||
|
@ -294,6 +363,11 @@
|
||||||
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95"
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.22.16.tgz#180aead7f247305cce6551bea2720934e2fa2c95"
|
||||||
integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==
|
integrity sha512-+gPfKv8UWeKKeJTUxe59+OobVcrYHETCsORl61EmSkmgymguYk/X5bp7GuUIXaFsc6y++v8ZxPsLSSuujqDphA==
|
||||||
|
|
||||||
|
"@babel/parser@^7.20.7", "@babel/parser@^7.23.0":
|
||||||
|
version "7.23.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.23.0.tgz#da950e622420bf96ca0d0f2909cdddac3acd8719"
|
||||||
|
integrity sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==
|
||||||
|
|
||||||
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15":
|
"@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@^7.22.15":
|
||||||
version "7.22.15"
|
version "7.22.15"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962"
|
resolved "https://registry.yarnpkg.com/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.22.15.tgz#02dc8a03f613ed5fdc29fb2f728397c78146c962"
|
||||||
|
@ -378,7 +452,7 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/helper-plugin-utils" "^7.8.0"
|
"@babel/helper-plugin-utils" "^7.8.0"
|
||||||
|
|
||||||
"@babel/plugin-syntax-jsx@^7.22.5":
|
"@babel/plugin-syntax-jsx@7", "@babel/plugin-syntax-jsx@^7.22.5":
|
||||||
version "7.22.5"
|
version "7.22.5"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
|
resolved "https://registry.yarnpkg.com/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz#a6b68e84fb76e759fc3b93e901876ffabbe1d918"
|
||||||
integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
|
integrity sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==
|
||||||
|
@ -1067,6 +1141,22 @@
|
||||||
"@babel/parser" "^7.22.15"
|
"@babel/parser" "^7.22.15"
|
||||||
"@babel/types" "^7.22.15"
|
"@babel/types" "^7.22.15"
|
||||||
|
|
||||||
|
"@babel/traverse@7", "@babel/traverse@^7.23.0", "@babel/traverse@^7.23.2":
|
||||||
|
version "7.23.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.23.2.tgz#329c7a06735e144a506bdb2cad0268b7f46f4ad8"
|
||||||
|
integrity sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/code-frame" "^7.22.13"
|
||||||
|
"@babel/generator" "^7.23.0"
|
||||||
|
"@babel/helper-environment-visitor" "^7.22.20"
|
||||||
|
"@babel/helper-function-name" "^7.23.0"
|
||||||
|
"@babel/helper-hoist-variables" "^7.22.5"
|
||||||
|
"@babel/helper-split-export-declaration" "^7.22.6"
|
||||||
|
"@babel/parser" "^7.23.0"
|
||||||
|
"@babel/types" "^7.23.0"
|
||||||
|
debug "^4.1.0"
|
||||||
|
globals "^11.1.0"
|
||||||
|
|
||||||
"@babel/traverse@^7.15.4", "@babel/traverse@^7.22.15", "@babel/traverse@^7.22.19":
|
"@babel/traverse@^7.15.4", "@babel/traverse@^7.22.15", "@babel/traverse@^7.22.19":
|
||||||
version "7.22.19"
|
version "7.22.19"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.19.tgz#bb2b12b7de9d7fec9e812ed89eea097b941954f8"
|
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.22.19.tgz#bb2b12b7de9d7fec9e812ed89eea097b941954f8"
|
||||||
|
@ -1083,7 +1173,7 @@
|
||||||
debug "^4.1.0"
|
debug "^4.1.0"
|
||||||
globals "^11.1.0"
|
globals "^11.1.0"
|
||||||
|
|
||||||
"@babel/types@^7.0.0", "@babel/types@^7.10.3", "@babel/types@^7.22.10", "@babel/types@^7.22.15", "@babel/types@^7.22.17", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.3.0", "@babel/types@^7.4.4", "@babel/types@^7.9.5":
|
"@babel/types@^7.0.0", "@babel/types@^7.10.3", "@babel/types@^7.22.10", "@babel/types@^7.22.15", "@babel/types@^7.22.17", "@babel/types@^7.22.19", "@babel/types@^7.22.5", "@babel/types@^7.3.0", "@babel/types@^7.4.4":
|
||||||
version "7.22.19"
|
version "7.22.19"
|
||||||
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.19.tgz#7425343253556916e440e662bb221a93ddb75684"
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.22.19.tgz#7425343253556916e440e662bb221a93ddb75684"
|
||||||
integrity sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==
|
integrity sha512-P7LAw/LbojPzkgp5oznjE6tQEIWbp4PkkfrZDINTro9zgBRtI324/EYsiSI7lhPbpIQ+DCeR2NNmMWANGGfZsg==
|
||||||
|
@ -1092,6 +1182,15 @@
|
||||||
"@babel/helper-validator-identifier" "^7.22.19"
|
"@babel/helper-validator-identifier" "^7.22.19"
|
||||||
to-fast-properties "^2.0.0"
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
|
"@babel/types@^7.12.11", "@babel/types@^7.20.7", "@babel/types@^7.23.0":
|
||||||
|
version "7.23.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.23.0.tgz#8c1f020c9df0e737e4e247c0619f58c68458aaeb"
|
||||||
|
integrity sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==
|
||||||
|
dependencies:
|
||||||
|
"@babel/helper-string-parser" "^7.22.5"
|
||||||
|
"@babel/helper-validator-identifier" "^7.22.20"
|
||||||
|
to-fast-properties "^2.0.0"
|
||||||
|
|
||||||
"@csstools/css-parser-algorithms@^2.3.1":
|
"@csstools/css-parser-algorithms@^2.3.1":
|
||||||
version "2.3.1"
|
version "2.3.1"
|
||||||
resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.1.tgz#ec4fc764ba45d2bb7ee2774667e056aa95003f3a"
|
resolved "https://registry.yarnpkg.com/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.3.1.tgz#ec4fc764ba45d2bb7ee2774667e056aa95003f3a"
|
||||||
|
@ -1434,6 +1533,11 @@
|
||||||
resolved "https://registry.yarnpkg.com/@fontsource/tajawal/-/tajawal-5.0.8.tgz#cd8a593ec5062b283b093b56ee5d38b6b97fa93d"
|
resolved "https://registry.yarnpkg.com/@fontsource/tajawal/-/tajawal-5.0.8.tgz#cd8a593ec5062b283b093b56ee5d38b6b97fa93d"
|
||||||
integrity sha512-KILlXB6B8YYcssz3pccPs/4s1XcXwTWogCtE4Ag3oTpK+81DIQLc2b9o77UiBP4yC17MmqeOp1lvoaJQP80RoA==
|
integrity sha512-KILlXB6B8YYcssz3pccPs/4s1XcXwTWogCtE4Ag3oTpK+81DIQLc2b9o77UiBP4yC17MmqeOp1lvoaJQP80RoA==
|
||||||
|
|
||||||
|
"@formatjs/cli@^6.2.0":
|
||||||
|
version "6.2.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/@formatjs/cli/-/cli-6.2.0.tgz#17fbd40753eeb1f6e79c3caf25845c3a9c044d90"
|
||||||
|
integrity sha512-sP04UpocRHYwSovUnunAZHYvCTVbNcaLtWKnr1lETGRUnRRQqnXy/3d2Ce271ELXmNUSde2eHRdu4rv2XaVaiQ==
|
||||||
|
|
||||||
"@formatjs/ecma402-abstract@1.17.2":
|
"@formatjs/ecma402-abstract@1.17.2":
|
||||||
version "1.17.2"
|
version "1.17.2"
|
||||||
resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.2.tgz#d197c6e26b9fd96ff7ba3b3a0cc2f25f1f2dcac3"
|
resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.17.2.tgz#d197c6e26b9fd96ff7ba3b3a0cc2f25f1f2dcac3"
|
||||||
|
@ -1442,20 +1546,6 @@
|
||||||
"@formatjs/intl-localematcher" "0.4.2"
|
"@formatjs/intl-localematcher" "0.4.2"
|
||||||
tslib "^2.4.0"
|
tslib "^2.4.0"
|
||||||
|
|
||||||
"@formatjs/ecma402-abstract@1.5.0":
|
|
||||||
version "1.5.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.5.0.tgz#759c8f11ff45e96f8fb58741e7fbdb41096d5ddd"
|
|
||||||
integrity sha512-wXv36yo+mfWllweN0Fq7sUs7PUiNopn7I0JpLTe3hGu6ZMR4CV7LqK1llhB18pndwpKoafQKb1et2DCJAOW20Q==
|
|
||||||
dependencies:
|
|
||||||
tslib "^2.0.1"
|
|
||||||
|
|
||||||
"@formatjs/ecma402-abstract@1.6.4":
|
|
||||||
version "1.6.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/@formatjs/ecma402-abstract/-/ecma402-abstract-1.6.4.tgz#cff5ef03837fb6bae70b16d04940213c17e87884"
|
|
||||||
integrity sha512-ukFjGD9dLsxcD9D5AEshJqQElPQeUAlTALT/lzIV6OcYojyuU81gw/uXDUOrs6XW79jtOJwQDkLqHbCJBJMOTw==
|
|
||||||
dependencies:
|
|
||||||
tslib "^2.1.0"
|
|
||||||
|
|
||||||
"@formatjs/fast-memoize@2.2.0":
|
"@formatjs/fast-memoize@2.2.0":
|
||||||
version "2.2.0"
|
version "2.2.0"
|
||||||
resolved "https://registry.yarnpkg.com/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz#33bd616d2e486c3e8ef4e68c99648c196887802b"
|
resolved "https://registry.yarnpkg.com/@formatjs/fast-memoize/-/fast-memoize-2.2.0.tgz#33bd616d2e486c3e8ef4e68c99648c196887802b"
|
||||||
|
@ -1518,14 +1608,18 @@
|
||||||
intl-messageformat "10.5.3"
|
intl-messageformat "10.5.3"
|
||||||
tslib "^2.4.0"
|
tslib "^2.4.0"
|
||||||
|
|
||||||
"@formatjs/ts-transformer@2.13.0":
|
"@formatjs/ts-transformer@3.13.5":
|
||||||
version "2.13.0"
|
version "3.13.5"
|
||||||
resolved "https://registry.yarnpkg.com/@formatjs/ts-transformer/-/ts-transformer-2.13.0.tgz#df47b35cdd209269d282a411f1646e0498aa8fdc"
|
resolved "https://registry.yarnpkg.com/@formatjs/ts-transformer/-/ts-transformer-3.13.5.tgz#8b4f5dcb02940e3f12b9f6c95b47f52777a9969d"
|
||||||
integrity sha512-mu7sHXZk1NWZrQ3eUqugpSYo8x5/tXkrI4uIbFqCEC0eNgQaIcoKgVeDFgDAcgG+cEme2atAUYSFF+DFWC4org==
|
integrity sha512-dh2mmZqkId0UeM+FQtmwugpMGvyzTBmXj5LjwD4M5OeSm62tcgkScjqeO/1EetaNS/JkTUBbsFBnHzaDzh3yOw==
|
||||||
dependencies:
|
dependencies:
|
||||||
intl-messageformat-parser "6.1.2"
|
"@formatjs/icu-messageformat-parser" "2.6.2"
|
||||||
tslib "^2.0.1"
|
"@types/json-stable-stringify" "^1.0.32"
|
||||||
typescript "^4.0"
|
"@types/node" "14 || 16 || 17"
|
||||||
|
chalk "^4.0.0"
|
||||||
|
json-stable-stringify "^1.0.1"
|
||||||
|
tslib "^2.4.0"
|
||||||
|
typescript "^4.7 || 5"
|
||||||
|
|
||||||
"@gamestdio/websocket@^0.3.2":
|
"@gamestdio/websocket@^0.3.2":
|
||||||
version "0.3.2"
|
version "0.3.2"
|
||||||
|
@ -2223,7 +2317,18 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc"
|
resolved "https://registry.yarnpkg.com/@types/aria-query/-/aria-query-5.0.1.tgz#3286741fb8f1e1580ac28784add4c7a1d49bdfbc"
|
||||||
integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==
|
integrity sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==
|
||||||
|
|
||||||
"@types/babel__core@^7.1.12", "@types/babel__core@^7.1.7":
|
"@types/babel__core@*", "@types/babel__core@^7.1.7":
|
||||||
|
version "7.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.20.2.tgz#215db4f4a35d710256579784a548907237728756"
|
||||||
|
integrity sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==
|
||||||
|
dependencies:
|
||||||
|
"@babel/parser" "^7.20.7"
|
||||||
|
"@babel/types" "^7.20.7"
|
||||||
|
"@types/babel__generator" "*"
|
||||||
|
"@types/babel__template" "*"
|
||||||
|
"@types/babel__traverse" "*"
|
||||||
|
|
||||||
|
"@types/babel__core@^7.1.12":
|
||||||
version "7.1.19"
|
version "7.1.19"
|
||||||
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460"
|
resolved "https://registry.yarnpkg.com/@types/babel__core/-/babel__core-7.1.19.tgz#7b497495b7d1b4812bdb9d02804d0576f43ee460"
|
||||||
integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==
|
integrity sha512-WEOTgRsbYkvA/KCsDwVEGkd7WAr1e3g31VHQ8zy5gul/V1qKullU/BU5I68X5v7V3GnB9eotmom4v5a5gjxorw==
|
||||||
|
@ -2241,6 +2346,13 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/types" "^7.0.0"
|
"@babel/types" "^7.0.0"
|
||||||
|
|
||||||
|
"@types/babel__helper-plugin-utils@^7.10.0":
|
||||||
|
version "7.10.1"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/babel__helper-plugin-utils/-/babel__helper-plugin-utils-7.10.1.tgz#d24424d9cc7785a64cb1c1b41fac5c2d37c92aac"
|
||||||
|
integrity sha512-6RaT7i6r2rT6ouIDZ2Cd6dPkq4wn1F8pLyDO+7wPVsL1dodvORiZORImaD6j9FBcHjPGuERE0hhtwkuPNXsO0A==
|
||||||
|
dependencies:
|
||||||
|
"@types/babel__core" "*"
|
||||||
|
|
||||||
"@types/babel__template@*":
|
"@types/babel__template@*":
|
||||||
version "7.4.1"
|
version "7.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969"
|
resolved "https://registry.yarnpkg.com/@types/babel__template/-/babel__template-7.4.1.tgz#3d1a48fd9d6c0edfd56f2ff578daed48f36c8969"
|
||||||
|
@ -2256,6 +2368,13 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/types" "^7.3.0"
|
"@babel/types" "^7.3.0"
|
||||||
|
|
||||||
|
"@types/babel__traverse@^7.1.7":
|
||||||
|
version "7.20.2"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/babel__traverse/-/babel__traverse-7.20.2.tgz#4ddf99d95cfdd946ff35d2b65c978d9c9bf2645d"
|
||||||
|
integrity sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/types" "^7.20.7"
|
||||||
|
|
||||||
"@types/cacheable-request@^6.0.1":
|
"@types/cacheable-request@^6.0.1":
|
||||||
version "6.0.3"
|
version "6.0.3"
|
||||||
resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183"
|
resolved "https://registry.yarnpkg.com/@types/cacheable-request/-/cacheable-request-6.0.3.tgz#a430b3260466ca7b5ca5bfd735693b36e7a9d183"
|
||||||
|
@ -2344,6 +2463,11 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85"
|
resolved "https://registry.yarnpkg.com/@types/json-schema/-/json-schema-7.0.13.tgz#02c24f4363176d2d18fc8b70b9f3c54aba178a85"
|
||||||
integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==
|
integrity sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==
|
||||||
|
|
||||||
|
"@types/json-stable-stringify@^1.0.32":
|
||||||
|
version "1.0.34"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/json-stable-stringify/-/json-stable-stringify-1.0.34.tgz#c0fb25e4d957e0ee2e497c1f553d7f8bb668fd75"
|
||||||
|
integrity sha512-s2cfwagOQAS8o06TcwKfr9Wx11dNGbH2E9vJz1cqV+a/LOyhWNLUNd6JSRYNzvB4d29UuJX2M0Dj9vE1T8fRXw==
|
||||||
|
|
||||||
"@types/json5@^0.0.29":
|
"@types/json5@^0.0.29":
|
||||||
version "0.0.29"
|
version "0.0.29"
|
||||||
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
|
resolved "https://registry.yarnpkg.com/@types/json5/-/json5-0.0.29.tgz#ee28707ae94e11d2b827bcbe5270bcea7f3e71ee"
|
||||||
|
@ -2378,6 +2502,11 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.23.tgz#3b41a6e643589ac6442bdbd7a4a3ded62f33f7da"
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.23.tgz#3b41a6e643589ac6442bdbd7a4a3ded62f33f7da"
|
||||||
integrity sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==
|
integrity sha512-UxDxWn7dl97rKVeVS61vErvw086aCYhDLyvRQZ5Rk65rZKepaFdm53GeqXaKBuOhED4e9uWq34IC3TdSdJJ2Gw==
|
||||||
|
|
||||||
|
"@types/node@14 || 16 || 17":
|
||||||
|
version "17.0.45"
|
||||||
|
resolved "https://registry.yarnpkg.com/@types/node/-/node-17.0.45.tgz#2c0fafd78705e7a18b7906b5201a522719dc5190"
|
||||||
|
integrity sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==
|
||||||
|
|
||||||
"@types/normalize-package-data@^2.4.0":
|
"@types/normalize-package-data@^2.4.0":
|
||||||
version "2.4.1"
|
version "2.4.1"
|
||||||
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301"
|
resolved "https://registry.yarnpkg.com/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz#d3357479a0fdfdd5907fe67e17e0a85c906e1301"
|
||||||
|
@ -2515,13 +2644,6 @@
|
||||||
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
|
resolved "https://registry.yarnpkg.com/@types/scheduler/-/scheduler-0.16.2.tgz#1a62f89525723dde24ba1b01b092bf5df8ad4d39"
|
||||||
integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
|
integrity sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==
|
||||||
|
|
||||||
"@types/schema-utils@^2.4.0":
|
|
||||||
version "2.4.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/@types/schema-utils/-/schema-utils-2.4.0.tgz#9983012045d541dcee053e685a27c9c87c840fcd"
|
|
||||||
integrity sha512-454hrj5gz/FXcUE20ygfEiN4DxZ1sprUo0V1gqIqkNZ/CzoEzAZEll2uxMsuyz6BYjiQan4Aa65xbTemfzW9hQ==
|
|
||||||
dependencies:
|
|
||||||
schema-utils "*"
|
|
||||||
|
|
||||||
"@types/semver@^7.3.9", "@types/semver@^7.5.0":
|
"@types/semver@^7.3.9", "@types/semver@^7.5.0":
|
||||||
version "7.5.2"
|
version "7.5.2"
|
||||||
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.2.tgz#31f6eec1ed7ec23f4f05608d3a2d381df041f564"
|
resolved "https://registry.yarnpkg.com/@types/semver/-/semver-7.5.2.tgz#31f6eec1ed7ec23f4f05608d3a2d381df041f564"
|
||||||
|
@ -3163,6 +3285,23 @@ axobject-query@^3.1.1:
|
||||||
dependencies:
|
dependencies:
|
||||||
dequal "^2.0.3"
|
dequal "^2.0.3"
|
||||||
|
|
||||||
|
babel-plugin-formatjs@^10.5.6:
|
||||||
|
version "10.5.6"
|
||||||
|
resolved "https://registry.yarnpkg.com/babel-plugin-formatjs/-/babel-plugin-formatjs-10.5.6.tgz#394908db02594ec34d4341fb38342302cd304a45"
|
||||||
|
integrity sha512-XlE8WHF/ZstS5K3ZCWb5nQ6e9u6KpNquTpHpjteGaMSguSjvbfNb7CsF4YHq1fTPBdHWNspA3qfAqMGgHBO4mw==
|
||||||
|
dependencies:
|
||||||
|
"@babel/core" "^7.10.4"
|
||||||
|
"@babel/helper-plugin-utils" "^7.10.4"
|
||||||
|
"@babel/plugin-syntax-jsx" "7"
|
||||||
|
"@babel/traverse" "7"
|
||||||
|
"@babel/types" "^7.12.11"
|
||||||
|
"@formatjs/icu-messageformat-parser" "2.6.2"
|
||||||
|
"@formatjs/ts-transformer" "3.13.5"
|
||||||
|
"@types/babel__core" "^7.1.7"
|
||||||
|
"@types/babel__helper-plugin-utils" "^7.10.0"
|
||||||
|
"@types/babel__traverse" "^7.1.7"
|
||||||
|
tslib "^2.4.0"
|
||||||
|
|
||||||
babel-plugin-macros@^3.0.1:
|
babel-plugin-macros@^3.0.1:
|
||||||
version "3.1.0"
|
version "3.1.0"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
|
resolved "https://registry.yarnpkg.com/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz#9ef6dc74deb934b4db344dc973ee851d148c50c1"
|
||||||
|
@ -3206,21 +3345,6 @@ babel-plugin-preval@^5.1.0:
|
||||||
babel-plugin-macros "^3.0.1"
|
babel-plugin-macros "^3.0.1"
|
||||||
require-from-string "^2.0.2"
|
require-from-string "^2.0.2"
|
||||||
|
|
||||||
babel-plugin-react-intl@^8.0.0:
|
|
||||||
version "8.2.25"
|
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-react-intl/-/babel-plugin-react-intl-8.2.25.tgz#7b6adaa2bc291ac7b9f87bf51f1c2ea8974ffe84"
|
|
||||||
integrity sha512-vqzRwqxMKHBKEpzWIIabxUXSBYd8urOkk49nQdzgEt55tLIuDc1XdHceeMNaeJt9VRLYZUiL5vpYpnvrntUNMQ==
|
|
||||||
dependencies:
|
|
||||||
"@babel/core" "^7.9.0"
|
|
||||||
"@babel/helper-plugin-utils" "^7.8.3"
|
|
||||||
"@babel/types" "^7.9.5"
|
|
||||||
"@formatjs/ts-transformer" "2.13.0"
|
|
||||||
"@types/babel__core" "^7.1.7"
|
|
||||||
"@types/schema-utils" "^2.4.0"
|
|
||||||
intl-messageformat-parser "6.1.2"
|
|
||||||
schema-utils "^3.0.0"
|
|
||||||
tslib "^2.0.1"
|
|
||||||
|
|
||||||
babel-plugin-transform-require-context@^0.1.1:
|
babel-plugin-transform-require-context@^0.1.1:
|
||||||
version "0.1.1"
|
version "0.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/babel-plugin-transform-require-context/-/babel-plugin-transform-require-context-0.1.1.tgz#319b545ca83080b5062776b46cc9b8b346fea9a6"
|
resolved "https://registry.yarnpkg.com/babel-plugin-transform-require-context/-/babel-plugin-transform-require-context-0.1.1.tgz#319b545ca83080b5062776b46cc9b8b346fea9a6"
|
||||||
|
@ -3637,6 +3761,11 @@ convert-source-map@^1.7.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
safe-buffer "~5.1.1"
|
safe-buffer "~5.1.1"
|
||||||
|
|
||||||
|
convert-source-map@^2.0.0:
|
||||||
|
version "2.0.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-2.0.0.tgz#4b560f649fc4e918dd0ab75cf4961e8bc882d82a"
|
||||||
|
integrity sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==
|
||||||
|
|
||||||
core-js-compat@^3.31.0:
|
core-js-compat@^3.31.0:
|
||||||
version "3.32.2"
|
version "3.32.2"
|
||||||
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.2.tgz#8047d1a8b3ac4e639f0d4f66d4431aa3b16e004c"
|
resolved "https://registry.yarnpkg.com/core-js-compat/-/core-js-compat-3.32.2.tgz#8047d1a8b3ac4e639f0d4f66d4431aa3b16e004c"
|
||||||
|
@ -4284,7 +4413,7 @@ es-to-primitive@^1.2.1:
|
||||||
is-date-object "^1.0.1"
|
is-date-object "^1.0.1"
|
||||||
is-symbol "^1.0.2"
|
is-symbol "^1.0.2"
|
||||||
|
|
||||||
esbuild@^0.18.10, esbuild@~0.18.20:
|
esbuild@^0.18.10:
|
||||||
version "0.18.20"
|
version "0.18.20"
|
||||||
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6"
|
resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.18.20.tgz#4709f5a34801b43b799ab7d6d82f7284a9b7a7a6"
|
||||||
integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==
|
integrity sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==
|
||||||
|
@ -4804,11 +4933,6 @@ fsevents@~2.3.2:
|
||||||
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
|
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.2.tgz#8a526f78b8fdf4623b709e0b975c52c24c02fd1a"
|
||||||
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
|
integrity sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==
|
||||||
|
|
||||||
fsevents@~2.3.3:
|
|
||||||
version "2.3.3"
|
|
||||||
resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-2.3.3.tgz#cac6407785d03675a2a5e1a5305c697b347d90d6"
|
|
||||||
integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
|
|
||||||
|
|
||||||
function-bind@^1.1.1:
|
function-bind@^1.1.1:
|
||||||
version "1.1.1"
|
version "1.1.1"
|
||||||
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
resolved "https://registry.yarnpkg.com/function-bind/-/function-bind-1.1.1.tgz#a56899d3ea3c9bab874bb9773b7c5ede92f4895d"
|
||||||
|
@ -4886,13 +5010,6 @@ get-tsconfig@^4.5.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
resolve-pkg-maps "^1.0.0"
|
resolve-pkg-maps "^1.0.0"
|
||||||
|
|
||||||
get-tsconfig@^4.7.2:
|
|
||||||
version "4.7.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/get-tsconfig/-/get-tsconfig-4.7.2.tgz#0dcd6fb330391d46332f4c6c1bf89a6514c2ddce"
|
|
||||||
integrity sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==
|
|
||||||
dependencies:
|
|
||||||
resolve-pkg-maps "^1.0.0"
|
|
||||||
|
|
||||||
glob-parent@^5.1.2, glob-parent@^6.0.1, glob-parent@^6.0.2, glob-parent@~5.1.2:
|
glob-parent@^5.1.2, glob-parent@^6.0.1, glob-parent@^6.0.2, glob-parent@~5.1.2:
|
||||||
version "6.0.2"
|
version "6.0.2"
|
||||||
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
|
resolved "https://registry.yarnpkg.com/glob-parent/-/glob-parent-6.0.2.tgz#6d237d99083950c79290f24c7642a3de9a28f9e3"
|
||||||
|
@ -5289,22 +5406,6 @@ intersection-observer@^0.12.2:
|
||||||
resolved "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.12.2.tgz#4a45349cc0cd91916682b1f44c28d7ec737dc375"
|
resolved "https://registry.yarnpkg.com/intersection-observer/-/intersection-observer-0.12.2.tgz#4a45349cc0cd91916682b1f44c28d7ec737dc375"
|
||||||
integrity sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==
|
integrity sha512-7m1vEcPCxXYI8HqnL8CKI6siDyD+eIWSwgB3DZA+ZTogxk9I4CDnj4wilt9x/+/QbHI4YG5YZNmC6458/e9Ktg==
|
||||||
|
|
||||||
intl-messageformat-parser@6.1.2:
|
|
||||||
version "6.1.2"
|
|
||||||
resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-6.1.2.tgz#28c65f3689f538e66c7cf628881548d6a82ff3c2"
|
|
||||||
integrity sha512-4GQDEPhl/ZMNDKwMsLqyw1LG2IAWjmLJXdmnRcHKeLQzpgtNYZI6lVw1279pqIkRk2MfKb9aDsVFzm565azK5A==
|
|
||||||
dependencies:
|
|
||||||
"@formatjs/ecma402-abstract" "1.5.0"
|
|
||||||
tslib "^2.0.1"
|
|
||||||
|
|
||||||
intl-messageformat-parser@^6.0.0:
|
|
||||||
version "6.4.4"
|
|
||||||
resolved "https://registry.yarnpkg.com/intl-messageformat-parser/-/intl-messageformat-parser-6.4.4.tgz#abbd94e96dc4ff41607376bfab024553450cc1e0"
|
|
||||||
integrity sha512-7AaFKNZEfzLQR6+jivOuz9e7yA8ka5KrmLebgY4QHTRLf8r64dp3LjnW98LkBWjdk8GK0sawD2dHDqW++A/pXA==
|
|
||||||
dependencies:
|
|
||||||
"@formatjs/ecma402-abstract" "1.6.4"
|
|
||||||
tslib "^2.1.0"
|
|
||||||
|
|
||||||
intl-messageformat@10.5.3:
|
intl-messageformat@10.5.3:
|
||||||
version "10.5.3"
|
version "10.5.3"
|
||||||
resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-10.5.3.tgz#db0779d4a1988faa2977d76574489b7a25f0d5d0"
|
resolved "https://registry.yarnpkg.com/intl-messageformat/-/intl-messageformat-10.5.3.tgz#db0779d4a1988faa2977d76574489b7a25f0d5d0"
|
||||||
|
@ -7860,7 +7961,16 @@ scheduler@^0.23.0:
|
||||||
dependencies:
|
dependencies:
|
||||||
loose-envify "^1.1.0"
|
loose-envify "^1.1.0"
|
||||||
|
|
||||||
schema-utils@*, schema-utils@^4.0.0:
|
schema-utils@^3.1.1, schema-utils@^3.2.0:
|
||||||
|
version "3.3.0"
|
||||||
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"
|
||||||
|
integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
|
||||||
|
dependencies:
|
||||||
|
"@types/json-schema" "^7.0.8"
|
||||||
|
ajv "^6.12.5"
|
||||||
|
ajv-keywords "^3.5.2"
|
||||||
|
|
||||||
|
schema-utils@^4.0.0:
|
||||||
version "4.0.0"
|
version "4.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7"
|
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-4.0.0.tgz#60331e9e3ae78ec5d16353c467c34b3a0a1d3df7"
|
||||||
integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==
|
integrity sha512-1edyXKgh6XnJsJSQ8mKWXnN/BVaIbFMLpouRUrXgVq7WYne5kw3MW7UPhO44uRXQSIpTSXoJbmrR2X0w9kUTyg==
|
||||||
|
@ -7870,15 +7980,6 @@ schema-utils@*, schema-utils@^4.0.0:
|
||||||
ajv-formats "^2.1.1"
|
ajv-formats "^2.1.1"
|
||||||
ajv-keywords "^5.0.0"
|
ajv-keywords "^5.0.0"
|
||||||
|
|
||||||
schema-utils@^3.0.0, schema-utils@^3.1.1, schema-utils@^3.2.0:
|
|
||||||
version "3.3.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/schema-utils/-/schema-utils-3.3.0.tgz#f50a88877c3c01652a15b622ae9e9795df7a60fe"
|
|
||||||
integrity sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==
|
|
||||||
dependencies:
|
|
||||||
"@types/json-schema" "^7.0.8"
|
|
||||||
ajv "^6.12.5"
|
|
||||||
ajv-keywords "^3.5.2"
|
|
||||||
|
|
||||||
scroll-behavior@^0.9.1:
|
scroll-behavior@^0.9.1:
|
||||||
version "0.9.12"
|
version "0.9.12"
|
||||||
resolved "https://registry.yarnpkg.com/scroll-behavior/-/scroll-behavior-0.9.12.tgz#1c22d273ec4ce6cd4714a443fead50227da9424c"
|
resolved "https://registry.yarnpkg.com/scroll-behavior/-/scroll-behavior-0.9.12.tgz#1c22d273ec4ce6cd4714a443fead50227da9424c"
|
||||||
|
@ -7996,14 +8097,6 @@ slice-ansi@^4.0.0:
|
||||||
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
|
resolved "https://registry.yarnpkg.com/source-map-js/-/source-map-js-1.0.2.tgz#adbc361d9c62df380125e7f161f71c826f1e490c"
|
||||||
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
integrity sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==
|
||||||
|
|
||||||
source-map-support@^0.5.21:
|
|
||||||
version "0.5.21"
|
|
||||||
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.21.tgz#04fe7c7f9e1ed2d662233c28cb2b35b9f63f6e4f"
|
|
||||||
integrity sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==
|
|
||||||
dependencies:
|
|
||||||
buffer-from "^1.0.0"
|
|
||||||
source-map "^0.6.0"
|
|
||||||
|
|
||||||
source-map-support@~0.5.20:
|
source-map-support@~0.5.20:
|
||||||
version "0.5.20"
|
version "0.5.20"
|
||||||
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9"
|
resolved "https://registry.yarnpkg.com/source-map-support/-/source-map-support-0.5.20.tgz#12166089f8f5e5e8c56926b377633392dd2cb6c9"
|
||||||
|
@ -8600,7 +8693,7 @@ tslib@^1.9.0, tslib@^1.9.3:
|
||||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-1.14.1.tgz#cf2d38bdc34a134bcaf1091c41f6619e2f672d00"
|
||||||
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
|
||||||
|
|
||||||
tslib@^2.0.1, tslib@^2.0.3, tslib@^2.1.0, tslib@^2.3.1:
|
tslib@^2.0.3, tslib@^2.3.1:
|
||||||
version "2.5.0"
|
version "2.5.0"
|
||||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.5.0.tgz#42bfed86f5787aeb41d031866c8f402429e0fddf"
|
||||||
integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
|
integrity sha512-336iVw3rtn2BUK7ORdIAHTyxHGRIHVReokCR3XjbckJMK7ms8FysBfhLR8IXnAgy7T0PTPNBWKiH514FOW/WSg==
|
||||||
|
@ -8610,17 +8703,6 @@ tslib@^2.4.0:
|
||||||
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
|
resolved "https://registry.yarnpkg.com/tslib/-/tslib-2.6.2.tgz#703ac29425e7b37cd6fd456e92404d46d1f3e4ae"
|
||||||
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
|
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
|
||||||
|
|
||||||
tsx@^3.13.0:
|
|
||||||
version "3.13.0"
|
|
||||||
resolved "https://registry.yarnpkg.com/tsx/-/tsx-3.13.0.tgz#f860e511b33fcb41d74df87d7ba239a0b4012dbb"
|
|
||||||
integrity sha512-rjmRpTu3as/5fjNq/kOkOtihgLxuIz6pbKdj9xwP4J5jOLkBxw/rjN5ANw+KyrrOXV5uB7HC8+SrrSJxT65y+A==
|
|
||||||
dependencies:
|
|
||||||
esbuild "~0.18.20"
|
|
||||||
get-tsconfig "^4.7.2"
|
|
||||||
source-map-support "^0.5.21"
|
|
||||||
optionalDependencies:
|
|
||||||
fsevents "~2.3.3"
|
|
||||||
|
|
||||||
twemoji-parser@14.0.0:
|
twemoji-parser@14.0.0:
|
||||||
version "14.0.0"
|
version "14.0.0"
|
||||||
resolved "https://registry.yarnpkg.com/twemoji-parser/-/twemoji-parser-14.0.0.tgz#13dabcb6d3a261d9efbf58a1666b182033bf2b62"
|
resolved "https://registry.yarnpkg.com/twemoji-parser/-/twemoji-parser-14.0.0.tgz#13dabcb6d3a261d9efbf58a1666b182033bf2b62"
|
||||||
|
@ -8711,10 +8793,10 @@ typed-array-length@^1.0.4:
|
||||||
for-each "^0.3.3"
|
for-each "^0.3.3"
|
||||||
is-typed-array "^1.1.9"
|
is-typed-array "^1.1.9"
|
||||||
|
|
||||||
typescript@^4.0:
|
"typescript@^4.7 || 5":
|
||||||
version "4.4.3"
|
version "5.2.2"
|
||||||
resolved "https://registry.yarnpkg.com/typescript/-/typescript-4.4.3.tgz#bdc5407caa2b109efd4f82fe130656f977a29324"
|
resolved "https://registry.yarnpkg.com/typescript/-/typescript-5.2.2.tgz#5ebb5e5a5b75f085f22bc3f8460fba308310fa78"
|
||||||
integrity sha512-4xfscpisVgqqDfPaJo5vkd+Qd/ItkoagnHpufr+i2QCHBsNYp+G7UAoyFl8aPtx879u38wPV65rZ8qbGZijalA==
|
integrity sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==
|
||||||
|
|
||||||
typescript@^5.1.3:
|
typescript@^5.1.3:
|
||||||
version "5.1.3"
|
version "5.1.3"
|
||||||
|
|
Loading…
Reference in New Issue