aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-12-22 12:23:52 -0700
committerLibravatar MCMXC <16797721+mcmxcdev@users.noreply.github.com>2023-12-22 12:23:52 -0700
commit2f449ce766ec9f6a8666523087ea90e3ca5858ee (patch)
treee86478b66e5986c412b44c7ce653c8876205f46a
parentMerge branch 'develop' into release (Bump to 6.6.0) (diff)
parent6.6.1-nightly.23 [skip ci] (diff)
downloadferdium-app-2f449ce766ec9f6a8666523087ea90e3ca5858ee.tar.gz
ferdium-app-2f449ce766ec9f6a8666523087ea90e3ca5858ee.tar.zst
ferdium-app-2f449ce766ec9f6a8666523087ea90e3ca5858ee.zip
New public release: 6.7.0v6.7.0
-rw-r--r--.all-contributorsrc10
-rw-r--r--.eslintrc.js1
-rw-r--r--.nvmrc2
-rw-r--r--.vscode/settings.json4
-rw-r--r--CONTRIBUTING.md4
-rw-r--r--Dockerfile2
-rw-r--r--README.md5
-rw-r--r--biome.json36
-rwxr-xr-xbuild-helpers/snap-hooks/configure7
-rw-r--r--crowdin.yml9
-rw-r--r--electron-builder.yml4
-rwxr-xr-xesbuild.mjs10
-rw-r--r--package.json132
-rw-r--r--pnpm-lock.yaml3186
m---------recipes0
-rw-r--r--src/api/server/ServerApi.ts3
-rw-r--r--src/components/auth/SetupAssistant.tsx7
-rw-r--r--src/components/auth/Welcome.tsx2
-rw-r--r--src/components/downloadManager/DownloadManagerDashboard.tsx16
-rw-r--r--src/components/layout/Sidebar.tsx1
-rw-r--r--src/components/services/content/ServiceView.tsx2
-rw-r--r--src/components/services/content/WebviewCrashHandler.tsx4
-rw-r--r--src/components/services/tabs/TabItem.tsx2
-rw-r--r--src/components/settings/services/ServiceItem.tsx30
-rw-r--r--src/components/settings/settings/EditSettingsForm.tsx2
-rw-r--r--src/components/ui/AppLoader/index.tsx2
-rw-r--r--src/components/ui/Link.tsx1
-rw-r--r--src/components/ui/Radio.tsx1
-rw-r--r--src/components/ui/SearchInput.tsx1
-rw-r--r--src/components/ui/button/index.tsx1
-rw-r--r--src/components/ui/input/index.tsx1
-rw-r--r--src/components/ui/input/scorePassword.ts2
-rw-r--r--src/components/ui/select/index.tsx22
-rw-r--r--src/components/ui/textarea/index.tsx2
-rw-r--r--src/components/ui/toggle/index.tsx1
-rw-r--r--src/containers/settings/EditServiceScreen.tsx8
-rw-r--r--src/features/quickSwitch/Component.tsx18
-rw-r--r--src/features/todos/store.ts2
-rw-r--r--src/features/workspaces/components/WorkspaceDrawerItem.tsx3
-rw-r--r--src/features/workspaces/components/WorkspaceItem.tsx1
-rw-r--r--src/helpers/service-helpers.ts2
-rw-r--r--src/helpers/translation-helpers.ts1
-rw-r--r--src/helpers/update-helpers.ts2
-rw-r--r--src/helpers/userAgent-helpers.ts2
-rw-r--r--src/i18n/locales/fr.json2
-rw-r--r--src/i18n/locales/ja.json5
-rw-r--r--src/i18n/locales/lv.json202
-rw-r--r--src/i18n/locales/nl.json18
-rw-r--r--src/index.ts8
-rw-r--r--src/internal-server/app/Controllers/Http/RecipeController.js9
-rw-r--r--src/internal-server/app/Controllers/Http/ServiceController.js7
-rw-r--r--src/internal-server/app/Controllers/Http/UserController.js1
-rw-r--r--src/internal-server/start/migrate.js3
-rw-r--r--src/lib/Tray.ts7
-rw-r--r--src/stores/AppStore.ts6
-rw-r--r--src/stores/ServicesStore.ts3
-rw-r--r--src/webview/contextMenuBuilder.ts7
57 files changed, 1954 insertions, 1878 deletions
diff --git a/.all-contributorsrc b/.all-contributorsrc
index 8cca81761..5412786b1 100644
--- a/.all-contributorsrc
+++ b/.all-contributorsrc
@@ -2955,6 +2955,16 @@
2955 "contributions": [ 2955 "contributions": [
2956 "code" 2956 "code"
2957 ] 2957 ]
2958 },
2959 {
2960 "login": "mcmxcdev",
2961 "name": "MCMXC",
2962 "avatar_url": "https://avatars.githubusercontent.com/u/16797721?v=4",
2963 "profile": "https://github.com/mcmxcdev",
2964 "contributions": [
2965 "code",
2966 "infra"
2967 ]
2958 } 2968 }
2959 ], 2969 ],
2960 "commitType": "docs" 2970 "commitType": "docs"
diff --git a/.eslintrc.js b/.eslintrc.js
index 94dcbf8e8..07c07b8dc 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -124,6 +124,7 @@ module.exports = {
124 allowChildren: false, 124 allowChildren: false,
125 }, 125 },
126 ], 126 ],
127 'jsx-a11y/control-has-associated-label': 0,
127 // eslint-plugin-unicorn 128 // eslint-plugin-unicorn
128 'unicorn/filename-case': 0, 129 'unicorn/filename-case': 0,
129 'unicorn/no-null': 0, 130 'unicorn/no-null': 0,
diff --git a/.nvmrc b/.nvmrc
index 02c8b485e..f3f52b42d 100644
--- a/.nvmrc
+++ b/.nvmrc
@@ -1 +1 @@
18.18.0 20.9.0
diff --git a/.vscode/settings.json b/.vscode/settings.json
index ac616e418..5060e4994 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -10,8 +10,8 @@
10 "editor.detectIndentation": false, 10 "editor.detectIndentation": false,
11 "editor.guides.bracketPairs": "active", 11 "editor.guides.bracketPairs": "active",
12 "editor.codeActionsOnSave": { 12 "editor.codeActionsOnSave": {
13 "source.fixAll": true, 13 "source.fixAll": "explicit",
14 "source.fixAll.eslint": true 14 "source.fixAll.eslint": "explicit"
15 }, 15 },
16 16
17 // "explorer.confirmDelete": false, 17 // "explorer.confirmDelete": false,
diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index ffda7acb9..97d464d5e 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -62,8 +62,8 @@ Currently, these are the combinations of system dependencies that work for MacOS
62# Note: 'jq' is not a required system dependency; its only here to show the combined output of versions needed 62# Note: 'jq' is not a required system dependency; its only here to show the combined output of versions needed
63$ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json 63$ jq --null-input '[inputs.engines] | add' < ./package.json < ./recipes/package.json
64{ 64{
65 "node": "18.18.0", 65 "node": "20.9.0",
66 "pnpm": "8.7.6" 66 "pnpm": "8.10.0"
67} 67}
68``` 68```
69 69
diff --git a/Dockerfile b/Dockerfile
index 0707a4771..806f10a2b 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,6 +1,6 @@
1# Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture 1# Note: Before running this file, you should have already cloned the git repo + submodules on the host machine. This is used when actively developing on your local machine, but you want to build for a different architecture
2 2
3FROM docker.io/library/node:18.18.0-buster as builder 3FROM docker.io/library/node:20.9.0-buster as builder
4 4
5ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share" 5ENV PATH="/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/snap/bin:/usr/local/lib:/usr/include:/usr/share"
6 6
diff --git a/README.md b/README.md
index 370ec4352..6f8fb8ca8 100644
--- a/README.md
+++ b/README.md
@@ -21,7 +21,7 @@
21 21
22[![Open Collective backers](https://img.shields.io/static/v1?label=Contribute%20on%20Open%20Collective&message=Donate%20to%20Ferdium&color=9cf&logo=open-collective)](https://opencollective.com/ferdium#category-CONTRIBUTE) 22[![Open Collective backers](https://img.shields.io/static/v1?label=Contribute%20on%20Open%20Collective&message=Donate%20to%20Ferdium&color=9cf&logo=open-collective)](https://opencollective.com/ferdium#category-CONTRIBUTE)
23<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section --> 23<!-- ALL-CONTRIBUTORS-BADGE:START - Do not remove or modify this section -->
24<a href='#contributors-'><img src='https://img.shields.io/badge/contributors-315-default.svg?logo=github&color=6c64e4' alt='Contributors'/></a> 24<a href='#contributors-'><img src='https://img.shields.io/badge/contributors-316-default.svg?logo=github&color=6c64e4' alt='Contributors'/></a>
25<!-- ALL-CONTRIBUTORS-BADGE:END --> 25<!-- ALL-CONTRIBUTORS-BADGE:END -->
26 26
27- [Ferdium](#ferdium) 27- [Ferdium](#ferdium)
@@ -494,6 +494,9 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
494 <td align="center" valign="top" width="14.28%"><a href='https://github.com/deadmeu' title='deadmeu: code'><img src='https://avatars.githubusercontent.com/u/12111013?v=4' alt='deadmeu' style='width:100px;'/></a></td> 494 <td align="center" valign="top" width="14.28%"><a href='https://github.com/deadmeu' title='deadmeu: code'><img src='https://avatars.githubusercontent.com/u/12111013?v=4' alt='deadmeu' style='width:100px;'/></a></td>
495 <td align="center" valign="top" width="14.28%"><a href='https://github.com/MentorPK' title='Pawel Kowalski: code'><img src='https://avatars.githubusercontent.com/u/25907418?v=4' alt='MentorPK' style='width:100px;'/></a></td> 495 <td align="center" valign="top" width="14.28%"><a href='https://github.com/MentorPK' title='Pawel Kowalski: code'><img src='https://avatars.githubusercontent.com/u/25907418?v=4' alt='MentorPK' style='width:100px;'/></a></td>
496 </tr> 496 </tr>
497 <tr>
498 <td align="center" valign="top" width="14.28%"><a href='https://github.com/mcmxcdev' title='MCMXC: code, infra'><img src='https://avatars.githubusercontent.com/u/16797721?v=4' alt='mcmxcdev' style='width:100px;'/></a></td>
499 </tr>
497 </tbody> 500 </tbody>
498</table> 501</table>
499 502
diff --git a/biome.json b/biome.json
new file mode 100644
index 000000000..0e7563225
--- /dev/null
+++ b/biome.json
@@ -0,0 +1,36 @@
1{
2 "$schema": "./node_modules/@biomejs/biome/configuration_schema.json",
3 "formatter": {
4 "enabled": false
5 },
6 "organizeImports": {
7 "enabled": false
8 },
9 "linter": {
10 "ignore": ["build", "coverage", "node_modules", "recipes", "*.json"],
11 "rules": {
12 "style": {
13 "noNonNullAssertion": "off",
14 "noInferrableTypes": "off",
15 "noParameterAssign": "off"
16 },
17 "complexity": {
18 "useLiteralKeys": "off",
19 "noUselessConstructor": "off",
20 "noForEach": "off",
21 "noBannedTypes": "off"
22 },
23 "suspicious": {
24 "noEmptyInterface": "off",
25 "noExplicitAny": "off",
26 "noArrayIndexKey": "off"
27 },
28 "performance": {
29 "noDelete": "off"
30 },
31 "a11y": {
32 "useKeyWithClickEvents": "off"
33 }
34 }
35 }
36}
diff --git a/build-helpers/snap-hooks/configure b/build-helpers/snap-hooks/configure
new file mode 100755
index 000000000..74f77985b
--- /dev/null
+++ b/build-helpers/snap-hooks/configure
@@ -0,0 +1,7 @@
1#!/usr/bin/env bash
2set -eu
3
4wayland_native="$(snapctl get wayland-native)"
5if [[ -z "$wayland_native" ]]; then
6 snapctl set wayland-native=true
7fi
diff --git a/crowdin.yml b/crowdin.yml
index 282023320..8795e5c56 100644
--- a/crowdin.yml
+++ b/crowdin.yml
@@ -1,12 +1,9 @@
1pull_request_title: "feat(i18n): new Crowdin updates" 1pull_request_title: 'feat(i18n): new Crowdin updates'
2commit_message: "feat(i18n): New Crowdin translations (%language%) [skip ci]" 2commit_message: 'feat(i18n): New Crowdin translations (%language%) [skip ci]'
3append_commit_message: false 3append_commit_message:
4
5files: 4files:
6 - source: /src/i18n/locales/en-US.json 5 - source: /src/i18n/locales/en-US.json
7 translation: /src/i18n/locales/%two_letters_code%.json 6 translation: /src/i18n/locales/%two_letters_code%.json
8 skip_untranslated_strings: true
9 automatically_fill_in_regional_dialects: true
10 languages_mapping: 7 languages_mapping:
11 two_letters_code: 8 two_letters_code:
12 nl-BE: nl-BE 9 nl-BE: nl-BE
diff --git a/electron-builder.yml b/electron-builder.yml
index 3ccb4d13a..a3b41090c 100644
--- a/electron-builder.yml
+++ b/electron-builder.yml
@@ -8,7 +8,11 @@ publish:
8 provider: github 8 provider: github
9 9
10snap: 10snap:
11 base: core22
11 plugs: ["default", "camera", "audio-record", "removable-media"] 12 plugs: ["default", "camera", "audio-record", "removable-media"]
13 allowNativeWayland: true
14 executableArgs: ["$(sh -c '[ \"$(snapctl get wayland-native)\" != \"false\" ] && echo --ozone-platform-hint=auto || true')"]
15 hooks: ./build-helpers/snap-hooks
12 publish: 16 publish:
13 provider: snapStore 17 provider: snapStore
14 description: 'Ferdium is your cross-platform messaging app / former heir to the throne of Austria-Hungary which brings your chat & messaging services together into one application. For enabling webcam access you need to connect "camera" plug to snap, and for microphone with PulseAudio the "audio-record" plug. This can be done in Snap GUI or via command: `snap connect ferdium:camera; snap connect ferdium:audio-record`.' 18 description: 'Ferdium is your cross-platform messaging app / former heir to the throne of Austria-Hungary which brings your chat & messaging services together into one application. For enabling webcam access you need to connect "camera" plug to snap, and for microphone with PulseAudio the "audio-record" plug. This can be done in Snap GUI or via command: `snap connect ferdium:camera; snap connect ferdium:audio-record`.'
diff --git a/esbuild.mjs b/esbuild.mjs
index ae940b586..b29f15621 100755
--- a/esbuild.mjs
+++ b/esbuild.mjs
@@ -4,11 +4,11 @@ import { sassPlugin } from 'esbuild-sass-plugin';
4import { copy } from 'esbuild-plugin-copy'; 4import { copy } from 'esbuild-plugin-copy';
5import glob from 'tiny-glob'; 5import glob from 'tiny-glob';
6import livereload from 'gulp-livereload'; 6import livereload from 'gulp-livereload';
7import * as fs from 'fs'; 7import * as fs from 'node:fs';
8import * as buildInfo from 'preval-build-info'; 8import * as buildInfo from 'preval-build-info';
9import fsPkg from 'fs-extra'; 9import fsPkg from 'fs-extra';
10import chalk from 'chalk'; 10import chalk from 'chalk';
11import { performance } from 'perf_hooks'; 11import { performance } from 'node:perf_hooks';
12import moment from 'moment'; 12import moment from 'moment';
13 13
14const { log } = console; 14const { log } = console;
@@ -80,11 +80,11 @@ const runEsbuild = async () => {
80 80
81 const myArgs = process.argv.slice(2); 81 const myArgs = process.argv.slice(2);
82 const isDev = myArgs.includes('--watch'); 82 const isDev = myArgs.includes('--watch');
83 log(chalk.blue(`Starting with args`), myArgs); 83 log(chalk.blue('Starting with args'), myArgs);
84 84
85 if (fs.existsSync(outDir)) { 85 if (fs.existsSync(outDir)) {
86 fs.rmSync(outDir, { force: true, recursive: true }); 86 fs.rmSync(outDir, { force: true, recursive: true });
87 log(chalk.blue(`Cleaning`), outDir); 87 log(chalk.blue('Cleaning'), outDir);
88 } 88 }
89 copyManualAssets(); 89 copyManualAssets();
90 90
@@ -112,7 +112,7 @@ const runEsbuild = async () => {
112 if (error) { 112 if (error) {
113 log(chalk.red(`watch build failed: ${error}`)); 113 log(chalk.red(`watch build failed: ${error}`));
114 } else { 114 } else {
115 log(chalk.blue(`watch build success:`), result); 115 log(chalk.blue('watch build success:'), result);
116 livereload.reload(); 116 livereload.reload();
117 } 117 }
118 }, 118 },
diff --git a/package.json b/package.json
index b6068e6c8..e704d9135 100644
--- a/package.json
+++ b/package.json
@@ -3,7 +3,7 @@
3 "productName": "Ferdium", 3 "productName": "Ferdium",
4 "desktopName": "ferdium.desktop", 4 "desktopName": "ferdium.desktop",
5 "appId": "org.ferdium.ferdium-app", 5 "appId": "org.ferdium.ferdium-app",
6 "version": "6.6.0", 6 "version": "6.7.0",
7 "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.", 7 "description": "Messaging app for WhatsApp, Slack, Telegram, Hangouts and many many more.",
8 "author": "Ferdium Contributors <hello@ferdium.org> (https://ferdium.org/)", 8 "author": "Ferdium Contributors <hello@ferdium.org> (https://ferdium.org/)",
9 "license": "Apache-2.0", 9 "license": "Apache-2.0",
@@ -13,15 +13,15 @@
13 "repository": "https://github.com/ferdium/ferdium-app.git", 13 "repository": "https://github.com/ferdium/ferdium-app.git",
14 "private": true, 14 "private": true,
15 "engines": { 15 "engines": {
16 "node": "18.18.0", 16 "node": "^20.9.0",
17 "pnpm": "8.7.6" 17 "pnpm": "^8.10.0"
18 }, 18 },
19 "engine-strict": true, 19 "engine-strict": true,
20 "volta": { 20 "volta": {
21 "node": "18.18.0", 21 "node": "20.9.0",
22 "pnpm": "8.7.6" 22 "pnpm": "8.10.0"
23 }, 23 },
24 "packageManager": "pnpm@8.7.6", 24 "packageManager": "pnpm@8.10.0",
25 "scripts": { 25 "scripts": {
26 "prepare": "is-ci || husky install", 26 "prepare": "is-ci || husky install",
27 "start": "electron ./build", 27 "start": "electron ./build",
@@ -32,15 +32,17 @@
32 "test": "jest", 32 "test": "jest",
33 "test:watch": "jest --watch", 33 "test:watch": "jest --watch",
34 "typecheck": "tsc --noEmit", 34 "typecheck": "tsc --noEmit",
35 "lint": "eslint \"{src,test,scripts}/**/*.{js,jsx,mjs,ts,tsx}\"", 35 "lint": "eslint \"{src,test,scripts}/**/*.{js,jsx,mjs,ts,tsx}\" --quiet",
36 "lint:fix": "eslint --fix \"{src,test,scripts}/**/*.{js,jsx,mjs,ts,tsx}\"", 36 "lint:fix": "pnpm lint --cache --fix",
37 "biome:check": "pnpm biome check .",
38 "biome:check:fix": "pnpm biome:check --apply-unsafe",
37 "extract": "formatjs extract \"src/**/*.{js,jsx,mjs,ts,tsx}\" --ignore=\"**/*.d.ts\" --out-file temp.json --flatten --id-interpolation-pattern '[sha512:contenthash:base64:6]' --preserve-whitespace", 39 "extract": "formatjs extract \"src/**/*.{js,jsx,mjs,ts,tsx}\" --ignore=\"**/*.d.ts\" --out-file temp.json --flatten --id-interpolation-pattern '[sha512:contenthash:base64:6]' --preserve-whitespace",
38 "compile": "formatjs compile \"temp.json\" --out-file src/i18n/locales/en-US.json", 40 "compile": "formatjs compile \"temp.json\" --out-file src/i18n/locales/en-US.json",
39 "manage-translations": "pnpm extract && pnpm compile && rimraf temp.json", 41 "manage-translations": "pnpm extract && pnpm compile && rimraf temp.json",
40 "build": "preval-build-info-cli && node esbuild.mjs && electron-builder", 42 "build": "preval-build-info-cli && node esbuild.mjs && electron-builder",
41 "contributors": "all-contributors", 43 "contributors": "all-contributors",
42 "reformat-files": "prettier --ignore-path .eslintignore --write \"**/*.{js,jsx,mjs,ts,tsx,scss}\"", 44 "reformat-files": "prettier --ignore-path .eslintignore --write --cache \"**/*.{js,jsx,mjs,ts,tsx,scss}\"",
43 "prepare-code": "pnpm typecheck && pnpm lint:fix && pnpm reformat-files && pnpm manage-translations", 45 "prepare-code": "pnpm typecheck && pnpm lint:fix && pnpm biome:check:fix && pnpm reformat-files && pnpm manage-translations",
44 "link-readme": "ts-node scripts/link-readme.ts", 46 "link-readme": "ts-node scripts/link-readme.ts",
45 "minify-images": "./scripts/minify-images.sh", 47 "minify-images": "./scripts/minify-images.sh",
46 "start:server": "ts-node src/internal-server/test.ts", 48 "start:server": "ts-node src/internal-server/test.ts",
@@ -61,31 +63,31 @@
61 "@adonisjs/session": "1.1.0", 63 "@adonisjs/session": "1.1.0",
62 "@adonisjs/shield": "1.1.0", 64 "@adonisjs/shield": "1.1.0",
63 "@adonisjs/validator": "5.1.0", 65 "@adonisjs/validator": "5.1.0",
64 "@electron/remote": "2.0.11", 66 "@electron/remote": "2.1.0",
65 "@emotion/react": "11.11.1", 67 "@emotion/react": "11.11.1",
66 "@emotion/styled": "11.11.0", 68 "@emotion/styled": "11.11.0",
67 "@krisdages/electron-process-manager": "3.0.0", 69 "@krisdages/electron-process-manager": "3.0.0",
68 "@mdi/js": "7.2.96", 70 "@mdi/js": "7.3.67",
69 "@mdi/react": "1.6.1", 71 "@mdi/react": "1.6.1",
70 "@mui/icons-material": "5.14.9", 72 "@mui/icons-material": "5.14.19",
71 "@mui/material": "5.14.10", 73 "@mui/material": "5.14.19",
72 "@octokit/core": "5.0.0", 74 "@octokit/core": "5.0.2",
73 "@sentry/electron": "4.10.0", 75 "@sentry/electron": "4.14.0",
74 "@superwf/mobx-react-router": "7.4.0", 76 "@superwf/mobx-react-router": "7.4.0",
75 "auto-launch": "5.0.6", 77 "auto-launch": "5.0.6",
76 "classnames": "2.3.2", 78 "classnames": "2.3.2",
77 "color": "4.2.3", 79 "color": "4.2.3",
78 "csstype": "3.1.2", 80 "csstype": "3.1.2",
79 "darkreader": "4.9.58", 81 "darkreader": "4.9.69",
80 "dbus-next": "0.10.2", 82 "dbus-next": "0.10.2",
81 "debug": "4.3.4", 83 "debug": "4.3.4",
82 "electron-dl": "3.5.0", 84 "electron-dl": "3.5.1",
83 "electron-find": "1.0.7", 85 "electron-find": "1.0.7",
84 "electron-react-titlebar": "1.2.1", 86 "electron-react-titlebar": "1.2.1",
85 "electron-updater": "6.1.5", 87 "electron-updater": "6.1.7",
86 "electron-window-state": "5.0.3", 88 "electron-window-state": "5.0.3",
87 "fast-folder-size": "2.2.0", 89 "fast-folder-size": "2.2.0",
88 "fs-extra": "11.1.1", 90 "fs-extra": "11.2.0",
89 "google-translate-api-x": "10.6.7", 91 "google-translate-api-x": "10.6.7",
90 "history": "5.3.0", 92 "history": "5.3.0",
91 "immutable": "4.3.2", 93 "immutable": "4.3.2",
@@ -96,13 +98,12 @@
96 "macos-version": "5.2.1", 98 "macos-version": "5.2.1",
97 "markdown-to-jsx": "7.3.2", 99 "markdown-to-jsx": "7.3.2",
98 "minimist": "1.2.8", 100 "minimist": "1.2.8",
99 "mobx": "6.10.2", 101 "mobx": "6.12.0",
100 "mobx-localstorage": "1.2.0", 102 "mobx-localstorage": "1.2.0",
101 "mobx-react": "7.6.0", 103 "mobx-react": "7.6.0",
102 "mobx-react-form": "6.3.7", 104 "mobx-react-form": "6.6.0",
103 "moment": "2.29.4", 105 "moment": "2.29.4",
104 "ms": "2.1.3", 106 "ms": "2.1.3",
105 "node-fetch": "2.6.11",
106 "normalize-url": "6.1.0", 107 "normalize-url": "6.1.0",
107 "os-name": "4.0.1", 108 "os-name": "4.0.1",
108 "pretty-bytes": "5.6.0", 109 "pretty-bytes": "5.6.0",
@@ -114,13 +115,13 @@
114 "react-dom": "18.2.0", 115 "react-dom": "18.2.0",
115 "react-dropzone": "14.2.3", 116 "react-dropzone": "14.2.3",
116 "react-electron-web-view": "2.0.1", 117 "react-electron-web-view": "2.0.1",
117 "react-intl": "6.4.7", 118 "react-intl": "6.5.5",
118 "react-jss": "10.10.0", 119 "react-jss": "10.10.0",
119 "react-loader-spinner": "5.4.5", 120 "react-loader-spinner": "5.4.5",
120 "react-modal": "3.16.1", 121 "react-modal": "3.16.1",
121 "react-router-dom": "6.15.0", 122 "react-router-dom": "6.20.1",
122 "react-sortable-hoc": "2.0.0", 123 "react-sortable-hoc": "2.0.0",
123 "react-tooltip": "5.21.4", 124 "react-tooltip": "5.24.0",
124 "react-topbar-progress-indicator": "4.1.1", 125 "react-topbar-progress-indicator": "4.1.1",
125 "react-transition-group": "4.4.5", 126 "react-transition-group": "4.4.5",
126 "route-parser": "0.0.5", 127 "route-parser": "0.0.5",
@@ -135,66 +136,67 @@
135 "ws": "8.14.2" 136 "ws": "8.14.2"
136 }, 137 },
137 "devDependencies": { 138 "devDependencies": {
139 "@biomejs/biome": "1.4.1",
138 "@commitlint/cli": "17.7.1", 140 "@commitlint/cli": "17.7.1",
139 "@commitlint/config-conventional": "17.7.0", 141 "@commitlint/config-conventional": "17.7.0",
140 "@electron/notarize": "1.2.3", 142 "@electron/notarize": "1.2.3",
141 "@formatjs/cli": "6.1.5", 143 "@formatjs/cli": "6.2.4",
142 "@jest/types": "29.6.3", 144 "@jest/types": "29.6.3",
143 "@types/auto-launch": "5.0.2", 145 "@types/auto-launch": "5.0.5",
144 "@types/color": "3.0.4", 146 "@types/color": "3.0.6",
145 "@types/fs-extra": "11.0.2", 147 "@types/fs-extra": "11.0.4",
146 "@types/jest": "29.5.5", 148 "@types/jest": "29.5.10",
147 "@types/lodash": "4.14.198", 149 "@types/lodash": "4.14.202",
148 "@types/minimist": "1.2.2", 150 "@types/minimist": "1.2.5",
149 "@types/ms": "0.7.31", 151 "@types/ms": "0.7.34",
150 "@types/node": "18.15.3", 152 "@types/node": "20.10.3",
151 "@types/prop-types": "15.7.6", 153 "@types/prop-types": "15.7.11",
152 "@types/react": "18.2.22", 154 "@types/react": "18.2.41",
153 "@types/react-color": "3.0.6", 155 "@types/react-color": "3.0.10",
154 "@types/react-dom": "18.2.7", 156 "@types/react-dom": "18.2.17",
155 "@types/react-loader": "2.4.5", 157 "@types/react-loader": "2.4.8",
156 "@types/react-transition-group": "4.4.6", 158 "@types/react-transition-group": "4.4.9",
157 "@types/route-parser": "0.1.4", 159 "@types/route-parser": "0.1.7",
158 "@types/semver": "7.5.2", 160 "@types/semver": "7.5.6",
159 "@types/tar": "6.1.6", 161 "@types/tar": "6.1.10",
160 "@types/uuid": "9.0.4", 162 "@types/uuid": "9.0.7",
161 "@types/validator": "13.11.1", 163 "@types/validator": "13.11.7",
162 "@typescript-eslint/eslint-plugin": "6.7.2", 164 "@typescript-eslint/eslint-plugin": "6.15.0",
163 "@typescript-eslint/parser": "6.7.2", 165 "@typescript-eslint/parser": "6.15.0",
164 "all-contributors-cli": "6.26.1", 166 "all-contributors-cli": "6.26.1",
165 "chalk": "5.3.0", 167 "chalk": "5.3.0",
166 "concurrently": "8.2.1", 168 "concurrently": "8.2.2",
167 "cross-env": "7.0.3", 169 "cross-env": "7.0.3",
168 "electron": "27.0.1", 170 "electron": "27.1.3",
169 "electron-builder": "24.7.0", 171 "electron-builder": "24.9.1",
170 "esbuild": "0.16.17", 172 "esbuild": "0.16.17",
171 "esbuild-plugin-copy": "2.1.1", 173 "esbuild-plugin-copy": "2.1.1",
172 "esbuild-runner": "2.2.2", 174 "esbuild-runner": "2.2.2",
173 "esbuild-sass-plugin": "2.15.0", 175 "esbuild-sass-plugin": "2.16.0",
174 "eslint": "8.49.0", 176 "eslint": "8.56.0",
175 "eslint-config-airbnb": "19.0.4", 177 "eslint-config-airbnb": "19.0.4",
176 "eslint-config-airbnb-typescript": "17.1.0", 178 "eslint-config-airbnb-typescript": "17.1.0",
177 "eslint-config-prettier": "8.8.0", 179 "eslint-config-prettier": "9.1.0",
178 "eslint-plugin-import": "2.28.1", 180 "eslint-plugin-import": "2.29.1",
179 "eslint-plugin-jest": "27.2.3", 181 "eslint-plugin-jest": "27.6.0",
180 "eslint-plugin-jsx-a11y": "6.7.1", 182 "eslint-plugin-jsx-a11y": "6.8.0",
181 "eslint-plugin-prettier": "5.0.0", 183 "eslint-plugin-prettier": "5.1.1",
182 "eslint-plugin-react": "7.33.2", 184 "eslint-plugin-react": "7.33.2",
183 "eslint-plugin-react-hooks": "4.6.0", 185 "eslint-plugin-react-hooks": "4.6.0",
184 "eslint-plugin-sonar": "0.12.0", 186 "eslint-plugin-sonar": "0.12.0",
185 "eslint-plugin-unicorn": "48.0.1", 187 "eslint-plugin-unicorn": "50.0.1",
186 "gulp-livereload": "4.0.2", 188 "gulp-livereload": "4.0.2",
187 "husky": "8.0.3", 189 "husky": "8.0.3",
188 "is-ci": "3.0.1", 190 "is-ci": "3.0.1",
189 "jest": "29.7.0", 191 "jest": "29.7.0",
190 "prettier": "3.0.3", 192 "prettier": "3.1.1",
191 "preval-build-info": "1.0.3", 193 "preval-build-info": "1.0.3",
192 "rimraf": "5.0.1", 194 "rimraf": "5.0.5",
193 "simple-git": "3.19.1", 195 "simple-git": "3.21.0",
194 "tiny-glob": "0.2.9", 196 "tiny-glob": "0.2.9",
195 "ts-node": "10.9.1", 197 "ts-node": "10.9.1",
196 "typescript": "5.2.2", 198 "typescript": "5.3.2",
197 "wait-on": "7.0.1" 199 "wait-on": "7.2.0"
198 }, 200 },
199 "pnpm": { 201 "pnpm": {
200 "overrides": { 202 "overrides": {
@@ -206,8 +208,6 @@
206 "esbuild-sass-plugin>esbuild": "^0.16.7", 208 "esbuild-sass-plugin>esbuild": "^0.16.7",
207 "react-electron-web-view>react": "^18.0.0", 209 "react-electron-web-view>react": "^18.0.0",
208 "react-electron-web-view>react-dom": "^18.0.0", 210 "react-electron-web-view>react-dom": "^18.0.0",
209 "react-loader>react": "^18.0.0",
210 "react-loader>react-dom": "^18.0.0",
211 "react-sortable-hoc>react": "^18.0.0", 211 "react-sortable-hoc>react": "^18.0.0",
212 "react-sortable-hoc>react-dom": "^18.0.0" 212 "react-sortable-hoc>react-dom": "^18.0.0"
213 } 213 }
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 9073974cb..4f3ed41bb 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -45,38 +45,38 @@ dependencies:
45 specifier: 5.1.0 45 specifier: 5.1.0
46 version: 5.1.0 46 version: 5.1.0
47 '@electron/remote': 47 '@electron/remote':
48 specifier: 2.0.11 48 specifier: 2.1.0
49 version: 2.0.11(electron@27.0.1) 49 version: 2.1.0(electron@27.1.3)
50 '@emotion/react': 50 '@emotion/react':
51 specifier: 11.11.1 51 specifier: 11.11.1
52 version: 11.11.1(@types/react@18.2.22)(react@18.2.0) 52 version: 11.11.1(@types/react@18.2.41)(react@18.2.0)
53 '@emotion/styled': 53 '@emotion/styled':
54 specifier: 11.11.0 54 specifier: 11.11.0
55 version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.22)(react@18.2.0) 55 version: 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.41)(react@18.2.0)
56 '@krisdages/electron-process-manager': 56 '@krisdages/electron-process-manager':
57 specifier: 3.0.0 57 specifier: 3.0.0
58 version: 3.0.0(@electron/remote@2.0.11)(electron@27.0.1)(rxjs@7.8.1) 58 version: 3.0.0(@electron/remote@2.1.0)(electron@27.1.3)(rxjs@7.8.1)
59 '@mdi/js': 59 '@mdi/js':
60 specifier: 7.2.96 60 specifier: 7.3.67
61 version: 7.2.96 61 version: 7.3.67
62 '@mdi/react': 62 '@mdi/react':
63 specifier: 1.6.1 63 specifier: 1.6.1
64 version: 1.6.1 64 version: 1.6.1
65 '@mui/icons-material': 65 '@mui/icons-material':
66 specifier: 5.14.9 66 specifier: 5.14.19
67 version: 5.14.9(@mui/material@5.14.10)(@types/react@18.2.22)(react@18.2.0) 67 version: 5.14.19(@mui/material@5.14.19)(@types/react@18.2.41)(react@18.2.0)
68 '@mui/material': 68 '@mui/material':
69 specifier: 5.14.10 69 specifier: 5.14.19
70 version: 5.14.10(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.22)(react-dom@18.2.0)(react@18.2.0) 70 version: 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.41)(react-dom@18.2.0)(react@18.2.0)
71 '@octokit/core': 71 '@octokit/core':
72 specifier: 5.0.0 72 specifier: 5.0.2
73 version: 5.0.0 73 version: 5.0.2
74 '@sentry/electron': 74 '@sentry/electron':
75 specifier: 4.10.0 75 specifier: 4.14.0
76 version: 4.10.0 76 version: 4.14.0
77 '@superwf/mobx-react-router': 77 '@superwf/mobx-react-router':
78 specifier: 7.4.0 78 specifier: 7.4.0
79 version: 7.4.0(history@5.3.0)(mobx@6.10.2)(path-to-regexp@6.2.1) 79 version: 7.4.0(history@5.3.0)(mobx@6.12.0)(path-to-regexp@6.2.1)
80 auto-launch: 80 auto-launch:
81 specifier: 5.0.6 81 specifier: 5.0.6
82 version: 5.0.6 82 version: 5.0.6
@@ -90,8 +90,8 @@ dependencies:
90 specifier: 3.1.2 90 specifier: 3.1.2
91 version: 3.1.2 91 version: 3.1.2
92 darkreader: 92 darkreader:
93 specifier: 4.9.58 93 specifier: 4.9.69
94 version: 4.9.58 94 version: 4.9.69
95 dbus-next: 95 dbus-next:
96 specifier: 0.10.2 96 specifier: 0.10.2
97 version: 0.10.2 97 version: 0.10.2
@@ -99,8 +99,8 @@ dependencies:
99 specifier: 4.3.4 99 specifier: 4.3.4
100 version: 4.3.4(supports-color@5.5.0) 100 version: 4.3.4(supports-color@5.5.0)
101 electron-dl: 101 electron-dl:
102 specifier: 3.5.0 102 specifier: 3.5.1
103 version: 3.5.0 103 version: 3.5.1
104 electron-find: 104 electron-find:
105 specifier: 1.0.7 105 specifier: 1.0.7
106 version: 1.0.7 106 version: 1.0.7
@@ -108,8 +108,8 @@ dependencies:
108 specifier: 1.2.1 108 specifier: 1.2.1
109 version: 1.2.1(react-dom@18.2.0)(react@18.2.0) 109 version: 1.2.1(react-dom@18.2.0)(react@18.2.0)
110 electron-updater: 110 electron-updater:
111 specifier: 6.1.5 111 specifier: 6.1.7
112 version: 6.1.5 112 version: 6.1.7
113 electron-window-state: 113 electron-window-state:
114 specifier: 5.0.3 114 specifier: 5.0.3
115 version: 5.0.3 115 version: 5.0.3
@@ -117,8 +117,8 @@ dependencies:
117 specifier: 2.2.0 117 specifier: 2.2.0
118 version: 2.2.0 118 version: 2.2.0
119 fs-extra: 119 fs-extra:
120 specifier: 11.1.1 120 specifier: 11.2.0
121 version: 11.1.1 121 version: 11.2.0
122 google-translate-api-x: 122 google-translate-api-x:
123 specifier: 10.6.7 123 specifier: 10.6.7
124 version: 10.6.7 124 version: 10.6.7
@@ -150,26 +150,23 @@ dependencies:
150 specifier: 1.2.8 150 specifier: 1.2.8
151 version: 1.2.8 151 version: 1.2.8
152 mobx: 152 mobx:
153 specifier: 6.10.2 153 specifier: 6.12.0
154 version: 6.10.2 154 version: 6.12.0
155 mobx-localstorage: 155 mobx-localstorage:
156 specifier: 1.2.0 156 specifier: 1.2.0
157 version: 1.2.0(mobx@6.10.2) 157 version: 1.2.0(mobx@6.12.0)
158 mobx-react: 158 mobx-react:
159 specifier: 7.6.0 159 specifier: 7.6.0
160 version: 7.6.0(mobx@6.10.2)(react-dom@18.2.0)(react@18.2.0) 160 version: 7.6.0(mobx@6.12.0)(react-dom@18.2.0)(react@18.2.0)
161 mobx-react-form: 161 mobx-react-form:
162 specifier: 6.3.7 162 specifier: 6.6.0
163 version: 6.3.7(mobx@6.10.2) 163 version: 6.6.0(mobx@6.12.0)
164 moment: 164 moment:
165 specifier: 2.29.4 165 specifier: 2.29.4
166 version: 2.29.4 166 version: 2.29.4
167 ms: 167 ms:
168 specifier: 2.1.3 168 specifier: 2.1.3
169 version: 2.1.3 169 version: 2.1.3
170 node-fetch:
171 specifier: 2.6.11
172 version: 2.6.11
173 normalize-url: 170 normalize-url:
174 specifier: 6.1.0 171 specifier: 6.1.0
175 version: 6.1.0 172 version: 6.1.0
@@ -204,26 +201,26 @@ dependencies:
204 specifier: 2.0.1 201 specifier: 2.0.1
205 version: 2.0.1(react-dom@18.2.0)(react@18.2.0) 202 version: 2.0.1(react-dom@18.2.0)(react@18.2.0)
206 react-intl: 203 react-intl:
207 specifier: 6.4.7 204 specifier: 6.5.5
208 version: 6.4.7(react@18.2.0)(typescript@5.2.2) 205 version: 6.5.5(react@18.2.0)(typescript@5.3.2)
209 react-jss: 206 react-jss:
210 specifier: 10.10.0 207 specifier: 10.10.0
211 version: 10.10.0(react@18.2.0) 208 version: 10.10.0(react@18.2.0)
212 react-loader-spinner: 209 react-loader-spinner:
213 specifier: 5.4.5 210 specifier: 5.4.5
214 version: 5.4.5(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0) 211 version: 5.4.5(@babel/core@7.23.6)(react-dom@18.2.0)(react@18.2.0)
215 react-modal: 212 react-modal:
216 specifier: 3.16.1 213 specifier: 3.16.1
217 version: 3.16.1(react-dom@18.2.0)(react@18.2.0) 214 version: 3.16.1(react-dom@18.2.0)(react@18.2.0)
218 react-router-dom: 215 react-router-dom:
219 specifier: 6.15.0 216 specifier: 6.20.1
220 version: 6.15.0(react-dom@18.2.0)(react@18.2.0) 217 version: 6.20.1(react-dom@18.2.0)(react@18.2.0)
221 react-sortable-hoc: 218 react-sortable-hoc:
222 specifier: 2.0.0 219 specifier: 2.0.0
223 version: 2.0.0(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0) 220 version: 2.0.0(prop-types@15.8.1)(react-dom@18.2.0)(react@18.2.0)
224 react-tooltip: 221 react-tooltip:
225 specifier: 5.21.4 222 specifier: 5.24.0
226 version: 5.21.4(react-dom@18.2.0)(react@18.2.0) 223 version: 5.24.0(react-dom@18.2.0)(react@18.2.0)
227 react-topbar-progress-indicator: 224 react-topbar-progress-indicator:
228 specifier: 4.1.1 225 specifier: 4.1.1
229 version: 4.1.1(react@18.2.0) 226 version: 4.1.1(react@18.2.0)
@@ -270,6 +267,9 @@ optionalDependencies:
270 version: 2.3.0 267 version: 2.3.0
271 268
272devDependencies: 269devDependencies:
270 '@biomejs/biome':
271 specifier: 1.4.1
272 version: 1.4.1
273 '@commitlint/cli': 273 '@commitlint/cli':
274 specifier: 17.7.1 274 specifier: 17.7.1
275 version: 17.7.1 275 version: 17.7.1
@@ -280,74 +280,74 @@ devDependencies:
280 specifier: 1.2.3 280 specifier: 1.2.3
281 version: 1.2.3 281 version: 1.2.3
282 '@formatjs/cli': 282 '@formatjs/cli':
283 specifier: 6.1.5 283 specifier: 6.2.4
284 version: 6.1.5 284 version: 6.2.4
285 '@jest/types': 285 '@jest/types':
286 specifier: 29.6.3 286 specifier: 29.6.3
287 version: 29.6.3 287 version: 29.6.3
288 '@types/auto-launch': 288 '@types/auto-launch':
289 specifier: 5.0.2 289 specifier: 5.0.5
290 version: 5.0.2 290 version: 5.0.5
291 '@types/color': 291 '@types/color':
292 specifier: 3.0.4 292 specifier: 3.0.6
293 version: 3.0.4 293 version: 3.0.6
294 '@types/fs-extra': 294 '@types/fs-extra':
295 specifier: 11.0.2 295 specifier: 11.0.4
296 version: 11.0.2 296 version: 11.0.4
297 '@types/jest': 297 '@types/jest':
298 specifier: 29.5.5 298 specifier: 29.5.10
299 version: 29.5.5 299 version: 29.5.10
300 '@types/lodash': 300 '@types/lodash':
301 specifier: 4.14.198 301 specifier: 4.14.202
302 version: 4.14.198 302 version: 4.14.202
303 '@types/minimist': 303 '@types/minimist':
304 specifier: 1.2.2 304 specifier: 1.2.5
305 version: 1.2.2 305 version: 1.2.5
306 '@types/ms': 306 '@types/ms':
307 specifier: 0.7.31 307 specifier: 0.7.34
308 version: 0.7.31 308 version: 0.7.34
309 '@types/node': 309 '@types/node':
310 specifier: 18.15.3 310 specifier: 20.10.3
311 version: 18.15.3 311 version: 20.10.3
312 '@types/prop-types': 312 '@types/prop-types':
313 specifier: 15.7.6 313 specifier: 15.7.11
314 version: 15.7.6 314 version: 15.7.11
315 '@types/react': 315 '@types/react':
316 specifier: 18.2.22 316 specifier: 18.2.41
317 version: 18.2.22 317 version: 18.2.41
318 '@types/react-color': 318 '@types/react-color':
319 specifier: 3.0.6 319 specifier: 3.0.10
320 version: 3.0.6 320 version: 3.0.10
321 '@types/react-dom': 321 '@types/react-dom':
322 specifier: 18.2.7 322 specifier: 18.2.17
323 version: 18.2.7 323 version: 18.2.17
324 '@types/react-loader': 324 '@types/react-loader':
325 specifier: 2.4.5 325 specifier: 2.4.8
326 version: 2.4.5 326 version: 2.4.8
327 '@types/react-transition-group': 327 '@types/react-transition-group':
328 specifier: 4.4.6 328 specifier: 4.4.9
329 version: 4.4.6 329 version: 4.4.9
330 '@types/route-parser': 330 '@types/route-parser':
331 specifier: 0.1.4 331 specifier: 0.1.7
332 version: 0.1.4 332 version: 0.1.7
333 '@types/semver': 333 '@types/semver':
334 specifier: 7.5.2 334 specifier: 7.5.6
335 version: 7.5.2 335 version: 7.5.6
336 '@types/tar': 336 '@types/tar':
337 specifier: 6.1.6 337 specifier: 6.1.10
338 version: 6.1.6 338 version: 6.1.10
339 '@types/uuid': 339 '@types/uuid':
340 specifier: 9.0.4 340 specifier: 9.0.7
341 version: 9.0.4 341 version: 9.0.7
342 '@types/validator': 342 '@types/validator':
343 specifier: 13.11.1 343 specifier: 13.11.7
344 version: 13.11.1 344 version: 13.11.7
345 '@typescript-eslint/eslint-plugin': 345 '@typescript-eslint/eslint-plugin':
346 specifier: 6.7.2 346 specifier: 6.15.0
347 version: 6.7.2(@typescript-eslint/parser@6.7.2)(eslint@8.49.0)(typescript@5.2.2) 347 version: 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.2)
348 '@typescript-eslint/parser': 348 '@typescript-eslint/parser':
349 specifier: 6.7.2 349 specifier: 6.15.0
350 version: 6.7.2(eslint@8.49.0)(typescript@5.2.2) 350 version: 6.15.0(eslint@8.56.0)(typescript@5.3.2)
351 all-contributors-cli: 351 all-contributors-cli:
352 specifier: 6.26.1 352 specifier: 6.26.1
353 version: 6.26.1 353 version: 6.26.1
@@ -355,17 +355,17 @@ devDependencies:
355 specifier: 5.3.0 355 specifier: 5.3.0
356 version: 5.3.0 356 version: 5.3.0
357 concurrently: 357 concurrently:
358 specifier: 8.2.1 358 specifier: 8.2.2
359 version: 8.2.1 359 version: 8.2.2
360 cross-env: 360 cross-env:
361 specifier: 7.0.3 361 specifier: 7.0.3
362 version: 7.0.3 362 version: 7.0.3
363 electron: 363 electron:
364 specifier: 27.0.1 364 specifier: 27.1.3
365 version: 27.0.1 365 version: 27.1.3
366 electron-builder: 366 electron-builder:
367 specifier: 24.7.0 367 specifier: 24.9.1
368 version: 24.7.0 368 version: 24.9.1
369 esbuild: 369 esbuild:
370 specifier: 0.16.17 370 specifier: 0.16.17
371 version: 0.16.17 371 version: 0.16.17
@@ -376,44 +376,44 @@ devDependencies:
376 specifier: 2.2.2 376 specifier: 2.2.2
377 version: 2.2.2(esbuild@0.16.17) 377 version: 2.2.2(esbuild@0.16.17)
378 esbuild-sass-plugin: 378 esbuild-sass-plugin:
379 specifier: 2.15.0 379 specifier: 2.16.0
380 version: 2.15.0(esbuild@0.16.17) 380 version: 2.16.0(esbuild@0.16.17)
381 eslint: 381 eslint:
382 specifier: 8.49.0 382 specifier: 8.56.0
383 version: 8.49.0 383 version: 8.56.0
384 eslint-config-airbnb: 384 eslint-config-airbnb:
385 specifier: 19.0.4 385 specifier: 19.0.4
386 version: 19.0.4(eslint-plugin-import@2.28.1)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@8.49.0) 386 version: 19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@8.56.0)
387 eslint-config-airbnb-typescript: 387 eslint-config-airbnb-typescript:
388 specifier: 17.1.0 388 specifier: 17.1.0
389 version: 17.1.0(@typescript-eslint/eslint-plugin@6.7.2)(@typescript-eslint/parser@6.7.2)(eslint-plugin-import@2.28.1)(eslint@8.49.0) 389 version: 17.1.0(@typescript-eslint/eslint-plugin@6.15.0)(@typescript-eslint/parser@6.15.0)(eslint-plugin-import@2.29.1)(eslint@8.56.0)
390 eslint-config-prettier: 390 eslint-config-prettier:
391 specifier: 8.8.0 391 specifier: 9.1.0
392 version: 8.8.0(eslint@8.49.0) 392 version: 9.1.0(eslint@8.56.0)
393 eslint-plugin-import: 393 eslint-plugin-import:
394 specifier: 2.28.1 394 specifier: 2.29.1
395 version: 2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.49.0) 395 version: 2.29.1(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)
396 eslint-plugin-jest: 396 eslint-plugin-jest:
397 specifier: 27.2.3 397 specifier: 27.6.0
398 version: 27.2.3(@typescript-eslint/eslint-plugin@6.7.2)(eslint@8.49.0)(jest@29.7.0)(typescript@5.2.2) 398 version: 27.6.0(@typescript-eslint/eslint-plugin@6.15.0)(eslint@8.56.0)(jest@29.7.0)(typescript@5.3.2)
399 eslint-plugin-jsx-a11y: 399 eslint-plugin-jsx-a11y:
400 specifier: 6.7.1 400 specifier: 6.8.0
401 version: 6.7.1(eslint@8.49.0) 401 version: 6.8.0(eslint@8.56.0)
402 eslint-plugin-prettier: 402 eslint-plugin-prettier:
403 specifier: 5.0.0 403 specifier: 5.1.1
404 version: 5.0.0(eslint-config-prettier@8.8.0)(eslint@8.49.0)(prettier@3.0.3) 404 version: 5.1.1(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.1.1)
405 eslint-plugin-react: 405 eslint-plugin-react:
406 specifier: 7.33.2 406 specifier: 7.33.2
407 version: 7.33.2(eslint@8.49.0) 407 version: 7.33.2(eslint@8.56.0)
408 eslint-plugin-react-hooks: 408 eslint-plugin-react-hooks:
409 specifier: 4.6.0 409 specifier: 4.6.0
410 version: 4.6.0(eslint@8.49.0) 410 version: 4.6.0(eslint@8.56.0)
411 eslint-plugin-sonar: 411 eslint-plugin-sonar:
412 specifier: 0.12.0 412 specifier: 0.12.0
413 version: 0.12.0(@babel/core@7.23.2)(@typescript-eslint/parser@6.7.2)(eslint@8.49.0)(typescript@5.2.2) 413 version: 0.12.0(@babel/core@7.23.6)(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.2)
414 eslint-plugin-unicorn: 414 eslint-plugin-unicorn:
415 specifier: 48.0.1 415 specifier: 50.0.1
416 version: 48.0.1(eslint@8.49.0) 416 version: 50.0.1(eslint@8.56.0)
417 gulp-livereload: 417 gulp-livereload:
418 specifier: 4.0.2 418 specifier: 4.0.2
419 version: 4.0.2 419 version: 4.0.2
@@ -425,36 +425,36 @@ devDependencies:
425 version: 3.0.1 425 version: 3.0.1
426 jest: 426 jest:
427 specifier: 29.7.0 427 specifier: 29.7.0
428 version: 29.7.0(@types/node@18.15.3)(ts-node@10.9.1) 428 version: 29.7.0(@types/node@20.10.3)(ts-node@10.9.1)
429 prettier: 429 prettier:
430 specifier: 3.0.3 430 specifier: 3.1.1
431 version: 3.0.3 431 version: 3.1.1
432 preval-build-info: 432 preval-build-info:
433 specifier: 1.0.3 433 specifier: 1.0.3
434 version: 1.0.3 434 version: 1.0.3
435 rimraf: 435 rimraf:
436 specifier: 5.0.1 436 specifier: 5.0.5
437 version: 5.0.1 437 version: 5.0.5
438 simple-git: 438 simple-git:
439 specifier: 3.19.1 439 specifier: 3.21.0
440 version: 3.19.1 440 version: 3.21.0
441 tiny-glob: 441 tiny-glob:
442 specifier: 0.2.9 442 specifier: 0.2.9
443 version: 0.2.9 443 version: 0.2.9
444 ts-node: 444 ts-node:
445 specifier: 10.9.1 445 specifier: 10.9.1
446 version: 10.9.1(@types/node@18.15.3)(typescript@5.2.2) 446 version: 10.9.1(@types/node@20.10.3)(typescript@5.3.2)
447 typescript: 447 typescript:
448 specifier: 5.2.2 448 specifier: 5.3.2
449 version: 5.2.2 449 version: 5.3.2
450 wait-on: 450 wait-on:
451 specifier: 7.0.1 451 specifier: 7.2.0
452 version: 7.0.1(debug@4.3.4) 452 version: 7.2.0(debug@4.3.4)
453 453
454packages: 454packages:
455 455
456 /7zip-bin@5.1.1: 456 /7zip-bin@5.2.0:
457 resolution: {integrity: sha512-sAP4LldeWNz0lNzmTird3uWfFDWWTeg6V/MsmyyLR9X1idwKBWIgt/ZvinqQldJm3LecKEs1emkbquO6PCiLVQ==} 457 resolution: {integrity: sha512-ukTPVhqG4jNzMro2qA9HSCSSVJN3aN7tlb+hfqYCt3ER0yWroeA2VR38MNrOHLQ/cVj+DaIMad0kFCtWWowh/A==}
458 dev: true 458 dev: true
459 459
460 /@aashutoshrathi/word-wrap@1.2.6: 460 /@aashutoshrathi/word-wrap@1.2.6:
@@ -665,32 +665,37 @@ packages:
665 '@jridgewell/gen-mapping': 0.3.3 665 '@jridgewell/gen-mapping': 0.3.3
666 '@jridgewell/trace-mapping': 0.3.20 666 '@jridgewell/trace-mapping': 0.3.20
667 667
668 /@babel/code-frame@7.22.13: 668 /@babel/code-frame@7.23.5:
669 resolution: {integrity: sha512-XktuhWlJ5g+3TJXc5upd9Ks1HutSArik6jf2eAjYFyIOf4ej3RN+184cZbzDvbPnuTJIUhPKKJE3cIsYTiAT3w==} 669 resolution: {integrity: sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==}
670 engines: {node: '>=6.9.0'} 670 engines: {node: '>=6.9.0'}
671 dependencies: 671 dependencies:
672 '@babel/highlight': 7.22.20 672 '@babel/highlight': 7.23.4
673 chalk: 2.4.2 673 chalk: 2.4.2
674 674
675 /@babel/compat-data@7.22.20: 675 /@babel/compat-data@7.22.20:
676 resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==} 676 resolution: {integrity: sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==}
677 engines: {node: '>=6.9.0'} 677 engines: {node: '>=6.9.0'}
678 dev: true
678 679
679 /@babel/core@7.22.20: 680 /@babel/compat-data@7.23.5:
680 resolution: {integrity: sha512-Y6jd1ahLubuYweD/zJH+vvOY141v4f9igNQAQ+MBgq9JlHS2iTsZKn1aMsb3vGccZsXI16VzTBw52Xx0DWmtnA==} 681 resolution: {integrity: sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==}
682 engines: {node: '>=6.9.0'}
683
684 /@babel/core@7.23.5:
685 resolution: {integrity: sha512-Cwc2XjUrG4ilcfOw4wBAK+enbdgwAcAJCfGUItPBKR7Mjw4aEfAFYrLxeRp4jWgtNIKn3n2AlBOfwwafl+42/g==}
681 engines: {node: '>=6.9.0'} 686 engines: {node: '>=6.9.0'}
682 dependencies: 687 dependencies:
683 '@ampproject/remapping': 2.2.1 688 '@ampproject/remapping': 2.2.1
684 '@babel/code-frame': 7.22.13 689 '@babel/code-frame': 7.23.5
685 '@babel/generator': 7.23.0 690 '@babel/generator': 7.23.5
686 '@babel/helper-compilation-targets': 7.22.15 691 '@babel/helper-compilation-targets': 7.22.15
687 '@babel/helper-module-transforms': 7.22.20(@babel/core@7.22.20) 692 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.5)
688 '@babel/helpers': 7.22.15 693 '@babel/helpers': 7.23.5
689 '@babel/parser': 7.23.0 694 '@babel/parser': 7.23.5
690 '@babel/template': 7.22.15 695 '@babel/template': 7.22.15
691 '@babel/traverse': 7.23.2(supports-color@5.5.0) 696 '@babel/traverse': 7.23.5(supports-color@5.5.0)
692 '@babel/types': 7.23.0 697 '@babel/types': 7.23.5
693 convert-source-map: 1.9.0 698 convert-source-map: 2.0.0
694 debug: 4.3.4(supports-color@5.5.0) 699 debug: 4.3.4(supports-color@5.5.0)
695 gensync: 1.0.0-beta.2 700 gensync: 1.0.0-beta.2
696 json5: 2.2.3 701 json5: 2.2.3
@@ -699,20 +704,20 @@ packages:
699 - supports-color 704 - supports-color
700 dev: true 705 dev: true
701 706
702 /@babel/core@7.23.2: 707 /@babel/core@7.23.6:
703 resolution: {integrity: sha512-n7s51eWdaWZ3vGT2tD4T7J6eJs3QoBXydv7vkUM06Bf1cbVD2Kc2UrkzhiQwobfV7NwOnQXYL7UBJ5VPU+RGoQ==} 708 resolution: {integrity: sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==}
704 engines: {node: '>=6.9.0'} 709 engines: {node: '>=6.9.0'}
705 dependencies: 710 dependencies:
706 '@ampproject/remapping': 2.2.1 711 '@ampproject/remapping': 2.2.1
707 '@babel/code-frame': 7.22.13 712 '@babel/code-frame': 7.23.5
708 '@babel/generator': 7.23.0 713 '@babel/generator': 7.23.6
709 '@babel/helper-compilation-targets': 7.22.15 714 '@babel/helper-compilation-targets': 7.23.6
710 '@babel/helper-module-transforms': 7.23.0(@babel/core@7.23.2) 715 '@babel/helper-module-transforms': 7.23.3(@babel/core@7.23.6)
711 '@babel/helpers': 7.23.2 716 '@babel/helpers': 7.23.6
712 '@babel/parser': 7.23.0 717 '@babel/parser': 7.23.6
713 '@babel/template': 7.22.15 718 '@babel/template': 7.22.15
714 '@babel/traverse': 7.23.2(supports-color@5.5.0) 719 '@babel/traverse': 7.23.6
715 '@babel/types': 7.23.0 720 '@babel/types': 7.23.6
716 convert-source-map: 2.0.0 721 convert-source-map: 2.0.0
717 debug: 4.3.4(supports-color@5.5.0) 722 debug: 4.3.4(supports-color@5.5.0)
718 gensync: 1.0.0-beta.2 723 gensync: 1.0.0-beta.2
@@ -721,25 +726,34 @@ packages:
721 transitivePeerDependencies: 726 transitivePeerDependencies:
722 - supports-color 727 - supports-color
723 728
724 /@babel/eslint-parser@7.22.9(@babel/core@7.23.2)(eslint@8.49.0): 729 /@babel/eslint-parser@7.22.9(@babel/core@7.23.6)(eslint@8.56.0):
725 resolution: {integrity: sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==} 730 resolution: {integrity: sha512-xdMkt39/nviO/4vpVdrEYPwXCsYIXSSAr6mC7WQsNIlGnuxKyKE7GZjalcnbSWiC4OXGNNN3UQPeHfjSC6sTDA==}
726 engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0} 731 engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
727 peerDependencies: 732 peerDependencies:
728 '@babel/core': '>=7.11.0' 733 '@babel/core': '>=7.11.0'
729 eslint: ^7.5.0 || ^8.0.0 734 eslint: ^7.5.0 || ^8.0.0
730 dependencies: 735 dependencies:
731 '@babel/core': 7.23.2 736 '@babel/core': 7.23.6
732 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1 737 '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
733 eslint: 8.49.0 738 eslint: 8.56.0
734 eslint-visitor-keys: 2.1.0 739 eslint-visitor-keys: 2.1.0
735 semver: 6.3.1 740 semver: 6.3.1
736 dev: true 741 dev: true
737 742
738 /@babel/generator@7.23.0: 743 /@babel/generator@7.23.5:
739 resolution: {integrity: sha512-lN85QRR+5IbYrMWM6Y4pE/noaQtg4pNiqeNGX60eqOfo6gtEj6uw/JagelB8vVztSd7R6M5n1+PQkDbHbBRU4g==} 744 resolution: {integrity: sha512-BPssCHrBD+0YrxviOa3QzpqwhNIXKEtOa2jQrm4FlmkC2apYgRnQcmPWiGZDlGxiNtltnUFolMe8497Esry+jA==}
745 engines: {node: '>=6.9.0'}
746 dependencies:
747 '@babel/types': 7.23.5
748 '@jridgewell/gen-mapping': 0.3.3
749 '@jridgewell/trace-mapping': 0.3.20
750 jsesc: 2.5.2
751
752 /@babel/generator@7.23.6:
753 resolution: {integrity: sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==}
740 engines: {node: '>=6.9.0'} 754 engines: {node: '>=6.9.0'}
741 dependencies: 755 dependencies:
742 '@babel/types': 7.23.0 756 '@babel/types': 7.23.6
743 '@jridgewell/gen-mapping': 0.3.3 757 '@jridgewell/gen-mapping': 0.3.3
744 '@jridgewell/trace-mapping': 0.3.20 758 '@jridgewell/trace-mapping': 0.3.20
745 jsesc: 2.5.2 759 jsesc: 2.5.2
@@ -748,7 +762,7 @@ packages:
748 resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==} 762 resolution: {integrity: sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==}
749 engines: {node: '>=6.9.0'} 763 engines: {node: '>=6.9.0'}
750 dependencies: 764 dependencies:
751 '@babel/types': 7.23.0 765 '@babel/types': 7.23.5
752 dev: false 766 dev: false
753 767
754 /@babel/helper-compilation-targets@7.22.15: 768 /@babel/helper-compilation-targets@7.22.15:
@@ -760,6 +774,17 @@ packages:
760 browserslist: 4.21.10 774 browserslist: 4.21.10
761 lru-cache: 5.1.1 775 lru-cache: 5.1.1
762 semver: 6.3.1 776 semver: 6.3.1
777 dev: true
778
779 /@babel/helper-compilation-targets@7.23.6:
780 resolution: {integrity: sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==}
781 engines: {node: '>=6.9.0'}
782 dependencies:
783 '@babel/compat-data': 7.23.5
784 '@babel/helper-validator-option': 7.23.5
785 browserslist: 4.22.2
786 lru-cache: 5.1.1
787 semver: 6.3.1
763 788
764 /@babel/helper-environment-visitor@7.22.20: 789 /@babel/helper-environment-visitor@7.22.20:
765 resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==} 790 resolution: {integrity: sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==}
@@ -770,27 +795,27 @@ packages:
770 engines: {node: '>=6.9.0'} 795 engines: {node: '>=6.9.0'}
771 dependencies: 796 dependencies:
772 '@babel/template': 7.22.15 797 '@babel/template': 7.22.15
773 '@babel/types': 7.23.0 798 '@babel/types': 7.23.5
774 799
775 /@babel/helper-hoist-variables@7.22.5: 800 /@babel/helper-hoist-variables@7.22.5:
776 resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==} 801 resolution: {integrity: sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==}
777 engines: {node: '>=6.9.0'} 802 engines: {node: '>=6.9.0'}
778 dependencies: 803 dependencies:
779 '@babel/types': 7.23.0 804 '@babel/types': 7.23.5
780 805
781 /@babel/helper-module-imports@7.22.15: 806 /@babel/helper-module-imports@7.22.15:
782 resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==} 807 resolution: {integrity: sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==}
783 engines: {node: '>=6.9.0'} 808 engines: {node: '>=6.9.0'}
784 dependencies: 809 dependencies:
785 '@babel/types': 7.23.0 810 '@babel/types': 7.23.5
786 811
787 /@babel/helper-module-transforms@7.22.20(@babel/core@7.22.20): 812 /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.5):
788 resolution: {integrity: sha512-dLT7JVWIUUxKOs1UnJUBR3S70YK+pKX6AbJgB2vMIvEkZkrfJDbYDJesnPshtKV4LhDOR3Oc5YULeDizRek+5A==} 813 resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
789 engines: {node: '>=6.9.0'} 814 engines: {node: '>=6.9.0'}
790 peerDependencies: 815 peerDependencies:
791 '@babel/core': ^7.0.0 816 '@babel/core': ^7.0.0
792 dependencies: 817 dependencies:
793 '@babel/core': 7.22.20 818 '@babel/core': 7.23.5
794 '@babel/helper-environment-visitor': 7.22.20 819 '@babel/helper-environment-visitor': 7.22.20
795 '@babel/helper-module-imports': 7.22.15 820 '@babel/helper-module-imports': 7.22.15
796 '@babel/helper-simple-access': 7.22.5 821 '@babel/helper-simple-access': 7.22.5
@@ -798,295 +823,295 @@ packages:
798 '@babel/helper-validator-identifier': 7.22.20 823 '@babel/helper-validator-identifier': 7.22.20
799 dev: true 824 dev: true
800 825
801 /@babel/helper-module-transforms@7.23.0(@babel/core@7.23.2): 826 /@babel/helper-module-transforms@7.23.3(@babel/core@7.23.6):
802 resolution: {integrity: sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==} 827 resolution: {integrity: sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==}
803 engines: {node: '>=6.9.0'} 828 engines: {node: '>=6.9.0'}
804 peerDependencies: 829 peerDependencies:
805 '@babel/core': ^7.0.0 830 '@babel/core': ^7.0.0
806 dependencies: 831 dependencies:
807 '@babel/core': 7.23.2 832 '@babel/core': 7.23.6
808 '@babel/helper-environment-visitor': 7.22.20 833 '@babel/helper-environment-visitor': 7.22.20
809 '@babel/helper-module-imports': 7.22.15 834 '@babel/helper-module-imports': 7.22.15
810 '@babel/helper-simple-access': 7.22.5 835 '@babel/helper-simple-access': 7.22.5
811 '@babel/helper-split-export-declaration': 7.22.6 836 '@babel/helper-split-export-declaration': 7.22.6
812 '@babel/helper-validator-identifier': 7.22.20 837 '@babel/helper-validator-identifier': 7.22.20
813 838
814 /@babel/helper-plugin-utils@7.20.2:
815 resolution: {integrity: sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==}
816 engines: {node: '>=6.9.0'}
817 dev: true
818
819 /@babel/helper-plugin-utils@7.22.5: 839 /@babel/helper-plugin-utils@7.22.5:
820 resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==} 840 resolution: {integrity: sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==}
821 engines: {node: '>=6.9.0'} 841 engines: {node: '>=6.9.0'}
822 dev: false
823 842
824 /@babel/helper-simple-access@7.22.5: 843 /@babel/helper-simple-access@7.22.5:
825 resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==} 844 resolution: {integrity: sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==}
826 engines: {node: '>=6.9.0'} 845 engines: {node: '>=6.9.0'}
827 dependencies: 846 dependencies:
828 '@babel/types': 7.23.0 847 '@babel/types': 7.23.5
829 848
830 /@babel/helper-split-export-declaration@7.22.6: 849 /@babel/helper-split-export-declaration@7.22.6:
831 resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==} 850 resolution: {integrity: sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==}
832 engines: {node: '>=6.9.0'} 851 engines: {node: '>=6.9.0'}
833 dependencies: 852 dependencies:
834 '@babel/types': 7.23.0 853 '@babel/types': 7.23.5
835 854
836 /@babel/helper-string-parser@7.22.5: 855 /@babel/helper-string-parser@7.23.4:
837 resolution: {integrity: sha512-mM4COjgZox8U+JcXQwPijIZLElkgEpO5rsERVDJTc2qfCDfERyob6k5WegS14SX18IIjv+XD+GrqNumY5JRCDw==} 856 resolution: {integrity: sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==}
838 engines: {node: '>=6.9.0'} 857 engines: {node: '>=6.9.0'}
839 858
840 /@babel/helper-validator-identifier@7.22.20: 859 /@babel/helper-validator-identifier@7.22.20:
841 resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==} 860 resolution: {integrity: sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==}
842 engines: {node: '>=6.9.0'} 861 engines: {node: '>=6.9.0'}
843 862
844 /@babel/helper-validator-identifier@7.22.5: 863 /@babel/helper-validator-option@7.22.15:
845 resolution: {integrity: sha512-aJXu+6lErq8ltp+JhkJUfk1MTGyuA4v7f3pA+BJ5HLfNC6nAQ0Cpi9uOquUj8Hehg0aUiHzWQbOVJGao6ztBAQ==} 864 resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==}
846 engines: {node: '>=6.9.0'} 865 engines: {node: '>=6.9.0'}
847 dev: true 866 dev: true
848 867
849 /@babel/helper-validator-option@7.22.15: 868 /@babel/helper-validator-option@7.23.5:
850 resolution: {integrity: sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==} 869 resolution: {integrity: sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==}
851 engines: {node: '>=6.9.0'} 870 engines: {node: '>=6.9.0'}
852 871
853 /@babel/helpers@7.22.15: 872 /@babel/helpers@7.23.5:
854 resolution: {integrity: sha512-7pAjK0aSdxOwR+CcYAqgWOGy5dcfvzsTIfFTb2odQqW47MDfv14UaJDY6eng8ylM2EaeKXdxaSWESbkmaQHTmw==} 873 resolution: {integrity: sha512-oO7us8FzTEsG3U6ag9MfdF1iA/7Z6dz+MtFhifZk8C8o453rGJFFWUP1t+ULM9TUIAzC9uxXEiXjOiVMyd7QPg==}
855 engines: {node: '>=6.9.0'} 874 engines: {node: '>=6.9.0'}
856 dependencies: 875 dependencies:
857 '@babel/template': 7.22.15 876 '@babel/template': 7.22.15
858 '@babel/traverse': 7.23.2(supports-color@5.5.0) 877 '@babel/traverse': 7.23.5(supports-color@5.5.0)
859 '@babel/types': 7.23.0 878 '@babel/types': 7.23.5
860 transitivePeerDependencies: 879 transitivePeerDependencies:
861 - supports-color 880 - supports-color
862 dev: true 881 dev: true
863 882
864 /@babel/helpers@7.23.2: 883 /@babel/helpers@7.23.6:
865 resolution: {integrity: sha512-lzchcp8SjTSVe/fPmLwtWVBFC7+Tbn8LGHDVfDp9JGxpAY5opSaEFgt8UQvrnECWOTdji2mOWMz1rOhkHscmGQ==} 884 resolution: {integrity: sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==}
866 engines: {node: '>=6.9.0'} 885 engines: {node: '>=6.9.0'}
867 dependencies: 886 dependencies:
868 '@babel/template': 7.22.15 887 '@babel/template': 7.22.15
869 '@babel/traverse': 7.23.2(supports-color@5.5.0) 888 '@babel/traverse': 7.23.6
870 '@babel/types': 7.23.0 889 '@babel/types': 7.23.6
871 transitivePeerDependencies: 890 transitivePeerDependencies:
872 - supports-color 891 - supports-color
873 892
874 /@babel/highlight@7.22.20: 893 /@babel/highlight@7.23.4:
875 resolution: {integrity: sha512-dkdMCN3py0+ksCgYmGG8jKeGA/8Tk+gJwSYYlFGxG5lmhfKNoAy004YpLxpS1W2J8m/EK2Ew+yOs9pVRwO89mg==} 894 resolution: {integrity: sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==}
876 engines: {node: '>=6.9.0'} 895 engines: {node: '>=6.9.0'}
877 dependencies: 896 dependencies:
878 '@babel/helper-validator-identifier': 7.22.20 897 '@babel/helper-validator-identifier': 7.22.20
879 chalk: 2.4.2 898 chalk: 2.4.2
880 js-tokens: 4.0.0 899 js-tokens: 4.0.0
881 900
882 /@babel/parser@7.23.0: 901 /@babel/parser@7.23.5:
883 resolution: {integrity: sha512-vvPKKdMemU85V9WE/l5wZEmImpCtLqbnTvqDS2U1fJ96KrxoW7KrXhNsNCblQlg8Ck4b85yxdTyelsMUgFUXiw==} 902 resolution: {integrity: sha512-hOOqoiNXrmGdFbhgCzu6GiURxUgM27Xwd/aPuu8RfHEZPBzL1Z54okAHAQjXfcQNwvrlkAmAp4SlRTZ45vlthQ==}
884 engines: {node: '>=6.0.0'} 903 engines: {node: '>=6.0.0'}
885 hasBin: true 904 hasBin: true
886 dependencies: 905 dependencies:
887 '@babel/types': 7.23.0 906 '@babel/types': 7.23.5
888 907
889 /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.22.20): 908 /@babel/parser@7.23.6:
909 resolution: {integrity: sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==}
910 engines: {node: '>=6.0.0'}
911 hasBin: true
912 dependencies:
913 '@babel/types': 7.23.6
914
915 /@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.23.5):
890 resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==} 916 resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
891 peerDependencies: 917 peerDependencies:
892 '@babel/core': ^7.0.0-0 918 '@babel/core': ^7.0.0-0
893 dependencies: 919 dependencies:
894 '@babel/core': 7.22.20 920 '@babel/core': 7.23.5
895 '@babel/helper-plugin-utils': 7.20.2 921 '@babel/helper-plugin-utils': 7.22.5
896 dev: true 922 dev: true
897 923
898 /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.22.20): 924 /@babel/plugin-syntax-bigint@7.8.3(@babel/core@7.23.5):
899 resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==} 925 resolution: {integrity: sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==}
900 peerDependencies: 926 peerDependencies:
901 '@babel/core': ^7.0.0-0 927 '@babel/core': ^7.0.0-0
902 dependencies: 928 dependencies:
903 '@babel/core': 7.22.20 929 '@babel/core': 7.23.5
904 '@babel/helper-plugin-utils': 7.20.2 930 '@babel/helper-plugin-utils': 7.22.5
905 dev: true 931 dev: true
906 932
907 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.22.20): 933 /@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.23.5):
908 resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==} 934 resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
909 peerDependencies: 935 peerDependencies:
910 '@babel/core': ^7.0.0-0 936 '@babel/core': ^7.0.0-0
911 dependencies: 937 dependencies:
912 '@babel/core': 7.22.20 938 '@babel/core': 7.23.5
913 '@babel/helper-plugin-utils': 7.20.2 939 '@babel/helper-plugin-utils': 7.22.5
914 dev: true 940 dev: true
915 941
916 /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.22.20): 942 /@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.23.5):
917 resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==} 943 resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
918 peerDependencies: 944 peerDependencies:
919 '@babel/core': ^7.0.0-0 945 '@babel/core': ^7.0.0-0
920 dependencies: 946 dependencies:
921 '@babel/core': 7.22.20 947 '@babel/core': 7.23.5
922 '@babel/helper-plugin-utils': 7.20.2 948 '@babel/helper-plugin-utils': 7.22.5
923 dev: true 949 dev: true
924 950
925 /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.22.20): 951 /@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.23.5):
926 resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==} 952 resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
927 peerDependencies: 953 peerDependencies:
928 '@babel/core': ^7.0.0-0 954 '@babel/core': ^7.0.0-0
929 dependencies: 955 dependencies:
930 '@babel/core': 7.22.20 956 '@babel/core': 7.23.5
931 '@babel/helper-plugin-utils': 7.20.2 957 '@babel/helper-plugin-utils': 7.22.5
932 dev: true 958 dev: true
933 959
934 /@babel/plugin-syntax-jsx@7.21.4(@babel/core@7.22.20): 960 /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.5):
935 resolution: {integrity: sha512-5hewiLct5OKyh6PLKEYaFclcqtIgCb6bmELouxjF6up5q3Sov7rOayW4RwhbaBL0dit8rA80GNfY+UuDp2mBbQ==} 961 resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
936 engines: {node: '>=6.9.0'} 962 engines: {node: '>=6.9.0'}
937 peerDependencies: 963 peerDependencies:
938 '@babel/core': ^7.0.0-0 964 '@babel/core': ^7.0.0-0
939 dependencies: 965 dependencies:
940 '@babel/core': 7.22.20 966 '@babel/core': 7.23.5
941 '@babel/helper-plugin-utils': 7.20.2 967 '@babel/helper-plugin-utils': 7.22.5
942 dev: true 968 dev: true
943 969
944 /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.2): 970 /@babel/plugin-syntax-jsx@7.22.5(@babel/core@7.23.6):
945 resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==} 971 resolution: {integrity: sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==}
946 engines: {node: '>=6.9.0'} 972 engines: {node: '>=6.9.0'}
947 peerDependencies: 973 peerDependencies:
948 '@babel/core': ^7.0.0-0 974 '@babel/core': ^7.0.0-0
949 dependencies: 975 dependencies:
950 '@babel/core': 7.23.2 976 '@babel/core': 7.23.6
951 '@babel/helper-plugin-utils': 7.22.5 977 '@babel/helper-plugin-utils': 7.22.5
952 dev: false 978 dev: false
953 979
954 /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.22.20): 980 /@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.23.5):
955 resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==} 981 resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
956 peerDependencies: 982 peerDependencies:
957 '@babel/core': ^7.0.0-0 983 '@babel/core': ^7.0.0-0
958 dependencies: 984 dependencies:
959 '@babel/core': 7.22.20 985 '@babel/core': 7.23.5
960 '@babel/helper-plugin-utils': 7.20.2 986 '@babel/helper-plugin-utils': 7.22.5
961 dev: true 987 dev: true
962 988
963 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.22.20): 989 /@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.23.5):
964 resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==} 990 resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
965 peerDependencies: 991 peerDependencies:
966 '@babel/core': ^7.0.0-0 992 '@babel/core': ^7.0.0-0
967 dependencies: 993 dependencies:
968 '@babel/core': 7.22.20 994 '@babel/core': 7.23.5
969 '@babel/helper-plugin-utils': 7.20.2 995 '@babel/helper-plugin-utils': 7.22.5
970 dev: true 996 dev: true
971 997
972 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.22.20): 998 /@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.23.5):
973 resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==} 999 resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
974 peerDependencies: 1000 peerDependencies:
975 '@babel/core': ^7.0.0-0 1001 '@babel/core': ^7.0.0-0
976 dependencies: 1002 dependencies:
977 '@babel/core': 7.22.20 1003 '@babel/core': 7.23.5
978 '@babel/helper-plugin-utils': 7.20.2 1004 '@babel/helper-plugin-utils': 7.22.5
979 dev: true 1005 dev: true
980 1006
981 /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.22.20): 1007 /@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.23.5):
982 resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==} 1008 resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
983 peerDependencies: 1009 peerDependencies:
984 '@babel/core': ^7.0.0-0 1010 '@babel/core': ^7.0.0-0
985 dependencies: 1011 dependencies:
986 '@babel/core': 7.22.20 1012 '@babel/core': 7.23.5
987 '@babel/helper-plugin-utils': 7.20.2 1013 '@babel/helper-plugin-utils': 7.22.5
988 dev: true 1014 dev: true
989 1015
990 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.22.20): 1016 /@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.23.5):
991 resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==} 1017 resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
992 peerDependencies: 1018 peerDependencies:
993 '@babel/core': ^7.0.0-0 1019 '@babel/core': ^7.0.0-0
994 dependencies: 1020 dependencies:
995 '@babel/core': 7.22.20 1021 '@babel/core': 7.23.5
996 '@babel/helper-plugin-utils': 7.20.2 1022 '@babel/helper-plugin-utils': 7.22.5
997 dev: true 1023 dev: true
998 1024
999 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.22.20): 1025 /@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.23.5):
1000 resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==} 1026 resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
1001 peerDependencies: 1027 peerDependencies:
1002 '@babel/core': ^7.0.0-0 1028 '@babel/core': ^7.0.0-0
1003 dependencies: 1029 dependencies:
1004 '@babel/core': 7.22.20 1030 '@babel/core': 7.23.5
1005 '@babel/helper-plugin-utils': 7.20.2 1031 '@babel/helper-plugin-utils': 7.22.5
1006 dev: true 1032 dev: true
1007 1033
1008 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.22.20): 1034 /@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.23.5):
1009 resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==} 1035 resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
1010 engines: {node: '>=6.9.0'} 1036 engines: {node: '>=6.9.0'}
1011 peerDependencies: 1037 peerDependencies:
1012 '@babel/core': ^7.0.0-0 1038 '@babel/core': ^7.0.0-0
1013 dependencies: 1039 dependencies:
1014 '@babel/core': 7.22.20 1040 '@babel/core': 7.23.5
1015 '@babel/helper-plugin-utils': 7.20.2 1041 '@babel/helper-plugin-utils': 7.22.5
1016 dev: true 1042 dev: true
1017 1043
1018 /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.22.20): 1044 /@babel/plugin-syntax-typescript@7.20.0(@babel/core@7.23.5):
1019 resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==} 1045 resolution: {integrity: sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==}
1020 engines: {node: '>=6.9.0'} 1046 engines: {node: '>=6.9.0'}
1021 peerDependencies: 1047 peerDependencies:
1022 '@babel/core': ^7.0.0-0 1048 '@babel/core': ^7.0.0-0
1023 dependencies: 1049 dependencies:
1024 '@babel/core': 7.22.20 1050 '@babel/core': 7.23.5
1025 '@babel/helper-plugin-utils': 7.20.2 1051 '@babel/helper-plugin-utils': 7.22.5
1026 dev: true 1052 dev: true
1027 1053
1028 /@babel/runtime@7.20.1: 1054 /@babel/runtime@7.23.5:
1029 resolution: {integrity: sha512-mrzLkl6U9YLF8qpqI7TB82PESyEGjm/0Ly91jG575eVxMMlb8fYfOXFZIJ8XfLrJZQbm7dlKry2bJmXBUEkdFg==} 1055 resolution: {integrity: sha512-NdUTHcPe4C99WxPub+K9l9tK5/lV4UXIoaHSYgzco9BCyjKAAwzdBI+wWtYqHt7LJdbo74ZjRPJgzVweq1sz0w==}
1030 engines: {node: '>=6.9.0'}
1031 dependencies:
1032 regenerator-runtime: 0.13.11
1033 dev: false
1034
1035 /@babel/runtime@7.20.7:
1036 resolution: {integrity: sha512-UF0tvkUtxwAgZ5W/KrkHf0Rn0fdnLDU9ScxBrEVNUprE/MzirjK4MJUX1/BVDv00Sv8cljtukVK1aky++X1SjQ==}
1037 engines: {node: '>=6.9.0'}
1038 dependencies:
1039 regenerator-runtime: 0.13.11
1040
1041 /@babel/runtime@7.21.5:
1042 resolution: {integrity: sha512-8jI69toZqqcsnqGGqwGS4Qb1VwLOEp4hz+CXPywcvjs60u3B4Pom/U/7rm4W8tMOYEB+E9wgD0mW1l3r8qlI9Q==}
1043 engines: {node: '>=6.9.0'}
1044 dependencies:
1045 regenerator-runtime: 0.13.11
1046
1047 /@babel/runtime@7.22.11:
1048 resolution: {integrity: sha512-ee7jVNlWN09+KftVOu9n7S8gQzD/Z6hN/I8VBRXW4P1+Xe7kJGXMwu8vds4aGIMHZnNbdpSWCfZZtinytpcAvA==}
1049 engines: {node: '>=6.9.0'} 1056 engines: {node: '>=6.9.0'}
1050 dependencies: 1057 dependencies:
1051 regenerator-runtime: 0.14.0 1058 regenerator-runtime: 0.14.0
1052 dev: false
1053 1059
1054 /@babel/runtime@7.22.15: 1060 /@babel/template@7.22.15:
1055 resolution: {integrity: sha512-T0O+aa+4w0u06iNmapipJXMV4HoUir03hpx3/YqXXhu9xim3w+dVphjFWl1OH8NbZHw5Lbm9k45drDkgq2VNNA==} 1061 resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==}
1056 engines: {node: '>=6.9.0'} 1062 engines: {node: '>=6.9.0'}
1057 dependencies: 1063 dependencies:
1058 regenerator-runtime: 0.14.0 1064 '@babel/code-frame': 7.23.5
1065 '@babel/parser': 7.23.5
1066 '@babel/types': 7.23.5
1059 1067
1060 /@babel/template@7.22.15: 1068 /@babel/traverse@7.23.5(supports-color@5.5.0):
1061 resolution: {integrity: sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==} 1069 resolution: {integrity: sha512-czx7Xy5a6sapWWRx61m1Ke1Ra4vczu1mCTtJam5zRTBOonfdJ+S/B6HYmGYu3fJtr8GGET3si6IhgWVBhJ/m8w==}
1062 engines: {node: '>=6.9.0'} 1070 engines: {node: '>=6.9.0'}
1063 dependencies: 1071 dependencies:
1064 '@babel/code-frame': 7.22.13 1072 '@babel/code-frame': 7.23.5
1065 '@babel/parser': 7.23.0 1073 '@babel/generator': 7.23.5
1066 '@babel/types': 7.23.0 1074 '@babel/helper-environment-visitor': 7.22.20
1075 '@babel/helper-function-name': 7.23.0
1076 '@babel/helper-hoist-variables': 7.22.5
1077 '@babel/helper-split-export-declaration': 7.22.6
1078 '@babel/parser': 7.23.5
1079 '@babel/types': 7.23.5
1080 debug: 4.3.4(supports-color@5.5.0)
1081 globals: 11.12.0
1082 transitivePeerDependencies:
1083 - supports-color
1067 1084
1068 /@babel/traverse@7.23.2(supports-color@5.5.0): 1085 /@babel/traverse@7.23.6:
1069 resolution: {integrity: sha512-azpe59SQ48qG6nu2CzcMLbxUudtN+dOM9kDbUqGq3HXUJRlo7i8fvPoxQUzYgLZ4cMVmuZgm8vvBpNeRhd6XSw==} 1086 resolution: {integrity: sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==}
1070 engines: {node: '>=6.9.0'} 1087 engines: {node: '>=6.9.0'}
1071 dependencies: 1088 dependencies:
1072 '@babel/code-frame': 7.22.13 1089 '@babel/code-frame': 7.23.5
1073 '@babel/generator': 7.23.0 1090 '@babel/generator': 7.23.6
1074 '@babel/helper-environment-visitor': 7.22.20 1091 '@babel/helper-environment-visitor': 7.22.20
1075 '@babel/helper-function-name': 7.23.0 1092 '@babel/helper-function-name': 7.23.0
1076 '@babel/helper-hoist-variables': 7.22.5 1093 '@babel/helper-hoist-variables': 7.22.5
1077 '@babel/helper-split-export-declaration': 7.22.6 1094 '@babel/helper-split-export-declaration': 7.22.6
1078 '@babel/parser': 7.23.0 1095 '@babel/parser': 7.23.6
1079 '@babel/types': 7.23.0 1096 '@babel/types': 7.23.6
1080 debug: 4.3.4(supports-color@5.5.0) 1097 debug: 4.3.4(supports-color@5.5.0)
1081 globals: 11.12.0 1098 globals: 11.12.0
1082 transitivePeerDependencies: 1099 transitivePeerDependencies:
1083 - supports-color 1100 - supports-color
1084 1101
1085 /@babel/types@7.23.0: 1102 /@babel/types@7.23.5:
1086 resolution: {integrity: sha512-0oIyUfKoI3mSqMvsxBdclDwxXKXAUA8v/apZbc+iSyARYou1o8ZGDxbUYyLFoW2arqS2jDGqJuZvv1d/io1axg==} 1103 resolution: {integrity: sha512-ON5kSOJwVO6xXVRTvOI0eOnWe7VdUcIpsovGo9U/Br4Ie4UVFQTboO2cYnDhAGU6Fp+UxSiT+pMft0SMHfuq6w==}
1087 engines: {node: '>=6.9.0'} 1104 engines: {node: '>=6.9.0'}
1088 dependencies: 1105 dependencies:
1089 '@babel/helper-string-parser': 7.22.5 1106 '@babel/helper-string-parser': 7.23.4
1107 '@babel/helper-validator-identifier': 7.22.20
1108 to-fast-properties: 2.0.0
1109
1110 /@babel/types@7.23.6:
1111 resolution: {integrity: sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==}
1112 engines: {node: '>=6.9.0'}
1113 dependencies:
1114 '@babel/helper-string-parser': 7.23.4
1090 '@babel/helper-validator-identifier': 7.22.20 1115 '@babel/helper-validator-identifier': 7.22.20
1091 to-fast-properties: 2.0.0 1116 to-fast-properties: 2.0.0
1092 1117
@@ -1094,6 +1119,74 @@ packages:
1094 resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==} 1119 resolution: {integrity: sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==}
1095 dev: true 1120 dev: true
1096 1121
1122 /@biomejs/biome@1.4.1:
1123 resolution: {integrity: sha512-JccVAwPbhi37pdxbAGmaOBjUTKEwEjWAhl7rKkVVuXHo4MLASXJ5HR8BTgrImi4/7rTBsGz1tgVD1Kwv1CHGRg==}
1124 engines: {node: '>=14.*'}
1125 hasBin: true
1126 requiresBuild: true
1127 optionalDependencies:
1128 '@biomejs/cli-darwin-arm64': 1.4.1
1129 '@biomejs/cli-darwin-x64': 1.4.1
1130 '@biomejs/cli-linux-arm64': 1.4.1
1131 '@biomejs/cli-linux-x64': 1.4.1
1132 '@biomejs/cli-win32-arm64': 1.4.1
1133 '@biomejs/cli-win32-x64': 1.4.1
1134 dev: true
1135
1136 /@biomejs/cli-darwin-arm64@1.4.1:
1137 resolution: {integrity: sha512-PZWy2Idndqux38p6AXSDQM2ldRAWi32bvb7bMbTN0ALzpWYMYnxd71ornatumSSJYoNhKmxzDLq+jct7nZJ79w==}
1138 engines: {node: '>=14.*'}
1139 cpu: [arm64]
1140 os: [darwin]
1141 requiresBuild: true
1142 dev: true
1143 optional: true
1144
1145 /@biomejs/cli-darwin-x64@1.4.1:
1146 resolution: {integrity: sha512-soj3BWhnsM1M2JlzR09cibUzG1owJqetwj/Oo7yg0foijo9lNH9XWXZfJBYDKgW/6Fomn+CC2EcUS+hisQzt9g==}
1147 engines: {node: '>=14.*'}
1148 cpu: [x64]
1149 os: [darwin]
1150 requiresBuild: true
1151 dev: true
1152 optional: true
1153
1154 /@biomejs/cli-linux-arm64@1.4.1:
1155 resolution: {integrity: sha512-YIZqfJUg4F+fPsBTXxgD7EU2E5OAYbmYSl/snf4PevwfQCWE/omOFZv+NnIQmjYj9I7ParDgcJvanoA3/kO0JQ==}
1156 engines: {node: '>=14.*'}
1157 cpu: [arm64]
1158 os: [linux]
1159 requiresBuild: true
1160 dev: true
1161 optional: true
1162
1163 /@biomejs/cli-linux-x64@1.4.1:
1164 resolution: {integrity: sha512-9YOZw3qBd/KUj63A6Hn2zZgzGb2nbESM0qNmeMXgmqinVKM//uc4OgY5TuKITuGjMSvcVxxd4dX1IzYjV9qvNQ==}
1165 engines: {node: '>=14.*'}
1166 cpu: [x64]
1167 os: [linux]
1168 requiresBuild: true
1169 dev: true
1170 optional: true
1171
1172 /@biomejs/cli-win32-arm64@1.4.1:
1173 resolution: {integrity: sha512-nWQbvkNKxYn/kCQ0yVF8kCaS3VzaGvtFSmItXiMknU4521LDjJ7tNWH12Gol+pIslrCbd4E1LhJa0a3ThRsBVg==}
1174 engines: {node: '>=14.*'}
1175 cpu: [arm64]
1176 os: [win32]
1177 requiresBuild: true
1178 dev: true
1179 optional: true
1180
1181 /@biomejs/cli-win32-x64@1.4.1:
1182 resolution: {integrity: sha512-88fR2CQxQ4YLs2BUDuywWYQpUKgU3A3sTezANFc/4LGKQFFLV2yX+F7QAdZVkMHfA+RD9Xg178HomM/6mnTNPA==}
1183 engines: {node: '>=14.*'}
1184 cpu: [x64]
1185 os: [win32]
1186 requiresBuild: true
1187 dev: true
1188 optional: true
1189
1097 /@colors/colors@1.5.0: 1190 /@colors/colors@1.5.0:
1098 resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==} 1191 resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
1099 engines: {node: '>=0.1.90'} 1192 engines: {node: '>=0.1.90'}
@@ -1188,13 +1281,13 @@ packages:
1188 '@types/node': 20.4.7 1281 '@types/node': 20.4.7
1189 chalk: 4.1.2 1282 chalk: 4.1.2
1190 cosmiconfig: 8.1.3 1283 cosmiconfig: 8.1.3
1191 cosmiconfig-typescript-loader: 4.3.0(@types/node@20.4.7)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@5.2.2) 1284 cosmiconfig-typescript-loader: 4.3.0(@types/node@20.4.7)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@5.3.2)
1192 lodash.isplainobject: 4.0.6 1285 lodash.isplainobject: 4.0.6
1193 lodash.merge: 4.6.2 1286 lodash.merge: 4.6.2
1194 lodash.uniq: 4.5.0 1287 lodash.uniq: 4.5.0
1195 resolve-from: 5.0.0 1288 resolve-from: 5.0.0
1196 ts-node: 10.9.1(@types/node@20.4.7)(typescript@5.2.2) 1289 ts-node: 10.9.1(@types/node@20.4.7)(typescript@5.3.2)
1197 typescript: 5.2.2 1290 typescript: 5.3.2
1198 transitivePeerDependencies: 1291 transitivePeerDependencies:
1199 - '@swc/core' 1292 - '@swc/core'
1200 - '@swc/wasm' 1293 - '@swc/wasm'
@@ -1220,7 +1313,7 @@ packages:
1220 dependencies: 1313 dependencies:
1221 '@commitlint/top-level': 17.4.0 1314 '@commitlint/top-level': 17.4.0
1222 '@commitlint/types': 17.4.4 1315 '@commitlint/types': 17.4.4
1223 fs-extra: 11.1.1 1316 fs-extra: 11.2.0
1224 git-raw-commits: 2.0.11 1317 git-raw-commits: 2.0.11
1225 minimist: 1.2.8 1318 minimist: 1.2.8
1226 dev: true 1319 dev: true
@@ -1290,19 +1383,18 @@ packages:
1290 ajv-keywords: 3.5.2(ajv@6.12.6) 1383 ajv-keywords: 3.5.2(ajv@6.12.6)
1291 dev: true 1384 dev: true
1292 1385
1293 /@electron/asar@3.2.4: 1386 /@electron/asar@3.2.8:
1294 resolution: {integrity: sha512-lykfY3TJRRWFeTxccEKdf1I6BLl2Plw81H0bbp4Fc5iEc67foDCa5pjJQULVgo0wF+Dli75f3xVcdb/67FFZ/g==} 1387 resolution: {integrity: sha512-cmskk5M06ewHMZAplSiF4AlME3IrnnZhKnWbtwKVLRkdJkKyUVjMLhDIiPIx/+6zQWVlKX/LtmK9xDme7540Sg==}
1295 engines: {node: '>=10.12.0'} 1388 engines: {node: '>=10.12.0'}
1296 hasBin: true 1389 hasBin: true
1297 dependencies: 1390 dependencies:
1298 chromium-pickle-js: 0.2.0
1299 commander: 5.1.0 1391 commander: 5.1.0
1300 glob: 7.2.3 1392 glob: 7.2.3
1301 minimatch: 3.1.2 1393 minimatch: 3.1.2
1302 dev: true 1394 dev: true
1303 1395
1304 /@electron/get@2.0.2: 1396 /@electron/get@2.0.3:
1305 resolution: {integrity: sha512-eFZVFoRXb3GFGd7Ak7W4+6jBl9wBtiZ4AaYOse97ej6mKj5tkyO0dUnUChs1IhJZtx1BENo4/p4WUTXpi6vT+g==} 1397 resolution: {integrity: sha512-Qkzpg2s9GnVV2I2BjRksUi43U5e6+zaQMcjoJy0C+C5oxaKl+fmckGDQFtRpZpZV0NQekuZZ+tGz7EA9TVnQtQ==}
1306 engines: {node: '>=12'} 1398 engines: {node: '>=12'}
1307 dependencies: 1399 dependencies:
1308 debug: 4.3.4(supports-color@5.5.0) 1400 debug: 4.3.4(supports-color@5.5.0)
@@ -1353,19 +1445,19 @@ packages:
1353 - supports-color 1445 - supports-color
1354 dev: true 1446 dev: true
1355 1447
1356 /@electron/remote@2.0.11(electron@27.0.1): 1448 /@electron/remote@2.1.0(electron@27.1.3):
1357 resolution: {integrity: sha512-PYEs7W3GrQNuhgiMHjFEvL5MbAL6C7m1AwSAHGqC+xc33IdP7rcGtJSdTP2eg1ssyB3oI00KwTsiSlsQbAoXpA==} 1449 resolution: {integrity: sha512-38jzz2beoYTo0DNS+aoaGyLS/fHeNTAc1Aom6HlYsxKnvVWjcg4xriC7J2IUkYSEDHGKX/D7jUst+mH4dHR6QA==}
1358 peerDependencies: 1450 peerDependencies:
1359 electron: '>= 13.0.0' 1451 electron: '>= 13.0.0'
1360 dependencies: 1452 dependencies:
1361 electron: 27.0.1 1453 electron: 27.1.3
1362 dev: false 1454 dev: false
1363 1455
1364 /@electron/universal@1.4.1: 1456 /@electron/universal@1.4.1:
1365 resolution: {integrity: sha512-lE/U3UNw1YHuowNbTmKNs9UlS3En3cPgwM5MI+agIgr/B1hSze9NdOP0qn7boZaI9Lph8IDv3/24g9IxnJP7aQ==} 1457 resolution: {integrity: sha512-lE/U3UNw1YHuowNbTmKNs9UlS3En3cPgwM5MI+agIgr/B1hSze9NdOP0qn7boZaI9Lph8IDv3/24g9IxnJP7aQ==}
1366 engines: {node: '>=8.6'} 1458 engines: {node: '>=8.6'}
1367 dependencies: 1459 dependencies:
1368 '@electron/asar': 3.2.4 1460 '@electron/asar': 3.2.8
1369 '@malept/cross-spawn-promise': 1.1.1 1461 '@malept/cross-spawn-promise': 1.1.1
1370 debug: 4.3.4(supports-color@5.5.0) 1462 debug: 4.3.4(supports-color@5.5.0)
1371 dir-compare: 3.3.0 1463 dir-compare: 3.3.0
@@ -1380,7 +1472,7 @@ packages:
1380 resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==} 1472 resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
1381 dependencies: 1473 dependencies:
1382 '@babel/helper-module-imports': 7.22.15 1474 '@babel/helper-module-imports': 7.22.15
1383 '@babel/runtime': 7.22.15 1475 '@babel/runtime': 7.23.5
1384 '@emotion/hash': 0.9.1 1476 '@emotion/hash': 0.9.1
1385 '@emotion/memoize': 0.8.1 1477 '@emotion/memoize': 0.8.1
1386 '@emotion/serialize': 1.1.2 1478 '@emotion/serialize': 1.1.2
@@ -1426,7 +1518,7 @@ packages:
1426 resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==} 1518 resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
1427 dev: false 1519 dev: false
1428 1520
1429 /@emotion/react@11.11.1(@types/react@18.2.22)(react@18.2.0): 1521 /@emotion/react@11.11.1(@types/react@18.2.41)(react@18.2.0):
1430 resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==} 1522 resolution: {integrity: sha512-5mlW1DquU5HaxjLkfkGN1GA/fvVGdyHURRiX/0FHl2cfIfRxSOfmxEH5YS43edp0OldZrZ+dkBKbngxcNCdZvA==}
1431 peerDependencies: 1523 peerDependencies:
1432 '@types/react': '*' 1524 '@types/react': '*'
@@ -1435,14 +1527,14 @@ packages:
1435 '@types/react': 1527 '@types/react':
1436 optional: true 1528 optional: true
1437 dependencies: 1529 dependencies:
1438 '@babel/runtime': 7.22.11 1530 '@babel/runtime': 7.23.5
1439 '@emotion/babel-plugin': 11.11.0 1531 '@emotion/babel-plugin': 11.11.0
1440 '@emotion/cache': 11.11.0 1532 '@emotion/cache': 11.11.0
1441 '@emotion/serialize': 1.1.2 1533 '@emotion/serialize': 1.1.2
1442 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) 1534 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
1443 '@emotion/utils': 1.2.1 1535 '@emotion/utils': 1.2.1
1444 '@emotion/weak-memoize': 0.3.1 1536 '@emotion/weak-memoize': 0.3.1
1445 '@types/react': 18.2.22 1537 '@types/react': 18.2.41
1446 hoist-non-react-statics: 3.3.2 1538 hoist-non-react-statics: 3.3.2
1447 react: 18.2.0 1539 react: 18.2.0
1448 dev: false 1540 dev: false
@@ -1461,7 +1553,7 @@ packages:
1461 resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==} 1553 resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==}
1462 dev: false 1554 dev: false
1463 1555
1464 /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.22)(react@18.2.0): 1556 /@emotion/styled@11.11.0(@emotion/react@11.11.1)(@types/react@18.2.41)(react@18.2.0):
1465 resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==} 1557 resolution: {integrity: sha512-hM5Nnvu9P3midq5aaXj4I+lnSfNi7Pmd4EWk1fOZ3pxookaQTNew6bp4JaCBYM4HVFZF9g7UjJmsUmC2JlxOng==}
1466 peerDependencies: 1558 peerDependencies:
1467 '@emotion/react': ^11.0.0-rc.0 1559 '@emotion/react': ^11.0.0-rc.0
@@ -1471,14 +1563,14 @@ packages:
1471 '@types/react': 1563 '@types/react':
1472 optional: true 1564 optional: true
1473 dependencies: 1565 dependencies:
1474 '@babel/runtime': 7.22.11 1566 '@babel/runtime': 7.23.5
1475 '@emotion/babel-plugin': 11.11.0 1567 '@emotion/babel-plugin': 11.11.0
1476 '@emotion/is-prop-valid': 1.2.1 1568 '@emotion/is-prop-valid': 1.2.1
1477 '@emotion/react': 11.11.1(@types/react@18.2.22)(react@18.2.0) 1569 '@emotion/react': 11.11.1(@types/react@18.2.41)(react@18.2.0)
1478 '@emotion/serialize': 1.1.2 1570 '@emotion/serialize': 1.1.2
1479 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0) 1571 '@emotion/use-insertion-effect-with-fallbacks': 1.0.1(react@18.2.0)
1480 '@emotion/utils': 1.2.1 1572 '@emotion/utils': 1.2.1
1481 '@types/react': 18.2.22 1573 '@types/react': 18.2.41
1482 react: 18.2.0 1574 react: 18.2.0
1483 dev: false 1575 dev: false
1484 1576
@@ -1708,30 +1800,30 @@ packages:
1708 dev: true 1800 dev: true
1709 optional: true 1801 optional: true
1710 1802
1711 /@eslint-community/eslint-utils@4.4.0(eslint@8.49.0): 1803 /@eslint-community/eslint-utils@4.4.0(eslint@8.56.0):
1712 resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==} 1804 resolution: {integrity: sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==}
1713 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1805 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1714 peerDependencies: 1806 peerDependencies:
1715 eslint: ^6.0.0 || ^7.0.0 || >=8.0.0 1807 eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
1716 dependencies: 1808 dependencies:
1717 eslint: 8.49.0 1809 eslint: 8.56.0
1718 eslint-visitor-keys: 3.4.1 1810 eslint-visitor-keys: 3.4.3
1719 dev: true 1811 dev: true
1720 1812
1721 /@eslint-community/regexpp@4.6.2: 1813 /@eslint-community/regexpp@4.10.0:
1722 resolution: {integrity: sha512-pPTNuaAG3QMH+buKyBIGJs3g/S5y0caxw0ygM3YyE6yJFySwiGGSzA+mM3KJ8QQvzeLh3blwgSonkFjgQdxzMw==} 1814 resolution: {integrity: sha512-Cu96Sd2By9mCNTx2iyKOmq10v22jUVQv0lQnlGNy16oE9589yE+QADPbrMGCkA51cKZSg3Pu/aTJVTGfL/qjUA==}
1723 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 1815 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
1724 dev: true 1816 dev: true
1725 1817
1726 /@eslint/eslintrc@2.1.2: 1818 /@eslint/eslintrc@2.1.4:
1727 resolution: {integrity: sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==} 1819 resolution: {integrity: sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==}
1728 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1820 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1729 dependencies: 1821 dependencies:
1730 ajv: 6.12.6 1822 ajv: 6.12.6
1731 debug: 4.3.4(supports-color@5.5.0) 1823 debug: 4.3.4(supports-color@5.5.0)
1732 espree: 9.6.1 1824 espree: 9.6.1
1733 globals: 13.20.0 1825 globals: 13.24.0
1734 ignore: 5.2.4 1826 ignore: 5.3.0
1735 import-fresh: 3.3.0 1827 import-fresh: 3.3.0
1736 js-yaml: 4.1.0 1828 js-yaml: 4.1.0
1737 minimatch: 3.1.2 1829 minimatch: 3.1.2
@@ -1740,54 +1832,54 @@ packages:
1740 - supports-color 1832 - supports-color
1741 dev: true 1833 dev: true
1742 1834
1743 /@eslint/js@8.49.0: 1835 /@eslint/js@8.56.0:
1744 resolution: {integrity: sha512-1S8uAY/MTJqVx0SC4epBq+N2yhuwtNwLbJYNZyhL2pO1ZVKn5HFXav5T41Ryzy9K9V7ZId2JB2oy/W4aCd9/2w==} 1836 resolution: {integrity: sha512-gMsVel9D7f2HLkBma9VbtzZRehRogVRfbr++f06nL2vnCGCNlzOD+/MUov/F4p8myyAHspEhVobgjpX64q5m6A==}
1745 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 1837 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
1746 dev: true 1838 dev: true
1747 1839
1748 /@floating-ui/core@1.4.1: 1840 /@floating-ui/core@1.5.1:
1749 resolution: {integrity: sha512-jk3WqquEJRlcyu7997NtR5PibI+y5bi+LS3hPmguVClypenMsCY3CBa3LAQnozRCtCrYWSEtAdiskpamuJRFOQ==} 1841 resolution: {integrity: sha512-QgcKYwzcc8vvZ4n/5uklchy8KVdjJwcOeI+HnnTNclJjs2nYsy23DOCf+sSV1kBwD9yDAoVKCkv/gEPzgQU3Pw==}
1750 dependencies: 1842 dependencies:
1751 '@floating-ui/utils': 0.1.1 1843 '@floating-ui/utils': 0.1.6
1752 dev: false 1844 dev: false
1753 1845
1754 /@floating-ui/dom@1.5.1: 1846 /@floating-ui/dom@1.5.3:
1755 resolution: {integrity: sha512-KwvVcPSXg6mQygvA1TjbN/gh///36kKtllIF8SUm0qpFj8+rvYrpvlYdL1JoA71SHpDqgSSdGOSoQ0Mp3uY5aw==} 1847 resolution: {integrity: sha512-ClAbQnEqJAKCJOEbbLo5IUlZHkNszqhuxS4fHAVxRPXPya6Ysf2G8KypnYcOTpx6I8xcgF9bbHb6g/2KpbV8qA==}
1756 dependencies: 1848 dependencies:
1757 '@floating-ui/core': 1.4.1 1849 '@floating-ui/core': 1.5.1
1758 '@floating-ui/utils': 0.1.1 1850 '@floating-ui/utils': 0.1.6
1759 dev: false 1851 dev: false
1760 1852
1761 /@floating-ui/react-dom@2.0.2(react-dom@18.2.0)(react@18.2.0): 1853 /@floating-ui/react-dom@2.0.4(react-dom@18.2.0)(react@18.2.0):
1762 resolution: {integrity: sha512-5qhlDvjaLmAst/rKb3VdlCinwTF4EYMiVxuuc/HVUjs46W0zgtbMmAZ1UTsDrRTxRmUEzl92mOtWbeeXL26lSQ==} 1854 resolution: {integrity: sha512-CF8k2rgKeh/49UrnIBs4BdxPUV6vize/Db1d/YbCLyp9GiVZ0BEwf5AiDSxJRCr6yOkGqTFHtmrULxkEfYZ7dQ==}
1763 peerDependencies: 1855 peerDependencies:
1764 react: '>=16.8.0' 1856 react: '>=16.8.0'
1765 react-dom: '>=16.8.0' 1857 react-dom: '>=16.8.0'
1766 dependencies: 1858 dependencies:
1767 '@floating-ui/dom': 1.5.1 1859 '@floating-ui/dom': 1.5.3
1768 react: 18.2.0 1860 react: 18.2.0
1769 react-dom: 18.2.0(react@18.2.0) 1861 react-dom: 18.2.0(react@18.2.0)
1770 dev: false 1862 dev: false
1771 1863
1772 /@floating-ui/utils@0.1.1: 1864 /@floating-ui/utils@0.1.6:
1773 resolution: {integrity: sha512-m0G6wlnhm/AX0H12IOWtK8gASEMffnX08RtKkCgTdHb9JpHKGloI7icFfLg9ZmQeavcvR0PKmzxClyuFPSjKWw==} 1865 resolution: {integrity: sha512-OfX7E2oUDYxtBvsuS4e/jSn4Q9Qb6DzgeYtsAdkPZ47znpoNsMgZw0+tVijiv3uGNR6dgNlty6r9rzIzHjtd/A==}
1774 dev: false 1866 dev: false
1775 1867
1776 /@formatjs/cli@6.1.5: 1868 /@formatjs/cli@6.2.4:
1777 resolution: {integrity: sha512-tODw0+EvE14ai6ZNFT1ja879Jk3be/8ydxJPxIBfVIdm9iyoz9mWMemhMR6cGzGGv+3Heu5RxpPArc6tN27FTA==} 1869 resolution: {integrity: sha512-g1o9O143F5TGB55skib3fKbyjifPa9YoDcX9L07hVJocRKngCcu4JhKViyUSN55KGcN2ttfBomM+wihN6wtBSQ==}
1778 engines: {node: '>= 16'} 1870 engines: {node: '>= 16'}
1779 hasBin: true 1871 hasBin: true
1780 peerDependencies: 1872 peerDependencies:
1781 '@vue/compiler-sfc': ^3.2.34 1873 vue: ^3.3.4
1782 peerDependenciesMeta: 1874 peerDependenciesMeta:
1783 '@vue/compiler-sfc': 1875 vue:
1784 optional: true 1876 optional: true
1785 dev: true 1877 dev: true
1786 1878
1787 /@formatjs/ecma402-abstract@1.17.2: 1879 /@formatjs/ecma402-abstract@1.18.0:
1788 resolution: {integrity: sha512-k2mTh0m+IV1HRdU0xXM617tSQTi53tVR2muvYOsBeYcUgEAyxV1FOC7Qj279th3fBVQ+Dj6muvNJZcHSPNdbKg==} 1880 resolution: {integrity: sha512-PEVLoa3zBevWSCZzPIM/lvPCi8P5l4G+NXQMc/CjEiaCWgyHieUoo0nM7Bs0n/NbuQ6JpXEolivQ9pKSBHaDlA==}
1789 dependencies: 1881 dependencies:
1790 '@formatjs/intl-localematcher': 0.4.2 1882 '@formatjs/intl-localematcher': 0.5.2
1791 tslib: 2.6.2 1883 tslib: 2.6.2
1792 dev: false 1884 dev: false
1793 1885
@@ -1797,59 +1889,59 @@ packages:
1797 tslib: 2.6.2 1889 tslib: 2.6.2
1798 dev: false 1890 dev: false
1799 1891
1800 /@formatjs/icu-messageformat-parser@2.6.2: 1892 /@formatjs/icu-messageformat-parser@2.7.3:
1801 resolution: {integrity: sha512-nF/Iww7sc5h+1MBCDRm68qpHTCG4xvGzYs/x9HFcDETSGScaJ1Fcadk5U/NXjXeCtzD+DhN4BAwKFVclHfKMdA==} 1893 resolution: {integrity: sha512-X/jy10V9S/vW+qlplqhMUxR8wErQ0mmIYSq4mrjpjDl9mbuGcCILcI1SUYkL5nlM4PJqpc0KOS0bFkkJNPxYRw==}
1802 dependencies: 1894 dependencies:
1803 '@formatjs/ecma402-abstract': 1.17.2 1895 '@formatjs/ecma402-abstract': 1.18.0
1804 '@formatjs/icu-skeleton-parser': 1.6.2 1896 '@formatjs/icu-skeleton-parser': 1.7.0
1805 tslib: 2.6.2 1897 tslib: 2.6.2
1806 dev: false 1898 dev: false
1807 1899
1808 /@formatjs/icu-skeleton-parser@1.6.2: 1900 /@formatjs/icu-skeleton-parser@1.7.0:
1809 resolution: {integrity: sha512-VtB9Slo4ZL6QgtDFJ8Injvscf0xiDd4bIV93SOJTBjUF4xe2nAWOoSjLEtqIG+hlIs1sNrVKAaFo3nuTI4r5ZA==} 1901 resolution: {integrity: sha512-Cfdo/fgbZzpN/jlN/ptQVe0lRHora+8ezrEeg2RfrNjyp+YStwBy7cqDY8k5/z2LzXg6O0AdzAV91XS0zIWv+A==}
1810 dependencies: 1902 dependencies:
1811 '@formatjs/ecma402-abstract': 1.17.2 1903 '@formatjs/ecma402-abstract': 1.18.0
1812 tslib: 2.6.2 1904 tslib: 2.6.2
1813 dev: false 1905 dev: false
1814 1906
1815 /@formatjs/intl-displaynames@6.5.2: 1907 /@formatjs/intl-displaynames@6.6.4:
1816 resolution: {integrity: sha512-uC2VBlz+WydGTDDpJwMTQuPH3CUpTricr91WH1QMfz5oEHg2sB7mUERcZONE/lu8MOe1jREIx4vBciZEVTqkmA==} 1908 resolution: {integrity: sha512-ET8KQ+L9Q0K8x1SnJQa4DNssUcbATlMopWqYvGGR8yAvw5qwAQc1fv+DshCoZNIE9pbcue0IGC4kWNAkWqlFag==}
1817 dependencies: 1909 dependencies:
1818 '@formatjs/ecma402-abstract': 1.17.2 1910 '@formatjs/ecma402-abstract': 1.18.0
1819 '@formatjs/intl-localematcher': 0.4.2 1911 '@formatjs/intl-localematcher': 0.5.2
1820 tslib: 2.6.2 1912 tslib: 2.6.2
1821 dev: false 1913 dev: false
1822 1914
1823 /@formatjs/intl-listformat@7.4.2: 1915 /@formatjs/intl-listformat@7.5.3:
1824 resolution: {integrity: sha512-+6bSVudEQkf12Hh7kuKt8Xv/MyFlqdwA4V4NLnTZW8uYdF9RxlOELDD0rPaOc2++TMKIzI5o6XXwHPvpL6VrPA==} 1916 resolution: {integrity: sha512-l7EOr0Yh1m8KagytukB90yw81uyzrM7amKFrgxXqphz4KeSIL0KPa68lPsdtZ+JmQB73GaDQRwLOwUKFZ1VZPQ==}
1825 dependencies: 1917 dependencies:
1826 '@formatjs/ecma402-abstract': 1.17.2 1918 '@formatjs/ecma402-abstract': 1.18.0
1827 '@formatjs/intl-localematcher': 0.4.2 1919 '@formatjs/intl-localematcher': 0.5.2
1828 tslib: 2.6.2 1920 tslib: 2.6.2
1829 dev: false 1921 dev: false
1830 1922
1831 /@formatjs/intl-localematcher@0.4.2: 1923 /@formatjs/intl-localematcher@0.5.2:
1832 resolution: {integrity: sha512-BGdtJFmaNJy5An/Zan4OId/yR9Ih1OojFjcduX/xOvq798OgWSyDtd6Qd5jqJXwJs1ipe4Fxu9+cshic5Ox2tA==} 1924 resolution: {integrity: sha512-txaaE2fiBMagLrR4jYhxzFO6wEdEG4TPMqrzBAcbr4HFUYzH/YC+lg6OIzKCHm8WgDdyQevxbAAV1OgcXctuGw==}
1833 dependencies: 1925 dependencies:
1834 tslib: 2.6.2 1926 tslib: 2.6.2
1835 dev: false 1927 dev: false
1836 1928
1837 /@formatjs/intl@2.9.3(typescript@5.2.2): 1929 /@formatjs/intl@2.9.9(typescript@5.3.2):
1838 resolution: {integrity: sha512-hclPdyCF1zk2XmhgdXfl5Sd30QEdRBnIijH7Vc1AWz2K0/saVRrxuL3UYn+m3xEyfOa4yDbTWVbmXDL0XEzlsQ==} 1930 resolution: {integrity: sha512-JI3CNgL2Zdg5lv9ncT2sYKqbAj2RGrCbdzaCckIxMPxn4QuHuOVvYUGmBAXVusBmfG/0sxLmMrnwnBioz+QKdA==}
1839 peerDependencies: 1931 peerDependencies:
1840 typescript: ^4.7 || 5 1932 typescript: '5'
1841 peerDependenciesMeta: 1933 peerDependenciesMeta:
1842 typescript: 1934 typescript:
1843 optional: true 1935 optional: true
1844 dependencies: 1936 dependencies:
1845 '@formatjs/ecma402-abstract': 1.17.2 1937 '@formatjs/ecma402-abstract': 1.18.0
1846 '@formatjs/fast-memoize': 2.2.0 1938 '@formatjs/fast-memoize': 2.2.0
1847 '@formatjs/icu-messageformat-parser': 2.6.2 1939 '@formatjs/icu-messageformat-parser': 2.7.3
1848 '@formatjs/intl-displaynames': 6.5.2 1940 '@formatjs/intl-displaynames': 6.6.4
1849 '@formatjs/intl-listformat': 7.4.2 1941 '@formatjs/intl-listformat': 7.5.3
1850 intl-messageformat: 10.5.3 1942 intl-messageformat: 10.5.8
1851 tslib: 2.6.2 1943 tslib: 2.6.2
1852 typescript: 5.2.2 1944 typescript: 5.3.2
1853 dev: false 1945 dev: false
1854 1946
1855 /@gar/promisify@1.1.3: 1947 /@gar/promisify@1.1.3:
@@ -1868,11 +1960,11 @@ packages:
1868 '@hapi/hoek': 9.3.0 1960 '@hapi/hoek': 9.3.0
1869 dev: true 1961 dev: true
1870 1962
1871 /@humanwhocodes/config-array@0.11.11: 1963 /@humanwhocodes/config-array@0.11.13:
1872 resolution: {integrity: sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==} 1964 resolution: {integrity: sha512-JSBDMiDKSzQVngfRjOdFXgFfklaXI4K9nLF49Auh21lmBWRLIK3+xTErTWD4KU54pb6coM6ESE7Awz/FNU3zgQ==}
1873 engines: {node: '>=10.10.0'} 1965 engines: {node: '>=10.10.0'}
1874 dependencies: 1966 dependencies:
1875 '@humanwhocodes/object-schema': 1.2.1 1967 '@humanwhocodes/object-schema': 2.0.1
1876 debug: 4.3.4(supports-color@5.5.0) 1968 debug: 4.3.4(supports-color@5.5.0)
1877 minimatch: 3.1.2 1969 minimatch: 3.1.2
1878 transitivePeerDependencies: 1970 transitivePeerDependencies:
@@ -1884,8 +1976,8 @@ packages:
1884 engines: {node: '>=12.22'} 1976 engines: {node: '>=12.22'}
1885 dev: true 1977 dev: true
1886 1978
1887 /@humanwhocodes/object-schema@1.2.1: 1979 /@humanwhocodes/object-schema@2.0.1:
1888 resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==} 1980 resolution: {integrity: sha512-dvuCeX5fC9dXgJn9t+X5atfmgQAzUOWqS1254Gh0m6i8wKd10ebXkfNKiRK+1GWi/yTvvLDHpoxLr0xxxeslWw==}
1889 dev: true 1981 dev: true
1890 1982
1891 /@icons/material@0.2.4(react@18.2.0): 1983 /@icons/material@0.2.4(react@18.2.0):
@@ -1907,6 +1999,7 @@ packages:
1907 strip-ansi-cjs: /strip-ansi@6.0.1 1999 strip-ansi-cjs: /strip-ansi@6.0.1
1908 wrap-ansi: 8.1.0 2000 wrap-ansi: 8.1.0
1909 wrap-ansi-cjs: /wrap-ansi@7.0.0 2001 wrap-ansi-cjs: /wrap-ansi@7.0.0
2002 dev: true
1910 2003
1911 /@istanbuljs/load-nyc-config@1.1.0: 2004 /@istanbuljs/load-nyc-config@1.1.0:
1912 resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==} 2005 resolution: {integrity: sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==}
@@ -1929,7 +2022,7 @@ packages:
1929 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 2022 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
1930 dependencies: 2023 dependencies:
1931 '@jest/types': 29.6.3 2024 '@jest/types': 29.6.3
1932 '@types/node': 18.15.3 2025 '@types/node': 20.10.3
1933 chalk: 4.1.2 2026 chalk: 4.1.2
1934 jest-message-util: 29.7.0 2027 jest-message-util: 29.7.0
1935 jest-util: 29.7.0 2028 jest-util: 29.7.0
@@ -1950,14 +2043,14 @@ packages:
1950 '@jest/test-result': 29.7.0 2043 '@jest/test-result': 29.7.0
1951 '@jest/transform': 29.7.0 2044 '@jest/transform': 29.7.0
1952 '@jest/types': 29.6.3 2045 '@jest/types': 29.6.3
1953 '@types/node': 18.15.3 2046 '@types/node': 20.10.3
1954 ansi-escapes: 4.3.2 2047 ansi-escapes: 4.3.2
1955 chalk: 4.1.2 2048 chalk: 4.1.2
1956 ci-info: 3.8.0 2049 ci-info: 3.8.0
1957 exit: 0.1.2 2050 exit: 0.1.2
1958 graceful-fs: 4.2.11 2051 graceful-fs: 4.2.11
1959 jest-changed-files: 29.7.0 2052 jest-changed-files: 29.7.0
1960 jest-config: 29.7.0(@types/node@18.15.3)(ts-node@10.9.1) 2053 jest-config: 29.7.0(@types/node@20.10.3)(ts-node@10.9.1)
1961 jest-haste-map: 29.7.0 2054 jest-haste-map: 29.7.0
1962 jest-message-util: 29.7.0 2055 jest-message-util: 29.7.0
1963 jest-regex-util: 29.6.3 2056 jest-regex-util: 29.6.3
@@ -1985,7 +2078,7 @@ packages:
1985 dependencies: 2078 dependencies:
1986 '@jest/fake-timers': 29.7.0 2079 '@jest/fake-timers': 29.7.0
1987 '@jest/types': 29.6.3 2080 '@jest/types': 29.6.3
1988 '@types/node': 18.15.3 2081 '@types/node': 20.10.3
1989 jest-mock: 29.7.0 2082 jest-mock: 29.7.0
1990 dev: true 2083 dev: true
1991 2084
@@ -2012,7 +2105,7 @@ packages:
2012 dependencies: 2105 dependencies:
2013 '@jest/types': 29.6.3 2106 '@jest/types': 29.6.3
2014 '@sinonjs/fake-timers': 10.2.0 2107 '@sinonjs/fake-timers': 10.2.0
2015 '@types/node': 18.15.3 2108 '@types/node': 20.10.3
2016 jest-message-util: 29.7.0 2109 jest-message-util: 29.7.0
2017 jest-mock: 29.7.0 2110 jest-mock: 29.7.0
2018 jest-util: 29.7.0 2111 jest-util: 29.7.0
@@ -2045,7 +2138,7 @@ packages:
2045 '@jest/transform': 29.7.0 2138 '@jest/transform': 29.7.0
2046 '@jest/types': 29.6.3 2139 '@jest/types': 29.6.3
2047 '@jridgewell/trace-mapping': 0.3.20 2140 '@jridgewell/trace-mapping': 0.3.20
2048 '@types/node': 18.15.3 2141 '@types/node': 20.10.3
2049 chalk: 4.1.2 2142 chalk: 4.1.2
2050 collect-v8-coverage: 1.0.1 2143 collect-v8-coverage: 1.0.1
2051 exit: 0.1.2 2144 exit: 0.1.2
@@ -2107,7 +2200,7 @@ packages:
2107 resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==} 2200 resolution: {integrity: sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==}
2108 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 2201 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
2109 dependencies: 2202 dependencies:
2110 '@babel/core': 7.22.20 2203 '@babel/core': 7.23.5
2111 '@jest/types': 29.6.3 2204 '@jest/types': 29.6.3
2112 '@jridgewell/trace-mapping': 0.3.20 2205 '@jridgewell/trace-mapping': 0.3.20
2113 babel-plugin-istanbul: 6.1.1 2206 babel-plugin-istanbul: 6.1.1
@@ -2133,7 +2226,7 @@ packages:
2133 '@jest/schemas': 29.6.3 2226 '@jest/schemas': 29.6.3
2134 '@types/istanbul-lib-coverage': 2.0.4 2227 '@types/istanbul-lib-coverage': 2.0.4
2135 '@types/istanbul-reports': 3.0.1 2228 '@types/istanbul-reports': 3.0.1
2136 '@types/node': 18.15.3 2229 '@types/node': 20.10.3
2137 '@types/yargs': 17.0.24 2230 '@types/yargs': 17.0.24
2138 chalk: 4.1.2 2231 chalk: 4.1.2
2139 dev: true 2232 dev: true
@@ -2170,15 +2263,15 @@ packages:
2170 '@jridgewell/sourcemap-codec': 1.4.15 2263 '@jridgewell/sourcemap-codec': 1.4.15
2171 dev: true 2264 dev: true
2172 2265
2173 /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.0.11)(electron@27.0.1)(rxjs@7.8.1): 2266 /@krisdages/electron-process-manager@3.0.0(@electron/remote@2.1.0)(electron@27.1.3)(rxjs@7.8.1):
2174 resolution: {integrity: sha512-Gs8McOVC6BVdfP4SeF+l5nx85eFooarm37K5mxs1PESI59a7oLwRf5Yd2tsZ6Ye14bCG0eTJGDv3yPuixBg3OQ==} 2267 resolution: {integrity: sha512-Gs8McOVC6BVdfP4SeF+l5nx85eFooarm37K5mxs1PESI59a7oLwRf5Yd2tsZ6Ye14bCG0eTJGDv3yPuixBg3OQ==}
2175 peerDependencies: 2268 peerDependencies:
2176 '@electron/remote': '>= 1.2.0' 2269 '@electron/remote': '>= 1.2.0'
2177 electron: '>= 10' 2270 electron: '>= 10'
2178 rxjs: '>= 7' 2271 rxjs: '>= 7'
2179 dependencies: 2272 dependencies:
2180 '@electron/remote': 2.0.11(electron@27.0.1) 2273 '@electron/remote': 2.1.0(electron@27.1.3)
2181 electron: 27.0.1 2274 electron: 27.1.3
2182 electron-process-reporter: /@krisdages/electron-process-reporter@2.0.0-rxjs7-1.4.0(rxjs@7.8.1) 2275 electron-process-reporter: /@krisdages/electron-process-reporter@2.0.0-rxjs7-1.4.0(rxjs@7.8.1)
2183 rxjs: 7.8.1 2276 rxjs: 7.8.1
2184 dev: false 2277 dev: false
@@ -2243,8 +2336,8 @@ packages:
2243 - supports-color 2336 - supports-color
2244 dev: false 2337 dev: false
2245 2338
2246 /@mdi/js@7.2.96: 2339 /@mdi/js@7.3.67:
2247 resolution: {integrity: sha512-paR9M9ZT7rKbh2boksNUynuSZMHhqRYnEZOm/KrZTjQ4/FzyhjLHuvw/8XYzP+E7fS4+/Ms/82EN1pl/OFsiIA==} 2340 resolution: {integrity: sha512-MnRjknFqpTC6FifhGHjZ0+QYq2bAkZFQqIj8JA2AdPZbBxUvr8QSgB2yPAJ8/ob/XkR41xlg5majDR3c1JP1hw==}
2248 dev: false 2341 dev: false
2249 2342
2250 /@mdi/react@1.6.1: 2343 /@mdi/react@1.6.1:
@@ -2253,8 +2346,8 @@ packages:
2253 prop-types: 15.8.1 2346 prop-types: 15.8.1
2254 dev: false 2347 dev: false
2255 2348
2256 /@mui/base@5.0.0-beta.16(@types/react@18.2.22)(react-dom@18.2.0)(react@18.2.0): 2349 /@mui/base@5.0.0-beta.25(@types/react@18.2.41)(react-dom@18.2.0)(react@18.2.0):
2257 resolution: {integrity: sha512-OYxhC81c9bO0wobGcM8rrY5bRwpCXAI21BL0P2wz/2vTv4ek7ALz9+U5M8wgdmtRNUhmCmAB4L2WRwFRf5Cd8Q==} 2350 resolution: {integrity: sha512-Iiv+IcappRRv6IBlknIVmLkXxfp51NEX1+l9f+dIbBuPU4PaRULegr1lCeHKsC45KU5ruxM5xMg4R/de03aJQg==}
2258 engines: {node: '>=12.0.0'} 2351 engines: {node: '>=12.0.0'}
2259 peerDependencies: 2352 peerDependencies:
2260 '@types/react': ^17.0.0 || ^18.0.0 2353 '@types/react': ^17.0.0 || ^18.0.0
@@ -2264,24 +2357,24 @@ packages:
2264 '@types/react': 2357 '@types/react':
2265 optional: true 2358 optional: true
2266 dependencies: 2359 dependencies:
2267 '@babel/runtime': 7.22.15 2360 '@babel/runtime': 7.23.5
2268 '@floating-ui/react-dom': 2.0.2(react-dom@18.2.0)(react@18.2.0) 2361 '@floating-ui/react-dom': 2.0.4(react-dom@18.2.0)(react@18.2.0)
2269 '@mui/types': 7.2.4(@types/react@18.2.22) 2362 '@mui/types': 7.2.10(@types/react@18.2.41)
2270 '@mui/utils': 5.14.10(@types/react@18.2.22)(react@18.2.0) 2363 '@mui/utils': 5.14.19(@types/react@18.2.41)(react@18.2.0)
2271 '@popperjs/core': 2.11.8 2364 '@popperjs/core': 2.11.8
2272 '@types/react': 18.2.22 2365 '@types/react': 18.2.41
2273 clsx: 2.0.0 2366 clsx: 2.0.0
2274 prop-types: 15.8.1 2367 prop-types: 15.8.1
2275 react: 18.2.0 2368 react: 18.2.0
2276 react-dom: 18.2.0(react@18.2.0) 2369 react-dom: 18.2.0(react@18.2.0)
2277 dev: false 2370 dev: false
2278 2371
2279 /@mui/core-downloads-tracker@5.14.10: 2372 /@mui/core-downloads-tracker@5.14.19:
2280 resolution: {integrity: sha512-kPHu/NhZq1k+vSZR5wq3AyUfD4bnfWAeuKpps0+8PS7ZHQ2Lyv1cXJh+PlFdCIOa0PK98rk3JPwMzS8BMhdHwQ==} 2373 resolution: {integrity: sha512-y4JseIen5pmZs1n9hHy95HKKioKco8f6N2lford2AmjJigVJOv0KsU0qryiCpyuEUZmi/xCduVilHsK9DSkPcA==}
2281 dev: false 2374 dev: false
2282 2375
2283 /@mui/icons-material@5.14.9(@mui/material@5.14.10)(@types/react@18.2.22)(react@18.2.0): 2376 /@mui/icons-material@5.14.19(@mui/material@5.14.19)(@types/react@18.2.41)(react@18.2.0):
2284 resolution: {integrity: sha512-xTRQbDsogsJo7tY5Og8R9zbuG2q+KIPVIM6JQoKxtJlz9DPOw1u0T2fGrvwD+XAOVifQf6epNMcGCDLfJAz4Nw==} 2377 resolution: {integrity: sha512-yjP8nluXxZGe3Y7pS+yxBV+hWZSsSBampCxkZwaw+1l+feL+rfP74vbEFbMrX/Kil9I/Y1tWfy5bs/eNvwNpWw==}
2285 engines: {node: '>=12.0.0'} 2378 engines: {node: '>=12.0.0'}
2286 peerDependencies: 2379 peerDependencies:
2287 '@mui/material': ^5.0.0 2380 '@mui/material': ^5.0.0
@@ -2291,14 +2384,14 @@ packages:
2291 '@types/react': 2384 '@types/react':
2292 optional: true 2385 optional: true
2293 dependencies: 2386 dependencies:
2294 '@babel/runtime': 7.22.15 2387 '@babel/runtime': 7.23.5
2295 '@mui/material': 5.14.10(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.22)(react-dom@18.2.0)(react@18.2.0) 2388 '@mui/material': 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.41)(react-dom@18.2.0)(react@18.2.0)
2296 '@types/react': 18.2.22 2389 '@types/react': 18.2.41
2297 react: 18.2.0 2390 react: 18.2.0
2298 dev: false 2391 dev: false
2299 2392
2300 /@mui/material@5.14.10(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.22)(react-dom@18.2.0)(react@18.2.0): 2393 /@mui/material@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.41)(react-dom@18.2.0)(react@18.2.0):
2301 resolution: {integrity: sha512-ejFMppnO+lzBXpzju+N4SSz0Mhmi5sihXUGcr5FxpgB6bfUP0Lpe32O0Sw/3s8xlmLEvG1fqVT0rRyAVMlCA+A==} 2394 resolution: {integrity: sha512-jSPLXst/YPgDGolhiu4rbethKjLVrI1IkoK8YrFUv8ygxDuhQdsE6+ZqjSSRXk3ytTMf6ghPnQ88OFRk4XjpNw==}
2302 engines: {node: '>=12.0.0'} 2395 engines: {node: '>=12.0.0'}
2303 peerDependencies: 2396 peerDependencies:
2304 '@emotion/react': ^11.5.0 2397 '@emotion/react': ^11.5.0
@@ -2314,16 +2407,16 @@ packages:
2314 '@types/react': 2407 '@types/react':
2315 optional: true 2408 optional: true
2316 dependencies: 2409 dependencies:
2317 '@babel/runtime': 7.22.15 2410 '@babel/runtime': 7.23.5
2318 '@emotion/react': 11.11.1(@types/react@18.2.22)(react@18.2.0) 2411 '@emotion/react': 11.11.1(@types/react@18.2.41)(react@18.2.0)
2319 '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.22)(react@18.2.0) 2412 '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.41)(react@18.2.0)
2320 '@mui/base': 5.0.0-beta.16(@types/react@18.2.22)(react-dom@18.2.0)(react@18.2.0) 2413 '@mui/base': 5.0.0-beta.25(@types/react@18.2.41)(react-dom@18.2.0)(react@18.2.0)
2321 '@mui/core-downloads-tracker': 5.14.10 2414 '@mui/core-downloads-tracker': 5.14.19
2322 '@mui/system': 5.14.10(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.22)(react@18.2.0) 2415 '@mui/system': 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.41)(react@18.2.0)
2323 '@mui/types': 7.2.4(@types/react@18.2.22) 2416 '@mui/types': 7.2.10(@types/react@18.2.41)
2324 '@mui/utils': 5.14.10(@types/react@18.2.22)(react@18.2.0) 2417 '@mui/utils': 5.14.19(@types/react@18.2.41)(react@18.2.0)
2325 '@types/react': 18.2.22 2418 '@types/react': 18.2.41
2326 '@types/react-transition-group': 4.4.6 2419 '@types/react-transition-group': 4.4.9
2327 clsx: 2.0.0 2420 clsx: 2.0.0
2328 csstype: 3.1.2 2421 csstype: 3.1.2
2329 prop-types: 15.8.1 2422 prop-types: 15.8.1
@@ -2333,8 +2426,8 @@ packages:
2333 react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0) 2426 react-transition-group: 4.4.5(react-dom@18.2.0)(react@18.2.0)
2334 dev: false 2427 dev: false
2335 2428
2336 /@mui/private-theming@5.14.10(@types/react@18.2.22)(react@18.2.0): 2429 /@mui/private-theming@5.14.19(@types/react@18.2.41)(react@18.2.0):
2337 resolution: {integrity: sha512-f67xOj3H06wWDT9xBg7hVL/HSKNF+HG1Kx0Pm23skkbEqD2Ef2Lif64e5nPdmWVv+7cISCYtSuE2aeuzrZe78w==} 2430 resolution: {integrity: sha512-U9w39VpXLGVM8wZlUU/47YGTsBSk60ZQRRxQZtdqPfN1N7OVllQeN4cEKZKR8PjqqR3aYRcSciQ4dc6CttRoXQ==}
2338 engines: {node: '>=12.0.0'} 2431 engines: {node: '>=12.0.0'}
2339 peerDependencies: 2432 peerDependencies:
2340 '@types/react': ^17.0.0 || ^18.0.0 2433 '@types/react': ^17.0.0 || ^18.0.0
@@ -2343,15 +2436,15 @@ packages:
2343 '@types/react': 2436 '@types/react':
2344 optional: true 2437 optional: true
2345 dependencies: 2438 dependencies:
2346 '@babel/runtime': 7.22.15 2439 '@babel/runtime': 7.23.5
2347 '@mui/utils': 5.14.10(@types/react@18.2.22)(react@18.2.0) 2440 '@mui/utils': 5.14.19(@types/react@18.2.41)(react@18.2.0)
2348 '@types/react': 18.2.22 2441 '@types/react': 18.2.41
2349 prop-types: 15.8.1 2442 prop-types: 15.8.1
2350 react: 18.2.0 2443 react: 18.2.0
2351 dev: false 2444 dev: false
2352 2445
2353 /@mui/styled-engine@5.14.10(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0): 2446 /@mui/styled-engine@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0):
2354 resolution: {integrity: sha512-EJckxmQHrsBvDbFu1trJkvjNw/1R7jfNarnqPSnL+jEQawCkQIqVELWLrlOa611TFtxSJGkdUfCFXeJC203HVg==} 2447 resolution: {integrity: sha512-jtj/Pyn/bS8PM7NXdFNTHWZfE3p+vItO4/HoQbUeAv3u+cnWXcTBGHHY/xdIn446lYGFDczTh1YyX8G4Ts0Rtg==}
2355 engines: {node: '>=12.0.0'} 2448 engines: {node: '>=12.0.0'}
2356 peerDependencies: 2449 peerDependencies:
2357 '@emotion/react': ^11.4.1 2450 '@emotion/react': ^11.4.1
@@ -2363,17 +2456,17 @@ packages:
2363 '@emotion/styled': 2456 '@emotion/styled':
2364 optional: true 2457 optional: true
2365 dependencies: 2458 dependencies:
2366 '@babel/runtime': 7.22.15 2459 '@babel/runtime': 7.23.5
2367 '@emotion/cache': 11.11.0 2460 '@emotion/cache': 11.11.0
2368 '@emotion/react': 11.11.1(@types/react@18.2.22)(react@18.2.0) 2461 '@emotion/react': 11.11.1(@types/react@18.2.41)(react@18.2.0)
2369 '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.22)(react@18.2.0) 2462 '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.41)(react@18.2.0)
2370 csstype: 3.1.2 2463 csstype: 3.1.2
2371 prop-types: 15.8.1 2464 prop-types: 15.8.1
2372 react: 18.2.0 2465 react: 18.2.0
2373 dev: false 2466 dev: false
2374 2467
2375 /@mui/system@5.14.10(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.22)(react@18.2.0): 2468 /@mui/system@5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(@types/react@18.2.41)(react@18.2.0):
2376 resolution: {integrity: sha512-QQmtTG/R4gjmLiL5ECQ7kRxLKDm8aKKD7seGZfbINtRVJDyFhKChA1a+K2bfqIAaBo1EMDv+6FWNT1Q5cRKjFA==} 2469 resolution: {integrity: sha512-4e3Q+2nx+vgEsd0h5ftxlZGB7XtkkPos/zWqCqnxUs1l/T70s0lF2YNrWHHdSQ7LgtBu0eQ0qweZG2pR7KwkAw==}
2377 engines: {node: '>=12.0.0'} 2470 engines: {node: '>=12.0.0'}
2378 peerDependencies: 2471 peerDependencies:
2379 '@emotion/react': ^11.5.0 2472 '@emotion/react': ^11.5.0
@@ -2388,33 +2481,33 @@ packages:
2388 '@types/react': 2481 '@types/react':
2389 optional: true 2482 optional: true
2390 dependencies: 2483 dependencies:
2391 '@babel/runtime': 7.22.15 2484 '@babel/runtime': 7.23.5
2392 '@emotion/react': 11.11.1(@types/react@18.2.22)(react@18.2.0) 2485 '@emotion/react': 11.11.1(@types/react@18.2.41)(react@18.2.0)
2393 '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.22)(react@18.2.0) 2486 '@emotion/styled': 11.11.0(@emotion/react@11.11.1)(@types/react@18.2.41)(react@18.2.0)
2394 '@mui/private-theming': 5.14.10(@types/react@18.2.22)(react@18.2.0) 2487 '@mui/private-theming': 5.14.19(@types/react@18.2.41)(react@18.2.0)
2395 '@mui/styled-engine': 5.14.10(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0) 2488 '@mui/styled-engine': 5.14.19(@emotion/react@11.11.1)(@emotion/styled@11.11.0)(react@18.2.0)
2396 '@mui/types': 7.2.4(@types/react@18.2.22) 2489 '@mui/types': 7.2.10(@types/react@18.2.41)
2397 '@mui/utils': 5.14.10(@types/react@18.2.22)(react@18.2.0) 2490 '@mui/utils': 5.14.19(@types/react@18.2.41)(react@18.2.0)
2398 '@types/react': 18.2.22 2491 '@types/react': 18.2.41
2399 clsx: 2.0.0 2492 clsx: 2.0.0
2400 csstype: 3.1.2 2493 csstype: 3.1.2
2401 prop-types: 15.8.1 2494 prop-types: 15.8.1
2402 react: 18.2.0 2495 react: 18.2.0
2403 dev: false 2496 dev: false
2404 2497
2405 /@mui/types@7.2.4(@types/react@18.2.22): 2498 /@mui/types@7.2.10(@types/react@18.2.41):
2406 resolution: {integrity: sha512-LBcwa8rN84bKF+f5sDyku42w1NTxaPgPyYKODsh01U1fVstTClbUoSA96oyRBnSNyEiAVjKm6Gwx9vjR+xyqHA==} 2499 resolution: {integrity: sha512-wX1vbDC+lzF7FlhT6A3ffRZgEoKWPF8VqRoTu4lZwouFX2t90KyCMsgepMw5DxLak1BSp/KP86CmtZttikb/gQ==}
2407 peerDependencies: 2500 peerDependencies:
2408 '@types/react': '*' 2501 '@types/react': ^17.0.0 || ^18.0.0
2409 peerDependenciesMeta: 2502 peerDependenciesMeta:
2410 '@types/react': 2503 '@types/react':
2411 optional: true 2504 optional: true
2412 dependencies: 2505 dependencies:
2413 '@types/react': 18.2.22 2506 '@types/react': 18.2.41
2414 dev: false 2507 dev: false
2415 2508
2416 /@mui/utils@5.14.10(@types/react@18.2.22)(react@18.2.0): 2509 /@mui/utils@5.14.19(@types/react@18.2.41)(react@18.2.0):
2417 resolution: {integrity: sha512-Rn+vYQX7FxkcW0riDX/clNUwKuOJFH45HiULxwmpgnzQoQr3A0lb+QYwaZ+FAkZrR7qLoHKmLQlcItu6LT0y/Q==} 2510 resolution: {integrity: sha512-qAHvTXzk7basbyqPvhgWqN6JbmI2wLB/mf97GkSlz5c76MiKYV6Ffjvw9BjKZQ1YRb8rDX9kgdjRezOcoB91oQ==}
2418 engines: {node: '>=12.0.0'} 2511 engines: {node: '>=12.0.0'}
2419 peerDependencies: 2512 peerDependencies:
2420 '@types/react': ^17.0.0 || ^18.0.0 2513 '@types/react': ^17.0.0 || ^18.0.0
@@ -2423,9 +2516,9 @@ packages:
2423 '@types/react': 2516 '@types/react':
2424 optional: true 2517 optional: true
2425 dependencies: 2518 dependencies:
2426 '@babel/runtime': 7.22.15 2519 '@babel/runtime': 7.23.5
2427 '@types/prop-types': 15.7.6 2520 '@types/prop-types': 15.7.11
2428 '@types/react': 18.2.22 2521 '@types/react': 18.2.41
2429 prop-types: 15.8.1 2522 prop-types: 15.8.1
2430 react: 18.2.0 2523 react: 18.2.0
2431 react-is: 18.2.0 2524 react-is: 18.2.0
@@ -2455,7 +2548,7 @@ packages:
2455 engines: {node: '>= 8'} 2548 engines: {node: '>= 8'}
2456 dependencies: 2549 dependencies:
2457 '@nodelib/fs.scandir': 2.1.5 2550 '@nodelib/fs.scandir': 2.1.5
2458 fastq: 1.15.0 2551 fastq: 1.16.0
2459 dev: true 2552 dev: true
2460 2553
2461 /@nornagon/put@0.0.8: 2554 /@nornagon/put@0.0.8:
@@ -2472,11 +2565,12 @@ packages:
2472 dev: false 2565 dev: false
2473 optional: true 2566 optional: true
2474 2567
2475 /@npmcli/fs@3.1.0: 2568 /@npmcli/fs@2.1.2:
2476 resolution: {integrity: sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==} 2569 resolution: {integrity: sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==}
2477 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 2570 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
2478 requiresBuild: true 2571 requiresBuild: true
2479 dependencies: 2572 dependencies:
2573 '@gar/promisify': 1.1.3
2480 semver: 7.5.4 2574 semver: 7.5.4
2481 dev: false 2575 dev: false
2482 optional: true 2576 optional: true
@@ -2492,76 +2586,86 @@ packages:
2492 dev: false 2586 dev: false
2493 optional: true 2587 optional: true
2494 2588
2589 /@npmcli/move-file@2.0.1:
2590 resolution: {integrity: sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==}
2591 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
2592 deprecated: This functionality has been moved to @npmcli/fs
2593 requiresBuild: true
2594 dependencies:
2595 mkdirp: 1.0.4
2596 rimraf: 3.0.2
2597 dev: false
2598 optional: true
2599
2495 /@octokit/auth-token@4.0.0: 2600 /@octokit/auth-token@4.0.0:
2496 resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==} 2601 resolution: {integrity: sha512-tY/msAuJo6ARbK6SPIxZrPBms3xPbfwBrulZe0Wtr/DIY9lje2HeV1uoebShn6mx7SjCHif6EjMvoREj+gZ+SA==}
2497 engines: {node: '>= 18'} 2602 engines: {node: '>= 18'}
2498 dev: false 2603 dev: false
2499 2604
2500 /@octokit/core@5.0.0: 2605 /@octokit/core@5.0.2:
2501 resolution: {integrity: sha512-YbAtMWIrbZ9FCXbLwT9wWB8TyLjq9mxpKdgB3dUNxQcIVTf9hJ70gRPwAcqGZdY6WdJPZ0I7jLaaNDCiloGN2A==} 2606 resolution: {integrity: sha512-cZUy1gUvd4vttMic7C0lwPed8IYXWYp8kHIMatyhY8t8n3Cpw2ILczkV5pGMPqef7v0bLo0pOHrEHarsau2Ydg==}
2502 engines: {node: '>= 18'} 2607 engines: {node: '>= 18'}
2503 dependencies: 2608 dependencies:
2504 '@octokit/auth-token': 4.0.0 2609 '@octokit/auth-token': 4.0.0
2505 '@octokit/graphql': 7.0.1 2610 '@octokit/graphql': 7.0.2
2506 '@octokit/request': 8.1.1 2611 '@octokit/request': 8.1.6
2507 '@octokit/request-error': 5.0.0 2612 '@octokit/request-error': 5.0.1
2508 '@octokit/types': 11.1.0 2613 '@octokit/types': 12.3.0
2509 before-after-hook: 2.2.3 2614 before-after-hook: 2.2.3
2510 universal-user-agent: 6.0.0 2615 universal-user-agent: 6.0.1
2511 dev: false 2616 dev: false
2512 2617
2513 /@octokit/endpoint@9.0.0: 2618 /@octokit/endpoint@9.0.4:
2514 resolution: {integrity: sha512-szrQhiqJ88gghWY2Htt8MqUDO6++E/EIXqJ2ZEp5ma3uGS46o7LZAzSLt49myB7rT+Hfw5Y6gO3LmOxGzHijAQ==} 2619 resolution: {integrity: sha512-DWPLtr1Kz3tv8L0UvXTDP1fNwM0S+z6EJpRcvH66orY6Eld4XBMCSYsaWp4xIm61jTWxK68BrR7ibO+vSDnZqw==}
2515 engines: {node: '>= 18'} 2620 engines: {node: '>= 18'}
2516 dependencies: 2621 dependencies:
2517 '@octokit/types': 11.1.0 2622 '@octokit/types': 12.3.0
2518 is-plain-object: 5.0.0 2623 universal-user-agent: 6.0.1
2519 universal-user-agent: 6.0.0
2520 dev: false 2624 dev: false
2521 2625
2522 /@octokit/graphql@7.0.1: 2626 /@octokit/graphql@7.0.2:
2523 resolution: {integrity: sha512-T5S3oZ1JOE58gom6MIcrgwZXzTaxRnxBso58xhozxHpOqSTgDS6YNeEUvZ/kRvXgPrRz/KHnZhtb7jUMRi9E6w==} 2627 resolution: {integrity: sha512-OJ2iGMtj5Tg3s6RaXH22cJcxXRi7Y3EBqbHTBRq+PQAqfaS8f/236fUrWhfSn8P4jovyzqucxme7/vWSSZBX2Q==}
2524 engines: {node: '>= 18'} 2628 engines: {node: '>= 18'}
2525 dependencies: 2629 dependencies:
2526 '@octokit/request': 8.1.1 2630 '@octokit/request': 8.1.6
2527 '@octokit/types': 11.1.0 2631 '@octokit/types': 12.3.0
2528 universal-user-agent: 6.0.0 2632 universal-user-agent: 6.0.1
2529 dev: false 2633 dev: false
2530 2634
2531 /@octokit/openapi-types@18.0.0: 2635 /@octokit/openapi-types@19.1.0:
2532 resolution: {integrity: sha512-V8GImKs3TeQRxRtXFpG2wl19V7444NIOTDF24AWuIbmNaNYOQMWRbjcGDXV5B+0n887fgDcuMNOmlul+k+oJtw==} 2636 resolution: {integrity: sha512-6G+ywGClliGQwRsjvqVYpklIfa7oRPA0vyhPQG/1Feh+B+wU0vGH1JiJ5T25d3g1JZYBHzR2qefLi9x8Gt+cpw==}
2533 dev: false 2637 dev: false
2534 2638
2535 /@octokit/request-error@5.0.0: 2639 /@octokit/request-error@5.0.1:
2536 resolution: {integrity: sha512-1ue0DH0Lif5iEqT52+Rf/hf0RmGO9NWFjrzmrkArpG9trFfDM/efx00BJHdLGuro4BR/gECxCU2Twf5OKrRFsQ==} 2640 resolution: {integrity: sha512-X7pnyTMV7MgtGmiXBwmO6M5kIPrntOXdyKZLigNfQWSEQzVxR4a4vo49vJjTWX70mPndj8KhfT4Dx+2Ng3vnBQ==}
2537 engines: {node: '>= 18'} 2641 engines: {node: '>= 18'}
2538 dependencies: 2642 dependencies:
2539 '@octokit/types': 11.1.0 2643 '@octokit/types': 12.3.0
2540 deprecation: 2.3.1 2644 deprecation: 2.3.1
2541 once: 1.4.0 2645 once: 1.4.0
2542 dev: false 2646 dev: false
2543 2647
2544 /@octokit/request@8.1.1: 2648 /@octokit/request@8.1.6:
2545 resolution: {integrity: sha512-8N+tdUz4aCqQmXl8FpHYfKG9GelDFd7XGVzyN8rc6WxVlYcfpHECnuRkgquzz+WzvHTK62co5di8gSXnzASZPQ==} 2649 resolution: {integrity: sha512-YhPaGml3ncZC1NfXpP3WZ7iliL1ap6tLkAp6MvbK2fTTPytzVUyUesBBogcdMm86uRYO5rHaM1xIWxigWZ17MQ==}
2546 engines: {node: '>= 18'} 2650 engines: {node: '>= 18'}
2547 dependencies: 2651 dependencies:
2548 '@octokit/endpoint': 9.0.0 2652 '@octokit/endpoint': 9.0.4
2549 '@octokit/request-error': 5.0.0 2653 '@octokit/request-error': 5.0.1
2550 '@octokit/types': 11.1.0 2654 '@octokit/types': 12.3.0
2551 is-plain-object: 5.0.0 2655 universal-user-agent: 6.0.1
2552 universal-user-agent: 6.0.0
2553 dev: false 2656 dev: false
2554 2657
2555 /@octokit/types@11.1.0: 2658 /@octokit/types@12.3.0:
2556 resolution: {integrity: sha512-Fz0+7GyLm/bHt8fwEqgvRBWwIV1S6wRRyq+V6exRKLVWaKGsuy6H9QFYeBVDV7rK6fO3XwHgQOPxv+cLj2zpXQ==} 2659 resolution: {integrity: sha512-nJ8X2HRr234q3w/FcovDlA+ttUU4m1eJAourvfUUtwAWeqL8AsyRqfnLvVnYn3NFbUnsmzQCzLNdFerPwdmcDQ==}
2557 dependencies: 2660 dependencies:
2558 '@octokit/openapi-types': 18.0.0 2661 '@octokit/openapi-types': 19.1.0
2559 dev: false 2662 dev: false
2560 2663
2561 /@pkgjs/parseargs@0.11.0: 2664 /@pkgjs/parseargs@0.11.0:
2562 resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==} 2665 resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
2563 engines: {node: '>=14'} 2666 engines: {node: '>=14'}
2564 requiresBuild: true 2667 requiresBuild: true
2668 dev: true
2565 optional: true 2669 optional: true
2566 2670
2567 /@pkgr/utils@2.4.2: 2671 /@pkgr/utils@2.4.2:
@@ -2569,7 +2673,7 @@ packages:
2569 engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0} 2673 engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
2570 dependencies: 2674 dependencies:
2571 cross-spawn: 7.0.3 2675 cross-spawn: 7.0.3
2572 fast-glob: 3.3.1 2676 fast-glob: 3.3.2
2573 is-glob: 4.0.3 2677 is-glob: 4.0.3
2574 open: 9.1.0 2678 open: 9.1.0
2575 picocolors: 1.0.0 2679 picocolors: 1.0.0
@@ -2580,50 +2684,50 @@ packages:
2580 resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==} 2684 resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
2581 dev: false 2685 dev: false
2582 2686
2583 /@remix-run/router@1.8.0: 2687 /@remix-run/router@1.13.1:
2584 resolution: {integrity: sha512-mrfKqIHnSZRyIzBcanNJmVQELTnX+qagEDlcKO90RgRBVOZGSGvZKeDihTRfWcqoDn5N/NkUcwWTccnpN18Tfg==} 2688 resolution: {integrity: sha512-so+DHzZKsoOcoXrILB4rqDkMDy7NLMErRdOxvzvOKb507YINKUP4Di+shbTZDhSE/pBZ+vr7XGIpcOO0VLSA+Q==}
2585 engines: {node: '>=14.0.0'} 2689 engines: {node: '>=14.0.0'}
2586 dev: false 2690 dev: false
2587 2691
2588 /@sentry-internal/tracing@7.63.0: 2692 /@sentry-internal/tracing@7.74.0:
2589 resolution: {integrity: sha512-Fxpc53p6NGvLSURg3iRvZA0k10K9yfeVhtczvJnpX30POBuV41wxpkLHkb68fjksirjEma1K3Ut1iLOEEDpPQg==} 2693 resolution: {integrity: sha512-JK6IRGgdtZjswGfaGIHNWIThffhOHzVIIaGmglui+VFIzOsOqePjoxaDV0MEvzafxXZD7eWqGE5RGuZ0n6HFVg==}
2590 engines: {node: '>=8'} 2694 engines: {node: '>=8'}
2591 dependencies: 2695 dependencies:
2592 '@sentry/core': 7.63.0 2696 '@sentry/core': 7.74.0
2593 '@sentry/types': 7.63.0 2697 '@sentry/types': 7.74.0
2594 '@sentry/utils': 7.63.0 2698 '@sentry/utils': 7.74.0
2595 tslib: 2.6.2 2699 tslib: 2.6.2
2596 dev: false 2700 dev: false
2597 2701
2598 /@sentry/browser@7.63.0: 2702 /@sentry/browser@7.74.0:
2599 resolution: {integrity: sha512-P1Iw/2281C/7CUCRsN4jgXvjMNKnrwKqxRg7JqN8eVeCDPMpOeEPHNJ6YatEXdVLTKVn0JB7L63Q1prhFr8+SQ==} 2703 resolution: {integrity: sha512-Njr8216Z1dFUcl6NqBOk20dssK9SjoVddY74Xq+Q4p3NfXBG3lkMcACXor7SFoJRZXq8CZWGS13Cc5KwViRw4g==}
2600 engines: {node: '>=8'} 2704 engines: {node: '>=8'}
2601 dependencies: 2705 dependencies:
2602 '@sentry-internal/tracing': 7.63.0 2706 '@sentry-internal/tracing': 7.74.0
2603 '@sentry/core': 7.63.0 2707 '@sentry/core': 7.74.0
2604 '@sentry/replay': 7.63.0 2708 '@sentry/replay': 7.74.0
2605 '@sentry/types': 7.63.0 2709 '@sentry/types': 7.74.0
2606 '@sentry/utils': 7.63.0 2710 '@sentry/utils': 7.74.0
2607 tslib: 2.6.2 2711 tslib: 2.6.2
2608 dev: false 2712 dev: false
2609 2713
2610 /@sentry/core@7.63.0: 2714 /@sentry/core@7.74.0:
2611 resolution: {integrity: sha512-13Ljiq8hv6ieCkO+Am99/PljYJO5ynKT/hRQrWgGy9IIEgUr8sV3fW+1W6K4/3MCeOJou0HsiGBjOD1mASItVg==} 2715 resolution: {integrity: sha512-83NRuqn7nDZkSVBN5yJQqcpXDG4yMYiB7TkYUKrGTzBpRy6KUOrkCdybuKk0oraTIGiGSe5WEwCFySiNgR9FzA==}
2612 engines: {node: '>=8'} 2716 engines: {node: '>=8'}
2613 dependencies: 2717 dependencies:
2614 '@sentry/types': 7.63.0 2718 '@sentry/types': 7.74.0
2615 '@sentry/utils': 7.63.0 2719 '@sentry/utils': 7.74.0
2616 tslib: 2.6.2 2720 tslib: 2.6.2
2617 dev: false 2721 dev: false
2618 2722
2619 /@sentry/electron@4.10.0: 2723 /@sentry/electron@4.14.0:
2620 resolution: {integrity: sha512-pXJ7apSxH5buAB5yocbLr/KkBKS2AJ4Nj3gjzFyxkHYeIZr0BM44qZMy1bNM96abPUPak0oVcoB0ckL/K0c6mA==} 2724 resolution: {integrity: sha512-5laPImINGd86osNUu9UyGWB9dfK9O6hmydSTFWsHWHgFsd/2YKtOgjdXgMu+znyU+sy+lU9z+wwEq/h4yivPZQ==}
2621 dependencies: 2725 dependencies:
2622 '@sentry/browser': 7.63.0 2726 '@sentry/browser': 7.74.0
2623 '@sentry/core': 7.63.0 2727 '@sentry/core': 7.74.0
2624 '@sentry/node': 7.63.0 2728 '@sentry/node': 7.74.0
2625 '@sentry/types': 7.63.0 2729 '@sentry/types': 7.74.0
2626 '@sentry/utils': 7.63.0 2730 '@sentry/utils': 7.74.0
2627 deepmerge: 4.3.0 2731 deepmerge: 4.3.0
2628 lru_map: 0.3.3 2732 lru_map: 0.3.3
2629 tslib: 2.6.2 2733 tslib: 2.6.2
@@ -2631,15 +2735,15 @@ packages:
2631 - supports-color 2735 - supports-color
2632 dev: false 2736 dev: false
2633 2737
2634 /@sentry/node@7.63.0: 2738 /@sentry/node@7.74.0:
2635 resolution: {integrity: sha512-tSMyfQNbfjX1w8vJDZtvWeaD4QQ/Z4zVW/TLXfL/JZFIIksPgDZmqLdF+NJS4bSGTU5JiHiUh4pYhME4mHgNBQ==} 2739 resolution: {integrity: sha512-uBmW2/z0cz/WFIG74ZF7lSipO0XNzMf9yrdqnZXnGDYsUZE4I4QiqDN0hNi6fkTgf9MYRC8uFem2OkAvyPJ74Q==}
2636 engines: {node: '>=8'} 2740 engines: {node: '>=8'}
2637 dependencies: 2741 dependencies:
2638 '@sentry-internal/tracing': 7.63.0 2742 '@sentry-internal/tracing': 7.74.0
2639 '@sentry/core': 7.63.0 2743 '@sentry/core': 7.74.0
2640 '@sentry/types': 7.63.0 2744 '@sentry/types': 7.74.0
2641 '@sentry/utils': 7.63.0 2745 '@sentry/utils': 7.74.0
2642 cookie: 0.4.2 2746 cookie: 0.5.0
2643 https-proxy-agent: 5.0.1 2747 https-proxy-agent: 5.0.1
2644 lru_map: 0.3.3 2748 lru_map: 0.3.3
2645 tslib: 2.6.2 2749 tslib: 2.6.2
@@ -2647,25 +2751,25 @@ packages:
2647 - supports-color 2751 - supports-color
2648 dev: false 2752 dev: false
2649 2753
2650 /@sentry/replay@7.63.0: 2754 /@sentry/replay@7.74.0:
2651 resolution: {integrity: sha512-ikeFVojuP9oDF103blZcj0Vvb4S50dV54BESMrMW2lYBoMMjvOd7AdL+iDHjn1OL05/mv1C6Oc8MovmvdjILVA==} 2755 resolution: {integrity: sha512-GoYa3cHTTFVI/J1cnZ0i4X128mf/JljaswO3PWNTe2k3lSHq/LM5aV0keClRvwM0W8hlix8oOTT06nnenOUmmw==}
2652 engines: {node: '>=12'} 2756 engines: {node: '>=12'}
2653 dependencies: 2757 dependencies:
2654 '@sentry/core': 7.63.0 2758 '@sentry/core': 7.74.0
2655 '@sentry/types': 7.63.0 2759 '@sentry/types': 7.74.0
2656 '@sentry/utils': 7.63.0 2760 '@sentry/utils': 7.74.0
2657 dev: false 2761 dev: false
2658 2762
2659 /@sentry/types@7.63.0: 2763 /@sentry/types@7.74.0:
2660 resolution: {integrity: sha512-pZNwJVW7RqNLGuTUAhoygt0c9zmc0js10eANAz0MstygJRhQI1tqPDuiELVdujPrbeL+IFKF+7NvRDAydR2Niw==} 2764 resolution: {integrity: sha512-rI5eIRbUycWjn6s6o3yAjjWtIvYSxZDdnKv5je2EZINfLKcMPj1dkl6wQd2F4y7gLfD/N6Y0wZYIXC3DUdJQQg==}
2661 engines: {node: '>=8'} 2765 engines: {node: '>=8'}
2662 dev: false 2766 dev: false
2663 2767
2664 /@sentry/utils@7.63.0: 2768 /@sentry/utils@7.74.0:
2665 resolution: {integrity: sha512-7FQv1RYAwnuTuarruP+1+Jd6YQuN7i/Y7KltwPMVEwU7j5mzYQaexLr/Jz1XIdR2KYVdkbXQyP8jj8BmA6u9Jw==} 2769 resolution: {integrity: sha512-k3np8nuTPtx5KDODPtULfFln4UXdE56MZCcF19Jv6Ljxf+YN/Ady1+0Oi3e0XoSvFpWNyWnglauT7M65qCE6kg==}
2666 engines: {node: '>=8'} 2770 engines: {node: '>=8'}
2667 dependencies: 2771 dependencies:
2668 '@sentry/types': 7.63.0 2772 '@sentry/types': 7.74.0
2669 tslib: 2.6.2 2773 tslib: 2.6.2
2670 dev: false 2774 dev: false
2671 2775
@@ -2675,8 +2779,8 @@ packages:
2675 '@hapi/hoek': 9.3.0 2779 '@hapi/hoek': 9.3.0
2676 dev: true 2780 dev: true
2677 2781
2678 /@sideway/formula@3.0.0: 2782 /@sideway/formula@3.0.1:
2679 resolution: {integrity: sha512-vHe7wZ4NOXVfkoRb8T5otiENVlT7a3IAiw7H5M2+GO+9CDgcVUUsX1zalAztCmwyOr2RUTGJdgB+ZvSVqmdHmg==} 2783 resolution: {integrity: sha512-/poHZJJVjx3L+zVD6g9KgHfYnb443oi7wLu/XKojDviHy6HOEOA6z1Trk5aR1dGcmPenJEgb2sK2I80LeS3MIg==}
2680 dev: true 2784 dev: true
2681 2785
2682 /@sideway/pinpoint@2.0.0: 2786 /@sideway/pinpoint@2.0.0:
@@ -2713,7 +2817,7 @@ packages:
2713 resetable: 1.0.3 2817 resetable: 1.0.3
2714 dev: false 2818 dev: false
2715 2819
2716 /@superwf/mobx-react-router@7.4.0(history@5.3.0)(mobx@6.10.2)(path-to-regexp@6.2.1): 2820 /@superwf/mobx-react-router@7.4.0(history@5.3.0)(mobx@6.12.0)(path-to-regexp@6.2.1):
2717 resolution: {integrity: sha512-3Mq3p1mTJPYpDkYzAzhFLBCPqP528pHyu2V3UFSwcGGPUiFqFFmz31RIRYFHF13anQ2joxwrSllKZj0NiLMFpw==} 2821 resolution: {integrity: sha512-3Mq3p1mTJPYpDkYzAzhFLBCPqP528pHyu2V3UFSwcGGPUiFqFFmz31RIRYFHF13anQ2joxwrSllKZj0NiLMFpw==}
2718 peerDependencies: 2822 peerDependencies:
2719 history: '>=5' 2823 history: '>=5'
@@ -2721,7 +2825,7 @@ packages:
2721 path-to-regexp: '>=6' 2825 path-to-regexp: '>=6'
2722 dependencies: 2826 dependencies:
2723 history: 5.3.0 2827 history: 5.3.0
2724 mobx: 6.10.2 2828 mobx: 6.12.0
2725 path-to-regexp: 6.2.1 2829 path-to-regexp: 6.2.1
2726 dev: false 2830 dev: false
2727 2831
@@ -2759,15 +2863,15 @@ packages:
2759 resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==} 2863 resolution: {integrity: sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==}
2760 dev: true 2864 dev: true
2761 2865
2762 /@types/auto-launch@5.0.2: 2866 /@types/auto-launch@5.0.5:
2763 resolution: {integrity: sha512-b03X09+GCM9t6AUECpwA2gUPYs8s5tJHFJw92sK8EiJ7G4QNbsHmXV7nfCfP6G6ivtm230vi4oNfe8AzRgzxMQ==} 2867 resolution: {integrity: sha512-/nGvQZSzM/pvCMCh4Gt2kIeiUmOP/cKGJbjlInI+A+5MoV/7XmT56DJ6EU8bqc3+ItxEe4UC2GVspmPzcCc8cg==}
2764 dev: true 2868 dev: true
2765 2869
2766 /@types/babel__core@7.1.20: 2870 /@types/babel__core@7.1.20:
2767 resolution: {integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==} 2871 resolution: {integrity: sha512-PVb6Bg2QuscZ30FvOU7z4guG6c926D9YRvOxEaelzndpMsvP+YM74Q/dAFASpg2l6+XLalxSGxcq/lrgYWZtyQ==}
2768 dependencies: 2872 dependencies:
2769 '@babel/parser': 7.23.0 2873 '@babel/parser': 7.23.5
2770 '@babel/types': 7.23.0 2874 '@babel/types': 7.23.5
2771 '@types/babel__generator': 7.6.4 2875 '@types/babel__generator': 7.6.4
2772 '@types/babel__template': 7.4.1 2876 '@types/babel__template': 7.4.1
2773 '@types/babel__traverse': 7.18.2 2877 '@types/babel__traverse': 7.18.2
@@ -2776,80 +2880,80 @@ packages:
2776 /@types/babel__generator@7.6.4: 2880 /@types/babel__generator@7.6.4:
2777 resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==} 2881 resolution: {integrity: sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==}
2778 dependencies: 2882 dependencies:
2779 '@babel/types': 7.23.0 2883 '@babel/types': 7.23.5
2780 dev: true 2884 dev: true
2781 2885
2782 /@types/babel__template@7.4.1: 2886 /@types/babel__template@7.4.1:
2783 resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==} 2887 resolution: {integrity: sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==}
2784 dependencies: 2888 dependencies:
2785 '@babel/parser': 7.23.0 2889 '@babel/parser': 7.23.5
2786 '@babel/types': 7.23.0 2890 '@babel/types': 7.23.5
2787 dev: true 2891 dev: true
2788 2892
2789 /@types/babel__traverse@7.18.2: 2893 /@types/babel__traverse@7.18.2:
2790 resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==} 2894 resolution: {integrity: sha512-FcFaxOr2V5KZCviw1TnutEMVUVsGt4D2hP1TAfXZAMKuHYW3xQhe3jTxNPWutgCJ3/X1c5yX8ZoGVEItxKbwBg==}
2791 dependencies: 2895 dependencies:
2792 '@babel/types': 7.23.0 2896 '@babel/types': 7.23.5
2793 dev: true 2897 dev: true
2794 2898
2795 /@types/cacheable-request@6.0.3: 2899 /@types/cacheable-request@6.0.3:
2796 resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==} 2900 resolution: {integrity: sha512-IQ3EbTzGxIigb1I3qPZc1rWJnH0BmSKv5QYTalEwweFvyBDLSAe24zP0le/hyi7ecGfZVlIVAg4BZqb8WBwKqw==}
2797 dependencies: 2901 dependencies:
2798 '@types/http-cache-semantics': 4.0.1 2902 '@types/http-cache-semantics': 4.0.4
2799 '@types/keyv': 3.1.4 2903 '@types/keyv': 3.1.4
2800 '@types/node': 18.15.3 2904 '@types/node': 20.10.3
2801 '@types/responselike': 1.0.0 2905 '@types/responselike': 1.0.3
2802 2906
2803 /@types/color-convert@2.0.0: 2907 /@types/color-convert@2.0.3:
2804 resolution: {integrity: sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==} 2908 resolution: {integrity: sha512-2Q6wzrNiuEvYxVQqhh7sXM2mhIhvZR/Paq4FdsQkOMgWsCIkKvSGj8Le1/XalulrmgOzPMqNa0ix+ePY4hTrfg==}
2805 dependencies: 2909 dependencies:
2806 '@types/color-name': 1.1.1 2910 '@types/color-name': 1.1.3
2807 dev: true 2911 dev: true
2808 2912
2809 /@types/color-name@1.1.1: 2913 /@types/color-name@1.1.3:
2810 resolution: {integrity: sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==} 2914 resolution: {integrity: sha512-87W6MJCKZYDhLAx/J1ikW8niMvmGRyY+rpUxWpL1cO7F8Uu5CHuQoFv+R0/L5pgNdW4jTyda42kv60uwVIPjLw==}
2811 dev: true 2915 dev: true
2812 2916
2813 /@types/color@3.0.4: 2917 /@types/color@3.0.6:
2814 resolution: {integrity: sha512-OpisS4bqJJwbkkQRrMvURf3DOxBoAg9mysHYI7WgrWpSYHqHGKYBULHdz4ih77SILcLDo/zyHGFyfIl9yb8NZQ==} 2918 resolution: {integrity: sha512-NMiNcZFRUAiUUCCf7zkAelY8eV3aKqfbzyFQlXpPIEeoNDbsEHGpb854V3gzTsGKYj830I5zPuOwU/TP5/cW6A==}
2815 dependencies: 2919 dependencies:
2816 '@types/color-convert': 2.0.0 2920 '@types/color-convert': 2.0.3
2817 dev: true 2921 dev: true
2818 2922
2819 /@types/debug@4.1.7: 2923 /@types/debug@4.1.12:
2820 resolution: {integrity: sha512-9AonUzyTjXXhEOa0DnqpzZi6VHlqKMswga9EXjpXnnqxwLtdvPPtlO8evrI5D9S6asFRCQ6v+wpiUKbw+vKqyg==} 2924 resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
2821 dependencies: 2925 dependencies:
2822 '@types/ms': 0.7.31 2926 '@types/ms': 0.7.34
2823 dev: true 2927 dev: true
2824 2928
2825 /@types/fs-extra@11.0.2: 2929 /@types/fs-extra@11.0.4:
2826 resolution: {integrity: sha512-c0hrgAOVYr21EX8J0jBMXGLMgJqVf/v6yxi0dLaJboW9aQPh16Id+z6w2Tx1hm+piJOLv8xPfVKZCLfjPw/IMQ==} 2930 resolution: {integrity: sha512-yTbItCNreRooED33qjunPthRcSjERP1r4MqCZc7wv0u2sUkzTFp45tgUfS5+r7FrZPdmCCNflLhVSP/o+SemsQ==}
2827 dependencies: 2931 dependencies:
2828 '@types/jsonfile': 6.1.1 2932 '@types/jsonfile': 6.1.4
2829 '@types/node': 18.15.3 2933 '@types/node': 20.10.3
2830 dev: true 2934 dev: true
2831 2935
2832 /@types/fs-extra@9.0.13: 2936 /@types/fs-extra@9.0.13:
2833 resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==} 2937 resolution: {integrity: sha512-nEnwB++1u5lVDM2UI4c1+5R+FYaKfaAzS4OococimjVm3nQw3TuzH5UNsocrcTBbhnerblyHj4A49qXbIiZdpA==}
2834 dependencies: 2938 dependencies:
2835 '@types/node': 18.15.3 2939 '@types/node': 20.10.3
2836 dev: true 2940 dev: true
2837 2941
2838 /@types/graceful-fs@4.1.5: 2942 /@types/graceful-fs@4.1.5:
2839 resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==} 2943 resolution: {integrity: sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==}
2840 dependencies: 2944 dependencies:
2841 '@types/node': 18.15.3 2945 '@types/node': 20.10.3
2842 dev: true 2946 dev: true
2843 2947
2844 /@types/hoist-non-react-statics@3.3.1: 2948 /@types/hoist-non-react-statics@3.3.5:
2845 resolution: {integrity: sha512-iMIqiko6ooLrTh1joXodJK5X9xeEALT1kM5G3ZLhD3hszxBdIEd5C75U834D9mLcINgD4OyZf5uQXjkuYydWvA==} 2949 resolution: {integrity: sha512-SbcrWzkKBw2cdwRTwQAswfpB9g9LJWfjtUeW/jvNwbhC8cpmmNYVePa+ncbUe0rGTQ7G3Ff6mYUN2VMfLVr+Sg==}
2846 dependencies: 2950 dependencies:
2847 '@types/react': 18.2.22 2951 '@types/react': 18.2.41
2848 hoist-non-react-statics: 3.3.2 2952 hoist-non-react-statics: 3.3.2
2849 dev: false 2953 dev: false
2850 2954
2851 /@types/http-cache-semantics@4.0.1: 2955 /@types/http-cache-semantics@4.0.4:
2852 resolution: {integrity: sha512-SZs7ekbP8CN0txVG2xVRH6EgKmEm31BOxA07vkFaETzZz1xh+cbt8BcI0slpymvwhx5dlFnQG2rTlPVQn+iRPQ==} 2956 resolution: {integrity: sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==}
2853 2957
2854 /@types/istanbul-lib-coverage@2.0.4: 2958 /@types/istanbul-lib-coverage@2.0.4:
2855 resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==} 2959 resolution: {integrity: sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==}
@@ -2867,46 +2971,53 @@ packages:
2867 '@types/istanbul-lib-report': 3.0.0 2971 '@types/istanbul-lib-report': 3.0.0
2868 dev: true 2972 dev: true
2869 2973
2870 /@types/jest@29.5.5: 2974 /@types/jest@29.5.10:
2871 resolution: {integrity: sha512-ebylz2hnsWR9mYvmBFbXJXr+33UPc4+ZdxyDXh5w0FlPBTfCVN3wPL+kuOiQt3xvrK419v7XWeAs+AeOksafXg==} 2975 resolution: {integrity: sha512-tE4yxKEphEyxj9s4inideLHktW/x6DwesIwWZ9NN1FKf9zbJYsnhBoA9vrHA/IuIOKwPa5PcFBNV4lpMIOEzyQ==}
2872 dependencies: 2976 dependencies:
2873 expect: 29.7.0 2977 expect: 29.7.0
2874 pretty-format: 29.7.0 2978 pretty-format: 29.7.0
2875 dev: true 2979 dev: true
2876 2980
2877 /@types/json-schema@7.0.12: 2981 /@types/json-schema@7.0.15:
2878 resolution: {integrity: sha512-Hr5Jfhc9eYOQNPYO5WLDq/n4jqijdHNlDXjuAQkkt+mWdQR+XJToOHrsD4cPaMXpn6KO7y2+wM8AZEs8VpBLVA==} 2982 resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
2879 dev: true 2983 dev: true
2880 2984
2881 /@types/json5@0.0.29: 2985 /@types/json5@0.0.29:
2882 resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==} 2986 resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
2883 dev: true 2987 dev: true
2884 2988
2885 /@types/jsonfile@6.1.1: 2989 /@types/jsonfile@6.1.4:
2886 resolution: {integrity: sha512-GSgiRCVeapDN+3pqA35IkQwasaCh/0YFH5dEF6S88iDvEn901DjOeH3/QPY+XYP1DFzDZPvIvfeEgk+7br5png==} 2990 resolution: {integrity: sha512-D5qGUYwjvnNNextdU59/+fI+spnwtTFmyQP0h+PfIOSkNfpU6AOICUOkm4i0OnSk+NyjdPJrxCDro0sJsWlRpQ==}
2887 dependencies: 2991 dependencies:
2888 '@types/node': 18.15.3 2992 '@types/node': 20.10.3
2889 dev: true 2993 dev: true
2890 2994
2891 /@types/keyv@3.1.4: 2995 /@types/keyv@3.1.4:
2892 resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==} 2996 resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
2893 dependencies: 2997 dependencies:
2894 '@types/node': 18.15.3 2998 '@types/node': 20.10.3
2895 2999
2896 /@types/lodash@4.14.198: 3000 /@types/lodash@4.14.202:
2897 resolution: {integrity: sha512-trNJ/vtMZYMLhfN45uLq4ShQSw0/S7xCTLLVM+WM1rmFpba/VS42jVUgaO3w/NOLiWR/09lnYk0yMaA/atdIsg==} 3001 resolution: {integrity: sha512-OvlIYQK9tNneDlS0VN54LLd5uiPCBOp7gS5Z0f1mjoJYBrtStzgmJBxONW3U6OZqdtNzZPmn9BS/7WI7BFFcFQ==}
2898 dev: true 3002 dev: true
2899 3003
2900 /@types/minimist@1.2.2: 3004 /@types/minimist@1.2.5:
2901 resolution: {integrity: sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==} 3005 resolution: {integrity: sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==}
2902 dev: true 3006 dev: true
2903 3007
2904 /@types/ms@0.7.31: 3008 /@types/ms@0.7.34:
2905 resolution: {integrity: sha512-iiUgKzV9AuaEkZqkOLDIvlQiL6ltuZd9tGcW3gwpnX8JbuiuhFlEGmmFXEXkN50Cvq7Os88IY2v0dkDqXYWVgA==} 3009 resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
2906 dev: true 3010 dev: true
2907 3011
2908 /@types/node@18.15.3: 3012 /@types/node@18.19.2:
2909 resolution: {integrity: sha512-p6ua9zBxz5otCmbpb5D3U4B5Nanw6Pk3PPyX05xnxbB/fRv71N7CPmORg7uAD5P70T0xmx1pzAx/FUfa5X+3cw==} 3013 resolution: {integrity: sha512-6wzfBdbWpe8QykUkXBjtmO3zITA0A3FIjoy+in0Y2K4KrCiRhNYJIdwAPDffZ3G6GnaKaSLSEa9ZuORLfEoiwg==}
3014 dependencies:
3015 undici-types: 5.26.5
3016
3017 /@types/node@20.10.3:
3018 resolution: {integrity: sha512-XJavIpZqiXID5Yxnxv3RUDKTN5b81ddNC3ecsA0SoFXz/QU8OGBwZGMomiq0zw+uuqbL/krztv/DINAQ/EV4gg==}
3019 dependencies:
3020 undici-types: 5.26.5
2910 3021
2911 /@types/node@20.4.7: 3022 /@types/node@20.4.7:
2912 resolution: {integrity: sha512-bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g==} 3023 resolution: {integrity: sha512-bUBrPjEry2QUTsnuEjzjbS7voGWCc30W0qzgMf90GPeDGFRakvrz47ju+oqDAKCXLUCe39u57/ORMl/O/04/9g==}
@@ -2920,69 +3031,69 @@ packages:
2920 resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==} 3031 resolution: {integrity: sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==}
2921 dev: false 3032 dev: false
2922 3033
2923 /@types/plist@3.0.4: 3034 /@types/plist@3.0.5:
2924 resolution: {integrity: sha512-pTa9xUFQFM9WJGSWHajYNljD+DbVylE1q9IweK1LBhUYJdJ28YNU8j3KZ4Q1Qw+cSl4+QLLLOVmqNjhhvVO8fA==} 3035 resolution: {integrity: sha512-E6OCaRmAe4WDmWNsL/9RMqdkkzDCY1etutkflWk4c+AcjDU07Pcz1fQwTX0TQz+Pxqn9i4L1TU3UFpjnrcDgxA==}
2925 requiresBuild: true 3036 requiresBuild: true
2926 dependencies: 3037 dependencies:
2927 '@types/node': 18.15.3 3038 '@types/node': 20.10.3
2928 xmlbuilder: 15.1.1 3039 xmlbuilder: 15.1.1
2929 dev: true 3040 dev: true
2930 optional: true 3041 optional: true
2931 3042
2932 /@types/prop-types@15.7.6: 3043 /@types/prop-types@15.7.11:
2933 resolution: {integrity: sha512-RK/kBbYOQQHLYj9Z95eh7S6t7gq4Ojt/NT8HTk8bWVhA5DaF+5SMnxHKkP4gPNN3wAZkKP+VjAf0ebtYzf+fxg==} 3044 resolution: {integrity: sha512-ga8y9v9uyeiLdpKddhxYQkxNDrfvuPrlFb0N1qnZZByvcElJaXthF1UhvCh9TLWJBEHeNtdnbysW7Y6Uq8CVng==}
2934 3045
2935 /@types/react-color@3.0.6: 3046 /@types/react-color@3.0.10:
2936 resolution: {integrity: sha512-OzPIO5AyRmLA7PlOyISlgabpYUa3En74LP8mTMa0veCA719SvYQov4WLMsHvCgXP+L+KI9yGhYnqZafVGG0P4w==} 3047 resolution: {integrity: sha512-6K5BAn3zyd8lW8UbckIAVeXGxR82Za9jyGD2DBEynsa7fKaguLDVtjfypzs7fgEV7bULgs7uhds8A8v1wABTvQ==}
2937 dependencies: 3048 dependencies:
2938 '@types/react': 18.2.22 3049 '@types/react': 18.2.41
2939 '@types/reactcss': 1.2.6 3050 '@types/reactcss': 1.2.10
2940 dev: true 3051 dev: true
2941 3052
2942 /@types/react-dom@18.2.7: 3053 /@types/react-dom@18.2.17:
2943 resolution: {integrity: sha512-GRaAEriuT4zp9N4p1i8BDBYmEyfo+xQ3yHjJU4eiK5NDa1RmUZG+unZABUTK4/Ox/M+GaHwb6Ow8rUITrtjszA==} 3054 resolution: {integrity: sha512-rvrT/M7Df5eykWFxn6MYt5Pem/Dbyc1N8Y0S9Mrkw2WFCRiqUgw9P7ul2NpwsXCSM1DVdENzdG9J5SreqfAIWg==}
2944 dependencies: 3055 dependencies:
2945 '@types/react': 18.2.22 3056 '@types/react': 18.2.41
2946 dev: true 3057 dev: true
2947 3058
2948 /@types/react-loader@2.4.5: 3059 /@types/react-loader@2.4.8:
2949 resolution: {integrity: sha512-eBtnKxGx/B+z6kSOMiVBYLPZmXLZDVoChSYk57N91HZKB1wSPICHPrgvlhC5j8Y7MCfoYRt4/emRwh2OQIhFrg==} 3060 resolution: {integrity: sha512-tcUpbl7JRPxaskhjQsLMsMt8BVkbquqzjMdb+ud3dJdhBcaJr9Wbmrx5t2UG6Ikc7DHu47jEC82ob7disr5rHw==}
2950 dependencies: 3061 dependencies:
2951 '@types/react': 18.2.22 3062 '@types/react': 18.2.41
2952 dev: true 3063 dev: true
2953 3064
2954 /@types/react-transition-group@4.4.6: 3065 /@types/react-transition-group@4.4.9:
2955 resolution: {integrity: sha512-VnCdSxfcm08KjsJVQcfBmhEQAPnLB8G08hAxn39azX1qYBQ/5RVQuoHuKIcfKOdncuaUvEpFKFzEvbtIMsfVew==} 3066 resolution: {integrity: sha512-ZVNmWumUIh5NhH8aMD9CR2hdW0fNuYInlocZHaZ+dgk/1K49j1w/HoAuK1ki+pgscQrOFRTlXeoURtuzEkV3dg==}
2956 dependencies: 3067 dependencies:
2957 '@types/react': 18.2.22 3068 '@types/react': 18.2.41
2958 3069
2959 /@types/react@18.2.22: 3070 /@types/react@18.2.41:
2960 resolution: {integrity: sha512-60fLTOLqzarLED2O3UQImc/lsNRgG0jE/a1mPW9KjMemY0LMITWEsbS4VvZ4p6rorEHd5YKxxmMKSDK505GHpA==} 3071 resolution: {integrity: sha512-CwOGr/PiLiNBxEBqpJ7fO3kocP/2SSuC9fpH5K7tusrg4xPSRT/193rzolYwQnTN02We/ATXKnb6GqA5w4fRxw==}
2961 dependencies: 3072 dependencies:
2962 '@types/prop-types': 15.7.6 3073 '@types/prop-types': 15.7.11
2963 '@types/scheduler': 0.16.2 3074 '@types/scheduler': 0.16.8
2964 csstype: 3.1.2 3075 csstype: 3.1.2
2965 3076
2966 /@types/reactcss@1.2.6: 3077 /@types/reactcss@1.2.10:
2967 resolution: {integrity: sha512-qaIzpCuXNWomGR1Xq8SCFTtF4v8V27Y6f+b9+bzHiv087MylI/nTCqqdChNeWS7tslgROmYB7yeiruWX7WnqNg==} 3078 resolution: {integrity: sha512-gf5qJ1wOYP8N5q9H8/5c3QZHQzu8ltPClhM0vEWuBu9SGg4KSzgpJd2TShEsQDwsYn+mtnJ1xHUdJyzj/r9WrA==}
2968 dependencies: 3079 dependencies:
2969 '@types/react': 18.2.22 3080 '@types/react': 18.2.41
2970 dev: true 3081 dev: true
2971 3082
2972 /@types/responselike@1.0.0: 3083 /@types/responselike@1.0.3:
2973 resolution: {integrity: sha512-85Y2BjiufFzaMIlvJDvTTB8Fxl2xfLo4HgmHzVBz08w4wDePCTjYw66PdrolO0kzli3yam/YCgRufyo1DdQVTA==} 3084 resolution: {integrity: sha512-H/+L+UkTV33uf49PH5pCAUBVPNj2nDBXTN+qS1dOwyyg24l3CcicicCA7ca+HMvJBZcFgl5r8e+RR6elsb4Lyw==}
2974 dependencies: 3085 dependencies:
2975 '@types/node': 18.15.3 3086 '@types/node': 20.10.3
2976 3087
2977 /@types/route-parser@0.1.4: 3088 /@types/route-parser@0.1.7:
2978 resolution: {integrity: sha512-lwH3SeyKwCAwP7oUoJNryPDdbW3Bx5lrB6mhV5iebqzOJHIut6wlaSxpQR4Lsk6j7wC08pGenr/xE8I/A4J3Fg==} 3089 resolution: {integrity: sha512-haO+3HVio/4w+yuMJTjqfSo0ivOV8WnXaOReVD6QN729UGBEyizWNGc2Jd0OLsJDucIod4aJSsPLBeLj2uzMCQ==}
2979 dev: true 3090 dev: true
2980 3091
2981 /@types/scheduler@0.16.2: 3092 /@types/scheduler@0.16.8:
2982 resolution: {integrity: sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==} 3093 resolution: {integrity: sha512-WZLiwShhwLRmeV6zH+GkbOFT6Z6VklCItrDioxUnv+u4Ll+8vKeFySoFyK/0ctcRpOmwAicELfmys1sDc/Rw+A==}
2983 3094
2984 /@types/semver@7.5.2: 3095 /@types/semver@7.5.6:
2985 resolution: {integrity: sha512-7aqorHYgdNO4DM36stTiGO3DvKoex9TQRwsJU6vMaFGyqpBA1MNZkz+PG3gaNUPpTAOYhT1WR7M1JyA3fbS9Cw==} 3096 resolution: {integrity: sha512-dn1l8LaMea/IjDoHNd9J52uBbInB796CDffS6VdIxvqYCPSG0V0DzHp76GpaWnlhg88uYyPbXCDIowa86ybd5A==}
2986 dev: true 3097 dev: true
2987 3098
2988 /@types/stack-trace@0.0.29: 3099 /@types/stack-trace@0.0.29:
@@ -2993,23 +3104,23 @@ packages:
2993 resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==} 3104 resolution: {integrity: sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==}
2994 dev: true 3105 dev: true
2995 3106
2996 /@types/tar@6.1.6: 3107 /@types/tar@6.1.10:
2997 resolution: {integrity: sha512-HQ06kiiDXz9uqtmE9ksQUn1ovcPr1gGV9EgaCWo6FGYKD0onNBCetBzL0kfcS8Kbj1EFxJWY9jL2W4ZvvtGI8Q==} 3108 resolution: {integrity: sha512-60ZO+W0tRKJ3ggdzJKp75xKVlNogKYMqGvr2bMH/+k3T0BagfYTnbmVDFMJB1BFttz6yRgP5MDGP27eh7brrqw==}
2998 dependencies: 3109 dependencies:
2999 '@types/node': 18.15.3 3110 '@types/node': 20.10.3
3000 minipass: 4.2.8 3111 minipass: 4.2.8
3001 dev: true 3112 dev: true
3002 3113
3003 /@types/uuid@9.0.4: 3114 /@types/uuid@9.0.7:
3004 resolution: {integrity: sha512-zAuJWQflfx6dYJM62vna+Sn5aeSWhh3OB+wfUEACNcqUSc0AGc5JKl+ycL1vrH7frGTXhJchYjE1Hak8L819dA==} 3115 resolution: {integrity: sha512-WUtIVRUZ9i5dYXefDEAI7sh9/O7jGvHg7Df/5O/gtH3Yabe5odI3UWopVR1qbPXQtvOxWu3mM4XxlYeZtMWF4g==}
3005 dev: true 3116 dev: true
3006 3117
3007 /@types/validator@13.11.1: 3118 /@types/validator@13.11.7:
3008 resolution: {integrity: sha512-d/MUkJYdOeKycmm75Arql4M5+UuXmf4cHdHKsyw1GcvnNgL6s77UkgSgJ8TE/rI5PYsnwYq5jkcWBLuN/MpQ1A==} 3119 resolution: {integrity: sha512-q0JomTsJ2I5Mv7dhHhQLGjMvX0JJm5dyZ1DXQySIUzU1UlwzB8bt+R6+LODUbz0UDIOvEzGc28tk27gBJw2N8Q==}
3009 dev: true 3120 dev: true
3010 3121
3011 /@types/verror@1.10.8: 3122 /@types/verror@1.10.9:
3012 resolution: {integrity: sha512-YhUhnxRYs/NiVUbIs3F/EzviDP/NZCEAE2Mx5DUqLdldUmphOhFCVh7Kc+7zlYEExM0P8dzfbJi0yRlNb2Bw5g==} 3123 resolution: {integrity: sha512-MLx9Z+9lGzwEuW16ubGeNkpBDE84RpB/NyGgg6z2BTpWzKkGU451cAY3UkUzZEp72RHF585oJ3V8JVNqIplcAQ==}
3013 requiresBuild: true 3124 requiresBuild: true
3014 dev: true 3125 dev: true
3015 optional: true 3126 optional: true
@@ -3024,14 +3135,14 @@ packages:
3024 '@types/yargs-parser': 21.0.0 3135 '@types/yargs-parser': 21.0.0
3025 dev: true 3136 dev: true
3026 3137
3027 /@types/yauzl@2.10.2: 3138 /@types/yauzl@2.10.3:
3028 resolution: {integrity: sha512-Km7XAtUIduROw7QPgvcft0lIupeG8a8rdKL8RiSyKvlE7dYY31fEn41HVuQsRFDuROA8tA4K2UVL+WdfFmErBA==} 3139 resolution: {integrity: sha512-oJoftv0LSuaDZE3Le4DbKX+KS9G36NzOeSap90UIK0yMA/NhKJhqlSGtNDORNRaIbQfzjXDrQa0ytJ6mNRGz/Q==}
3029 requiresBuild: true 3140 requiresBuild: true
3030 dependencies: 3141 dependencies:
3031 '@types/node': 18.15.3 3142 '@types/node': 20.10.3
3032 optional: true 3143 optional: true
3033 3144
3034 /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@6.7.2)(eslint@8.49.0)(typescript@5.2.2): 3145 /@typescript-eslint/eslint-plugin@5.62.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.2):
3035 resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==} 3146 resolution: {integrity: sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==}
3036 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3147 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3037 peerDependencies: 3148 peerDependencies:
@@ -3042,25 +3153,25 @@ packages:
3042 typescript: 3153 typescript:
3043 optional: true 3154 optional: true
3044 dependencies: 3155 dependencies:
3045 '@eslint-community/regexpp': 4.6.2 3156 '@eslint-community/regexpp': 4.10.0
3046 '@typescript-eslint/parser': 6.7.2(eslint@8.49.0)(typescript@5.2.2) 3157 '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.2)
3047 '@typescript-eslint/scope-manager': 5.62.0 3158 '@typescript-eslint/scope-manager': 5.62.0
3048 '@typescript-eslint/type-utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) 3159 '@typescript-eslint/type-utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2)
3049 '@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) 3160 '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2)
3050 debug: 4.3.4(supports-color@5.5.0) 3161 debug: 4.3.4(supports-color@5.5.0)
3051 eslint: 8.49.0 3162 eslint: 8.56.0
3052 graphemer: 1.4.0 3163 graphemer: 1.4.0
3053 ignore: 5.2.4 3164 ignore: 5.3.0
3054 natural-compare-lite: 1.4.0 3165 natural-compare-lite: 1.4.0
3055 semver: 7.5.4 3166 semver: 7.5.4
3056 tsutils: 3.21.0(typescript@5.2.2) 3167 tsutils: 3.21.0(typescript@5.3.2)
3057 typescript: 5.2.2 3168 typescript: 5.3.2
3058 transitivePeerDependencies: 3169 transitivePeerDependencies:
3059 - supports-color 3170 - supports-color
3060 dev: true 3171 dev: true
3061 3172
3062 /@typescript-eslint/eslint-plugin@6.7.2(@typescript-eslint/parser@6.7.2)(eslint@8.49.0)(typescript@5.2.2): 3173 /@typescript-eslint/eslint-plugin@6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.2):
3063 resolution: {integrity: sha512-ooaHxlmSgZTM6CHYAFRlifqh1OAr3PAQEwi7lhYhaegbnXrnh7CDcHmc3+ihhbQC7H0i4JF0psI5ehzkF6Yl6Q==} 3174 resolution: {integrity: sha512-j5qoikQqPccq9QoBAupOP+CBu8BaJ8BLjaXSioDISeTZkVO3ig7oSIKh3H+rEpee7xCXtWwSB4KIL5l6hWZzpg==}
3064 engines: {node: ^16.0.0 || >=18.0.0} 3175 engines: {node: ^16.0.0 || >=18.0.0}
3065 peerDependencies: 3176 peerDependencies:
3066 '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha 3177 '@typescript-eslint/parser': ^6.0.0 || ^6.0.0-alpha
@@ -3070,26 +3181,26 @@ packages:
3070 typescript: 3181 typescript:
3071 optional: true 3182 optional: true
3072 dependencies: 3183 dependencies:
3073 '@eslint-community/regexpp': 4.6.2 3184 '@eslint-community/regexpp': 4.10.0
3074 '@typescript-eslint/parser': 6.7.2(eslint@8.49.0)(typescript@5.2.2) 3185 '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.2)
3075 '@typescript-eslint/scope-manager': 6.7.2 3186 '@typescript-eslint/scope-manager': 6.15.0
3076 '@typescript-eslint/type-utils': 6.7.2(eslint@8.49.0)(typescript@5.2.2) 3187 '@typescript-eslint/type-utils': 6.15.0(eslint@8.56.0)(typescript@5.3.2)
3077 '@typescript-eslint/utils': 6.7.2(eslint@8.49.0)(typescript@5.2.2) 3188 '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@5.3.2)
3078 '@typescript-eslint/visitor-keys': 6.7.2 3189 '@typescript-eslint/visitor-keys': 6.15.0
3079 debug: 4.3.4(supports-color@5.5.0) 3190 debug: 4.3.4(supports-color@5.5.0)
3080 eslint: 8.49.0 3191 eslint: 8.56.0
3081 graphemer: 1.4.0 3192 graphemer: 1.4.0
3082 ignore: 5.2.4 3193 ignore: 5.3.0
3083 natural-compare: 1.4.0 3194 natural-compare: 1.4.0
3084 semver: 7.5.4 3195 semver: 7.5.4
3085 ts-api-utils: 1.0.1(typescript@5.2.2) 3196 ts-api-utils: 1.0.3(typescript@5.3.2)
3086 typescript: 5.2.2 3197 typescript: 5.3.2
3087 transitivePeerDependencies: 3198 transitivePeerDependencies:
3088 - supports-color 3199 - supports-color
3089 dev: true 3200 dev: true
3090 3201
3091 /@typescript-eslint/parser@6.7.2(eslint@8.49.0)(typescript@5.2.2): 3202 /@typescript-eslint/parser@6.15.0(eslint@8.56.0)(typescript@5.3.2):
3092 resolution: {integrity: sha512-KA3E4ox0ws+SPyxQf9iSI25R6b4Ne78ORhNHeVKrPQnoYsb9UhieoiRoJgrzgEeKGOXhcY1i8YtOeCHHTDa6Fw==} 3203 resolution: {integrity: sha512-MkgKNnsjC6QwcMdlNAel24jjkEO/0hQaMDLqP4S9zq5HBAUJNQB6y+3DwLjX7b3l2b37eNAxMPLwb3/kh8VKdA==}
3093 engines: {node: ^16.0.0 || >=18.0.0} 3204 engines: {node: ^16.0.0 || >=18.0.0}
3094 peerDependencies: 3205 peerDependencies:
3095 eslint: ^7.0.0 || ^8.0.0 3206 eslint: ^7.0.0 || ^8.0.0
@@ -3098,25 +3209,17 @@ packages:
3098 typescript: 3209 typescript:
3099 optional: true 3210 optional: true
3100 dependencies: 3211 dependencies:
3101 '@typescript-eslint/scope-manager': 6.7.2 3212 '@typescript-eslint/scope-manager': 6.15.0
3102 '@typescript-eslint/types': 6.7.2 3213 '@typescript-eslint/types': 6.15.0
3103 '@typescript-eslint/typescript-estree': 6.7.2(typescript@5.2.2) 3214 '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.2)
3104 '@typescript-eslint/visitor-keys': 6.7.2 3215 '@typescript-eslint/visitor-keys': 6.15.0
3105 debug: 4.3.4(supports-color@5.5.0) 3216 debug: 4.3.4(supports-color@5.5.0)
3106 eslint: 8.49.0 3217 eslint: 8.56.0
3107 typescript: 5.2.2 3218 typescript: 5.3.2
3108 transitivePeerDependencies: 3219 transitivePeerDependencies:
3109 - supports-color 3220 - supports-color
3110 dev: true 3221 dev: true
3111 3222
3112 /@typescript-eslint/scope-manager@5.59.11:
3113 resolution: {integrity: sha512-dHFOsxoLFtrIcSj5h0QoBT/89hxQONwmn3FOQ0GOQcLOOXm+MIrS8zEAhs4tWl5MraxCY3ZJpaXQQdFMc2Tu+Q==}
3114 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3115 dependencies:
3116 '@typescript-eslint/types': 5.59.11
3117 '@typescript-eslint/visitor-keys': 5.59.11
3118 dev: true
3119
3120 /@typescript-eslint/scope-manager@5.62.0: 3223 /@typescript-eslint/scope-manager@5.62.0:
3121 resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==} 3224 resolution: {integrity: sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==}
3122 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3225 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -3125,15 +3228,15 @@ packages:
3125 '@typescript-eslint/visitor-keys': 5.62.0 3228 '@typescript-eslint/visitor-keys': 5.62.0
3126 dev: true 3229 dev: true
3127 3230
3128 /@typescript-eslint/scope-manager@6.7.2: 3231 /@typescript-eslint/scope-manager@6.15.0:
3129 resolution: {integrity: sha512-bgi6plgyZjEqapr7u2mhxGR6E8WCzKNUFWNh6fkpVe9+yzRZeYtDTbsIBzKbcxI+r1qVWt6VIoMSNZ4r2A+6Yw==} 3232 resolution: {integrity: sha512-+BdvxYBltqrmgCNu4Li+fGDIkW9n//NrruzG9X1vBzaNK+ExVXPoGB71kneaVw/Jp+4rH/vaMAGC6JfMbHstVg==}
3130 engines: {node: ^16.0.0 || >=18.0.0} 3233 engines: {node: ^16.0.0 || >=18.0.0}
3131 dependencies: 3234 dependencies:
3132 '@typescript-eslint/types': 6.7.2 3235 '@typescript-eslint/types': 6.15.0
3133 '@typescript-eslint/visitor-keys': 6.7.2 3236 '@typescript-eslint/visitor-keys': 6.15.0
3134 dev: true 3237 dev: true
3135 3238
3136 /@typescript-eslint/type-utils@5.62.0(eslint@8.49.0)(typescript@5.2.2): 3239 /@typescript-eslint/type-utils@5.62.0(eslint@8.56.0)(typescript@5.3.2):
3137 resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==} 3240 resolution: {integrity: sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==}
3138 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3241 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3139 peerDependencies: 3242 peerDependencies:
@@ -3143,18 +3246,18 @@ packages:
3143 typescript: 3246 typescript:
3144 optional: true 3247 optional: true
3145 dependencies: 3248 dependencies:
3146 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) 3249 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.2)
3147 '@typescript-eslint/utils': 5.62.0(eslint@8.49.0)(typescript@5.2.2) 3250 '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2)
3148 debug: 4.3.4(supports-color@5.5.0) 3251 debug: 4.3.4(supports-color@5.5.0)
3149 eslint: 8.49.0 3252 eslint: 8.56.0
3150 tsutils: 3.21.0(typescript@5.2.2) 3253 tsutils: 3.21.0(typescript@5.3.2)
3151 typescript: 5.2.2 3254 typescript: 5.3.2
3152 transitivePeerDependencies: 3255 transitivePeerDependencies:
3153 - supports-color 3256 - supports-color
3154 dev: true 3257 dev: true
3155 3258
3156 /@typescript-eslint/type-utils@6.7.2(eslint@8.49.0)(typescript@5.2.2): 3259 /@typescript-eslint/type-utils@6.15.0(eslint@8.56.0)(typescript@5.3.2):
3157 resolution: {integrity: sha512-36F4fOYIROYRl0qj95dYKx6kybddLtsbmPIYNK0OBeXv2j9L5nZ17j9jmfy+bIDHKQgn2EZX+cofsqi8NPATBQ==} 3260 resolution: {integrity: sha512-CnmHKTfX6450Bo49hPg2OkIm/D/TVYV7jO1MCfPYGwf6x3GO0VU8YMO5AYMn+u3X05lRRxA4fWCz87GFQV6yVQ==}
3158 engines: {node: ^16.0.0 || >=18.0.0} 3261 engines: {node: ^16.0.0 || >=18.0.0}
3159 peerDependencies: 3262 peerDependencies:
3160 eslint: ^7.0.0 || ^8.0.0 3263 eslint: ^7.0.0 || ^8.0.0
@@ -3163,53 +3266,27 @@ packages:
3163 typescript: 3266 typescript:
3164 optional: true 3267 optional: true
3165 dependencies: 3268 dependencies:
3166 '@typescript-eslint/typescript-estree': 6.7.2(typescript@5.2.2) 3269 '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.2)
3167 '@typescript-eslint/utils': 6.7.2(eslint@8.49.0)(typescript@5.2.2) 3270 '@typescript-eslint/utils': 6.15.0(eslint@8.56.0)(typescript@5.3.2)
3168 debug: 4.3.4(supports-color@5.5.0) 3271 debug: 4.3.4(supports-color@5.5.0)
3169 eslint: 8.49.0 3272 eslint: 8.56.0
3170 ts-api-utils: 1.0.1(typescript@5.2.2) 3273 ts-api-utils: 1.0.3(typescript@5.3.2)
3171 typescript: 5.2.2 3274 typescript: 5.3.2
3172 transitivePeerDependencies: 3275 transitivePeerDependencies:
3173 - supports-color 3276 - supports-color
3174 dev: true 3277 dev: true
3175 3278
3176 /@typescript-eslint/types@5.59.11:
3177 resolution: {integrity: sha512-epoN6R6tkvBYSc+cllrz+c2sOFWkbisJZWkOE+y3xHtvYaOE6Wk6B8e114McRJwFRjGvYdJwLXQH5c9osME/AA==}
3178 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3179 dev: true
3180
3181 /@typescript-eslint/types@5.62.0: 3279 /@typescript-eslint/types@5.62.0:
3182 resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==} 3280 resolution: {integrity: sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==}
3183 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3281 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3184 dev: true 3282 dev: true
3185 3283
3186 /@typescript-eslint/types@6.7.2: 3284 /@typescript-eslint/types@6.15.0:
3187 resolution: {integrity: sha512-flJYwMYgnUNDAN9/GAI3l8+wTmvTYdv64fcH8aoJK76Y+1FCZ08RtI5zDerM/FYT5DMkAc+19E4aLmd5KqdFyg==} 3285 resolution: {integrity: sha512-yXjbt//E4T/ee8Ia1b5mGlbNj9fB9lJP4jqLbZualwpP2BCQ5is6BcWwxpIsY4XKAhmdv3hrW92GdtJbatC6dQ==}
3188 engines: {node: ^16.0.0 || >=18.0.0} 3286 engines: {node: ^16.0.0 || >=18.0.0}
3189 dev: true 3287 dev: true
3190 3288
3191 /@typescript-eslint/typescript-estree@5.59.11(typescript@5.2.2): 3289 /@typescript-eslint/typescript-estree@5.62.0(typescript@5.3.2):
3192 resolution: {integrity: sha512-YupOpot5hJO0maupJXixi6l5ETdrITxeo5eBOeuV7RSKgYdU3G5cxO49/9WRnJq9EMrB7AuTSLH/bqOsXi7wPA==}
3193 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3194 peerDependencies:
3195 typescript: '*'
3196 peerDependenciesMeta:
3197 typescript:
3198 optional: true
3199 dependencies:
3200 '@typescript-eslint/types': 5.59.11
3201 '@typescript-eslint/visitor-keys': 5.59.11
3202 debug: 4.3.4(supports-color@5.5.0)
3203 globby: 11.1.0
3204 is-glob: 4.0.3
3205 semver: 7.5.4
3206 tsutils: 3.21.0(typescript@5.2.2)
3207 typescript: 5.2.2
3208 transitivePeerDependencies:
3209 - supports-color
3210 dev: true
3211
3212 /@typescript-eslint/typescript-estree@5.62.0(typescript@5.2.2):
3213 resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==} 3290 resolution: {integrity: sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==}
3214 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3291 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3215 peerDependencies: 3292 peerDependencies:
@@ -3224,14 +3301,14 @@ packages:
3224 globby: 11.1.0 3301 globby: 11.1.0
3225 is-glob: 4.0.3 3302 is-glob: 4.0.3
3226 semver: 7.5.4 3303 semver: 7.5.4
3227 tsutils: 3.21.0(typescript@5.2.2) 3304 tsutils: 3.21.0(typescript@5.3.2)
3228 typescript: 5.2.2 3305 typescript: 5.3.2
3229 transitivePeerDependencies: 3306 transitivePeerDependencies:
3230 - supports-color 3307 - supports-color
3231 dev: true 3308 dev: true
3232 3309
3233 /@typescript-eslint/typescript-estree@6.7.2(typescript@5.2.2): 3310 /@typescript-eslint/typescript-estree@6.15.0(typescript@5.3.2):
3234 resolution: {integrity: sha512-kiJKVMLkoSciGyFU0TOY0fRxnp9qq1AzVOHNeN1+B9erKFCJ4Z8WdjAkKQPP+b1pWStGFqezMLltxO+308dJTQ==} 3311 resolution: {integrity: sha512-7mVZJN7Hd15OmGuWrp2T9UvqR2Ecg+1j/Bp1jXUEY2GZKV6FXlOIoqVDmLpBiEiq3katvj/2n2mR0SDwtloCew==}
3235 engines: {node: ^16.0.0 || >=18.0.0} 3312 engines: {node: ^16.0.0 || >=18.0.0}
3236 peerDependencies: 3313 peerDependencies:
3237 typescript: '*' 3314 typescript: '*'
@@ -3239,51 +3316,31 @@ packages:
3239 typescript: 3316 typescript:
3240 optional: true 3317 optional: true
3241 dependencies: 3318 dependencies:
3242 '@typescript-eslint/types': 6.7.2 3319 '@typescript-eslint/types': 6.15.0
3243 '@typescript-eslint/visitor-keys': 6.7.2 3320 '@typescript-eslint/visitor-keys': 6.15.0
3244 debug: 4.3.4(supports-color@5.5.0) 3321 debug: 4.3.4(supports-color@5.5.0)
3245 globby: 11.1.0 3322 globby: 11.1.0
3246 is-glob: 4.0.3 3323 is-glob: 4.0.3
3247 semver: 7.5.4 3324 semver: 7.5.4
3248 ts-api-utils: 1.0.1(typescript@5.2.2) 3325 ts-api-utils: 1.0.3(typescript@5.3.2)
3249 typescript: 5.2.2 3326 typescript: 5.3.2
3250 transitivePeerDependencies: 3327 transitivePeerDependencies:
3251 - supports-color 3328 - supports-color
3252 dev: true 3329 dev: true
3253 3330
3254 /@typescript-eslint/utils@5.59.11(eslint@8.49.0)(typescript@5.2.2): 3331 /@typescript-eslint/utils@5.62.0(eslint@8.56.0)(typescript@5.3.2):
3255 resolution: {integrity: sha512-didu2rHSOMUdJThLk4aZ1Or8IcO3HzCw/ZvEjTTIfjIrcdd5cvSIwwDy2AOlE7htSNp7QIZ10fLMyRCveesMLg==}
3256 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3257 peerDependencies:
3258 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
3259 dependencies:
3260 '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0)
3261 '@types/json-schema': 7.0.12
3262 '@types/semver': 7.5.2
3263 '@typescript-eslint/scope-manager': 5.59.11
3264 '@typescript-eslint/types': 5.59.11
3265 '@typescript-eslint/typescript-estree': 5.59.11(typescript@5.2.2)
3266 eslint: 8.49.0
3267 eslint-scope: 5.1.1
3268 semver: 7.5.4
3269 transitivePeerDependencies:
3270 - supports-color
3271 - typescript
3272 dev: true
3273
3274 /@typescript-eslint/utils@5.62.0(eslint@8.49.0)(typescript@5.2.2):
3275 resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==} 3332 resolution: {integrity: sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==}
3276 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3333 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3277 peerDependencies: 3334 peerDependencies:
3278 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0 3335 eslint: ^6.0.0 || ^7.0.0 || ^8.0.0
3279 dependencies: 3336 dependencies:
3280 '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) 3337 '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
3281 '@types/json-schema': 7.0.12 3338 '@types/json-schema': 7.0.15
3282 '@types/semver': 7.5.2 3339 '@types/semver': 7.5.6
3283 '@typescript-eslint/scope-manager': 5.62.0 3340 '@typescript-eslint/scope-manager': 5.62.0
3284 '@typescript-eslint/types': 5.62.0 3341 '@typescript-eslint/types': 5.62.0
3285 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.2.2) 3342 '@typescript-eslint/typescript-estree': 5.62.0(typescript@5.3.2)
3286 eslint: 8.49.0 3343 eslint: 8.56.0
3287 eslint-scope: 5.1.1 3344 eslint-scope: 5.1.1
3288 semver: 7.5.4 3345 semver: 7.5.4
3289 transitivePeerDependencies: 3346 transitivePeerDependencies:
@@ -3291,33 +3348,25 @@ packages:
3291 - typescript 3348 - typescript
3292 dev: true 3349 dev: true
3293 3350
3294 /@typescript-eslint/utils@6.7.2(eslint@8.49.0)(typescript@5.2.2): 3351 /@typescript-eslint/utils@6.15.0(eslint@8.56.0)(typescript@5.3.2):
3295 resolution: {integrity: sha512-ZCcBJug/TS6fXRTsoTkgnsvyWSiXwMNiPzBUani7hDidBdj1779qwM1FIAmpH4lvlOZNF3EScsxxuGifjpLSWQ==} 3352 resolution: {integrity: sha512-eF82p0Wrrlt8fQSRL0bGXzK5nWPRV2dYQZdajcfzOD9+cQz9O7ugifrJxclB+xVOvWvagXfqS4Es7vpLP4augw==}
3296 engines: {node: ^16.0.0 || >=18.0.0} 3353 engines: {node: ^16.0.0 || >=18.0.0}
3297 peerDependencies: 3354 peerDependencies:
3298 eslint: ^7.0.0 || ^8.0.0 3355 eslint: ^7.0.0 || ^8.0.0
3299 dependencies: 3356 dependencies:
3300 '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) 3357 '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
3301 '@types/json-schema': 7.0.12 3358 '@types/json-schema': 7.0.15
3302 '@types/semver': 7.5.2 3359 '@types/semver': 7.5.6
3303 '@typescript-eslint/scope-manager': 6.7.2 3360 '@typescript-eslint/scope-manager': 6.15.0
3304 '@typescript-eslint/types': 6.7.2 3361 '@typescript-eslint/types': 6.15.0
3305 '@typescript-eslint/typescript-estree': 6.7.2(typescript@5.2.2) 3362 '@typescript-eslint/typescript-estree': 6.15.0(typescript@5.3.2)
3306 eslint: 8.49.0 3363 eslint: 8.56.0
3307 semver: 7.5.4 3364 semver: 7.5.4
3308 transitivePeerDependencies: 3365 transitivePeerDependencies:
3309 - supports-color 3366 - supports-color
3310 - typescript 3367 - typescript
3311 dev: true 3368 dev: true
3312 3369
3313 /@typescript-eslint/visitor-keys@5.59.11:
3314 resolution: {integrity: sha512-KGYniTGG3AMTuKF9QBD7EIrvufkB6O6uX3knP73xbKLMpH+QRPcgnCxjWXSHjMRuOxFLovljqQgQpR0c7GvjoA==}
3315 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
3316 dependencies:
3317 '@typescript-eslint/types': 5.59.11
3318 eslint-visitor-keys: 3.4.3
3319 dev: true
3320
3321 /@typescript-eslint/visitor-keys@5.62.0: 3370 /@typescript-eslint/visitor-keys@5.62.0:
3322 resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==} 3371 resolution: {integrity: sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==}
3323 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 3372 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -3326,14 +3375,18 @@ packages:
3326 eslint-visitor-keys: 3.4.3 3375 eslint-visitor-keys: 3.4.3
3327 dev: true 3376 dev: true
3328 3377
3329 /@typescript-eslint/visitor-keys@6.7.2: 3378 /@typescript-eslint/visitor-keys@6.15.0:
3330 resolution: {integrity: sha512-uVw9VIMFBUTz8rIeaUT3fFe8xIUx8r4ywAdlQv1ifH+6acn/XF8Y6rwJ7XNmkNMDrTW+7+vxFFPIF40nJCVsMQ==} 3379 resolution: {integrity: sha512-1zvtdC1a9h5Tb5jU9x3ADNXO9yjP8rXlaoChu0DQX40vf5ACVpYIVIZhIMZ6d5sDXH7vq4dsZBT1fEGj8D2n2w==}
3331 engines: {node: ^16.0.0 || >=18.0.0} 3380 engines: {node: ^16.0.0 || >=18.0.0}
3332 dependencies: 3381 dependencies:
3333 '@typescript-eslint/types': 6.7.2 3382 '@typescript-eslint/types': 6.15.0
3334 eslint-visitor-keys: 3.4.3 3383 eslint-visitor-keys: 3.4.3
3335 dev: true 3384 dev: true
3336 3385
3386 /@ungap/structured-clone@1.2.0:
3387 resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
3388 dev: true
3389
3337 /@xmldom/xmldom@0.8.10: 3390 /@xmldom/xmldom@0.8.10:
3338 resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==} 3391 resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
3339 engines: {node: '>=10.0.0'} 3392 engines: {node: '>=10.0.0'}
@@ -3361,12 +3414,12 @@ packages:
3361 negotiator: 0.6.3 3414 negotiator: 0.6.3
3362 dev: false 3415 dev: false
3363 3416
3364 /acorn-jsx@5.3.2(acorn@8.10.0): 3417 /acorn-jsx@5.3.2(acorn@8.11.2):
3365 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} 3418 resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
3366 peerDependencies: 3419 peerDependencies:
3367 acorn: ^6.0.0 || ^7.0.0 || ^8.0.0 3420 acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
3368 dependencies: 3421 dependencies:
3369 acorn: 8.10.0 3422 acorn: 8.11.2
3370 dev: true 3423 dev: true
3371 3424
3372 /acorn-node@1.8.2: 3425 /acorn-node@1.8.2:
@@ -3393,8 +3446,8 @@ packages:
3393 hasBin: true 3446 hasBin: true
3394 dev: false 3447 dev: false
3395 3448
3396 /acorn@8.10.0: 3449 /acorn@8.11.2:
3397 resolution: {integrity: sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==} 3450 resolution: {integrity: sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==}
3398 engines: {node: '>=0.4.0'} 3451 engines: {node: '>=0.4.0'}
3399 hasBin: true 3452 hasBin: true
3400 dev: true 3453 dev: true
@@ -3466,8 +3519,8 @@ packages:
3466 engines: {node: '>=4'} 3519 engines: {node: '>=4'}
3467 hasBin: true 3520 hasBin: true
3468 dependencies: 3521 dependencies:
3469 '@babel/runtime': 7.21.5 3522 '@babel/runtime': 7.23.5
3470 async: 3.2.4 3523 async: 3.2.5
3471 chalk: 4.1.2 3524 chalk: 4.1.2
3472 didyoumean: 1.2.2 3525 didyoumean: 1.2.2
3473 inquirer: 7.3.3 3526 inquirer: 7.3.3
@@ -3689,6 +3742,7 @@ packages:
3689 resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==} 3742 resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
3690 engines: {node: '>=12'} 3743 engines: {node: '>=12'}
3691 requiresBuild: true 3744 requiresBuild: true
3745 dev: true
3692 3746
3693 /ansi-reset@0.1.1: 3747 /ansi-reset@0.1.1:
3694 resolution: {integrity: sha512-n+D0qD3B+h/lP0dSwXX1SZMoXufdUVotLMwUuvXa50LtBAh3f+WV8b5nFMfLL/hgoPBUt+rG/pqqzF8krlZKcw==} 3748 resolution: {integrity: sha512-n+D0qD3B+h/lP0dSwXX1SZMoXufdUVotLMwUuvXa50LtBAh3f+WV8b5nFMfLL/hgoPBUt+rG/pqqzF8krlZKcw==}
@@ -3715,6 +3769,7 @@ packages:
3715 engines: {node: '>=8'} 3769 engines: {node: '>=8'}
3716 dependencies: 3770 dependencies:
3717 color-convert: 2.0.1 3771 color-convert: 2.0.1
3772 dev: true
3718 3773
3719 /ansi-styles@5.2.0: 3774 /ansi-styles@5.2.0:
3720 resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==} 3775 resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
@@ -3725,6 +3780,7 @@ packages:
3725 resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==} 3780 resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
3726 engines: {node: '>=12'} 3781 engines: {node: '>=12'}
3727 requiresBuild: true 3782 requiresBuild: true
3783 dev: true
3728 3784
3729 /ansi-underline@0.1.1: 3785 /ansi-underline@0.1.1:
3730 resolution: {integrity: sha512-D+Bzwio/0/a0Fu5vJzrIT6bFk43TW46vXfSvzysOTEHcXOAUJTVMHWDbELIzGU4AVxVw2rCTb7YyWS4my2cSKQ==} 3786 resolution: {integrity: sha512-D+Bzwio/0/a0Fu5vJzrIT6bFk43TW46vXfSvzysOTEHcXOAUJTVMHWDbELIzGU4AVxVw2rCTb7YyWS4my2cSKQ==}
@@ -3767,11 +3823,11 @@ packages:
3767 resolution: {integrity: sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==} 3823 resolution: {integrity: sha512-xwdG0FJPQMe0M0UA4Tz0zEB8rBJTRA5a476ZawAqiBkMv16GRK5xpXThOjMaEOFnZ6zabejjG4J3da0SXG63KA==}
3768 dev: true 3824 dev: true
3769 3825
3770 /app-builder-lib@24.7.0: 3826 /app-builder-lib@24.9.1:
3771 resolution: {integrity: sha512-9tmcvNtk+AdJBi3ku1uNep1b9tOFXTdfgfOQlPkuJk+VOXTYggjIZHxsLvgCjDFOxGucXpv2aiA6GWJlSGDqTw==} 3827 resolution: {integrity: sha512-Q1nYxZcio4r+W72cnIRVYofEAyjBd3mG47o+zms8HlD51zWtA/YxJb01Jei5F+jkWhge/PTQK+uldsPh6d0/4g==}
3772 engines: {node: '>=14.0.0'} 3828 engines: {node: '>=14.0.0'}
3773 dependencies: 3829 dependencies:
3774 7zip-bin: 5.1.1 3830 7zip-bin: 5.2.0
3775 '@develar/schema-utils': 2.6.5 3831 '@develar/schema-utils': 2.6.5
3776 '@electron/notarize': 2.1.0 3832 '@electron/notarize': 2.1.0
3777 '@electron/osx-sign': 1.0.5 3833 '@electron/osx-sign': 1.0.5
@@ -3780,12 +3836,12 @@ packages:
3780 '@types/fs-extra': 9.0.13 3836 '@types/fs-extra': 9.0.13
3781 async-exit-hook: 2.0.1 3837 async-exit-hook: 2.0.1
3782 bluebird-lst: 1.0.9 3838 bluebird-lst: 1.0.9
3783 builder-util: 24.5.0 3839 builder-util: 24.8.1
3784 builder-util-runtime: 9.2.1 3840 builder-util-runtime: 9.2.3
3785 chromium-pickle-js: 0.2.0 3841 chromium-pickle-js: 0.2.0
3786 debug: 4.3.4(supports-color@5.5.0) 3842 debug: 4.3.4(supports-color@5.5.0)
3787 ejs: 3.1.8 3843 ejs: 3.1.9
3788 electron-publish: 24.5.0 3844 electron-publish: 24.8.1
3789 form-data: 4.0.0 3845 form-data: 4.0.0
3790 fs-extra: 10.1.0 3846 fs-extra: 10.1.0
3791 hosted-git-info: 4.1.0 3847 hosted-git-info: 4.1.0
@@ -3847,10 +3903,10 @@ packages:
3847 /argparse@2.0.1: 3903 /argparse@2.0.1:
3848 resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==} 3904 resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
3849 3905
3850 /aria-query@5.1.3: 3906 /aria-query@5.3.0:
3851 resolution: {integrity: sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==} 3907 resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
3852 dependencies: 3908 dependencies:
3853 deep-equal: 2.2.0 3909 dequal: 2.0.3
3854 dev: true 3910 dev: true
3855 3911
3856 /arr-diff@4.0.0: 3912 /arr-diff@4.0.0:
@@ -3878,7 +3934,7 @@ packages:
3878 /array-buffer-byte-length@1.0.0: 3934 /array-buffer-byte-length@1.0.0:
3879 resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==} 3935 resolution: {integrity: sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==}
3880 dependencies: 3936 dependencies:
3881 call-bind: 1.0.2 3937 call-bind: 1.0.5
3882 is-array-buffer: 3.0.2 3938 is-array-buffer: 3.0.2
3883 dev: true 3939 dev: true
3884 3940
@@ -3891,14 +3947,14 @@ packages:
3891 resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==} 3947 resolution: {integrity: sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==}
3892 dev: true 3948 dev: true
3893 3949
3894 /array-includes@3.1.6: 3950 /array-includes@3.1.7:
3895 resolution: {integrity: sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==} 3951 resolution: {integrity: sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==}
3896 engines: {node: '>= 0.4'} 3952 engines: {node: '>= 0.4'}
3897 dependencies: 3953 dependencies:
3898 call-bind: 1.0.2 3954 call-bind: 1.0.5
3899 define-properties: 1.2.0 3955 define-properties: 1.2.1
3900 es-abstract: 1.22.1 3956 es-abstract: 1.22.3
3901 get-intrinsic: 1.2.1 3957 get-intrinsic: 1.2.2
3902 is-string: 1.0.7 3958 is-string: 1.0.7
3903 dev: true 3959 dev: true
3904 3960
@@ -3917,55 +3973,56 @@ packages:
3917 engines: {node: '>=0.10.0'} 3973 engines: {node: '>=0.10.0'}
3918 dev: false 3974 dev: false
3919 3975
3920 /array.prototype.findlastindex@1.2.2: 3976 /array.prototype.findlastindex@1.2.3:
3921 resolution: {integrity: sha512-tb5thFFlUcp7NdNF6/MpDk/1r/4awWG1FIz3YqDf+/zJSTezBb+/5WViH41obXULHVpDzoiCLpJ/ZO9YbJMsdw==} 3977 resolution: {integrity: sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==}
3922 engines: {node: '>= 0.4'} 3978 engines: {node: '>= 0.4'}
3923 dependencies: 3979 dependencies:
3924 call-bind: 1.0.2 3980 call-bind: 1.0.5
3925 define-properties: 1.2.0 3981 define-properties: 1.2.1
3926 es-abstract: 1.22.1 3982 es-abstract: 1.22.3
3927 es-shim-unscopables: 1.0.0 3983 es-shim-unscopables: 1.0.2
3928 get-intrinsic: 1.2.1 3984 get-intrinsic: 1.2.2
3929 dev: true 3985 dev: true
3930 3986
3931 /array.prototype.flat@1.3.1: 3987 /array.prototype.flat@1.3.2:
3932 resolution: {integrity: sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==} 3988 resolution: {integrity: sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==}
3933 engines: {node: '>= 0.4'} 3989 engines: {node: '>= 0.4'}
3934 dependencies: 3990 dependencies:
3935 call-bind: 1.0.2 3991 call-bind: 1.0.5
3936 define-properties: 1.2.0 3992 define-properties: 1.2.1
3937 es-abstract: 1.22.1 3993 es-abstract: 1.22.3
3938 es-shim-unscopables: 1.0.0 3994 es-shim-unscopables: 1.0.2
3939 dev: true 3995 dev: true
3940 3996
3941 /array.prototype.flatmap@1.3.1: 3997 /array.prototype.flatmap@1.3.2:
3942 resolution: {integrity: sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==} 3998 resolution: {integrity: sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==}
3943 engines: {node: '>= 0.4'} 3999 engines: {node: '>= 0.4'}
3944 dependencies: 4000 dependencies:
3945 call-bind: 1.0.2 4001 call-bind: 1.0.5
3946 define-properties: 1.2.0 4002 define-properties: 1.2.1
3947 es-abstract: 1.22.1 4003 es-abstract: 1.22.3
3948 es-shim-unscopables: 1.0.0 4004 es-shim-unscopables: 1.0.2
3949 dev: true 4005 dev: true
3950 4006
3951 /array.prototype.tosorted@1.1.1: 4007 /array.prototype.tosorted@1.1.1:
3952 resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==} 4008 resolution: {integrity: sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==}
3953 dependencies: 4009 dependencies:
3954 call-bind: 1.0.2 4010 call-bind: 1.0.5
3955 define-properties: 1.2.0 4011 define-properties: 1.2.1
3956 es-abstract: 1.22.1 4012 es-abstract: 1.22.3
3957 es-shim-unscopables: 1.0.0 4013 es-shim-unscopables: 1.0.2
3958 get-intrinsic: 1.2.1 4014 get-intrinsic: 1.2.2
3959 dev: true 4015 dev: true
3960 4016
3961 /arraybuffer.prototype.slice@1.0.1: 4017 /arraybuffer.prototype.slice@1.0.2:
3962 resolution: {integrity: sha512-09x0ZWFEjj4WD8PDbykUwo3t9arLn8NIzmmYEJFpYekOAQjpkGSyrQhNoRTcwwcFRu+ycWF78QZ63oWTqSjBcw==} 4018 resolution: {integrity: sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==}
3963 engines: {node: '>= 0.4'} 4019 engines: {node: '>= 0.4'}
3964 dependencies: 4020 dependencies:
3965 array-buffer-byte-length: 1.0.0 4021 array-buffer-byte-length: 1.0.0
3966 call-bind: 1.0.2 4022 call-bind: 1.0.5
3967 define-properties: 1.2.0 4023 define-properties: 1.2.1
3968 get-intrinsic: 1.2.1 4024 es-abstract: 1.22.3
4025 get-intrinsic: 1.2.2
3969 is-array-buffer: 3.0.2 4026 is-array-buffer: 3.0.2
3970 is-shared-array-buffer: 1.0.2 4027 is-shared-array-buffer: 1.0.2
3971 dev: true 4028 dev: true
@@ -3990,8 +4047,8 @@ packages:
3990 engines: {node: '>=0.10.0'} 4047 engines: {node: '>=0.10.0'}
3991 dev: false 4048 dev: false
3992 4049
3993 /ast-types-flow@0.0.7: 4050 /ast-types-flow@0.0.8:
3994 resolution: {integrity: sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==} 4051 resolution: {integrity: sha512-OH/2E5Fg20h2aPrbe+QL8JZQFko0YZaF+j4mnQ7BGhfavO7OpSLa8a0y9sBwomHdSbkhTS8TQNayBfnW5DwbvQ==}
3995 dev: true 4052 dev: true
3996 4053
3997 /astral-regex@2.0.0: 4054 /astral-regex@2.0.0:
@@ -4006,8 +4063,8 @@ packages:
4006 engines: {node: '>=0.12.0'} 4063 engines: {node: '>=0.12.0'}
4007 dev: true 4064 dev: true
4008 4065
4009 /async@3.2.4: 4066 /async@3.2.5:
4010 resolution: {integrity: sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==} 4067 resolution: {integrity: sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==}
4011 4068
4012 /asynciterator.prototype@1.0.0: 4069 /asynciterator.prototype@1.0.0:
4013 resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==} 4070 resolution: {integrity: sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==}
@@ -4057,37 +4114,38 @@ packages:
4057 resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==} 4114 resolution: {integrity: sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==}
4058 dev: false 4115 dev: false
4059 4116
4060 /axe-core@4.6.2: 4117 /axe-core@4.7.0:
4061 resolution: {integrity: sha512-b1WlTV8+XKLj9gZy2DZXgQiyDp9xkkoe2a6U6UbYccScq2wgH/YwCeI2/Jq2mgo0HzQxqJOjWZBLeA/mqsk5Mg==} 4118 resolution: {integrity: sha512-M0JtH+hlOL5pLQwHOLNYZaXuhqmvS8oExsqB1SBYgA4Dk7u/xx+YdGHXaK5pyUfed5mYXdlYiphWq3G8cRi5JQ==}
4062 engines: {node: '>=4'} 4119 engines: {node: '>=4'}
4063 dev: true 4120 dev: true
4064 4121
4065 /axios@0.27.2(debug@4.3.4): 4122 /axios@1.6.2(debug@4.3.4):
4066 resolution: {integrity: sha512-t+yRIyySRTp/wua5xEr+z1q60QmLq8ABsS5O9Me1AsE5dfKqgnCFzwiCZZ/cGNd1lq4/7akDWMxdhVlucjmnOQ==} 4123 resolution: {integrity: sha512-7i24Ri4pmDRfJTR7LDBhsOTtcm+9kjX5WiY1X3wIisx6G9So3pfMkEiU7emUBe46oceVImccTEM3k6C5dbVW8A==}
4067 dependencies: 4124 dependencies:
4068 follow-redirects: 1.15.2(debug@4.3.4) 4125 follow-redirects: 1.15.3(debug@4.3.4)
4069 form-data: 4.0.0 4126 form-data: 4.0.0
4127 proxy-from-env: 1.1.0
4070 transitivePeerDependencies: 4128 transitivePeerDependencies:
4071 - debug 4129 - debug
4072 dev: true 4130 dev: true
4073 4131
4074 /axobject-query@3.1.1: 4132 /axobject-query@3.2.1:
4075 resolution: {integrity: sha512-goKlv8DZrK9hUh975fnHzhNIO4jUnFCfv/dszV5VwUGDFjI6vQ2VwoyjYjYNEbBE8AH87TduWP5uyDR1D+Iteg==} 4133 resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
4076 dependencies: 4134 dependencies:
4077 deep-equal: 2.2.0 4135 dequal: 2.0.3
4078 dev: true 4136 dev: true
4079 4137
4080 /babel-jest@29.7.0(@babel/core@7.22.20): 4138 /babel-jest@29.7.0(@babel/core@7.23.5):
4081 resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==} 4139 resolution: {integrity: sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==}
4082 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4140 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4083 peerDependencies: 4141 peerDependencies:
4084 '@babel/core': ^7.8.0 4142 '@babel/core': ^7.8.0
4085 dependencies: 4143 dependencies:
4086 '@babel/core': 7.22.20 4144 '@babel/core': 7.23.5
4087 '@jest/transform': 29.7.0 4145 '@jest/transform': 29.7.0
4088 '@types/babel__core': 7.1.20 4146 '@types/babel__core': 7.1.20
4089 babel-plugin-istanbul: 6.1.1 4147 babel-plugin-istanbul: 6.1.1
4090 babel-preset-jest: 29.6.3(@babel/core@7.22.20) 4148 babel-preset-jest: 29.6.3(@babel/core@7.23.5)
4091 chalk: 4.1.2 4149 chalk: 4.1.2
4092 graceful-fs: 4.2.11 4150 graceful-fs: 4.2.11
4093 slash: 3.0.0 4151 slash: 3.0.0
@@ -4099,7 +4157,7 @@ packages:
4099 resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==} 4157 resolution: {integrity: sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==}
4100 engines: {node: '>=8'} 4158 engines: {node: '>=8'}
4101 dependencies: 4159 dependencies:
4102 '@babel/helper-plugin-utils': 7.20.2 4160 '@babel/helper-plugin-utils': 7.22.5
4103 '@istanbuljs/load-nyc-config': 1.1.0 4161 '@istanbuljs/load-nyc-config': 1.1.0
4104 '@istanbuljs/schema': 0.1.3 4162 '@istanbuljs/schema': 0.1.3
4105 istanbul-lib-instrument: 5.2.1 4163 istanbul-lib-instrument: 5.2.1
@@ -4113,7 +4171,7 @@ packages:
4113 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4171 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4114 dependencies: 4172 dependencies:
4115 '@babel/template': 7.22.15 4173 '@babel/template': 7.22.15
4116 '@babel/types': 7.23.0 4174 '@babel/types': 7.23.5
4117 '@types/babel__core': 7.1.20 4175 '@types/babel__core': 7.1.20
4118 '@types/babel__traverse': 7.18.2 4176 '@types/babel__traverse': 7.18.2
4119 dev: true 4177 dev: true
@@ -4122,55 +4180,55 @@ packages:
4122 resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==} 4180 resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
4123 engines: {node: '>=10', npm: '>=6'} 4181 engines: {node: '>=10', npm: '>=6'}
4124 dependencies: 4182 dependencies:
4125 '@babel/runtime': 7.22.15 4183 '@babel/runtime': 7.23.5
4126 cosmiconfig: 7.1.0 4184 cosmiconfig: 7.1.0
4127 resolve: 1.22.4 4185 resolve: 1.22.8
4128 dev: false 4186 dev: false
4129 4187
4130 /babel-plugin-styled-components@2.1.4(@babel/core@7.23.2)(styled-components@5.3.11): 4188 /babel-plugin-styled-components@2.1.4(@babel/core@7.23.6)(styled-components@5.3.11):
4131 resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==} 4189 resolution: {integrity: sha512-Xgp9g+A/cG47sUyRwwYxGM4bR/jDRg5N6it/8+HxCnbT5XNKSKDT9xm4oag/osgqjC2It/vH0yXsomOG6k558g==}
4132 peerDependencies: 4190 peerDependencies:
4133 styled-components: '>= 2' 4191 styled-components: '>= 2'
4134 dependencies: 4192 dependencies:
4135 '@babel/helper-annotate-as-pure': 7.22.5 4193 '@babel/helper-annotate-as-pure': 7.22.5
4136 '@babel/helper-module-imports': 7.22.15 4194 '@babel/helper-module-imports': 7.22.15
4137 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.2) 4195 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.6)
4138 lodash: 4.17.21 4196 lodash: 4.17.21
4139 picomatch: 2.3.1 4197 picomatch: 2.3.1
4140 styled-components: 5.3.11(@babel/core@7.23.2)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) 4198 styled-components: 5.3.11(@babel/core@7.23.6)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
4141 transitivePeerDependencies: 4199 transitivePeerDependencies:
4142 - '@babel/core' 4200 - '@babel/core'
4143 dev: false 4201 dev: false
4144 4202
4145 /babel-preset-current-node-syntax@1.0.1(@babel/core@7.22.20): 4203 /babel-preset-current-node-syntax@1.0.1(@babel/core@7.23.5):
4146 resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==} 4204 resolution: {integrity: sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==}
4147 peerDependencies: 4205 peerDependencies:
4148 '@babel/core': ^7.0.0 4206 '@babel/core': ^7.0.0
4149 dependencies: 4207 dependencies:
4150 '@babel/core': 7.22.20 4208 '@babel/core': 7.23.5
4151 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.22.20) 4209 '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.23.5)
4152 '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.22.20) 4210 '@babel/plugin-syntax-bigint': 7.8.3(@babel/core@7.23.5)
4153 '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.22.20) 4211 '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.23.5)
4154 '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.22.20) 4212 '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.23.5)
4155 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.22.20) 4213 '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.23.5)
4156 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.22.20) 4214 '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.23.5)
4157 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.22.20) 4215 '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.23.5)
4158 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.22.20) 4216 '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.23.5)
4159 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.22.20) 4217 '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.23.5)
4160 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.22.20) 4218 '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.23.5)
4161 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.22.20) 4219 '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.23.5)
4162 '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.22.20) 4220 '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.23.5)
4163 dev: true 4221 dev: true
4164 4222
4165 /babel-preset-jest@29.6.3(@babel/core@7.22.20): 4223 /babel-preset-jest@29.6.3(@babel/core@7.23.5):
4166 resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==} 4224 resolution: {integrity: sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==}
4167 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 4225 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
4168 peerDependencies: 4226 peerDependencies:
4169 '@babel/core': ^7.0.0 4227 '@babel/core': ^7.0.0
4170 dependencies: 4228 dependencies:
4171 '@babel/core': 7.22.20 4229 '@babel/core': 7.23.5
4172 babel-plugin-jest-hoist: 29.6.3 4230 babel-plugin-jest-hoist: 29.6.3
4173 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.20) 4231 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5)
4174 dev: true 4232 dev: true
4175 4233
4176 /balanced-match@1.0.2: 4234 /balanced-match@1.0.2:
@@ -4215,8 +4273,8 @@ packages:
4215 resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==} 4273 resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
4216 dev: false 4274 dev: false
4217 4275
4218 /big-integer@1.6.51: 4276 /big-integer@1.6.52:
4219 resolution: {integrity: sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==} 4277 resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
4220 engines: {node: '>=0.6'} 4278 engines: {node: '>=0.6'}
4221 dev: true 4279 dev: true
4222 4280
@@ -4268,7 +4326,7 @@ packages:
4268 resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==} 4326 resolution: {integrity: sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==}
4269 engines: {node: '>= 5.10.0'} 4327 engines: {node: '>= 5.10.0'}
4270 dependencies: 4328 dependencies:
4271 big-integer: 1.6.51 4329 big-integer: 1.6.52
4272 dev: true 4330 dev: true
4273 4331
4274 /brace-expansion@1.1.11: 4332 /brace-expansion@1.1.11:
@@ -4313,10 +4371,21 @@ packages:
4313 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7} 4371 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
4314 hasBin: true 4372 hasBin: true
4315 dependencies: 4373 dependencies:
4316 caniuse-lite: 1.0.30001553 4374 caniuse-lite: 1.0.30001571
4317 electron-to-chromium: 1.4.490 4375 electron-to-chromium: 1.4.490
4318 node-releases: 2.0.13 4376 node-releases: 2.0.13
4319 update-browserslist-db: 1.0.11(browserslist@4.21.10) 4377 update-browserslist-db: 1.0.11(browserslist@4.21.10)
4378 dev: true
4379
4380 /browserslist@4.22.2:
4381 resolution: {integrity: sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==}
4382 engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
4383 hasBin: true
4384 dependencies:
4385 caniuse-lite: 1.0.30001571
4386 electron-to-chromium: 1.4.616
4387 node-releases: 2.0.14
4388 update-browserslist-db: 1.0.13(browserslist@4.22.2)
4320 4389
4321 /bser@2.1.1: 4390 /bser@2.1.1:
4322 resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==} 4391 resolution: {integrity: sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==}
@@ -4347,9 +4416,9 @@ packages:
4347 resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==} 4416 resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
4348 dev: false 4417 dev: false
4349 4418
4350 /buffer-equal@1.0.0: 4419 /buffer-equal@1.0.1:
4351 resolution: {integrity: sha512-tcBWO2Dl4e7Asr9hTGcpVrCe+F7DubpmqWCTbj4FHLmjqO2hIaC383acQubWtRJhdceqs5uBHs6Es+Sk//RKiQ==} 4420 resolution: {integrity: sha512-QoV3ptgEaQpvVwbXdSO39iqPQTCxSF7A5U99AxbHYqUdCizL/lH2Z0A2y6nbZucxMEOtNyZfG2s6gsVugGpKkg==}
4352 engines: {node: '>=0.4.0'} 4421 engines: {node: '>=0.4'}
4353 dev: true 4422 dev: true
4354 4423
4355 /buffer-fill@1.0.0: 4424 /buffer-fill@1.0.0:
@@ -4367,23 +4436,23 @@ packages:
4367 base64-js: 1.5.1 4436 base64-js: 1.5.1
4368 ieee754: 1.2.1 4437 ieee754: 1.2.1
4369 4438
4370 /builder-util-runtime@9.2.1: 4439 /builder-util-runtime@9.2.3:
4371 resolution: {integrity: sha512-2rLv/uQD2x+dJ0J3xtsmI12AlRyk7p45TEbE/6o/fbb633e/S3pPgm+ct+JHsoY7r39dKHnGEFk/AASRFdnXmA==} 4440 resolution: {integrity: sha512-FGhkqXdFFZ5dNC4C+yuQB9ak311rpGAw+/ASz8ZdxwODCv1GGMWgLDeofRkdi0F3VCHQEWy/aXcJQozx2nOPiw==}
4372 engines: {node: '>=12.0.0'} 4441 engines: {node: '>=12.0.0'}
4373 dependencies: 4442 dependencies:
4374 debug: 4.3.4(supports-color@5.5.0) 4443 debug: 4.3.4(supports-color@5.5.0)
4375 sax: 1.2.4 4444 sax: 1.3.0
4376 transitivePeerDependencies: 4445 transitivePeerDependencies:
4377 - supports-color 4446 - supports-color
4378 4447
4379 /builder-util@24.5.0: 4448 /builder-util@24.8.1:
4380 resolution: {integrity: sha512-STnBmZN/M5vGcv01u/K8l+H+kplTaq4PAIn3yeuufUKSpcdro0DhJWxPI81k5XcNfC//bjM3+n9nr8F9uV4uAQ==} 4449 resolution: {integrity: sha512-ibmQ4BnnqCnJTNrdmdNlnhF48kfqhNzSeqFMXHLIl+o9/yhn6QfOaVrloZ9YUu3m0k3rexvlT5wcki6LWpjTZw==}
4381 dependencies: 4450 dependencies:
4382 7zip-bin: 5.1.1 4451 7zip-bin: 5.2.0
4383 '@types/debug': 4.1.7 4452 '@types/debug': 4.1.12
4384 app-builder-bin: 4.0.0 4453 app-builder-bin: 4.0.0
4385 bluebird-lst: 1.0.9 4454 bluebird-lst: 1.0.9
4386 builder-util-runtime: 9.2.1 4455 builder-util-runtime: 9.2.3
4387 chalk: 4.1.2 4456 chalk: 4.1.2
4388 cross-spawn: 7.0.3 4457 cross-spawn: 7.0.3
4389 debug: 4.3.4(supports-color@5.5.0) 4458 debug: 4.3.4(supports-color@5.5.0)
@@ -4447,23 +4516,31 @@ packages:
4447 dev: false 4516 dev: false
4448 optional: true 4517 optional: true
4449 4518
4450 /cacache@17.1.4: 4519 /cacache@16.1.3:
4451 resolution: {integrity: sha512-/aJwG2l3ZMJ1xNAnqbMpA40of9dj/pIH3QfiuQSqjfPJF747VR0J/bHn+/KdNnHKc6XQcWt/AfRSBft82W1d2A==} 4520 resolution: {integrity: sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==}
4452 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 4521 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
4453 requiresBuild: true 4522 requiresBuild: true
4454 dependencies: 4523 dependencies:
4455 '@npmcli/fs': 3.1.0 4524 '@npmcli/fs': 2.1.2
4456 fs-minipass: 3.0.3 4525 '@npmcli/move-file': 2.0.1
4457 glob: 10.3.10 4526 chownr: 2.0.0
4527 fs-minipass: 2.1.0
4528 glob: 8.1.0
4529 infer-owner: 1.0.4
4458 lru-cache: 7.18.3 4530 lru-cache: 7.18.3
4459 minipass: 7.0.4 4531 minipass: 3.3.6
4460 minipass-collect: 1.0.2 4532 minipass-collect: 1.0.2
4461 minipass-flush: 1.0.5 4533 minipass-flush: 1.0.5
4462 minipass-pipeline: 1.2.4 4534 minipass-pipeline: 1.2.4
4535 mkdirp: 1.0.4
4463 p-map: 4.0.0 4536 p-map: 4.0.0
4464 ssri: 10.0.5 4537 promise-inflight: 1.0.1
4538 rimraf: 3.0.2
4539 ssri: 9.0.1
4465 tar: 6.2.0 4540 tar: 6.2.0
4466 unique-filename: 3.0.0 4541 unique-filename: 2.0.1
4542 transitivePeerDependencies:
4543 - bluebird
4467 dev: false 4544 dev: false
4468 optional: true 4545 optional: true
4469 4546
@@ -4486,23 +4563,24 @@ packages:
4486 resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==} 4563 resolution: {integrity: sha512-2/kNscPhpcxrOigMZzbiWF7dz8ilhb/nIHU3EyZiXWXpeq/au8qJ8VhdftMkty3n7Gj6HIGalQG8oiBNB3AJgA==}
4487 engines: {node: '>=10.6.0'} 4564 engines: {node: '>=10.6.0'}
4488 4565
4489 /cacheable-request@7.0.2: 4566 /cacheable-request@7.0.4:
4490 resolution: {integrity: sha512-pouW8/FmiPQbuGpkXQ9BAPv/Mo5xDGANgSNXzTzJ8DrKGuXOssM4wIQRjfanNRh3Yu5cfYPvcorqbhg2KIJtew==} 4567 resolution: {integrity: sha512-v+p6ongsrp0yTGbJXjgxPow2+DL93DASP4kXCDKb8/bwRtt9OEF3whggkkDkGNzgcWy2XaF4a8nZglC7uElscg==}
4491 engines: {node: '>=8'} 4568 engines: {node: '>=8'}
4492 dependencies: 4569 dependencies:
4493 clone-response: 1.0.3 4570 clone-response: 1.0.3
4494 get-stream: 5.2.0 4571 get-stream: 5.2.0
4495 http-cache-semantics: 4.1.1 4572 http-cache-semantics: 4.1.1
4496 keyv: 4.5.2 4573 keyv: 4.5.4
4497 lowercase-keys: 2.0.0 4574 lowercase-keys: 2.0.0
4498 normalize-url: 6.1.0 4575 normalize-url: 6.1.0
4499 responselike: 2.0.1 4576 responselike: 2.0.1
4500 4577
4501 /call-bind@1.0.2: 4578 /call-bind@1.0.5:
4502 resolution: {integrity: sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==} 4579 resolution: {integrity: sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==}
4503 dependencies: 4580 dependencies:
4504 function-bind: 1.1.1 4581 function-bind: 1.1.2
4505 get-intrinsic: 1.2.1 4582 get-intrinsic: 1.2.2
4583 set-function-length: 1.1.1
4506 4584
4507 /caller-path@0.1.0: 4585 /caller-path@0.1.0:
4508 resolution: {integrity: sha512-UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g==} 4586 resolution: {integrity: sha512-UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g==}
@@ -4547,8 +4625,8 @@ packages:
4547 resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==} 4625 resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
4548 dev: false 4626 dev: false
4549 4627
4550 /caniuse-lite@1.0.30001553: 4628 /caniuse-lite@1.0.30001571:
4551 resolution: {integrity: sha512-N0ttd6TrFfuqKNi+pMgWJTb9qrdJu4JSpgPFLe/lrD19ugC6fZgF0pUewRowDwzdDnb9V41mFcdlYgl/PyKf4A==} 4629 resolution: {integrity: sha512-tYq/6MoXhdezDLFZuCO/TKboTzuQ/xR5cFdgXPfDtM7/kchBO3b4VWghE/OAi/DV7tTdhmLjZiZBZi1fA/GheQ==}
4552 4630
4553 /caseless@0.12.0: 4631 /caseless@0.12.0:
4554 resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==} 4632 resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
@@ -4622,13 +4700,13 @@ packages:
4622 resolution: {integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==} 4700 resolution: {integrity: sha512-1R5Fho+jBq0DDydt+/vHWj5KJNJCKdARKOCwZUen84I5BreWoLqRLANH1U87eJy1tiASPtMnGqJJq0ZsLoRPOw==}
4623 dev: true 4701 dev: true
4624 4702
4625 /ci-info@3.7.0: 4703 /ci-info@3.8.0:
4626 resolution: {integrity: sha512-2CpRNYmImPx+RXKLq6jko/L07phmS9I02TyqkcNU20GCF/GgaWvc58hPtjxDX8lPpkdwc9sNh72V9k00S7ezog==} 4704 resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==}
4627 engines: {node: '>=8'} 4705 engines: {node: '>=8'}
4628 dev: true 4706 dev: true
4629 4707
4630 /ci-info@3.8.0: 4708 /ci-info@4.0.0:
4631 resolution: {integrity: sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==} 4709 resolution: {integrity: sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==}
4632 engines: {node: '>=8'} 4710 engines: {node: '>=8'}
4633 dev: true 4711 dev: true
4634 4712
@@ -4901,8 +4979,8 @@ packages:
4901 resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==} 4979 resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
4902 requiresBuild: true 4980 requiresBuild: true
4903 4981
4904 /concurrently@8.2.1: 4982 /concurrently@8.2.2:
4905 resolution: {integrity: sha512-nVraf3aXOpIcNud5pB9M82p1tynmZkrSGQ1p6X/VY8cJ+2LMVqAgXsJxYYefACSHbTYlm92O1xuhdGTjwoEvbQ==} 4983 resolution: {integrity: sha512-1dP4gpXFhei8IOtlXRE/T/4H88ElHgTiUzh71YUmtjTEHMSRS2Z/fgOxHSxxusGHogsRfxNq1vyAwxSC+EVyDg==}
4906 engines: {node: ^14.13.0 || >=16.0.0} 4984 engines: {node: ^14.13.0 || >=16.0.0}
4907 hasBin: true 4985 hasBin: true
4908 dependencies: 4986 dependencies:
@@ -4984,18 +5062,29 @@ packages:
4984 engines: {node: '>= 0.6'} 5062 engines: {node: '>= 0.6'}
4985 dev: false 5063 dev: false
4986 5064
5065 /cookie@0.5.0:
5066 resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
5067 engines: {node: '>= 0.6'}
5068 dev: false
5069
4987 /copy-descriptor@0.1.1: 5070 /copy-descriptor@0.1.1:
4988 resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==} 5071 resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
4989 engines: {node: '>=0.10.0'} 5072 engines: {node: '>=0.10.0'}
4990 dev: false 5073 dev: false
4991 5074
5075 /core-js-compat@3.34.0:
5076 resolution: {integrity: sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==}
5077 dependencies:
5078 browserslist: 4.22.2
5079 dev: true
5080
4992 /core-util-is@1.0.2: 5081 /core-util-is@1.0.2:
4993 resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==} 5082 resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
4994 5083
4995 /core-util-is@1.0.3: 5084 /core-util-is@1.0.3:
4996 resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==} 5085 resolution: {integrity: sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==}
4997 5086
4998 /cosmiconfig-typescript-loader@4.3.0(@types/node@20.4.7)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@5.2.2): 5087 /cosmiconfig-typescript-loader@4.3.0(@types/node@20.4.7)(cosmiconfig@8.1.3)(ts-node@10.9.1)(typescript@5.3.2):
4999 resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==} 5088 resolution: {integrity: sha512-NTxV1MFfZDLPiBMjxbHRwSh5LaLcPMwNdCutmnHJCKoVnlvldPWlllonKwrsRJ5pYZBIBGRWWU2tfvzxgeSW5Q==}
5000 engines: {node: '>=12', npm: '>=6'} 5089 engines: {node: '>=12', npm: '>=6'}
5001 peerDependencies: 5090 peerDependencies:
@@ -5006,8 +5095,8 @@ packages:
5006 dependencies: 5095 dependencies:
5007 '@types/node': 20.4.7 5096 '@types/node': 20.4.7
5008 cosmiconfig: 8.1.3 5097 cosmiconfig: 8.1.3
5009 ts-node: 10.9.1(@types/node@20.4.7)(typescript@5.2.2) 5098 ts-node: 10.9.1(@types/node@20.4.7)(typescript@5.3.2)
5010 typescript: 5.2.2 5099 typescript: 5.3.2
5011 dev: true 5100 dev: true
5012 5101
5013 /cosmiconfig@7.1.0: 5102 /cosmiconfig@7.1.0:
@@ -5039,7 +5128,7 @@ packages:
5039 dev: true 5128 dev: true
5040 optional: true 5129 optional: true
5041 5130
5042 /create-jest@29.7.0(@types/node@18.15.3)(ts-node@10.9.1): 5131 /create-jest@29.7.0(@types/node@20.10.3)(ts-node@10.9.1):
5043 resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==} 5132 resolution: {integrity: sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==}
5044 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 5133 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
5045 hasBin: true 5134 hasBin: true
@@ -5048,7 +5137,7 @@ packages:
5048 chalk: 4.1.2 5137 chalk: 4.1.2
5049 exit: 0.1.2 5138 exit: 0.1.2
5050 graceful-fs: 4.2.11 5139 graceful-fs: 4.2.11
5051 jest-config: 29.7.0(@types/node@18.15.3)(ts-node@10.9.1) 5140 jest-config: 29.7.0(@types/node@20.10.3)(ts-node@10.9.1)
5052 jest-util: 29.7.0 5141 jest-util: 29.7.0
5053 prompts: 2.4.2 5142 prompts: 2.4.2
5054 transitivePeerDependencies: 5143 transitivePeerDependencies:
@@ -5120,7 +5209,7 @@ packages:
5120 /css-jss@10.10.0: 5209 /css-jss@10.10.0:
5121 resolution: {integrity: sha512-YyMIS/LsSKEGXEaVJdjonWe18p4vXLo8CMA4FrW/kcaEyqdIGKCFXao31gbJddXEdIxSXFFURWrenBJPlKTgAA==} 5210 resolution: {integrity: sha512-YyMIS/LsSKEGXEaVJdjonWe18p4vXLo8CMA4FrW/kcaEyqdIGKCFXao31gbJddXEdIxSXFFURWrenBJPlKTgAA==}
5122 dependencies: 5211 dependencies:
5123 '@babel/runtime': 7.22.15 5212 '@babel/runtime': 7.23.5
5124 jss: 10.10.0 5213 jss: 10.10.0
5125 jss-preset-default: 10.10.0 5214 jss-preset-default: 10.10.0
5126 dev: false 5215 dev: false
@@ -5136,7 +5225,7 @@ packages:
5136 /css-vendor@2.0.8: 5225 /css-vendor@2.0.8:
5137 resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==} 5226 resolution: {integrity: sha512-x9Aq0XTInxrkuFeHKbYC7zWY8ai7qJ04Kxd9MnvbC1uO5DagxoHQjm4JvG+vCdXOoFtCjbL2XSZfxmoYa9uQVQ==}
5138 dependencies: 5227 dependencies:
5139 '@babel/runtime': 7.22.15 5228 '@babel/runtime': 7.23.5
5140 is-in-browser: 1.1.3 5229 is-in-browser: 1.1.3
5141 dev: false 5230 dev: false
5142 5231
@@ -5159,8 +5248,8 @@ packages:
5159 engines: {node: '>=8'} 5248 engines: {node: '>=8'}
5160 dev: true 5249 dev: true
5161 5250
5162 /darkreader@4.9.58: 5251 /darkreader@4.9.69:
5163 resolution: {integrity: sha512-D/JGoJqW3m2AWBLhO+Pev+eThfs+CwRT4bcLb/1zKjql2yVwG0lx8C2XRDdSVGHw4y11n26W7syWoBpUfuhMqQ==} 5252 resolution: {integrity: sha512-8Z/eeoKK/8y0y/LlxHlnIvSj08zdBqeZYfqR0OcF1+GEfOjIaz/2VOpxyCsJFn92qUTbmDICjYphxvR9G320Tw==}
5164 dev: false 5253 dev: false
5165 5254
5166 /dashdash@1.14.1: 5255 /dashdash@1.14.1:
@@ -5174,7 +5263,7 @@ packages:
5174 resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==} 5263 resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
5175 engines: {node: '>=0.11'} 5264 engines: {node: '>=0.11'}
5176 dependencies: 5265 dependencies:
5177 '@babel/runtime': 7.22.15 5266 '@babel/runtime': 7.23.5
5178 dev: true 5267 dev: true
5179 5268
5180 /dbus-next@0.10.2: 5269 /dbus-next@0.10.2:
@@ -5320,42 +5409,20 @@ packages:
5320 optional: true 5409 optional: true
5321 dev: true 5410 dev: true
5322 5411
5323 /deep-equal@2.2.0:
5324 resolution: {integrity: sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==}
5325 dependencies:
5326 call-bind: 1.0.2
5327 es-get-iterator: 1.1.2
5328 get-intrinsic: 1.2.1
5329 is-arguments: 1.1.1
5330 is-array-buffer: 3.0.2
5331 is-date-object: 1.0.5
5332 is-regex: 1.1.4
5333 is-shared-array-buffer: 1.0.2
5334 isarray: 2.0.5
5335 object-is: 1.1.5
5336 object-keys: 1.1.1
5337 object.assign: 4.1.4
5338 regexp.prototype.flags: 1.5.0
5339 side-channel: 1.0.4
5340 which-boxed-primitive: 1.0.2
5341 which-collection: 1.0.1
5342 which-typed-array: 1.1.11
5343 dev: true
5344
5345 /deep-is@0.1.4: 5412 /deep-is@0.1.4:
5346 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==} 5413 resolution: {integrity: sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==}
5347 dev: true 5414 dev: true
5348 5415
5349 /deepmerge@4.2.2:
5350 resolution: {integrity: sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==}
5351 engines: {node: '>=0.10.0'}
5352 dev: true
5353
5354 /deepmerge@4.3.0: 5416 /deepmerge@4.3.0:
5355 resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==} 5417 resolution: {integrity: sha512-z2wJZXrmeHdvYJp/Ux55wIjqo81G5Bp4c+oELTW+7ar6SogWHajt5a9gO3s3IDaGSAXjDk0vlQKN3rms8ab3og==}
5356 engines: {node: '>=0.10.0'} 5418 engines: {node: '>=0.10.0'}
5357 dev: false 5419 dev: false
5358 5420
5421 /deepmerge@4.3.1:
5422 resolution: {integrity: sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==}
5423 engines: {node: '>=0.10.0'}
5424 dev: true
5425
5359 /default-browser-id@3.0.0: 5426 /default-browser-id@3.0.0:
5360 resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==} 5427 resolution: {integrity: sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==}
5361 engines: {node: '>=12'} 5428 engines: {node: '>=12'}
@@ -5370,7 +5437,7 @@ packages:
5370 dependencies: 5437 dependencies:
5371 bundle-name: 3.0.0 5438 bundle-name: 3.0.0
5372 default-browser-id: 3.0.0 5439 default-browser-id: 3.0.0
5373 execa: 7.1.1 5440 execa: 7.2.0
5374 titleize: 3.0.0 5441 titleize: 3.0.0
5375 dev: true 5442 dev: true
5376 5443
@@ -5378,16 +5445,25 @@ packages:
5378 resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==} 5445 resolution: {integrity: sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==}
5379 engines: {node: '>=10'} 5446 engines: {node: '>=10'}
5380 5447
5448 /define-data-property@1.1.1:
5449 resolution: {integrity: sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==}
5450 engines: {node: '>= 0.4'}
5451 dependencies:
5452 get-intrinsic: 1.2.2
5453 gopd: 1.0.1
5454 has-property-descriptors: 1.0.1
5455
5381 /define-lazy-prop@3.0.0: 5456 /define-lazy-prop@3.0.0:
5382 resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==} 5457 resolution: {integrity: sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==}
5383 engines: {node: '>=12'} 5458 engines: {node: '>=12'}
5384 dev: true 5459 dev: true
5385 5460
5386 /define-properties@1.2.0: 5461 /define-properties@1.2.1:
5387 resolution: {integrity: sha512-xvqAVKGfT1+UAvPwKTVw/njhdQ8ZhXK4lI0bCIuCMrp2up9nPnaDftrLtmpTazqd1o+UY4zgzU+avtMbDP+ldA==} 5462 resolution: {integrity: sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==}
5388 engines: {node: '>= 0.4'} 5463 engines: {node: '>= 0.4'}
5389 dependencies: 5464 dependencies:
5390 has-property-descriptors: 1.0.0 5465 define-data-property: 1.1.1
5466 has-property-descriptors: 1.0.1
5391 object-keys: 1.1.1 5467 object-keys: 1.1.1
5392 5468
5393 /define-property@0.2.5: 5469 /define-property@0.2.5:
@@ -5434,6 +5510,11 @@ packages:
5434 resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==} 5510 resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
5435 dev: false 5511 dev: false
5436 5512
5513 /dequal@2.0.3:
5514 resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
5515 engines: {node: '>=6'}
5516 dev: true
5517
5437 /destroy@1.0.4: 5518 /destroy@1.0.4:
5438 resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==} 5519 resolution: {integrity: sha512-3NdhDuEXnfun/z7x9GOElY49LoqVHoGScmOKwmxhsS8N5Y+Z8KyPPDnaSzqWgYt/ji4mqwfTS34Htrk0zPIXVg==}
5439 dev: false 5520 dev: false
@@ -5480,7 +5561,7 @@ packages:
5480 /dir-compare@3.3.0: 5561 /dir-compare@3.3.0:
5481 resolution: {integrity: sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==} 5562 resolution: {integrity: sha512-J7/et3WlGUCxjdnD3HAAzQ6nsnc0WL6DD7WcwJb7c39iH1+AWfg+9OqzJNaI6PkBwBvm1mhZNL9iY/nRiZXlPg==}
5482 dependencies: 5563 dependencies:
5483 buffer-equal: 1.0.0 5564 buffer-equal: 1.0.1
5484 minimatch: 3.1.2 5565 minimatch: 3.1.2
5485 dev: true 5566 dev: true
5486 5567
@@ -5491,12 +5572,12 @@ packages:
5491 path-type: 4.0.0 5572 path-type: 4.0.0
5492 dev: true 5573 dev: true
5493 5574
5494 /dmg-builder@24.7.0: 5575 /dmg-builder@24.9.1:
5495 resolution: {integrity: sha512-XU/AmcOWPM0X3OUufvvy8+RBKnvd+Rd66Eys9uq1FTZ/9ssgqWf/4SHC/OzAwaeN/qF6HHzR63Bvu+xHjuliGw==} 5576 resolution: {integrity: sha512-huC+O6hvHd24Ubj3cy2GMiGLe2xGFKN3klqVMLAdcbB6SWMd1yPSdZvV8W1O01ICzCCRlZDHiv4VrNUgnPUfbQ==}
5496 dependencies: 5577 dependencies:
5497 app-builder-lib: 24.7.0 5578 app-builder-lib: 24.9.1
5498 builder-util: 24.5.0 5579 builder-util: 24.8.1
5499 builder-util-runtime: 9.2.1 5580 builder-util-runtime: 9.2.3
5500 fs-extra: 10.1.0 5581 fs-extra: 10.1.0
5501 iconv-lite: 0.6.3 5582 iconv-lite: 0.6.3
5502 js-yaml: 4.1.0 5583 js-yaml: 4.1.0
@@ -5513,8 +5594,8 @@ packages:
5513 hasBin: true 5594 hasBin: true
5514 requiresBuild: true 5595 requiresBuild: true
5515 dependencies: 5596 dependencies:
5516 '@types/plist': 3.0.4 5597 '@types/plist': 3.0.5
5517 '@types/verror': 1.10.8 5598 '@types/verror': 1.10.9
5518 ajv: 6.12.6 5599 ajv: 6.12.6
5519 crc: 3.8.0 5600 crc: 3.8.0
5520 iconv-corefoundation: 1.1.7 5601 iconv-corefoundation: 1.1.7
@@ -5541,7 +5622,7 @@ packages:
5541 /dom-helpers@5.2.1: 5622 /dom-helpers@5.2.1:
5542 resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==} 5623 resolution: {integrity: sha512-nRCa7CK3VTrM2NmGkIy4cbK7IZlgBE/PYMn55rrXefr5xXDP0LdtfPnblFDoVdcAfslJ7or6iqAUnx0CCGIWQA==}
5543 dependencies: 5624 dependencies:
5544 '@babel/runtime': 7.22.15 5625 '@babel/runtime': 7.23.5
5545 csstype: 3.1.2 5626 csstype: 3.1.2
5546 dev: false 5627 dev: false
5547 5628
@@ -5573,6 +5654,7 @@ packages:
5573 /eastasianwidth@0.2.0: 5654 /eastasianwidth@0.2.0:
5574 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==} 5655 resolution: {integrity: sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==}
5575 requiresBuild: true 5656 requiresBuild: true
5657 dev: true
5576 5658
5577 /ecc-jsbn@0.1.2: 5659 /ecc-jsbn@0.1.2:
5578 resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==} 5660 resolution: {integrity: sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==}
@@ -5607,24 +5689,24 @@ packages:
5607 resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==} 5689 resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
5608 dev: false 5690 dev: false
5609 5691
5610 /ejs@3.1.8: 5692 /ejs@3.1.9:
5611 resolution: {integrity: sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==} 5693 resolution: {integrity: sha512-rC+QVNMJWv+MtPgkt0y+0rVEIdbtxVADApW9JXrUVlzHetgcyczP/E7DJmWJ4fJCZF2cPcBk0laWO9ZHMG3DmQ==}
5612 engines: {node: '>=0.10.0'} 5694 engines: {node: '>=0.10.0'}
5613 hasBin: true 5695 hasBin: true
5614 dependencies: 5696 dependencies:
5615 jake: 10.8.5 5697 jake: 10.8.7
5616 dev: true 5698 dev: true
5617 5699
5618 /electron-builder@24.7.0: 5700 /electron-builder@24.9.1:
5619 resolution: {integrity: sha512-uHO+Wbgy8ry6YIGmrFlT6M+GI/k1n38P2O0gmb+EiwT6mDxK9nUef/GXs7oZrUo170IrUb6ggs5rp8ZMQhGl1w==} 5701 resolution: {integrity: sha512-v7BuakDuY6sKMUYM8mfQGrwyjBpZ/ObaqnenU0H+igEL10nc6ht049rsCw2HghRBdEwJxGIBuzs3jbEhNaMDmg==}
5620 engines: {node: '>=14.0.0'} 5702 engines: {node: '>=14.0.0'}
5621 hasBin: true 5703 hasBin: true
5622 dependencies: 5704 dependencies:
5623 app-builder-lib: 24.7.0 5705 app-builder-lib: 24.9.1
5624 builder-util: 24.5.0 5706 builder-util: 24.8.1
5625 builder-util-runtime: 9.2.1 5707 builder-util-runtime: 9.2.3
5626 chalk: 4.1.2 5708 chalk: 4.1.2
5627 dmg-builder: 24.7.0 5709 dmg-builder: 24.9.1
5628 fs-extra: 10.1.0 5710 fs-extra: 10.1.0
5629 is-ci: 3.0.1 5711 is-ci: 3.0.1
5630 lazy-val: 1.0.5 5712 lazy-val: 1.0.5
@@ -5635,8 +5717,9 @@ packages:
5635 - supports-color 5717 - supports-color
5636 dev: true 5718 dev: true
5637 5719
5638 /electron-dl@3.5.0: 5720 /electron-dl@3.5.1:
5639 resolution: {integrity: sha512-Oj+VSuScVx8hEKM2HEvTQswTX6G3MLh7UoAz/oZuvKyNDfudNi1zY6PK/UnFoK1nCl9DF6k+3PFwElKbtZlDig==} 5721 resolution: {integrity: sha512-5Yb9s/iPVJ5mW5x3j6XkKxt7WEqREr/AhYxZmtEfW1ffQHs1+aGoiQ2fXCAU6UIXMnWog2MXK82vrxJsjA3nbQ==}
5722 engines: {node: '>=12'}
5640 dependencies: 5723 dependencies:
5641 ext-name: 5.0.0 5724 ext-name: 5.0.0
5642 pupa: 2.1.1 5725 pupa: 2.1.1
@@ -5647,12 +5730,12 @@ packages:
5647 resolution: {integrity: sha512-C2FQJuk8567P2a2loBNwl5c8kwOTQVMB0capgHtPI7zKwZG16X0UxG+sNYZExQfnJ0PA+ecECA/4LcXxQa2TCA==} 5730 resolution: {integrity: sha512-C2FQJuk8567P2a2loBNwl5c8kwOTQVMB0capgHtPI7zKwZG16X0UxG+sNYZExQfnJ0PA+ecECA/4LcXxQa2TCA==}
5648 dev: false 5731 dev: false
5649 5732
5650 /electron-publish@24.5.0: 5733 /electron-publish@24.8.1:
5651 resolution: {integrity: sha512-zwo70suH15L15B4ZWNDoEg27HIYoPsGJUF7xevLJLSI7JUPC8l2yLBdLGwqueJ5XkDL7ucYyRZzxJVR8ElV9BA==} 5734 resolution: {integrity: sha512-IFNXkdxMVzUdweoLJNXSupXkqnvgbrn3J4vognuOY06LaS/m0xvfFYIf+o1CM8if6DuWYWoQFKPcWZt/FUjZPw==}
5652 dependencies: 5735 dependencies:
5653 '@types/fs-extra': 9.0.13 5736 '@types/fs-extra': 9.0.13
5654 builder-util: 24.5.0 5737 builder-util: 24.8.1
5655 builder-util-runtime: 9.2.1 5738 builder-util-runtime: 9.2.3
5656 chalk: 4.1.2 5739 chalk: 4.1.2
5657 fs-extra: 10.1.0 5740 fs-extra: 10.1.0
5658 lazy-val: 1.0.5 5741 lazy-val: 1.0.5
@@ -5674,11 +5757,15 @@ packages:
5674 5757
5675 /electron-to-chromium@1.4.490: 5758 /electron-to-chromium@1.4.490:
5676 resolution: {integrity: sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==} 5759 resolution: {integrity: sha512-6s7NVJz+sATdYnIwhdshx/N/9O6rvMxmhVoDSDFdj6iA45gHR8EQje70+RYsF4GeB+k0IeNSBnP7yG9ZXJFr7A==}
5760 dev: true
5677 5761
5678 /electron-updater@6.1.5: 5762 /electron-to-chromium@1.4.616:
5679 resolution: {integrity: sha512-RFoncoSbAWYN3CVOFFrEUB5O2V81REAnA4IXQ8enGTSbUjjv+z54TYp23y/3e63oiV3W8grhblJmn9oyH/LnVg==} 5763 resolution: {integrity: sha512-1n7zWYh8eS0L9Uy+GskE0lkBUNK83cXTVJI0pU3mGprFsbfSdAc15VTFbo+A+Bq4pwstmL30AVcEU3Fo463lNg==}
5764
5765 /electron-updater@6.1.7:
5766 resolution: {integrity: sha512-SNOhYizjkm4ET+Y8ilJyUzcVsFJDtINzVN1TyHnZeMidZEG3YoBebMyXc/J6WSiXdUaOjC7ngekN6rNp6ardHA==}
5680 dependencies: 5767 dependencies:
5681 builder-util-runtime: 9.2.1 5768 builder-util-runtime: 9.2.3
5682 fs-extra: 10.1.0 5769 fs-extra: 10.1.0
5683 js-yaml: 4.1.0 5770 js-yaml: 4.1.0
5684 lazy-val: 1.0.5 5771 lazy-val: 1.0.5
@@ -5698,14 +5785,14 @@ packages:
5698 mkdirp: 0.5.6 5785 mkdirp: 0.5.6
5699 dev: false 5786 dev: false
5700 5787
5701 /electron@27.0.1: 5788 /electron@27.1.3:
5702 resolution: {integrity: sha512-AjDGgpf2thNxVXoNqEG+0GCUK4upAEa2B+IoM5Yk9YrOLd6uUOEMfGI9rhPtj+jC14iKOvBdefY2uAzcDC0qng==} 5789 resolution: {integrity: sha512-7eD8VMhhlL5J531OOawn00eMthUkX1e3qN5Nqd7eMK8bg5HxQBrn8bdPlvUEnCano9KhrVwaDnGeuzWoDOGpjQ==}
5703 engines: {node: '>= 12.20.55'} 5790 engines: {node: '>= 12.20.55'}
5704 hasBin: true 5791 hasBin: true
5705 requiresBuild: true 5792 requiresBuild: true
5706 dependencies: 5793 dependencies:
5707 '@electron/get': 2.0.2 5794 '@electron/get': 2.0.3
5708 '@types/node': 18.15.3 5795 '@types/node': 18.19.2
5709 extract-zip: 2.0.1 5796 extract-zip: 2.0.1
5710 transitivePeerDependencies: 5797 transitivePeerDependencies:
5711 - supports-color 5798 - supports-color
@@ -5721,6 +5808,7 @@ packages:
5721 5808
5722 /emoji-regex@9.2.2: 5809 /emoji-regex@9.2.2:
5723 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==} 5810 resolution: {integrity: sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==}
5811 dev: true
5724 5812
5725 /enabled@2.0.0: 5813 /enabled@2.0.0:
5726 resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==} 5814 resolution: {integrity: sha512-AKrN98kuwOzMIdAizXGI86UFBoo26CL21UM763y1h/GMSJ4/OHU9k2YlsmBpyScFo/wbLzWQJBMCW4+IO3/+OQ==}
@@ -5788,26 +5876,26 @@ packages:
5788 string-template: 0.2.1 5876 string-template: 0.2.1
5789 dev: true 5877 dev: true
5790 5878
5791 /es-abstract@1.22.1: 5879 /es-abstract@1.22.3:
5792 resolution: {integrity: sha512-ioRRcXMO6OFyRpyzV3kE1IIBd4WG5/kltnzdxSCqoP8CMGs/Li+M1uF5o7lOkZVFjDs+NLesthnF66Pg/0q0Lw==} 5880 resolution: {integrity: sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==}
5793 engines: {node: '>= 0.4'} 5881 engines: {node: '>= 0.4'}
5794 dependencies: 5882 dependencies:
5795 array-buffer-byte-length: 1.0.0 5883 array-buffer-byte-length: 1.0.0
5796 arraybuffer.prototype.slice: 1.0.1 5884 arraybuffer.prototype.slice: 1.0.2
5797 available-typed-arrays: 1.0.5 5885 available-typed-arrays: 1.0.5
5798 call-bind: 1.0.2 5886 call-bind: 1.0.5
5799 es-set-tostringtag: 2.0.1 5887 es-set-tostringtag: 2.0.2
5800 es-to-primitive: 1.2.1 5888 es-to-primitive: 1.2.1
5801 function.prototype.name: 1.1.5 5889 function.prototype.name: 1.1.6
5802 get-intrinsic: 1.2.1 5890 get-intrinsic: 1.2.2
5803 get-symbol-description: 1.0.0 5891 get-symbol-description: 1.0.0
5804 globalthis: 1.0.3 5892 globalthis: 1.0.3
5805 gopd: 1.0.1 5893 gopd: 1.0.1
5806 has: 1.0.3 5894 has-property-descriptors: 1.0.1
5807 has-property-descriptors: 1.0.0
5808 has-proto: 1.0.1 5895 has-proto: 1.0.1
5809 has-symbols: 1.0.3 5896 has-symbols: 1.0.3
5810 internal-slot: 1.0.5 5897 hasown: 2.0.0
5898 internal-slot: 1.0.6
5811 is-array-buffer: 3.0.2 5899 is-array-buffer: 3.0.2
5812 is-callable: 1.2.7 5900 is-callable: 1.2.7
5813 is-negative-zero: 2.0.2 5901 is-negative-zero: 2.0.2
@@ -5816,68 +5904,55 @@ packages:
5816 is-string: 1.0.7 5904 is-string: 1.0.7
5817 is-typed-array: 1.1.12 5905 is-typed-array: 1.1.12
5818 is-weakref: 1.0.2 5906 is-weakref: 1.0.2
5819 object-inspect: 1.12.3 5907 object-inspect: 1.13.1
5820 object-keys: 1.1.1 5908 object-keys: 1.1.1
5821 object.assign: 4.1.4 5909 object.assign: 4.1.5
5822 regexp.prototype.flags: 1.5.0 5910 regexp.prototype.flags: 1.5.1
5823 safe-array-concat: 1.0.0 5911 safe-array-concat: 1.0.1
5824 safe-regex-test: 1.0.0 5912 safe-regex-test: 1.0.0
5825 string.prototype.trim: 1.2.7 5913 string.prototype.trim: 1.2.8
5826 string.prototype.trimend: 1.0.6 5914 string.prototype.trimend: 1.0.7
5827 string.prototype.trimstart: 1.0.6 5915 string.prototype.trimstart: 1.0.7
5828 typed-array-buffer: 1.0.0 5916 typed-array-buffer: 1.0.0
5829 typed-array-byte-length: 1.0.0 5917 typed-array-byte-length: 1.0.0
5830 typed-array-byte-offset: 1.0.0 5918 typed-array-byte-offset: 1.0.0
5831 typed-array-length: 1.0.4 5919 typed-array-length: 1.0.4
5832 unbox-primitive: 1.0.2 5920 unbox-primitive: 1.0.2
5833 which-typed-array: 1.1.11 5921 which-typed-array: 1.1.13
5834 dev: true 5922 dev: true
5835 5923
5836 /es-get-iterator@1.1.2: 5924 /es-iterator-helpers@1.0.15:
5837 resolution: {integrity: sha512-+DTO8GYwbMCwbywjimwZMHp8AuYXOS2JZFWoi2AlPOS3ebnII9w/NLpNZtA7A0YLaVDw+O7KFCeoIV7OPvM7hQ==} 5925 resolution: {integrity: sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==}
5838 dependencies:
5839 call-bind: 1.0.2
5840 get-intrinsic: 1.2.1
5841 has-symbols: 1.0.3
5842 is-arguments: 1.1.1
5843 is-map: 2.0.2
5844 is-set: 2.0.2
5845 is-string: 1.0.7
5846 isarray: 2.0.5
5847 dev: true
5848
5849 /es-iterator-helpers@1.0.14:
5850 resolution: {integrity: sha512-JgtVnwiuoRuzLvqelrvN3Xu7H9bu2ap/kQ2CrM62iidP8SKuD99rWU3CJy++s7IVL2qb/AjXPGR/E7i9ngd/Cw==}
5851 dependencies: 5926 dependencies:
5852 asynciterator.prototype: 1.0.0 5927 asynciterator.prototype: 1.0.0
5853 call-bind: 1.0.2 5928 call-bind: 1.0.5
5854 define-properties: 1.2.0 5929 define-properties: 1.2.1
5855 es-abstract: 1.22.1 5930 es-abstract: 1.22.3
5856 es-set-tostringtag: 2.0.1 5931 es-set-tostringtag: 2.0.2
5857 function-bind: 1.1.1 5932 function-bind: 1.1.2
5858 get-intrinsic: 1.2.1 5933 get-intrinsic: 1.2.2
5859 globalthis: 1.0.3 5934 globalthis: 1.0.3
5860 has-property-descriptors: 1.0.0 5935 has-property-descriptors: 1.0.1
5861 has-proto: 1.0.1 5936 has-proto: 1.0.1
5862 has-symbols: 1.0.3 5937 has-symbols: 1.0.3
5863 internal-slot: 1.0.5 5938 internal-slot: 1.0.6
5864 iterator.prototype: 1.1.1 5939 iterator.prototype: 1.1.2
5865 safe-array-concat: 1.0.0 5940 safe-array-concat: 1.0.1
5866 dev: true 5941 dev: true
5867 5942
5868 /es-set-tostringtag@2.0.1: 5943 /es-set-tostringtag@2.0.2:
5869 resolution: {integrity: sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==} 5944 resolution: {integrity: sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==}
5870 engines: {node: '>= 0.4'} 5945 engines: {node: '>= 0.4'}
5871 dependencies: 5946 dependencies:
5872 get-intrinsic: 1.2.1 5947 get-intrinsic: 1.2.2
5873 has: 1.0.3
5874 has-tostringtag: 1.0.0 5948 has-tostringtag: 1.0.0
5949 hasown: 2.0.0
5875 dev: true 5950 dev: true
5876 5951
5877 /es-shim-unscopables@1.0.0: 5952 /es-shim-unscopables@1.0.2:
5878 resolution: {integrity: sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==} 5953 resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
5879 dependencies: 5954 dependencies:
5880 has: 1.0.3 5955 hasown: 2.0.0
5881 dev: true 5956 dev: true
5882 5957
5883 /es-to-primitive@1.2.1: 5958 /es-to-primitive@1.2.1:
@@ -5951,14 +6026,14 @@ packages:
5951 tslib: 2.4.0 6026 tslib: 2.4.0
5952 dev: true 6027 dev: true
5953 6028
5954 /esbuild-sass-plugin@2.15.0(esbuild@0.16.17): 6029 /esbuild-sass-plugin@2.16.0(esbuild@0.16.17):
5955 resolution: {integrity: sha512-T0GCHVfeuGBBgY5k19RbExd7vVuC3lzrK8IZbXOqZftw6N9lTBnZuqKhnhdAJBcu6wek7K/fXJ2zzY6KrcNtAg==} 6030 resolution: {integrity: sha512-mGCe9MxNYvZ+j77Q/QFO+rwUGA36mojDXkOhtVmoyz1zwYbMaNrtVrmXwwYDleS/UMKTNU3kXuiTtPiAD3K+Pw==}
5956 peerDependencies: 6031 peerDependencies:
5957 esbuild: ^0.19.1 || ^0.16.7 6032 esbuild: ^0.19.4 || ^0.16.7
5958 dependencies: 6033 dependencies:
5959 esbuild: 0.16.17 6034 esbuild: 0.16.17
5960 resolve: 1.22.4 6035 resolve: 1.22.8
5961 sass: 1.67.0 6036 sass: 1.69.5
5962 dev: true 6037 dev: true
5963 6038
5964 /esbuild@0.16.17: 6039 /esbuild@0.16.17:
@@ -6017,7 +6092,7 @@ packages:
6017 resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==} 6092 resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
6018 engines: {node: '>=10'} 6093 engines: {node: '>=10'}
6019 6094
6020 /eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.28.1)(eslint@8.49.0): 6095 /eslint-config-airbnb-base@15.0.0(eslint-plugin-import@2.29.1)(eslint@8.56.0):
6021 resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==} 6096 resolution: {integrity: sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==}
6022 engines: {node: ^10.12.0 || >=12.0.0} 6097 engines: {node: ^10.12.0 || >=12.0.0}
6023 peerDependencies: 6098 peerDependencies:
@@ -6025,14 +6100,14 @@ packages:
6025 eslint-plugin-import: ^2.25.2 6100 eslint-plugin-import: ^2.25.2
6026 dependencies: 6101 dependencies:
6027 confusing-browser-globals: 1.0.11 6102 confusing-browser-globals: 1.0.11
6028 eslint: 8.49.0 6103 eslint: 8.56.0
6029 eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.49.0) 6104 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)
6030 object.assign: 4.1.4 6105 object.assign: 4.1.5
6031 object.entries: 1.1.6 6106 object.entries: 1.1.7
6032 semver: 6.3.1 6107 semver: 6.3.1
6033 dev: true 6108 dev: true
6034 6109
6035 /eslint-config-airbnb-typescript@17.1.0(@typescript-eslint/eslint-plugin@6.7.2)(@typescript-eslint/parser@6.7.2)(eslint-plugin-import@2.28.1)(eslint@8.49.0): 6110 /eslint-config-airbnb-typescript@17.1.0(@typescript-eslint/eslint-plugin@6.15.0)(@typescript-eslint/parser@6.15.0)(eslint-plugin-import@2.29.1)(eslint@8.56.0):
6036 resolution: {integrity: sha512-GPxI5URre6dDpJ0CtcthSZVBAfI+Uw7un5OYNVxP2EYi3H81Jw701yFP7AU+/vCE7xBtFmjge7kfhhk4+RAiig==} 6111 resolution: {integrity: sha512-GPxI5URre6dDpJ0CtcthSZVBAfI+Uw7un5OYNVxP2EYi3H81Jw701yFP7AU+/vCE7xBtFmjge7kfhhk4+RAiig==}
6037 peerDependencies: 6112 peerDependencies:
6038 '@typescript-eslint/eslint-plugin': ^5.13.0 || ^6.0.0 6113 '@typescript-eslint/eslint-plugin': ^5.13.0 || ^6.0.0
@@ -6040,14 +6115,14 @@ packages:
6040 eslint: ^7.32.0 || ^8.2.0 6115 eslint: ^7.32.0 || ^8.2.0
6041 eslint-plugin-import: ^2.25.3 6116 eslint-plugin-import: ^2.25.3
6042 dependencies: 6117 dependencies:
6043 '@typescript-eslint/eslint-plugin': 6.7.2(@typescript-eslint/parser@6.7.2)(eslint@8.49.0)(typescript@5.2.2) 6118 '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.2)
6044 '@typescript-eslint/parser': 6.7.2(eslint@8.49.0)(typescript@5.2.2) 6119 '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.2)
6045 eslint: 8.49.0 6120 eslint: 8.56.0
6046 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.28.1)(eslint@8.49.0) 6121 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1)(eslint@8.56.0)
6047 eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.49.0) 6122 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)
6048 dev: true 6123 dev: true
6049 6124
6050 /eslint-config-airbnb@19.0.4(eslint-plugin-import@2.28.1)(eslint-plugin-jsx-a11y@6.7.1)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@8.49.0): 6125 /eslint-config-airbnb@19.0.4(eslint-plugin-import@2.29.1)(eslint-plugin-jsx-a11y@6.8.0)(eslint-plugin-react-hooks@4.6.0)(eslint-plugin-react@7.33.2)(eslint@8.56.0):
6051 resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==} 6126 resolution: {integrity: sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==}
6052 engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0} 6127 engines: {node: ^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0}
6053 peerDependencies: 6128 peerDependencies:
@@ -6057,36 +6132,36 @@ packages:
6057 eslint-plugin-react: ^7.28.0 6132 eslint-plugin-react: ^7.28.0
6058 eslint-plugin-react-hooks: ^4.3.0 6133 eslint-plugin-react-hooks: ^4.3.0
6059 dependencies: 6134 dependencies:
6060 eslint: 8.49.0 6135 eslint: 8.56.0
6061 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.28.1)(eslint@8.49.0) 6136 eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.29.1)(eslint@8.56.0)
6062 eslint-plugin-import: 2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.49.0) 6137 eslint-plugin-import: 2.29.1(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)
6063 eslint-plugin-jsx-a11y: 6.7.1(eslint@8.49.0) 6138 eslint-plugin-jsx-a11y: 6.8.0(eslint@8.56.0)
6064 eslint-plugin-react: 7.33.2(eslint@8.49.0) 6139 eslint-plugin-react: 7.33.2(eslint@8.56.0)
6065 eslint-plugin-react-hooks: 4.6.0(eslint@8.49.0) 6140 eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0)
6066 object.assign: 4.1.4 6141 object.assign: 4.1.5
6067 object.entries: 1.1.6 6142 object.entries: 1.1.7
6068 dev: true 6143 dev: true
6069 6144
6070 /eslint-config-prettier@8.8.0(eslint@8.49.0): 6145 /eslint-config-prettier@9.1.0(eslint@8.56.0):
6071 resolution: {integrity: sha512-wLbQiFre3tdGgpDv67NQKnJuTlcUVYHas3k+DZCc2U2BadthoEY4B7hLPvAxaqdyOGCzuLfii2fqGph10va7oA==} 6146 resolution: {integrity: sha512-NSWl5BFQWEPi1j4TjVNItzYV7dZXZ+wP6I6ZhrBGpChQhZRUaElihE9uRRkcbRnNb76UMKDF3r+WTmNcGPKsqw==}
6072 hasBin: true 6147 hasBin: true
6073 peerDependencies: 6148 peerDependencies:
6074 eslint: '>=7.0.0' 6149 eslint: '>=7.0.0'
6075 dependencies: 6150 dependencies:
6076 eslint: 8.49.0 6151 eslint: 8.56.0
6077 dev: true 6152 dev: true
6078 6153
6079 /eslint-import-resolver-node@0.3.7: 6154 /eslint-import-resolver-node@0.3.9:
6080 resolution: {integrity: sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==} 6155 resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
6081 dependencies: 6156 dependencies:
6082 debug: 3.2.7 6157 debug: 3.2.7
6083 is-core-module: 2.13.0 6158 is-core-module: 2.13.1
6084 resolve: 1.22.4 6159 resolve: 1.22.8
6085 transitivePeerDependencies: 6160 transitivePeerDependencies:
6086 - supports-color 6161 - supports-color
6087 dev: true 6162 dev: true
6088 6163
6089 /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.7.2)(eslint-import-resolver-node@0.3.7)(eslint@8.49.0): 6164 /eslint-module-utils@2.8.0(@typescript-eslint/parser@6.15.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0):
6090 resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==} 6165 resolution: {integrity: sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==}
6091 engines: {node: '>=4'} 6166 engines: {node: '>=4'}
6092 peerDependencies: 6167 peerDependencies:
@@ -6107,16 +6182,16 @@ packages:
6107 eslint-import-resolver-webpack: 6182 eslint-import-resolver-webpack:
6108 optional: true 6183 optional: true
6109 dependencies: 6184 dependencies:
6110 '@typescript-eslint/parser': 6.7.2(eslint@8.49.0)(typescript@5.2.2) 6185 '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.2)
6111 debug: 3.2.7 6186 debug: 3.2.7
6112 eslint: 8.49.0 6187 eslint: 8.56.0
6113 eslint-import-resolver-node: 0.3.7 6188 eslint-import-resolver-node: 0.3.9
6114 transitivePeerDependencies: 6189 transitivePeerDependencies:
6115 - supports-color 6190 - supports-color
6116 dev: true 6191 dev: true
6117 6192
6118 /eslint-plugin-import@2.28.1(@typescript-eslint/parser@6.7.2)(eslint@8.49.0): 6193 /eslint-plugin-import@2.29.1(@typescript-eslint/parser@6.15.0)(eslint@8.56.0):
6119 resolution: {integrity: sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==} 6194 resolution: {integrity: sha512-BbPC0cuExzhiMo4Ff1BTVwHpjjv28C5R+btTOGaCRC7UEz801up0JadwkeSk5Ued6TG34uaczuVuH6qyy5YUxw==}
6120 engines: {node: '>=4'} 6195 engines: {node: '>=4'}
6121 peerDependencies: 6196 peerDependencies:
6122 '@typescript-eslint/parser': '*' 6197 '@typescript-eslint/parser': '*'
@@ -6125,33 +6200,33 @@ packages:
6125 '@typescript-eslint/parser': 6200 '@typescript-eslint/parser':
6126 optional: true 6201 optional: true
6127 dependencies: 6202 dependencies:
6128 '@typescript-eslint/parser': 6.7.2(eslint@8.49.0)(typescript@5.2.2) 6203 '@typescript-eslint/parser': 6.15.0(eslint@8.56.0)(typescript@5.3.2)
6129 array-includes: 3.1.6 6204 array-includes: 3.1.7
6130 array.prototype.findlastindex: 1.2.2 6205 array.prototype.findlastindex: 1.2.3
6131 array.prototype.flat: 1.3.1 6206 array.prototype.flat: 1.3.2
6132 array.prototype.flatmap: 1.3.1 6207 array.prototype.flatmap: 1.3.2
6133 debug: 3.2.7 6208 debug: 3.2.7
6134 doctrine: 2.1.0 6209 doctrine: 2.1.0
6135 eslint: 8.49.0 6210 eslint: 8.56.0
6136 eslint-import-resolver-node: 0.3.7 6211 eslint-import-resolver-node: 0.3.9
6137 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.7.2)(eslint-import-resolver-node@0.3.7)(eslint@8.49.0) 6212 eslint-module-utils: 2.8.0(@typescript-eslint/parser@6.15.0)(eslint-import-resolver-node@0.3.9)(eslint@8.56.0)
6138 has: 1.0.3 6213 hasown: 2.0.0
6139 is-core-module: 2.13.0 6214 is-core-module: 2.13.1
6140 is-glob: 4.0.3 6215 is-glob: 4.0.3
6141 minimatch: 3.1.2 6216 minimatch: 3.1.2
6142 object.fromentries: 2.0.6 6217 object.fromentries: 2.0.7
6143 object.groupby: 1.0.0 6218 object.groupby: 1.0.1
6144 object.values: 1.1.6 6219 object.values: 1.1.7
6145 semver: 6.3.1 6220 semver: 6.3.1
6146 tsconfig-paths: 3.14.2 6221 tsconfig-paths: 3.15.0
6147 transitivePeerDependencies: 6222 transitivePeerDependencies:
6148 - eslint-import-resolver-typescript 6223 - eslint-import-resolver-typescript
6149 - eslint-import-resolver-webpack 6224 - eslint-import-resolver-webpack
6150 - supports-color 6225 - supports-color
6151 dev: true 6226 dev: true
6152 6227
6153 /eslint-plugin-jest@27.2.3(@typescript-eslint/eslint-plugin@6.7.2)(eslint@8.49.0)(jest@29.7.0)(typescript@5.2.2): 6228 /eslint-plugin-jest@27.6.0(@typescript-eslint/eslint-plugin@6.15.0)(eslint@8.56.0)(jest@29.7.0)(typescript@5.3.2):
6154 resolution: {integrity: sha512-sRLlSCpICzWuje66Gl9zvdF6mwD5X86I4u55hJyFBsxYOsBCmT5+kSUjf+fkFWVMMgpzNEupjW8WzUqi83hJAQ==} 6229 resolution: {integrity: sha512-MTlusnnDMChbElsszJvrwD1dN3x6nZl//s4JD23BxB6MgR66TZlL064su24xEIS3VACfAoHV1vgyMgPw8nkdng==}
6155 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 6230 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
6156 peerDependencies: 6231 peerDependencies:
6157 '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0 6232 '@typescript-eslint/eslint-plugin': ^5.0.0 || ^6.0.0
@@ -6163,42 +6238,42 @@ packages:
6163 jest: 6238 jest:
6164 optional: true 6239 optional: true
6165 dependencies: 6240 dependencies:
6166 '@typescript-eslint/eslint-plugin': 6.7.2(@typescript-eslint/parser@6.7.2)(eslint@8.49.0)(typescript@5.2.2) 6241 '@typescript-eslint/eslint-plugin': 6.15.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.2)
6167 '@typescript-eslint/utils': 5.59.11(eslint@8.49.0)(typescript@5.2.2) 6242 '@typescript-eslint/utils': 5.62.0(eslint@8.56.0)(typescript@5.3.2)
6168 eslint: 8.49.0 6243 eslint: 8.56.0
6169 jest: 29.7.0(@types/node@18.15.3)(ts-node@10.9.1) 6244 jest: 29.7.0(@types/node@20.10.3)(ts-node@10.9.1)
6170 transitivePeerDependencies: 6245 transitivePeerDependencies:
6171 - supports-color 6246 - supports-color
6172 - typescript 6247 - typescript
6173 dev: true 6248 dev: true
6174 6249
6175 /eslint-plugin-jsx-a11y@6.7.1(eslint@8.49.0): 6250 /eslint-plugin-jsx-a11y@6.8.0(eslint@8.56.0):
6176 resolution: {integrity: sha512-63Bog4iIethyo8smBklORknVjB0T2dwB8Mr/hIC+fBS0uyHdYYpzM/Ed+YC8VxTjlXHEWFOdmgwcDn1U2L9VCA==} 6251 resolution: {integrity: sha512-Hdh937BS3KdwwbBaKd5+PLCOmYY6U4f2h9Z2ktwtNKvIdIEu137rjYbcb9ApSbVJfWxANNuiKTD/9tOKjK9qOA==}
6177 engines: {node: '>=4.0'} 6252 engines: {node: '>=4.0'}
6178 peerDependencies: 6253 peerDependencies:
6179 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 6254 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
6180 dependencies: 6255 dependencies:
6181 '@babel/runtime': 7.20.7 6256 '@babel/runtime': 7.23.5
6182 aria-query: 5.1.3 6257 aria-query: 5.3.0
6183 array-includes: 3.1.6 6258 array-includes: 3.1.7
6184 array.prototype.flatmap: 1.3.1 6259 array.prototype.flatmap: 1.3.2
6185 ast-types-flow: 0.0.7 6260 ast-types-flow: 0.0.8
6186 axe-core: 4.6.2 6261 axe-core: 4.7.0
6187 axobject-query: 3.1.1 6262 axobject-query: 3.2.1
6188 damerau-levenshtein: 1.0.8 6263 damerau-levenshtein: 1.0.8
6189 emoji-regex: 9.2.2 6264 emoji-regex: 9.2.2
6190 eslint: 8.49.0 6265 es-iterator-helpers: 1.0.15
6191 has: 1.0.3 6266 eslint: 8.56.0
6192 jsx-ast-utils: 3.3.3 6267 hasown: 2.0.0
6193 language-tags: 1.0.5 6268 jsx-ast-utils: 3.3.5
6269 language-tags: 1.0.9
6194 minimatch: 3.1.2 6270 minimatch: 3.1.2
6195 object.entries: 1.1.6 6271 object.entries: 1.1.7
6196 object.fromentries: 2.0.6 6272 object.fromentries: 2.0.7
6197 semver: 6.3.0
6198 dev: true 6273 dev: true
6199 6274
6200 /eslint-plugin-prettier@5.0.0(eslint-config-prettier@8.8.0)(eslint@8.49.0)(prettier@3.0.3): 6275 /eslint-plugin-prettier@5.1.1(eslint-config-prettier@9.1.0)(eslint@8.56.0)(prettier@3.1.1):
6201 resolution: {integrity: sha512-AgaZCVuYDXHUGxj/ZGu1u8H8CYgDY3iG6w5kUFw4AzMVXzB7VvbKgYR4nATIN+OvUrghMbiDLeimVjVY5ilq3w==} 6276 resolution: {integrity: sha512-WQpV3mSmIobb77s4qiCZu3dBrZZ0rj8ckSfBtRrgNK9Wnh2s3eiaxNTWloz1LJ1WtvqZES/PAI7PLvsrGt/CEA==}
6202 engines: {node: ^14.18.0 || >=16.0.0} 6277 engines: {node: ^14.18.0 || >=16.0.0}
6203 peerDependencies: 6278 peerDependencies:
6204 '@types/eslint': '>=8.0.0' 6279 '@types/eslint': '>=8.0.0'
@@ -6211,104 +6286,107 @@ packages:
6211 eslint-config-prettier: 6286 eslint-config-prettier:
6212 optional: true 6287 optional: true
6213 dependencies: 6288 dependencies:
6214 eslint: 8.49.0 6289 eslint: 8.56.0
6215 eslint-config-prettier: 8.8.0(eslint@8.49.0) 6290 eslint-config-prettier: 9.1.0(eslint@8.56.0)
6216 prettier: 3.0.3 6291 prettier: 3.1.1
6217 prettier-linter-helpers: 1.0.0 6292 prettier-linter-helpers: 1.0.0
6218 synckit: 0.8.5 6293 synckit: 0.8.6
6219 dev: true 6294 dev: true
6220 6295
6221 /eslint-plugin-react-hooks@4.6.0(eslint@8.49.0): 6296 /eslint-plugin-react-hooks@4.6.0(eslint@8.56.0):
6222 resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==} 6297 resolution: {integrity: sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==}
6223 engines: {node: '>=10'} 6298 engines: {node: '>=10'}
6224 peerDependencies: 6299 peerDependencies:
6225 eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0 6300 eslint: ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
6226 dependencies: 6301 dependencies:
6227 eslint: 8.49.0 6302 eslint: 8.56.0
6228 dev: true 6303 dev: true
6229 6304
6230 /eslint-plugin-react@7.33.2(eslint@8.49.0): 6305 /eslint-plugin-react@7.33.2(eslint@8.56.0):
6231 resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==} 6306 resolution: {integrity: sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==}
6232 engines: {node: '>=4'} 6307 engines: {node: '>=4'}
6233 peerDependencies: 6308 peerDependencies:
6234 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8 6309 eslint: ^3 || ^4 || ^5 || ^6 || ^7 || ^8
6235 dependencies: 6310 dependencies:
6236 array-includes: 3.1.6 6311 array-includes: 3.1.7
6237 array.prototype.flatmap: 1.3.1 6312 array.prototype.flatmap: 1.3.2
6238 array.prototype.tosorted: 1.1.1 6313 array.prototype.tosorted: 1.1.1
6239 doctrine: 2.1.0 6314 doctrine: 2.1.0
6240 es-iterator-helpers: 1.0.14 6315 es-iterator-helpers: 1.0.15
6241 eslint: 8.49.0 6316 eslint: 8.56.0
6242 estraverse: 5.3.0 6317 estraverse: 5.3.0
6243 jsx-ast-utils: 3.3.4 6318 jsx-ast-utils: 3.3.5
6244 minimatch: 3.1.2 6319 minimatch: 3.1.2
6245 object.entries: 1.1.6 6320 object.entries: 1.1.7
6246 object.fromentries: 2.0.6 6321 object.fromentries: 2.0.7
6247 object.hasown: 1.1.2 6322 object.hasown: 1.1.2
6248 object.values: 1.1.6 6323 object.values: 1.1.7
6249 prop-types: 15.8.1 6324 prop-types: 15.8.1
6250 resolve: 2.0.0-next.4 6325 resolve: 2.0.0-next.4
6251 semver: 6.3.1 6326 semver: 6.3.1
6252 string.prototype.matchall: 4.0.8 6327 string.prototype.matchall: 4.0.8
6253 dev: true 6328 dev: true
6254 6329
6255 /eslint-plugin-sonar@0.12.0(@babel/core@7.23.2)(@typescript-eslint/parser@6.7.2)(eslint@8.49.0)(typescript@5.2.2): 6330 /eslint-plugin-sonar@0.12.0(@babel/core@7.23.6)(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.2):
6256 resolution: {integrity: sha512-49linjQRXazFXZR4PXHwgMkkrnLavZTeSkxJ5+k3PoNqGm/shgJCVmdQAki3AJNqM+huZSwYxwsWS+LSpB48cQ==} 6331 resolution: {integrity: sha512-49linjQRXazFXZR4PXHwgMkkrnLavZTeSkxJ5+k3PoNqGm/shgJCVmdQAki3AJNqM+huZSwYxwsWS+LSpB48cQ==}
6257 engines: {node: '>=14'} 6332 engines: {node: '>=14'}
6258 peerDependencies: 6333 peerDependencies:
6259 eslint: ^7.0.0 || ^8.0.0 6334 eslint: ^7.0.0 || ^8.0.0
6260 typescript: ^4.0.0 || ^5.0.0 6335 typescript: ^4.0.0 || ^5.0.0
6261 dependencies: 6336 dependencies:
6262 '@babel/eslint-parser': 7.22.9(@babel/core@7.23.2)(eslint@8.49.0) 6337 '@babel/eslint-parser': 7.22.9(@babel/core@7.23.6)(eslint@8.56.0)
6263 '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@6.7.2)(eslint@8.49.0)(typescript@5.2.2) 6338 '@typescript-eslint/eslint-plugin': 5.62.0(@typescript-eslint/parser@6.15.0)(eslint@8.56.0)(typescript@5.3.2)
6264 builtin-modules: 3.3.0 6339 builtin-modules: 3.3.0
6265 bytes: 3.1.2 6340 bytes: 3.1.2
6266 eslint: 8.49.0 6341 eslint: 8.56.0
6267 eslint-plugin-react: 7.33.2(eslint@8.49.0) 6342 eslint-plugin-react: 7.33.2(eslint@8.56.0)
6268 eslint-plugin-react-hooks: 4.6.0(eslint@8.49.0) 6343 eslint-plugin-react-hooks: 4.6.0(eslint@8.56.0)
6269 eslint-plugin-sonarjs: 0.19.0(eslint@8.49.0) 6344 eslint-plugin-sonarjs: 0.19.0(eslint@8.56.0)
6270 functional-red-black-tree: 1.0.1 6345 functional-red-black-tree: 1.0.1
6271 regexpp: 3.2.0 6346 regexpp: 3.2.0
6272 scslre: 0.2.0 6347 scslre: 0.2.0
6273 tmp: 0.2.1 6348 tmp: 0.2.1
6274 typescript: 5.2.2 6349 typescript: 5.3.2
6275 transitivePeerDependencies: 6350 transitivePeerDependencies:
6276 - '@babel/core' 6351 - '@babel/core'
6277 - '@typescript-eslint/parser' 6352 - '@typescript-eslint/parser'
6278 - supports-color 6353 - supports-color
6279 dev: true 6354 dev: true
6280 6355
6281 /eslint-plugin-sonarjs@0.19.0(eslint@8.49.0): 6356 /eslint-plugin-sonarjs@0.19.0(eslint@8.56.0):
6282 resolution: {integrity: sha512-6+s5oNk5TFtVlbRxqZN7FIGmjdPCYQKaTzFPmqieCmsU1kBYDzndTeQav0xtQNwZJWu5awWfTGe8Srq9xFOGnw==} 6357 resolution: {integrity: sha512-6+s5oNk5TFtVlbRxqZN7FIGmjdPCYQKaTzFPmqieCmsU1kBYDzndTeQav0xtQNwZJWu5awWfTGe8Srq9xFOGnw==}
6283 engines: {node: '>=14'} 6358 engines: {node: '>=14'}
6284 peerDependencies: 6359 peerDependencies:
6285 eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 6360 eslint: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0
6286 dependencies: 6361 dependencies:
6287 eslint: 8.49.0 6362 eslint: 8.56.0
6288 dev: true 6363 dev: true
6289 6364
6290 /eslint-plugin-unicorn@48.0.1(eslint@8.49.0): 6365 /eslint-plugin-unicorn@50.0.1(eslint@8.56.0):
6291 resolution: {integrity: sha512-FW+4r20myG/DqFcCSzoumaddKBicIPeFnTrifon2mWIzlfyvzwyqZjqVP7m4Cqr/ZYisS2aiLghkUWaPg6vtCw==} 6366 resolution: {integrity: sha512-KxenCZxqSYW0GWHH18okDlOQcpezcitm5aOSz6EnobyJ6BIByiPDviQRjJIUAjG/tMN11958MxaQ+qCoU6lfDA==}
6292 engines: {node: '>=16'} 6367 engines: {node: '>=16'}
6293 peerDependencies: 6368 peerDependencies:
6294 eslint: '>=8.44.0' 6369 eslint: '>=8.56.0'
6295 dependencies: 6370 dependencies:
6296 '@babel/helper-validator-identifier': 7.22.5 6371 '@babel/helper-validator-identifier': 7.22.20
6297 '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) 6372 '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
6298 ci-info: 3.8.0 6373 '@eslint/eslintrc': 2.1.4
6374 ci-info: 4.0.0
6299 clean-regexp: 1.0.0 6375 clean-regexp: 1.0.0
6300 eslint: 8.49.0 6376 core-js-compat: 3.34.0
6377 eslint: 8.56.0
6301 esquery: 1.5.0 6378 esquery: 1.5.0
6302 indent-string: 4.0.0 6379 indent-string: 4.0.0
6303 is-builtin-module: 3.2.1 6380 is-builtin-module: 3.2.1
6304 jsesc: 3.0.2 6381 jsesc: 3.0.2
6305 lodash: 4.17.21
6306 pluralize: 8.0.0 6382 pluralize: 8.0.0
6307 read-pkg-up: 7.0.1 6383 read-pkg-up: 7.0.1
6308 regexp-tree: 0.1.27 6384 regexp-tree: 0.1.27
6309 regjsparser: 0.10.0 6385 regjsparser: 0.10.0
6310 semver: 7.5.4 6386 semver: 7.5.4
6311 strip-indent: 3.0.0 6387 strip-indent: 3.0.0
6388 transitivePeerDependencies:
6389 - supports-color
6312 dev: true 6390 dev: true
6313 6391
6314 /eslint-scope@5.1.1: 6392 /eslint-scope@5.1.1:
@@ -6332,28 +6410,24 @@ packages:
6332 engines: {node: '>=10'} 6410 engines: {node: '>=10'}
6333 dev: true 6411 dev: true
6334 6412
6335 /eslint-visitor-keys@3.4.1:
6336 resolution: {integrity: sha512-pZnmmLwYzf+kWaM/Qgrvpen51upAktaaiI01nsJD/Yr3lMOdNtq0cxkrrg16w64VtisN6okbs7Q8AfGqj4c9fA==}
6337 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
6338 dev: true
6339
6340 /eslint-visitor-keys@3.4.3: 6413 /eslint-visitor-keys@3.4.3:
6341 resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==} 6414 resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
6342 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 6415 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
6343 dev: true 6416 dev: true
6344 6417
6345 /eslint@8.49.0: 6418 /eslint@8.56.0:
6346 resolution: {integrity: sha512-jw03ENfm6VJI0jA9U+8H5zfl5b+FvuU3YYvZRdZHOlU2ggJkxrlkJH4HcDrZpj6YwD8kuYqvQM8LyesoazrSOQ==} 6419 resolution: {integrity: sha512-Go19xM6T9puCOWntie1/P997aXxFsOi37JIHRWI514Hc6ZnaHGKY9xFhrU65RT6CcBEzZoGG1e6Nq+DT04ZtZQ==}
6347 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 6420 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
6348 hasBin: true 6421 hasBin: true
6349 dependencies: 6422 dependencies:
6350 '@eslint-community/eslint-utils': 4.4.0(eslint@8.49.0) 6423 '@eslint-community/eslint-utils': 4.4.0(eslint@8.56.0)
6351 '@eslint-community/regexpp': 4.6.2 6424 '@eslint-community/regexpp': 4.10.0
6352 '@eslint/eslintrc': 2.1.2 6425 '@eslint/eslintrc': 2.1.4
6353 '@eslint/js': 8.49.0 6426 '@eslint/js': 8.56.0
6354 '@humanwhocodes/config-array': 0.11.11 6427 '@humanwhocodes/config-array': 0.11.13
6355 '@humanwhocodes/module-importer': 1.0.1 6428 '@humanwhocodes/module-importer': 1.0.1
6356 '@nodelib/fs.walk': 1.2.8 6429 '@nodelib/fs.walk': 1.2.8
6430 '@ungap/structured-clone': 1.2.0
6357 ajv: 6.12.6 6431 ajv: 6.12.6
6358 chalk: 4.1.2 6432 chalk: 4.1.2
6359 cross-spawn: 7.0.3 6433 cross-spawn: 7.0.3
@@ -6369,9 +6443,9 @@ packages:
6369 file-entry-cache: 6.0.1 6443 file-entry-cache: 6.0.1
6370 find-up: 5.0.0 6444 find-up: 5.0.0
6371 glob-parent: 6.0.2 6445 glob-parent: 6.0.2
6372 globals: 13.20.0 6446 globals: 13.24.0
6373 graphemer: 1.4.0 6447 graphemer: 1.4.0
6374 ignore: 5.2.4 6448 ignore: 5.3.0
6375 imurmurhash: 0.1.4 6449 imurmurhash: 0.1.4
6376 is-glob: 4.0.3 6450 is-glob: 4.0.3
6377 is-path-inside: 3.0.3 6451 is-path-inside: 3.0.3
@@ -6397,8 +6471,8 @@ packages:
6397 resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==} 6471 resolution: {integrity: sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==}
6398 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} 6472 engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
6399 dependencies: 6473 dependencies:
6400 acorn: 8.10.0 6474 acorn: 8.11.2
6401 acorn-jsx: 5.3.2(acorn@8.10.0) 6475 acorn-jsx: 5.3.2(acorn@8.11.2)
6402 eslint-visitor-keys: 3.4.3 6476 eslint-visitor-keys: 3.4.3
6403 dev: true 6477 dev: true
6404 6478
@@ -6494,8 +6568,8 @@ packages:
6494 strip-final-newline: 2.0.0 6568 strip-final-newline: 2.0.0
6495 dev: true 6569 dev: true
6496 6570
6497 /execa@7.1.1: 6571 /execa@7.2.0:
6498 resolution: {integrity: sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==} 6572 resolution: {integrity: sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==}
6499 engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0} 6573 engines: {node: ^14.18.0 || ^16.14.0 || >=18.0.0}
6500 dependencies: 6574 dependencies:
6501 cross-spawn: 7.0.3 6575 cross-spawn: 7.0.3
@@ -6503,7 +6577,7 @@ packages:
6503 human-signals: 4.3.1 6577 human-signals: 4.3.1
6504 is-stream: 3.0.0 6578 is-stream: 3.0.0
6505 merge-stream: 2.0.0 6579 merge-stream: 2.0.0
6506 npm-run-path: 5.1.0 6580 npm-run-path: 5.2.0
6507 onetime: 6.0.0 6581 onetime: 6.0.0
6508 signal-exit: 3.0.7 6582 signal-exit: 3.0.7
6509 strip-final-newline: 3.0.0 6583 strip-final-newline: 3.0.0
@@ -6631,7 +6705,7 @@ packages:
6631 get-stream: 5.2.0 6705 get-stream: 5.2.0
6632 yauzl: 2.10.0 6706 yauzl: 2.10.0
6633 optionalDependencies: 6707 optionalDependencies:
6634 '@types/yauzl': 2.10.2 6708 '@types/yauzl': 2.10.3
6635 transitivePeerDependencies: 6709 transitivePeerDependencies:
6636 - supports-color 6710 - supports-color
6637 6711
@@ -6673,8 +6747,8 @@ packages:
6673 - supports-color 6747 - supports-color
6674 dev: false 6748 dev: false
6675 6749
6676 /fast-glob@3.3.1: 6750 /fast-glob@3.3.2:
6677 resolution: {integrity: sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==} 6751 resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
6678 engines: {node: '>=8.6.0'} 6752 engines: {node: '>=8.6.0'}
6679 dependencies: 6753 dependencies:
6680 '@nodelib/fs.stat': 2.0.5 6754 '@nodelib/fs.stat': 2.0.5
@@ -6702,8 +6776,8 @@ packages:
6702 engines: {node: '>= 4.9.1'} 6776 engines: {node: '>= 4.9.1'}
6703 dev: false 6777 dev: false
6704 6778
6705 /fastq@1.15.0: 6779 /fastq@1.16.0:
6706 resolution: {integrity: sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==} 6780 resolution: {integrity: sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==}
6707 dependencies: 6781 dependencies:
6708 reusify: 1.0.4 6782 reusify: 1.0.4
6709 dev: true 6783 dev: true
@@ -6741,7 +6815,7 @@ packages:
6741 resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==} 6815 resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
6742 engines: {node: ^10.12.0 || >=12.0.0} 6816 engines: {node: ^10.12.0 || >=12.0.0}
6743 dependencies: 6817 dependencies:
6744 flat-cache: 3.0.4 6818 flat-cache: 3.2.0
6745 dev: true 6819 dev: true
6746 6820
6747 /file-selector@0.6.0: 6821 /file-selector@0.6.0:
@@ -6843,24 +6917,25 @@ packages:
6843 engines: {node: '>= 0.10'} 6917 engines: {node: '>= 0.10'}
6844 dev: false 6918 dev: false
6845 6919
6846 /flat-cache@3.0.4: 6920 /flat-cache@3.2.0:
6847 resolution: {integrity: sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==} 6921 resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
6848 engines: {node: ^10.12.0 || >=12.0.0} 6922 engines: {node: ^10.12.0 || >=12.0.0}
6849 dependencies: 6923 dependencies:
6850 flatted: 3.2.7 6924 flatted: 3.2.9
6925 keyv: 4.5.4
6851 rimraf: 3.0.2 6926 rimraf: 3.0.2
6852 dev: true 6927 dev: true
6853 6928
6854 /flatted@3.2.7: 6929 /flatted@3.2.9:
6855 resolution: {integrity: sha512-5nqDSxl8nn5BSNxyR3n4I6eDmbolI6WT+QqR547RwxQapgjQBmtktdP+HTBb/a/zLsbzERTONyUB5pefh5TtjQ==} 6930 resolution: {integrity: sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==}
6856 dev: true 6931 dev: true
6857 6932
6858 /fn.name@1.1.0: 6933 /fn.name@1.1.0:
6859 resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==} 6934 resolution: {integrity: sha512-GRnmB5gPyJpAhTQdSZTSp9uaPSvl09KoYcMQtsB9rQoOmzs9dH6ffeccH+Z+cv6P68Hu5bC6JjRh4Ah/mHSNRw==}
6860 dev: false 6935 dev: false
6861 6936
6862 /follow-redirects@1.15.2(debug@4.3.4): 6937 /follow-redirects@1.15.3(debug@4.3.4):
6863 resolution: {integrity: sha512-VQLG33o04KaQ8uYi2tVNbdrWp1QWxNNea+nmIB4EVM28v0hmP17z7aG1+wAkNzVq4KeXTq3221ye5qTJP91JwA==} 6938 resolution: {integrity: sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==}
6864 engines: {node: '>=4.0'} 6939 engines: {node: '>=4.0'}
6865 peerDependencies: 6940 peerDependencies:
6866 debug: '*' 6941 debug: '*'
@@ -6900,6 +6975,7 @@ packages:
6900 dependencies: 6975 dependencies:
6901 cross-spawn: 7.0.3 6976 cross-spawn: 7.0.3
6902 signal-exit: 4.1.0 6977 signal-exit: 4.1.0
6978 dev: true
6903 6979
6904 /forever-agent@0.6.1: 6980 /forever-agent@0.6.1:
6905 resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==} 6981 resolution: {integrity: sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==}
@@ -6954,15 +7030,15 @@ packages:
6954 dependencies: 7030 dependencies:
6955 graceful-fs: 4.2.11 7031 graceful-fs: 4.2.11
6956 jsonfile: 6.1.0 7032 jsonfile: 6.1.0
6957 universalify: 2.0.0 7033 universalify: 2.0.1
6958 7034
6959 /fs-extra@11.1.1: 7035 /fs-extra@11.2.0:
6960 resolution: {integrity: sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==} 7036 resolution: {integrity: sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==}
6961 engines: {node: '>=14.14'} 7037 engines: {node: '>=14.14'}
6962 dependencies: 7038 dependencies:
6963 graceful-fs: 4.2.11 7039 graceful-fs: 4.2.11
6964 jsonfile: 6.1.0 7040 jsonfile: 6.1.0
6965 universalify: 2.0.0 7041 universalify: 2.0.1
6966 7042
6967 /fs-extra@6.0.1: 7043 /fs-extra@6.0.1:
6968 resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==} 7044 resolution: {integrity: sha512-GnyIkKhhzXZUWFCaJzvyDLEEgDkPfb4/TPvJCJVuS8MWZgoSsErf++QpiAlDnKFcqhRlm+tIOcencCjyJE6ZCA==}
@@ -6987,7 +7063,7 @@ packages:
6987 at-least-node: 1.0.0 7063 at-least-node: 1.0.0
6988 graceful-fs: 4.2.11 7064 graceful-fs: 4.2.11
6989 jsonfile: 6.1.0 7065 jsonfile: 6.1.0
6990 universalify: 2.0.0 7066 universalify: 2.0.1
6991 7067
6992 /fs-minipass@2.1.0: 7068 /fs-minipass@2.1.0:
6993 resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==} 7069 resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
@@ -6995,15 +7071,6 @@ packages:
6995 dependencies: 7071 dependencies:
6996 minipass: 3.3.6 7072 minipass: 3.3.6
6997 7073
6998 /fs-minipass@3.0.3:
6999 resolution: {integrity: sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==}
7000 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
7001 requiresBuild: true
7002 dependencies:
7003 minipass: 7.0.4
7004 dev: false
7005 optional: true
7006
7007 /fs.realpath@1.0.0: 7074 /fs.realpath@1.0.0:
7008 resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==} 7075 resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
7009 requiresBuild: true 7076 requiresBuild: true
@@ -7016,16 +7083,16 @@ packages:
7016 dev: true 7083 dev: true
7017 optional: true 7084 optional: true
7018 7085
7019 /function-bind@1.1.1: 7086 /function-bind@1.1.2:
7020 resolution: {integrity: sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==} 7087 resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
7021 7088
7022 /function.prototype.name@1.1.5: 7089 /function.prototype.name@1.1.6:
7023 resolution: {integrity: sha512-uN7m/BzVKQnCUF/iW8jYea67v++2u7m5UgENbHRtdDVclOUP+FMPlCNdmk0h/ysGyo2tavMJEDqJAkJdRa1vMA==} 7090 resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
7024 engines: {node: '>= 0.4'} 7091 engines: {node: '>= 0.4'}
7025 dependencies: 7092 dependencies:
7026 call-bind: 1.0.2 7093 call-bind: 1.0.5
7027 define-properties: 1.2.0 7094 define-properties: 1.2.1
7028 es-abstract: 1.22.1 7095 es-abstract: 1.22.3
7029 functions-have-names: 1.2.3 7096 functions-have-names: 1.2.3
7030 dev: true 7097 dev: true
7031 7098
@@ -7077,13 +7144,13 @@ packages:
7077 engines: {node: 6.* || 8.* || >= 10.*} 7144 engines: {node: 6.* || 8.* || >= 10.*}
7078 dev: true 7145 dev: true
7079 7146
7080 /get-intrinsic@1.2.1: 7147 /get-intrinsic@1.2.2:
7081 resolution: {integrity: sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==} 7148 resolution: {integrity: sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==}
7082 dependencies: 7149 dependencies:
7083 function-bind: 1.1.1 7150 function-bind: 1.1.2
7084 has: 1.0.3
7085 has-proto: 1.0.1 7151 has-proto: 1.0.1
7086 has-symbols: 1.0.3 7152 has-symbols: 1.0.3
7153 hasown: 2.0.0
7087 7154
7088 /get-package-type@0.1.0: 7155 /get-package-type@0.1.0:
7089 resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==} 7156 resolution: {integrity: sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==}
@@ -7112,8 +7179,8 @@ packages:
7112 resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==} 7179 resolution: {integrity: sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==}
7113 engines: {node: '>= 0.4'} 7180 engines: {node: '>= 0.4'}
7114 dependencies: 7181 dependencies:
7115 call-bind: 1.0.2 7182 call-bind: 1.0.5
7116 get-intrinsic: 1.2.1 7183 get-intrinsic: 1.2.2
7117 dev: true 7184 dev: true
7118 7185
7119 /get-value@2.0.6: 7186 /get-value@2.0.6:
@@ -7157,31 +7224,17 @@ packages:
7157 is-glob: 4.0.3 7224 is-glob: 4.0.3
7158 dev: true 7225 dev: true
7159 7226
7160 /glob@10.2.6:
7161 resolution: {integrity: sha512-U/rnDpXJGF414QQQZv5uVsabTVxMSwzS5CH0p3DRCIV6ownl4f7PzGnkGmvlum2wB+9RlJWJZ6ACU1INnBqiPA==}
7162 engines: {node: '>=16 || 14 >=14.17'}
7163 hasBin: true
7164 dependencies:
7165 foreground-child: 3.1.1
7166 jackspeak: 2.3.6
7167 minimatch: 9.0.3
7168 minipass: 6.0.2
7169 path-scurry: 1.10.1
7170 dev: true
7171
7172 /glob@10.3.10: 7227 /glob@10.3.10:
7173 resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==} 7228 resolution: {integrity: sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==}
7174 engines: {node: '>=16 || 14 >=14.17'} 7229 engines: {node: '>=16 || 14 >=14.17'}
7175 hasBin: true 7230 hasBin: true
7176 requiresBuild: true
7177 dependencies: 7231 dependencies:
7178 foreground-child: 3.1.1 7232 foreground-child: 3.1.1
7179 jackspeak: 2.3.6 7233 jackspeak: 2.3.6
7180 minimatch: 9.0.3 7234 minimatch: 9.0.3
7181 minipass: 7.0.4 7235 minipass: 7.0.4
7182 path-scurry: 1.10.1 7236 path-scurry: 1.10.1
7183 dev: false 7237 dev: true
7184 optional: true
7185 7238
7186 /glob@7.2.3: 7239 /glob@7.2.3:
7187 resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==} 7240 resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
@@ -7193,6 +7246,19 @@ packages:
7193 once: 1.4.0 7246 once: 1.4.0
7194 path-is-absolute: 1.0.1 7247 path-is-absolute: 1.0.1
7195 7248
7249 /glob@8.1.0:
7250 resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
7251 engines: {node: '>=12'}
7252 requiresBuild: true
7253 dependencies:
7254 fs.realpath: 1.0.0
7255 inflight: 1.0.6
7256 inherits: 2.0.4
7257 minimatch: 5.1.6
7258 once: 1.4.0
7259 dev: false
7260 optional: true
7261
7196 /global-agent@3.0.0: 7262 /global-agent@3.0.0:
7197 resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==} 7263 resolution: {integrity: sha512-PT6XReJ+D07JvGoxQMkT6qji/jVNfX/h364XHZOWeRzy64sSFr+xJ5OX7LI3b4MPQzdL4H8Y8M0xzPpsVMwA8Q==}
7198 engines: {node: '>=10.0'} 7264 engines: {node: '>=10.0'}
@@ -7237,8 +7303,8 @@ packages:
7237 resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==} 7303 resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
7238 engines: {node: '>=4'} 7304 engines: {node: '>=4'}
7239 7305
7240 /globals@13.20.0: 7306 /globals@13.24.0:
7241 resolution: {integrity: sha512-Qg5QtVkCy/kv3FUSlu4ukeZDVf9ee0iXLAUYX13gbR17bnejFTzr4iS9bY7kwCf1NztRNm1t91fjOiyx4CSwPQ==} 7307 resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
7242 engines: {node: '>=8'} 7308 engines: {node: '>=8'}
7243 dependencies: 7309 dependencies:
7244 type-fest: 0.20.2 7310 type-fest: 0.20.2
@@ -7248,7 +7314,7 @@ packages:
7248 resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==} 7314 resolution: {integrity: sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==}
7249 engines: {node: '>= 0.4'} 7315 engines: {node: '>= 0.4'}
7250 dependencies: 7316 dependencies:
7251 define-properties: 1.2.0 7317 define-properties: 1.2.1
7252 7318
7253 /globalyzer@0.1.0: 7319 /globalyzer@0.1.0:
7254 resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==} 7320 resolution: {integrity: sha512-40oNTM9UfG6aBmuKxk/giHn5nQ8RVz/SS4Ir6zgzOv9/qC3kKZ9v4etGTcJbEl/NyVQH7FGU7d+X1egr57Md2Q==}
@@ -7260,8 +7326,8 @@ packages:
7260 dependencies: 7326 dependencies:
7261 array-union: 2.1.0 7327 array-union: 2.1.0
7262 dir-glob: 3.0.1 7328 dir-glob: 3.0.1
7263 fast-glob: 3.3.1 7329 fast-glob: 3.3.2
7264 ignore: 5.2.4 7330 ignore: 5.3.0
7265 merge2: 1.4.1 7331 merge2: 1.4.1
7266 slash: 3.0.0 7332 slash: 3.0.0
7267 dev: true 7333 dev: true
@@ -7278,8 +7344,7 @@ packages:
7278 /gopd@1.0.1: 7344 /gopd@1.0.1:
7279 resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==} 7345 resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
7280 dependencies: 7346 dependencies:
7281 get-intrinsic: 1.2.1 7347 get-intrinsic: 1.2.2
7282 dev: true
7283 7348
7284 /got@11.8.6: 7349 /got@11.8.6:
7285 resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==} 7350 resolution: {integrity: sha512-6tfZ91bOr7bOXnK7PRDCGBLa1H4U080YHNaAQ2KsMGlLEzRbk44nsZF2E1IeRc3vtJHPVbKCYgdFbaGO2ljd8g==}
@@ -7288,9 +7353,9 @@ packages:
7288 '@sindresorhus/is': 4.6.0 7353 '@sindresorhus/is': 4.6.0
7289 '@szmarczak/http-timer': 4.0.6 7354 '@szmarczak/http-timer': 4.0.6
7290 '@types/cacheable-request': 6.0.3 7355 '@types/cacheable-request': 6.0.3
7291 '@types/responselike': 1.0.0 7356 '@types/responselike': 1.0.3
7292 cacheable-lookup: 5.0.4 7357 cacheable-lookup: 5.0.4
7293 cacheable-request: 7.0.2 7358 cacheable-request: 7.0.4
7294 decompress-response: 6.0.0 7359 decompress-response: 6.0.0
7295 http2-wrapper: 1.0.3 7360 http2-wrapper: 1.0.3
7296 lowercase-keys: 2.0.0 7361 lowercase-keys: 2.0.0
@@ -7312,7 +7377,7 @@ packages:
7312 debug: 3.2.7 7377 debug: 3.2.7
7313 fancy-log: 1.3.3 7378 fancy-log: 1.3.3
7314 lodash.assign: 4.2.0 7379 lodash.assign: 4.2.0
7315 readable-stream: 3.6.0 7380 readable-stream: 3.6.2
7316 tiny-lr: 1.1.1 7381 tiny-lr: 1.1.1
7317 vinyl: 2.2.1 7382 vinyl: 2.2.1
7318 transitivePeerDependencies: 7383 transitivePeerDependencies:
@@ -7351,10 +7416,10 @@ packages:
7351 engines: {node: '>=8'} 7416 engines: {node: '>=8'}
7352 dev: true 7417 dev: true
7353 7418
7354 /has-property-descriptors@1.0.0: 7419 /has-property-descriptors@1.0.1:
7355 resolution: {integrity: sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==} 7420 resolution: {integrity: sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==}
7356 dependencies: 7421 dependencies:
7357 get-intrinsic: 1.2.1 7422 get-intrinsic: 1.2.2
7358 7423
7359 /has-proto@1.0.1: 7424 /has-proto@1.0.1:
7360 resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==} 7425 resolution: {integrity: sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==}
@@ -7406,11 +7471,11 @@ packages:
7406 kind-of: 4.0.0 7471 kind-of: 4.0.0
7407 dev: false 7472 dev: false
7408 7473
7409 /has@1.0.3: 7474 /hasown@2.0.0:
7410 resolution: {integrity: sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==} 7475 resolution: {integrity: sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==}
7411 engines: {node: '>= 0.4.0'} 7476 engines: {node: '>= 0.4'}
7412 dependencies: 7477 dependencies:
7413 function-bind: 1.1.1 7478 function-bind: 1.1.2
7414 7479
7415 /haye@2.0.2: 7480 /haye@2.0.2:
7416 resolution: {integrity: sha512-C+jeFipAuwLLmQziwQrXuHzUIihDzqoLpCpwDWYFQVCIyqi5ZvC+4YtzawPTmd1tIKo0ULf+4P0Mw8irUdXIpg==} 7481 resolution: {integrity: sha512-C+jeFipAuwLLmQziwQrXuHzUIihDzqoLpCpwDWYFQVCIyqi5ZvC+4YtzawPTmd1tIKo0ULf+4P0Mw8irUdXIpg==}
@@ -7424,7 +7489,7 @@ packages:
7424 /history@5.3.0: 7489 /history@5.3.0:
7425 resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==} 7490 resolution: {integrity: sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==}
7426 dependencies: 7491 dependencies:
7427 '@babel/runtime': 7.20.1 7492 '@babel/runtime': 7.23.5
7428 dev: false 7493 dev: false
7429 7494
7430 /hoist-non-react-statics@3.3.2: 7495 /hoist-non-react-statics@3.3.2:
@@ -7465,7 +7530,7 @@ packages:
7465 depd: 1.1.2 7530 depd: 1.1.2
7466 inherits: 2.0.3 7531 inherits: 2.0.3
7467 setprototypeof: 1.1.0 7532 setprototypeof: 1.1.0
7468 statuses: 1.4.0 7533 statuses: 1.5.0
7469 dev: false 7534 dev: false
7470 7535
7471 /http-errors@1.8.1: 7536 /http-errors@1.8.1:
@@ -7612,8 +7677,8 @@ packages:
7612 resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==} 7677 resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
7613 requiresBuild: true 7678 requiresBuild: true
7614 7679
7615 /ignore@5.2.4: 7680 /ignore@5.3.0:
7616 resolution: {integrity: sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==} 7681 resolution: {integrity: sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==}
7617 engines: {node: '>= 4'} 7682 engines: {node: '>= 4'}
7618 dev: true 7683 dev: true
7619 7684
@@ -7705,12 +7770,12 @@ packages:
7705 through: 2.3.8 7770 through: 2.3.8
7706 dev: true 7771 dev: true
7707 7772
7708 /internal-slot@1.0.5: 7773 /internal-slot@1.0.6:
7709 resolution: {integrity: sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==} 7774 resolution: {integrity: sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==}
7710 engines: {node: '>= 0.4'} 7775 engines: {node: '>= 0.4'}
7711 dependencies: 7776 dependencies:
7712 get-intrinsic: 1.2.1 7777 get-intrinsic: 1.2.2
7713 has: 1.0.3 7778 hasown: 2.0.0
7714 side-channel: 1.0.4 7779 side-channel: 1.0.4
7715 dev: true 7780 dev: true
7716 7781
@@ -7719,12 +7784,12 @@ packages:
7719 engines: {node: '>= 0.10'} 7784 engines: {node: '>= 0.10'}
7720 dev: false 7785 dev: false
7721 7786
7722 /intl-messageformat@10.5.3: 7787 /intl-messageformat@10.5.8:
7723 resolution: {integrity: sha512-TzKn1uhJBMyuKTO4zUX47SU+d66fu1W9tVzIiZrQ6hBqQQeYscBMIzKL/qEXnFbJrH9uU5VV3+T5fWib4SIcKA==} 7788 resolution: {integrity: sha512-NRf0jpBWV0vd671G5b06wNofAN8tp7WWDogMZyaU8GUAsmbouyvgwmFJI7zLjfAMpm3zK+vSwRP3jzaoIcMbaA==}
7724 dependencies: 7789 dependencies:
7725 '@formatjs/ecma402-abstract': 1.17.2 7790 '@formatjs/ecma402-abstract': 1.18.0
7726 '@formatjs/fast-memoize': 2.2.0 7791 '@formatjs/fast-memoize': 2.2.0
7727 '@formatjs/icu-messageformat-parser': 2.6.2 7792 '@formatjs/icu-messageformat-parser': 2.7.3
7728 tslib: 2.6.2 7793 tslib: 2.6.2
7729 dev: false 7794 dev: false
7730 7795
@@ -7767,19 +7832,11 @@ packages:
7767 kind-of: 6.0.3 7832 kind-of: 6.0.3
7768 dev: false 7833 dev: false
7769 7834
7770 /is-arguments@1.1.1:
7771 resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
7772 engines: {node: '>= 0.4'}
7773 dependencies:
7774 call-bind: 1.0.2
7775 has-tostringtag: 1.0.0
7776 dev: true
7777
7778 /is-array-buffer@3.0.2: 7835 /is-array-buffer@3.0.2:
7779 resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==} 7836 resolution: {integrity: sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==}
7780 dependencies: 7837 dependencies:
7781 call-bind: 1.0.2 7838 call-bind: 1.0.5
7782 get-intrinsic: 1.2.1 7839 get-intrinsic: 1.2.2
7783 is-typed-array: 1.1.12 7840 is-typed-array: 1.1.12
7784 dev: true 7841 dev: true
7785 7842
@@ -7821,7 +7878,7 @@ packages:
7821 resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==} 7878 resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
7822 engines: {node: '>= 0.4'} 7879 engines: {node: '>= 0.4'}
7823 dependencies: 7880 dependencies:
7824 call-bind: 1.0.2 7881 call-bind: 1.0.5
7825 has-tostringtag: 1.0.0 7882 has-tostringtag: 1.0.0
7826 dev: true 7883 dev: true
7827 7884
@@ -7844,13 +7901,13 @@ packages:
7844 resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==} 7901 resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
7845 hasBin: true 7902 hasBin: true
7846 dependencies: 7903 dependencies:
7847 ci-info: 3.7.0 7904 ci-info: 3.8.0
7848 dev: true 7905 dev: true
7849 7906
7850 /is-core-module@2.13.0: 7907 /is-core-module@2.13.1:
7851 resolution: {integrity: sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==} 7908 resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
7852 dependencies: 7909 dependencies:
7853 has: 1.0.3 7910 hasown: 2.0.0
7854 7911
7855 /is-data-descriptor@0.1.4: 7912 /is-data-descriptor@0.1.4:
7856 resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==} 7913 resolution: {integrity: sha512-+w9D5ulSoBNlmw9OHn3U2v51SyoCd0he+bB3xMl62oijhrspxowjU+AIcDY0N3iEJbUEkB15IlMASQsxYigvXg==}
@@ -7922,7 +7979,7 @@ packages:
7922 /is-finalizationregistry@1.0.2: 7979 /is-finalizationregistry@1.0.2:
7923 resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==} 7980 resolution: {integrity: sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==}
7924 dependencies: 7981 dependencies:
7925 call-bind: 1.0.2 7982 call-bind: 1.0.5
7926 dev: true 7983 dev: true
7927 7984
7928 /is-fullwidth-code-point@2.0.0: 7985 /is-fullwidth-code-point@2.0.0:
@@ -8029,11 +8086,6 @@ packages:
8029 isobject: 3.0.1 8086 isobject: 3.0.1
8030 dev: false 8087 dev: false
8031 8088
8032 /is-plain-object@5.0.0:
8033 resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
8034 engines: {node: '>=0.10.0'}
8035 dev: false
8036
8037 /is-promise@2.2.2: 8089 /is-promise@2.2.2:
8038 resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==} 8090 resolution: {integrity: sha512-+lP4/6lKUBfQjZ2pdxThZvLUAafmZb8OAxFb8XXtiQmS35INgr85hdOGoEs124ez1FCnZJt6jau/T+alh58QFQ==}
8039 dev: false 8091 dev: false
@@ -8042,7 +8094,7 @@ packages:
8042 resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==} 8094 resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
8043 engines: {node: '>= 0.4'} 8095 engines: {node: '>= 0.4'}
8044 dependencies: 8096 dependencies:
8045 call-bind: 1.0.2 8097 call-bind: 1.0.5
8046 has-tostringtag: 1.0.0 8098 has-tostringtag: 1.0.0
8047 dev: true 8099 dev: true
8048 8100
@@ -8060,7 +8112,7 @@ packages:
8060 /is-shared-array-buffer@1.0.2: 8112 /is-shared-array-buffer@1.0.2:
8061 resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==} 8113 resolution: {integrity: sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==}
8062 dependencies: 8114 dependencies:
8063 call-bind: 1.0.2 8115 call-bind: 1.0.5
8064 dev: true 8116 dev: true
8065 8117
8066 /is-stream@1.1.0: 8118 /is-stream@1.1.0:
@@ -8102,7 +8154,7 @@ packages:
8102 resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==} 8154 resolution: {integrity: sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==}
8103 engines: {node: '>= 0.4'} 8155 engines: {node: '>= 0.4'}
8104 dependencies: 8156 dependencies:
8105 which-typed-array: 1.1.11 8157 which-typed-array: 1.1.13
8106 dev: true 8158 dev: true
8107 8159
8108 /is-typedarray@1.0.0: 8160 /is-typedarray@1.0.0:
@@ -8123,14 +8175,14 @@ packages:
8123 /is-weakref@1.0.2: 8175 /is-weakref@1.0.2:
8124 resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==} 8176 resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
8125 dependencies: 8177 dependencies:
8126 call-bind: 1.0.2 8178 call-bind: 1.0.5
8127 dev: true 8179 dev: true
8128 8180
8129 /is-weakset@2.0.2: 8181 /is-weakset@2.0.2:
8130 resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==} 8182 resolution: {integrity: sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==}
8131 dependencies: 8183 dependencies:
8132 call-bind: 1.0.2 8184 call-bind: 1.0.5
8133 get-intrinsic: 1.2.1 8185 get-intrinsic: 1.2.2
8134 dev: true 8186 dev: true
8135 8187
8136 /is-windows@1.0.2: 8188 /is-windows@1.0.2:
@@ -8190,8 +8242,8 @@ packages:
8190 resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==} 8242 resolution: {integrity: sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==}
8191 engines: {node: '>=8'} 8243 engines: {node: '>=8'}
8192 dependencies: 8244 dependencies:
8193 '@babel/core': 7.22.20 8245 '@babel/core': 7.23.5
8194 '@babel/parser': 7.23.0 8246 '@babel/parser': 7.23.5
8195 '@istanbuljs/schema': 0.1.3 8247 '@istanbuljs/schema': 0.1.3
8196 istanbul-lib-coverage: 3.2.0 8248 istanbul-lib-coverage: 3.2.0
8197 semver: 6.3.1 8249 semver: 6.3.1
@@ -8203,8 +8255,8 @@ packages:
8203 resolution: {integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==} 8255 resolution: {integrity: sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==}
8204 engines: {node: '>=10'} 8256 engines: {node: '>=10'}
8205 dependencies: 8257 dependencies:
8206 '@babel/core': 7.22.20 8258 '@babel/core': 7.23.5
8207 '@babel/parser': 7.23.0 8259 '@babel/parser': 7.23.5
8208 '@istanbuljs/schema': 0.1.3 8260 '@istanbuljs/schema': 0.1.3
8209 istanbul-lib-coverage: 3.2.0 8261 istanbul-lib-coverage: 3.2.0
8210 semver: 7.5.4 8262 semver: 7.5.4
@@ -8240,13 +8292,14 @@ packages:
8240 istanbul-lib-report: 3.0.0 8292 istanbul-lib-report: 3.0.0
8241 dev: true 8293 dev: true
8242 8294
8243 /iterator.prototype@1.1.1: 8295 /iterator.prototype@1.1.2:
8244 resolution: {integrity: sha512-9E+nePc8C9cnQldmNl6bgpTY6zI4OPRZd97fhJ/iVZ1GifIUDVV5F6x1nEDqpe8KaMEZGT4xgrwKQDxXnjOIZQ==} 8296 resolution: {integrity: sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==}
8245 dependencies: 8297 dependencies:
8246 define-properties: 1.2.0 8298 define-properties: 1.2.1
8247 get-intrinsic: 1.2.1 8299 get-intrinsic: 1.2.2
8248 has-symbols: 1.0.3 8300 has-symbols: 1.0.3
8249 reflect.getprototypeof: 1.0.4 8301 reflect.getprototypeof: 1.0.4
8302 set-function-name: 2.0.1
8250 dev: true 8303 dev: true
8251 8304
8252 /jackspeak@2.3.6: 8305 /jackspeak@2.3.6:
@@ -8256,13 +8309,14 @@ packages:
8256 '@isaacs/cliui': 8.0.2 8309 '@isaacs/cliui': 8.0.2
8257 optionalDependencies: 8310 optionalDependencies:
8258 '@pkgjs/parseargs': 0.11.0 8311 '@pkgjs/parseargs': 0.11.0
8312 dev: true
8259 8313
8260 /jake@10.8.5: 8314 /jake@10.8.7:
8261 resolution: {integrity: sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==} 8315 resolution: {integrity: sha512-ZDi3aP+fG/LchyBzUM804VjddnwfSfsdeYkwt8NcbKRvo4rFkjhs456iLFn3k2ZUWvNe4i48WACDbza8fhq2+w==}
8262 engines: {node: '>=10'} 8316 engines: {node: '>=10'}
8263 hasBin: true 8317 hasBin: true
8264 dependencies: 8318 dependencies:
8265 async: 3.2.4 8319 async: 3.2.5
8266 chalk: 4.1.2 8320 chalk: 4.1.2
8267 filelist: 1.0.4 8321 filelist: 1.0.4
8268 minimatch: 3.1.2 8322 minimatch: 3.1.2
@@ -8285,7 +8339,7 @@ packages:
8285 '@jest/expect': 29.7.0 8339 '@jest/expect': 29.7.0
8286 '@jest/test-result': 29.7.0 8340 '@jest/test-result': 29.7.0
8287 '@jest/types': 29.6.3 8341 '@jest/types': 29.6.3
8288 '@types/node': 18.15.3 8342 '@types/node': 20.10.3
8289 chalk: 4.1.2 8343 chalk: 4.1.2
8290 co: 4.6.0 8344 co: 4.6.0
8291 dedent: 1.5.1 8345 dedent: 1.5.1
@@ -8306,7 +8360,7 @@ packages:
8306 - supports-color 8360 - supports-color
8307 dev: true 8361 dev: true
8308 8362
8309 /jest-cli@29.7.0(@types/node@18.15.3)(ts-node@10.9.1): 8363 /jest-cli@29.7.0(@types/node@20.10.3)(ts-node@10.9.1):
8310 resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==} 8364 resolution: {integrity: sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==}
8311 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 8365 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
8312 hasBin: true 8366 hasBin: true
@@ -8320,10 +8374,10 @@ packages:
8320 '@jest/test-result': 29.7.0 8374 '@jest/test-result': 29.7.0
8321 '@jest/types': 29.6.3 8375 '@jest/types': 29.6.3
8322 chalk: 4.1.2 8376 chalk: 4.1.2
8323 create-jest: 29.7.0(@types/node@18.15.3)(ts-node@10.9.1) 8377 create-jest: 29.7.0(@types/node@20.10.3)(ts-node@10.9.1)
8324 exit: 0.1.2 8378 exit: 0.1.2
8325 import-local: 3.1.0 8379 import-local: 3.1.0
8326 jest-config: 29.7.0(@types/node@18.15.3)(ts-node@10.9.1) 8380 jest-config: 29.7.0(@types/node@20.10.3)(ts-node@10.9.1)
8327 jest-util: 29.7.0 8381 jest-util: 29.7.0
8328 jest-validate: 29.7.0 8382 jest-validate: 29.7.0
8329 yargs: 17.7.2 8383 yargs: 17.7.2
@@ -8334,7 +8388,7 @@ packages:
8334 - ts-node 8388 - ts-node
8335 dev: true 8389 dev: true
8336 8390
8337 /jest-config@29.7.0(@types/node@18.15.3)(ts-node@10.9.1): 8391 /jest-config@29.7.0(@types/node@20.10.3)(ts-node@10.9.1):
8338 resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==} 8392 resolution: {integrity: sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==}
8339 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 8393 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
8340 peerDependencies: 8394 peerDependencies:
@@ -8346,14 +8400,14 @@ packages:
8346 ts-node: 8400 ts-node:
8347 optional: true 8401 optional: true
8348 dependencies: 8402 dependencies:
8349 '@babel/core': 7.22.20 8403 '@babel/core': 7.23.5
8350 '@jest/test-sequencer': 29.7.0 8404 '@jest/test-sequencer': 29.7.0
8351 '@jest/types': 29.6.3 8405 '@jest/types': 29.6.3
8352 '@types/node': 18.15.3 8406 '@types/node': 20.10.3
8353 babel-jest: 29.7.0(@babel/core@7.22.20) 8407 babel-jest: 29.7.0(@babel/core@7.23.5)
8354 chalk: 4.1.2 8408 chalk: 4.1.2
8355 ci-info: 3.8.0 8409 ci-info: 3.8.0
8356 deepmerge: 4.2.2 8410 deepmerge: 4.3.1
8357 glob: 7.2.3 8411 glob: 7.2.3
8358 graceful-fs: 4.2.11 8412 graceful-fs: 4.2.11
8359 jest-circus: 29.7.0 8413 jest-circus: 29.7.0
@@ -8369,7 +8423,7 @@ packages:
8369 pretty-format: 29.7.0 8423 pretty-format: 29.7.0
8370 slash: 3.0.0 8424 slash: 3.0.0
8371 strip-json-comments: 3.1.1 8425 strip-json-comments: 3.1.1
8372 ts-node: 10.9.1(@types/node@18.15.3)(typescript@5.2.2) 8426 ts-node: 10.9.1(@types/node@20.10.3)(typescript@5.3.2)
8373 transitivePeerDependencies: 8427 transitivePeerDependencies:
8374 - babel-plugin-macros 8428 - babel-plugin-macros
8375 - supports-color 8429 - supports-color
@@ -8410,7 +8464,7 @@ packages:
8410 '@jest/environment': 29.7.0 8464 '@jest/environment': 29.7.0
8411 '@jest/fake-timers': 29.7.0 8465 '@jest/fake-timers': 29.7.0
8412 '@jest/types': 29.6.3 8466 '@jest/types': 29.6.3
8413 '@types/node': 18.15.3 8467 '@types/node': 20.10.3
8414 jest-mock: 29.7.0 8468 jest-mock: 29.7.0
8415 jest-util: 29.7.0 8469 jest-util: 29.7.0
8416 dev: true 8470 dev: true
@@ -8426,7 +8480,7 @@ packages:
8426 dependencies: 8480 dependencies:
8427 '@jest/types': 29.6.3 8481 '@jest/types': 29.6.3
8428 '@types/graceful-fs': 4.1.5 8482 '@types/graceful-fs': 4.1.5
8429 '@types/node': 18.15.3 8483 '@types/node': 20.10.3
8430 anymatch: 3.1.3 8484 anymatch: 3.1.3
8431 fb-watchman: 2.0.2 8485 fb-watchman: 2.0.2
8432 graceful-fs: 4.2.11 8486 graceful-fs: 4.2.11
@@ -8461,7 +8515,7 @@ packages:
8461 resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==} 8515 resolution: {integrity: sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==}
8462 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 8516 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
8463 dependencies: 8517 dependencies:
8464 '@babel/code-frame': 7.22.13 8518 '@babel/code-frame': 7.23.5
8465 '@jest/types': 29.6.3 8519 '@jest/types': 29.6.3
8466 '@types/stack-utils': 2.0.1 8520 '@types/stack-utils': 2.0.1
8467 chalk: 4.1.2 8521 chalk: 4.1.2
@@ -8477,7 +8531,7 @@ packages:
8477 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 8531 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
8478 dependencies: 8532 dependencies:
8479 '@jest/types': 29.6.3 8533 '@jest/types': 29.6.3
8480 '@types/node': 18.15.3 8534 '@types/node': 20.10.3
8481 jest-util: 29.7.0 8535 jest-util: 29.7.0
8482 dev: true 8536 dev: true
8483 8537
@@ -8518,7 +8572,7 @@ packages:
8518 jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0) 8572 jest-pnp-resolver: 1.2.3(jest-resolve@29.7.0)
8519 jest-util: 29.7.0 8573 jest-util: 29.7.0
8520 jest-validate: 29.7.0 8574 jest-validate: 29.7.0
8521 resolve: 1.22.4 8575 resolve: 1.22.8
8522 resolve.exports: 2.0.2 8576 resolve.exports: 2.0.2
8523 slash: 3.0.0 8577 slash: 3.0.0
8524 dev: true 8578 dev: true
@@ -8532,7 +8586,7 @@ packages:
8532 '@jest/test-result': 29.7.0 8586 '@jest/test-result': 29.7.0
8533 '@jest/transform': 29.7.0 8587 '@jest/transform': 29.7.0
8534 '@jest/types': 29.6.3 8588 '@jest/types': 29.6.3
8535 '@types/node': 18.15.3 8589 '@types/node': 20.10.3
8536 chalk: 4.1.2 8590 chalk: 4.1.2
8537 emittery: 0.13.1 8591 emittery: 0.13.1
8538 graceful-fs: 4.2.11 8592 graceful-fs: 4.2.11
@@ -8563,7 +8617,7 @@ packages:
8563 '@jest/test-result': 29.7.0 8617 '@jest/test-result': 29.7.0
8564 '@jest/transform': 29.7.0 8618 '@jest/transform': 29.7.0
8565 '@jest/types': 29.6.3 8619 '@jest/types': 29.6.3
8566 '@types/node': 18.15.3 8620 '@types/node': 20.10.3
8567 chalk: 4.1.2 8621 chalk: 4.1.2
8568 cjs-module-lexer: 1.2.2 8622 cjs-module-lexer: 1.2.2
8569 collect-v8-coverage: 1.0.1 8623 collect-v8-coverage: 1.0.1
@@ -8586,15 +8640,15 @@ packages:
8586 resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==} 8640 resolution: {integrity: sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==}
8587 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 8641 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
8588 dependencies: 8642 dependencies:
8589 '@babel/core': 7.22.20 8643 '@babel/core': 7.23.5
8590 '@babel/generator': 7.23.0 8644 '@babel/generator': 7.23.5
8591 '@babel/plugin-syntax-jsx': 7.21.4(@babel/core@7.22.20) 8645 '@babel/plugin-syntax-jsx': 7.22.5(@babel/core@7.23.5)
8592 '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.22.20) 8646 '@babel/plugin-syntax-typescript': 7.20.0(@babel/core@7.23.5)
8593 '@babel/types': 7.23.0 8647 '@babel/types': 7.23.5
8594 '@jest/expect-utils': 29.7.0 8648 '@jest/expect-utils': 29.7.0
8595 '@jest/transform': 29.7.0 8649 '@jest/transform': 29.7.0
8596 '@jest/types': 29.6.3 8650 '@jest/types': 29.6.3
8597 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.22.20) 8651 babel-preset-current-node-syntax: 1.0.1(@babel/core@7.23.5)
8598 chalk: 4.1.2 8652 chalk: 4.1.2
8599 expect: 29.7.0 8653 expect: 29.7.0
8600 graceful-fs: 4.2.11 8654 graceful-fs: 4.2.11
@@ -8615,7 +8669,7 @@ packages:
8615 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 8669 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
8616 dependencies: 8670 dependencies:
8617 '@jest/types': 29.6.3 8671 '@jest/types': 29.6.3
8618 '@types/node': 18.15.3 8672 '@types/node': 20.10.3
8619 chalk: 4.1.2 8673 chalk: 4.1.2
8620 ci-info: 3.8.0 8674 ci-info: 3.8.0
8621 graceful-fs: 4.2.11 8675 graceful-fs: 4.2.11
@@ -8640,7 +8694,7 @@ packages:
8640 dependencies: 8694 dependencies:
8641 '@jest/test-result': 29.7.0 8695 '@jest/test-result': 29.7.0
8642 '@jest/types': 29.6.3 8696 '@jest/types': 29.6.3
8643 '@types/node': 18.15.3 8697 '@types/node': 20.10.3
8644 ansi-escapes: 4.3.2 8698 ansi-escapes: 4.3.2
8645 chalk: 4.1.2 8699 chalk: 4.1.2
8646 emittery: 0.13.1 8700 emittery: 0.13.1
@@ -8652,13 +8706,13 @@ packages:
8652 resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==} 8706 resolution: {integrity: sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==}
8653 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 8707 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
8654 dependencies: 8708 dependencies:
8655 '@types/node': 18.15.3 8709 '@types/node': 20.10.3
8656 jest-util: 29.7.0 8710 jest-util: 29.7.0
8657 merge-stream: 2.0.0 8711 merge-stream: 2.0.0
8658 supports-color: 8.1.1 8712 supports-color: 8.1.1
8659 dev: true 8713 dev: true
8660 8714
8661 /jest@29.7.0(@types/node@18.15.3)(ts-node@10.9.1): 8715 /jest@29.7.0(@types/node@20.10.3)(ts-node@10.9.1):
8662 resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==} 8716 resolution: {integrity: sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==}
8663 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0} 8717 engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
8664 hasBin: true 8718 hasBin: true
@@ -8671,7 +8725,7 @@ packages:
8671 '@jest/core': 29.7.0(ts-node@10.9.1) 8725 '@jest/core': 29.7.0(ts-node@10.9.1)
8672 '@jest/types': 29.6.3 8726 '@jest/types': 29.6.3
8673 import-local: 3.1.0 8727 import-local: 3.1.0
8674 jest-cli: 29.7.0(@types/node@18.15.3)(ts-node@10.9.1) 8728 jest-cli: 29.7.0(@types/node@20.10.3)(ts-node@10.9.1)
8675 transitivePeerDependencies: 8729 transitivePeerDependencies:
8676 - '@types/node' 8730 - '@types/node'
8677 - babel-plugin-macros 8731 - babel-plugin-macros
@@ -8679,13 +8733,13 @@ packages:
8679 - ts-node 8733 - ts-node
8680 dev: true 8734 dev: true
8681 8735
8682 /joi@17.7.0: 8736 /joi@17.11.0:
8683 resolution: {integrity: sha512-1/ugc8djfn93rTE3WRKdCzGGt/EtiYKxITMO4Wiv6q5JL1gl9ePt4kBsl1S499nbosspfctIQTpYIhSmHA3WAg==} 8737 resolution: {integrity: sha512-NgB+lZLNoqISVy1rZocE9PZI36bL/77ie924Ri43yEvi9GUUMPeyVIr8KdFTMUlby1p0PBYMk9spIxEUQYqrJQ==}
8684 dependencies: 8738 dependencies:
8685 '@hapi/hoek': 9.3.0 8739 '@hapi/hoek': 9.3.0
8686 '@hapi/topo': 5.1.0 8740 '@hapi/topo': 5.1.0
8687 '@sideway/address': 4.1.4 8741 '@sideway/address': 4.1.4
8688 '@sideway/formula': 3.0.0 8742 '@sideway/formula': 3.0.1
8689 '@sideway/pinpoint': 2.0.0 8743 '@sideway/pinpoint': 2.0.0
8690 dev: true 8744 dev: true
8691 8745
@@ -8737,7 +8791,7 @@ packages:
8737 resolution: {integrity: sha512-TuDuZ5KrgyjoCIppdPXBMqiGfota55+odM+j2cQ5rt/XKyKmqGB3Whz1F8SN8+60yYGy/Nu5lbRZ+rx8kBIvBw==} 8791 resolution: {integrity: sha512-TuDuZ5KrgyjoCIppdPXBMqiGfota55+odM+j2cQ5rt/XKyKmqGB3Whz1F8SN8+60yYGy/Nu5lbRZ+rx8kBIvBw==}
8738 engines: {node: '>=10'} 8792 engines: {node: '>=10'}
8739 dependencies: 8793 dependencies:
8740 '@babel/runtime': 7.22.15 8794 '@babel/runtime': 7.23.5
8741 chalk: 4.1.2 8795 chalk: 4.1.2
8742 pegjs: 0.10.0 8796 pegjs: 0.10.0
8743 dev: true 8797 dev: true
@@ -8784,7 +8838,7 @@ packages:
8784 /jsonfile@6.1.0: 8838 /jsonfile@6.1.0:
8785 resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==} 8839 resolution: {integrity: sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==}
8786 dependencies: 8840 dependencies:
8787 universalify: 2.0.0 8841 universalify: 2.0.1
8788 optionalDependencies: 8842 optionalDependencies:
8789 graceful-fs: 4.2.11 8843 graceful-fs: 4.2.11
8790 8844
@@ -8838,7 +8892,7 @@ packages:
8838 /jss-plugin-camel-case@10.10.0: 8892 /jss-plugin-camel-case@10.10.0:
8839 resolution: {integrity: sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw==} 8893 resolution: {integrity: sha512-z+HETfj5IYgFxh1wJnUAU8jByI48ED+v0fuTuhKrPR+pRBYS2EDwbusU8aFOpCdYhtRc9zhN+PJ7iNE8pAWyPw==}
8840 dependencies: 8894 dependencies:
8841 '@babel/runtime': 7.22.15 8895 '@babel/runtime': 7.23.5
8842 hyphenate-style-name: 1.0.4 8896 hyphenate-style-name: 1.0.4
8843 jss: 10.10.0 8897 jss: 10.10.0
8844 dev: false 8898 dev: false
@@ -8846,7 +8900,7 @@ packages:
8846 /jss-plugin-compose@10.10.0: 8900 /jss-plugin-compose@10.10.0:
8847 resolution: {integrity: sha512-F5kgtWpI2XfZ3Z8eP78tZEYFdgTIbpA/TMuX3a8vwrNolYtN1N4qJR/Ob0LAsqIwCMLojtxN7c7Oo/+Vz6THow==} 8901 resolution: {integrity: sha512-F5kgtWpI2XfZ3Z8eP78tZEYFdgTIbpA/TMuX3a8vwrNolYtN1N4qJR/Ob0LAsqIwCMLojtxN7c7Oo/+Vz6THow==}
8848 dependencies: 8902 dependencies:
8849 '@babel/runtime': 7.22.15 8903 '@babel/runtime': 7.23.5
8850 jss: 10.10.0 8904 jss: 10.10.0
8851 tiny-warning: 1.0.3 8905 tiny-warning: 1.0.3
8852 dev: false 8906 dev: false
@@ -8854,21 +8908,21 @@ packages:
8854 /jss-plugin-default-unit@10.10.0: 8908 /jss-plugin-default-unit@10.10.0:
8855 resolution: {integrity: sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ==} 8909 resolution: {integrity: sha512-SvpajxIECi4JDUbGLefvNckmI+c2VWmP43qnEy/0eiwzRUsafg5DVSIWSzZe4d2vFX1u9nRDP46WCFV/PXVBGQ==}
8856 dependencies: 8910 dependencies:
8857 '@babel/runtime': 7.22.15 8911 '@babel/runtime': 7.23.5
8858 jss: 10.10.0 8912 jss: 10.10.0
8859 dev: false 8913 dev: false
8860 8914
8861 /jss-plugin-expand@10.10.0: 8915 /jss-plugin-expand@10.10.0:
8862 resolution: {integrity: sha512-ymT62W2OyDxBxr7A6JR87vVX9vTq2ep5jZLIdUSusfBIEENLdkkc0lL/Xaq8W9s3opUq7R0sZQpzRWELrfVYzA==} 8916 resolution: {integrity: sha512-ymT62W2OyDxBxr7A6JR87vVX9vTq2ep5jZLIdUSusfBIEENLdkkc0lL/Xaq8W9s3opUq7R0sZQpzRWELrfVYzA==}
8863 dependencies: 8917 dependencies:
8864 '@babel/runtime': 7.22.15 8918 '@babel/runtime': 7.23.5
8865 jss: 10.10.0 8919 jss: 10.10.0
8866 dev: false 8920 dev: false
8867 8921
8868 /jss-plugin-extend@10.10.0: 8922 /jss-plugin-extend@10.10.0:
8869 resolution: {integrity: sha512-sKYrcMfr4xxigmIwqTjxNcHwXJIfvhvjTNxF+Tbc1NmNdyspGW47Ey6sGH8BcQ4FFQhLXctpWCQSpDwdNmXSwg==} 8923 resolution: {integrity: sha512-sKYrcMfr4xxigmIwqTjxNcHwXJIfvhvjTNxF+Tbc1NmNdyspGW47Ey6sGH8BcQ4FFQhLXctpWCQSpDwdNmXSwg==}
8870 dependencies: 8924 dependencies:
8871 '@babel/runtime': 7.22.15 8925 '@babel/runtime': 7.23.5
8872 jss: 10.10.0 8926 jss: 10.10.0
8873 tiny-warning: 1.0.3 8927 tiny-warning: 1.0.3
8874 dev: false 8928 dev: false
@@ -8876,14 +8930,14 @@ packages:
8876 /jss-plugin-global@10.10.0: 8930 /jss-plugin-global@10.10.0:
8877 resolution: {integrity: sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A==} 8931 resolution: {integrity: sha512-icXEYbMufiNuWfuazLeN+BNJO16Ge88OcXU5ZDC2vLqElmMybA31Wi7lZ3lf+vgufRocvPj8443irhYRgWxP+A==}
8878 dependencies: 8932 dependencies:
8879 '@babel/runtime': 7.22.15 8933 '@babel/runtime': 7.23.5
8880 jss: 10.10.0 8934 jss: 10.10.0
8881 dev: false 8935 dev: false
8882 8936
8883 /jss-plugin-nested@10.10.0: 8937 /jss-plugin-nested@10.10.0:
8884 resolution: {integrity: sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA==} 8938 resolution: {integrity: sha512-9R4JHxxGgiZhurDo3q7LdIiDEgtA1bTGzAbhSPyIOWb7ZubrjQe8acwhEQ6OEKydzpl8XHMtTnEwHXCARLYqYA==}
8885 dependencies: 8939 dependencies:
8886 '@babel/runtime': 7.22.15 8940 '@babel/runtime': 7.23.5
8887 jss: 10.10.0 8941 jss: 10.10.0
8888 tiny-warning: 1.0.3 8942 tiny-warning: 1.0.3
8889 dev: false 8943 dev: false
@@ -8891,14 +8945,14 @@ packages:
8891 /jss-plugin-props-sort@10.10.0: 8945 /jss-plugin-props-sort@10.10.0:
8892 resolution: {integrity: sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg==} 8946 resolution: {integrity: sha512-5VNJvQJbnq/vRfje6uZLe/FyaOpzP/IH1LP+0fr88QamVrGJa0hpRRyAa0ea4U/3LcorJfBFVyC4yN2QC73lJg==}
8893 dependencies: 8947 dependencies:
8894 '@babel/runtime': 7.22.15 8948 '@babel/runtime': 7.23.5
8895 jss: 10.10.0 8949 jss: 10.10.0
8896 dev: false 8950 dev: false
8897 8951
8898 /jss-plugin-rule-value-function@10.10.0: 8952 /jss-plugin-rule-value-function@10.10.0:
8899 resolution: {integrity: sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g==} 8953 resolution: {integrity: sha512-uEFJFgaCtkXeIPgki8ICw3Y7VMkL9GEan6SqmT9tqpwM+/t+hxfMUdU4wQ0MtOiMNWhwnckBV0IebrKcZM9C0g==}
8900 dependencies: 8954 dependencies:
8901 '@babel/runtime': 7.22.15 8955 '@babel/runtime': 7.23.5
8902 jss: 10.10.0 8956 jss: 10.10.0
8903 tiny-warning: 1.0.3 8957 tiny-warning: 1.0.3
8904 dev: false 8958 dev: false
@@ -8906,7 +8960,7 @@ packages:
8906 /jss-plugin-rule-value-observable@10.10.0: 8960 /jss-plugin-rule-value-observable@10.10.0:
8907 resolution: {integrity: sha512-ZLMaYrR3QE+vD7nl3oNXuj79VZl9Kp8/u6A1IbTPDcuOu8b56cFdWRZNZ0vNr8jHewooEeq2doy8Oxtymr2ZPA==} 8961 resolution: {integrity: sha512-ZLMaYrR3QE+vD7nl3oNXuj79VZl9Kp8/u6A1IbTPDcuOu8b56cFdWRZNZ0vNr8jHewooEeq2doy8Oxtymr2ZPA==}
8908 dependencies: 8962 dependencies:
8909 '@babel/runtime': 7.22.15 8963 '@babel/runtime': 7.23.5
8910 jss: 10.10.0 8964 jss: 10.10.0
8911 symbol-observable: 1.2.0 8965 symbol-observable: 1.2.0
8912 dev: false 8966 dev: false
@@ -8914,7 +8968,7 @@ packages:
8914 /jss-plugin-template@10.10.0: 8968 /jss-plugin-template@10.10.0:
8915 resolution: {integrity: sha512-ocXZBIOJOA+jISPdsgkTs8wwpK6UbsvtZK5JI7VUggTD6LWKbtoxUzadd2TpfF+lEtlhUmMsCkTRNkITdPKa6w==} 8969 resolution: {integrity: sha512-ocXZBIOJOA+jISPdsgkTs8wwpK6UbsvtZK5JI7VUggTD6LWKbtoxUzadd2TpfF+lEtlhUmMsCkTRNkITdPKa6w==}
8916 dependencies: 8970 dependencies:
8917 '@babel/runtime': 7.22.15 8971 '@babel/runtime': 7.23.5
8918 jss: 10.10.0 8972 jss: 10.10.0
8919 tiny-warning: 1.0.3 8973 tiny-warning: 1.0.3
8920 dev: false 8974 dev: false
@@ -8922,7 +8976,7 @@ packages:
8922 /jss-plugin-vendor-prefixer@10.10.0: 8976 /jss-plugin-vendor-prefixer@10.10.0:
8923 resolution: {integrity: sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg==} 8977 resolution: {integrity: sha512-UY/41WumgjW8r1qMCO8l1ARg7NHnfRVWRhZ2E2m0DMYsr2DD91qIXLyNhiX83hHswR7Wm4D+oDYNC1zWCJWtqg==}
8924 dependencies: 8978 dependencies:
8925 '@babel/runtime': 7.22.15 8979 '@babel/runtime': 7.23.5
8926 css-vendor: 2.0.8 8980 css-vendor: 2.0.8
8927 jss: 10.10.0 8981 jss: 10.10.0
8928 dev: false 8982 dev: false
@@ -8930,7 +8984,7 @@ packages:
8930 /jss-preset-default@10.10.0: 8984 /jss-preset-default@10.10.0:
8931 resolution: {integrity: sha512-GL175Wt2FGhjE+f+Y3aWh+JioL06/QWFgZp53CbNNq6ZkVU0TDplD8Bxm9KnkotAYn3FlplNqoW5CjyLXcoJ7Q==} 8985 resolution: {integrity: sha512-GL175Wt2FGhjE+f+Y3aWh+JioL06/QWFgZp53CbNNq6ZkVU0TDplD8Bxm9KnkotAYn3FlplNqoW5CjyLXcoJ7Q==}
8932 dependencies: 8986 dependencies:
8933 '@babel/runtime': 7.22.15 8987 '@babel/runtime': 7.23.5
8934 jss: 10.10.0 8988 jss: 10.10.0
8935 jss-plugin-camel-case: 10.10.0 8989 jss-plugin-camel-case: 10.10.0
8936 jss-plugin-compose: 10.10.0 8990 jss-plugin-compose: 10.10.0
@@ -8949,28 +9003,20 @@ packages:
8949 /jss@10.10.0: 9003 /jss@10.10.0:
8950 resolution: {integrity: sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw==} 9004 resolution: {integrity: sha512-cqsOTS7jqPsPMjtKYDUpdFC0AbhYFLTcuGRqymgmdJIeQ8cH7+AgX7YSgQy79wXloZq2VvATYxUOUQEvS1V/Zw==}
8951 dependencies: 9005 dependencies:
8952 '@babel/runtime': 7.20.7 9006 '@babel/runtime': 7.23.5
8953 csstype: 3.1.2 9007 csstype: 3.1.2
8954 is-in-browser: 1.1.3 9008 is-in-browser: 1.1.3
8955 tiny-warning: 1.0.3 9009 tiny-warning: 1.0.3
8956 dev: false 9010 dev: false
8957 9011
8958 /jsx-ast-utils@3.3.3: 9012 /jsx-ast-utils@3.3.5:
8959 resolution: {integrity: sha512-fYQHZTZ8jSfmWZ0iyzfwiU4WDX4HpHbMCZ3gPlWYiCl3BoeOTsqKBqnTVfH2rYT7eP5c3sVbeSPHnnJOaTrWiw==} 9013 resolution: {integrity: sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==}
8960 engines: {node: '>=4.0'}
8961 dependencies:
8962 array-includes: 3.1.6
8963 object.assign: 4.1.4
8964 dev: true
8965
8966 /jsx-ast-utils@3.3.4:
8967 resolution: {integrity: sha512-fX2TVdCViod6HwKEtSWGHs57oFhVfCMwieb9PuRDgjDPh5XeqJiHFFFJCHxU5cnTc3Bu/GRL+kPiFmw8XWOfKw==}
8968 engines: {node: '>=4.0'} 9014 engines: {node: '>=4.0'}
8969 dependencies: 9015 dependencies:
8970 array-includes: 3.1.6 9016 array-includes: 3.1.7
8971 array.prototype.flat: 1.3.1 9017 array.prototype.flat: 1.3.2
8972 object.assign: 4.1.4 9018 object.assign: 4.1.5
8973 object.values: 1.1.6 9019 object.values: 1.1.7
8974 dev: true 9020 dev: true
8975 9021
8976 /jwa@1.4.1: 9022 /jwa@1.4.1:
@@ -8988,8 +9034,8 @@ packages:
8988 safe-buffer: 5.2.1 9034 safe-buffer: 5.2.1
8989 dev: false 9035 dev: false
8990 9036
8991 /keyv@4.5.2: 9037 /keyv@4.5.4:
8992 resolution: {integrity: sha512-5MHbFaKn8cNSmVW7BYnijeAVlE4cYA/SVkifVgrh7yotnfhKmjuXpDKjrABLnT0SfHWV21P8ow07OGfRrNDg8g==} 9038 resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
8993 dependencies: 9039 dependencies:
8994 json-buffer: 3.0.1 9040 json-buffer: 3.0.1
8995 9041
@@ -9091,8 +9137,9 @@ packages:
9091 resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==} 9137 resolution: {integrity: sha512-tN0MCzyWnoz/4nHS6uxdlFWoUZT7ABptwKPQ52Ea7URk6vll88bWBVhodtnlfEuCcKWNGoc+uGbw1cwa9IKh/w==}
9092 dev: true 9138 dev: true
9093 9139
9094 /language-tags@1.0.5: 9140 /language-tags@1.0.9:
9095 resolution: {integrity: sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==} 9141 resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
9142 engines: {node: '>=0.10'}
9096 dependencies: 9143 dependencies:
9097 language-subtag-registry: 0.3.22 9144 language-subtag-registry: 0.3.22
9098 dev: true 9145 dev: true
@@ -9141,7 +9188,7 @@ packages:
9141 is-plain-object: 2.0.4 9188 is-plain-object: 2.0.4
9142 object.map: 1.0.1 9189 object.map: 1.0.1
9143 rechoir: 0.6.2 9190 rechoir: 0.6.2
9144 resolve: 1.22.4 9191 resolve: 1.22.8
9145 transitivePeerDependencies: 9192 transitivePeerDependencies:
9146 - supports-color 9193 - supports-color
9147 dev: false 9194 dev: false
@@ -9293,10 +9340,10 @@ packages:
9293 resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==} 9340 resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
9294 engines: {node: '>=8'} 9341 engines: {node: '>=8'}
9295 9342
9296 /lru-cache@10.0.1: 9343 /lru-cache@10.1.0:
9297 resolution: {integrity: sha512-IJ4uwUTi2qCccrioU6g9g/5rvvVl13bsdczUUcqbciD9iLr095yj8DQKdObriEvuNSx325N1rV1O0sJFszx75g==} 9344 resolution: {integrity: sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==}
9298 engines: {node: 14 || >=16.14} 9345 engines: {node: 14 || >=16.14}
9299 requiresBuild: true 9346 dev: true
9300 9347
9301 /lru-cache@4.1.5: 9348 /lru-cache@4.1.5:
9302 resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==} 9349 resolution: {integrity: sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==}
@@ -9342,7 +9389,7 @@ packages:
9342 resolution: {integrity: sha512-OHJU8nTNxHYL1FQhD+nZawWgXKXAqDGr4kluLtaqKO4au3cR41y1mKuVShOU5U4rOYiuPanljq6oFGmV2B9DFA==} 9389 resolution: {integrity: sha512-OHJU8nTNxHYL1FQhD+nZawWgXKXAqDGr4kluLtaqKO4au3cR41y1mKuVShOU5U4rOYiuPanljq6oFGmV2B9DFA==}
9343 engines: {node: '>=6'} 9390 engines: {node: '>=6'}
9344 dependencies: 9391 dependencies:
9345 semver: 5.7.1 9392 semver: 5.7.2
9346 dev: false 9393 dev: false
9347 9394
9348 /macroable@1.0.0: 9395 /macroable@1.0.0:
@@ -9368,27 +9415,29 @@ packages:
9368 resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==} 9415 resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
9369 dev: true 9416 dev: true
9370 9417
9371 /make-fetch-happen@11.1.1: 9418 /make-fetch-happen@10.2.1:
9372 resolution: {integrity: sha512-rLWS7GCSTcEujjVBs2YqG7Y4643u8ucvCJeSRqiLYhesrDuzeuFIk37xREzAsfQaqzl8b9rNCE4m6J8tvX4Q8w==} 9419 resolution: {integrity: sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==}
9373 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 9420 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
9374 requiresBuild: true 9421 requiresBuild: true
9375 dependencies: 9422 dependencies:
9376 agentkeepalive: 4.5.0 9423 agentkeepalive: 4.5.0
9377 cacache: 17.1.4 9424 cacache: 16.1.3
9378 http-cache-semantics: 4.1.1 9425 http-cache-semantics: 4.1.1
9379 http-proxy-agent: 5.0.0 9426 http-proxy-agent: 5.0.0
9380 https-proxy-agent: 5.0.1 9427 https-proxy-agent: 5.0.1
9381 is-lambda: 1.0.1 9428 is-lambda: 1.0.1
9382 lru-cache: 7.18.3 9429 lru-cache: 7.18.3
9383 minipass: 5.0.0 9430 minipass: 3.3.6
9384 minipass-fetch: 3.0.4 9431 minipass-collect: 1.0.2
9432 minipass-fetch: 2.1.2
9385 minipass-flush: 1.0.5 9433 minipass-flush: 1.0.5
9386 minipass-pipeline: 1.2.4 9434 minipass-pipeline: 1.2.4
9387 negotiator: 0.6.3 9435 negotiator: 0.6.3
9388 promise-retry: 2.0.1 9436 promise-retry: 2.0.1
9389 socks-proxy-agent: 7.0.0 9437 socks-proxy-agent: 7.0.0
9390 ssri: 10.0.5 9438 ssri: 9.0.1
9391 transitivePeerDependencies: 9439 transitivePeerDependencies:
9440 - bluebird
9392 - supports-color 9441 - supports-color
9393 dev: false 9442 dev: false
9394 optional: true 9443 optional: true
@@ -9511,7 +9560,7 @@ packages:
9511 resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==} 9560 resolution: {integrity: sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==}
9512 engines: {node: '>=10'} 9561 engines: {node: '>=10'}
9513 dependencies: 9562 dependencies:
9514 '@types/minimist': 1.2.2 9563 '@types/minimist': 1.2.5
9515 camelcase-keys: 6.2.2 9564 camelcase-keys: 6.2.2
9516 decamelize-keys: 1.1.1 9565 decamelize-keys: 1.1.1
9517 hard-rejection: 2.1.0 9566 hard-rejection: 2.1.0
@@ -9620,13 +9669,13 @@ packages:
9620 engines: {node: '>=10'} 9669 engines: {node: '>=10'}
9621 dependencies: 9670 dependencies:
9622 brace-expansion: 2.0.1 9671 brace-expansion: 2.0.1
9623 dev: true
9624 9672
9625 /minimatch@9.0.3: 9673 /minimatch@9.0.3:
9626 resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==} 9674 resolution: {integrity: sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==}
9627 engines: {node: '>=16 || 14 >=14.17'} 9675 engines: {node: '>=16 || 14 >=14.17'}
9628 dependencies: 9676 dependencies:
9629 brace-expansion: 2.0.1 9677 brace-expansion: 2.0.1
9678 dev: true
9630 9679
9631 /minimist-options@4.1.0: 9680 /minimist-options@4.1.0:
9632 resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==} 9681 resolution: {integrity: sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==}
@@ -9662,12 +9711,12 @@ packages:
9662 dev: false 9711 dev: false
9663 optional: true 9712 optional: true
9664 9713
9665 /minipass-fetch@3.0.4: 9714 /minipass-fetch@2.1.2:
9666 resolution: {integrity: sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==} 9715 resolution: {integrity: sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==}
9667 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 9716 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
9668 requiresBuild: true 9717 requiresBuild: true
9669 dependencies: 9718 dependencies:
9670 minipass: 7.0.4 9719 minipass: 3.3.6
9671 minipass-sized: 1.0.3 9720 minipass-sized: 1.0.3
9672 minizlib: 2.1.2 9721 minizlib: 2.1.2
9673 optionalDependencies: 9722 optionalDependencies:
@@ -9718,15 +9767,10 @@ packages:
9718 resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==} 9767 resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
9719 engines: {node: '>=8'} 9768 engines: {node: '>=8'}
9720 9769
9721 /minipass@6.0.2:
9722 resolution: {integrity: sha512-MzWSV5nYVT7mVyWCwn2o7JH13w2TBRmmSqSRCKzTw+lmft9X4z+3wjvs06Tzijo5z4W/kahUCDpRXTF+ZrmF/w==}
9723 engines: {node: '>=16 || 14 >=14.17'}
9724 dev: true
9725
9726 /minipass@7.0.4: 9770 /minipass@7.0.4:
9727 resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==} 9771 resolution: {integrity: sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==}
9728 engines: {node: '>=16 || 14 >=14.17'} 9772 engines: {node: '>=16 || 14 >=14.17'}
9729 requiresBuild: true 9773 dev: true
9730 9774
9731 /minizlib@2.1.2: 9775 /minizlib@2.1.2:
9732 resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==} 9776 resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
@@ -9763,26 +9807,26 @@ packages:
9763 engines: {node: '>=10'} 9807 engines: {node: '>=10'}
9764 hasBin: true 9808 hasBin: true
9765 9809
9766 /mobx-localstorage@1.2.0(mobx@6.10.2): 9810 /mobx-localstorage@1.2.0(mobx@6.12.0):
9767 resolution: {integrity: sha512-fb03qyQfjnDIOW28qdV+h9AZ8qtJCZnzNgsej0YxCYwAR2ViykKxgHThikgOi+zJzJj5ljxWyvjGrr6CoptcFw==} 9811 resolution: {integrity: sha512-fb03qyQfjnDIOW28qdV+h9AZ8qtJCZnzNgsej0YxCYwAR2ViykKxgHThikgOi+zJzJj5ljxWyvjGrr6CoptcFw==}
9768 peerDependencies: 9812 peerDependencies:
9769 mobx: '>=3' 9813 mobx: '>=3'
9770 dependencies: 9814 dependencies:
9771 mobx: 6.10.2 9815 mobx: 6.12.0
9772 reactive-localstorage: 0.0.2 9816 reactive-localstorage: 0.0.2
9773 dev: false 9817 dev: false
9774 9818
9775 /mobx-react-form@6.3.7(mobx@6.10.2): 9819 /mobx-react-form@6.6.0(mobx@6.12.0):
9776 resolution: {integrity: sha512-PV9V5jxHLNowsZ5CniVm611FYDFPfzvx+rrEp1WM7lpGso0YE3ZNc0QzquYTYPVRDhs+pVZb+jGXVRR0qhgw2g==} 9820 resolution: {integrity: sha512-Md7ne7tS4GX/TNMSmxKX4aTB1FVOVYCv/452k/Bftc4HK+4iozzlQX9jmCBlpSEAswpoqRE5e/Px/ANPay0DLg==}
9777 engines: {node: '>=8.0.0'} 9821 engines: {node: '>=8.0.0'}
9778 peerDependencies: 9822 peerDependencies:
9779 mobx: ^6.0.0 9823 mobx: ^6.0.0
9780 dependencies: 9824 dependencies:
9781 lodash: 4.17.21 9825 lodash: 4.17.21
9782 mobx: 6.10.2 9826 mobx: 6.12.0
9783 dev: false 9827 dev: false
9784 9828
9785 /mobx-react-lite@3.4.0(mobx@6.10.2)(react-dom@18.2.0)(react@18.2.0): 9829 /mobx-react-lite@3.4.0(mobx@6.12.0)(react-dom@18.2.0)(react@18.2.0):
9786 resolution: {integrity: sha512-bRuZp3C0itgLKHu/VNxi66DN/XVkQG7xtoBVWxpvC5FhAqbOCP21+nPhULjnzEqd7xBMybp6KwytdUpZKEgpIQ==} 9830 resolution: {integrity: sha512-bRuZp3C0itgLKHu/VNxi66DN/XVkQG7xtoBVWxpvC5FhAqbOCP21+nPhULjnzEqd7xBMybp6KwytdUpZKEgpIQ==}
9787 peerDependencies: 9831 peerDependencies:
9788 mobx: ^6.1.0 9832 mobx: ^6.1.0
@@ -9795,12 +9839,12 @@ packages:
9795 react-native: 9839 react-native:
9796 optional: true 9840 optional: true
9797 dependencies: 9841 dependencies:
9798 mobx: 6.10.2 9842 mobx: 6.12.0
9799 react: 18.2.0 9843 react: 18.2.0
9800 react-dom: 18.2.0(react@18.2.0) 9844 react-dom: 18.2.0(react@18.2.0)
9801 dev: false 9845 dev: false
9802 9846
9803 /mobx-react@7.6.0(mobx@6.10.2)(react-dom@18.2.0)(react@18.2.0): 9847 /mobx-react@7.6.0(mobx@6.12.0)(react-dom@18.2.0)(react@18.2.0):
9804 resolution: {integrity: sha512-+HQUNuh7AoQ9ZnU6c4rvbiVVl+wEkb9WqYsVDzGLng+Dqj1XntHu79PvEWKtSMoMj67vFp/ZPXcElosuJO8ckA==} 9848 resolution: {integrity: sha512-+HQUNuh7AoQ9ZnU6c4rvbiVVl+wEkb9WqYsVDzGLng+Dqj1XntHu79PvEWKtSMoMj67vFp/ZPXcElosuJO8ckA==}
9805 peerDependencies: 9849 peerDependencies:
9806 mobx: ^6.1.0 9850 mobx: ^6.1.0
@@ -9813,14 +9857,14 @@ packages:
9813 react-native: 9857 react-native:
9814 optional: true 9858 optional: true
9815 dependencies: 9859 dependencies:
9816 mobx: 6.10.2 9860 mobx: 6.12.0
9817 mobx-react-lite: 3.4.0(mobx@6.10.2)(react-dom@18.2.0)(react@18.2.0) 9861 mobx-react-lite: 3.4.0(mobx@6.12.0)(react-dom@18.2.0)(react@18.2.0)
9818 react: 18.2.0 9862 react: 18.2.0
9819 react-dom: 18.2.0(react@18.2.0) 9863 react-dom: 18.2.0(react@18.2.0)
9820 dev: false 9864 dev: false
9821 9865
9822 /mobx@6.10.2: 9866 /mobx@6.12.0:
9823 resolution: {integrity: sha512-B1UGC3ieK3boCjnMEcZSwxqRDMdzX65H/8zOHbuTY8ZhvrIjTUoLRR2TP2bPqIgYRfb3+dUigu8yMZufNjn0LQ==} 9867 resolution: {integrity: sha512-Mn6CN6meXEnMa0a5u6a5+RKrqRedHBhZGd15AWLk9O6uFY4KYHzImdt8JI8WODo1bjTSRnwXhJox+FCUZhCKCQ==}
9824 dev: false 9868 dev: false
9825 9869
9826 /modify-filename@1.1.0: 9870 /modify-filename@1.1.0:
@@ -9985,8 +10029,8 @@ packages:
9985 dev: false 10029 dev: false
9986 optional: true 10030 optional: true
9987 10031
9988 /node-gyp@9.4.0: 10032 /node-gyp@9.4.1:
9989 resolution: {integrity: sha512-dMXsYP6gc9rRbejLXmTbVRYjAHw7ppswsKyMxuxJxxOHzluIO1rGp9TOQgjFJ+2MCqcOcQTOPB/8Xwhr+7s4Eg==} 10033 resolution: {integrity: sha512-OQkWKbjQKbGkMf/xqI1jjy3oCTgMKJac58G2+bjZb3fza6gW2YrCSdMQYaoTb70crvE//Gngr4f0AgVHmqHvBQ==}
9990 engines: {node: ^12.13 || ^14.13 || >=16} 10034 engines: {node: ^12.13 || ^14.13 || >=16}
9991 hasBin: true 10035 hasBin: true
9992 requiresBuild: true 10036 requiresBuild: true
@@ -9995,7 +10039,7 @@ packages:
9995 exponential-backoff: 3.1.1 10039 exponential-backoff: 3.1.1
9996 glob: 7.2.3 10040 glob: 7.2.3
9997 graceful-fs: 4.2.11 10041 graceful-fs: 4.2.11
9998 make-fetch-happen: 11.1.1 10042 make-fetch-happen: 10.2.1
9999 nopt: 6.0.0 10043 nopt: 6.0.0
10000 npmlog: 6.0.2 10044 npmlog: 6.0.2
10001 rimraf: 3.0.2 10045 rimraf: 3.0.2
@@ -10003,6 +10047,7 @@ packages:
10003 tar: 6.2.0 10047 tar: 6.2.0
10004 which: 2.0.2 10048 which: 2.0.2
10005 transitivePeerDependencies: 10049 transitivePeerDependencies:
10050 - bluebird
10006 - supports-color 10051 - supports-color
10007 dev: false 10052 dev: false
10008 optional: true 10053 optional: true
@@ -10023,6 +10068,10 @@ packages:
10023 10068
10024 /node-releases@2.0.13: 10069 /node-releases@2.0.13:
10025 resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==} 10070 resolution: {integrity: sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==}
10071 dev: true
10072
10073 /node-releases@2.0.14:
10074 resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
10026 10075
10027 /node-req@2.1.2: 10076 /node-req@2.1.2:
10028 resolution: {integrity: sha512-zJqZ03vs0oHN8u+wn7kUT/vj63jQdQvNYWjbRMGNVu7ijV3mVz8UwX7pJl7LUugOT2x8vBKasKqbUqnh6GDKMQ==} 10077 resolution: {integrity: sha512-zJqZ03vs0oHN8u+wn7kUT/vj63jQdQvNYWjbRMGNVu7ijV3mVz8UwX7pJl7LUugOT2x8vBKasKqbUqnh6GDKMQ==}
@@ -10069,7 +10118,7 @@ packages:
10069 resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==} 10118 resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
10070 dependencies: 10119 dependencies:
10071 hosted-git-info: 2.8.9 10120 hosted-git-info: 2.8.9
10072 resolve: 1.22.4 10121 resolve: 1.22.8
10073 semver: 5.7.2 10122 semver: 5.7.2
10074 validate-npm-package-license: 3.0.4 10123 validate-npm-package-license: 3.0.4
10075 dev: true 10124 dev: true
@@ -10079,7 +10128,7 @@ packages:
10079 engines: {node: '>=10'} 10128 engines: {node: '>=10'}
10080 dependencies: 10129 dependencies:
10081 hosted-git-info: 4.1.0 10130 hosted-git-info: 4.1.0
10082 is-core-module: 2.13.0 10131 is-core-module: 2.13.1
10083 semver: 7.5.4 10132 semver: 7.5.4
10084 validate-npm-package-license: 3.0.4 10133 validate-npm-package-license: 3.0.4
10085 dev: true 10134 dev: true
@@ -10103,8 +10152,8 @@ packages:
10103 dependencies: 10152 dependencies:
10104 path-key: 3.1.1 10153 path-key: 3.1.1
10105 10154
10106 /npm-run-path@5.1.0: 10155 /npm-run-path@5.2.0:
10107 resolution: {integrity: sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==} 10156 resolution: {integrity: sha512-W4/tgAXFqFA0iL7fk0+uQ3g7wkL8xJmx3XdK0VGb4cHW//eZTtKGvFBBoRKVTpY7n6ze4NL9ly7rgXcHufqXKg==}
10108 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0} 10157 engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
10109 dependencies: 10158 dependencies:
10110 path-key: 4.0.0 10159 path-key: 4.0.0
@@ -10148,16 +10197,8 @@ packages:
10148 kind-of: 3.2.2 10197 kind-of: 3.2.2
10149 dev: false 10198 dev: false
10150 10199
10151 /object-inspect@1.12.3: 10200 /object-inspect@1.13.1:
10152 resolution: {integrity: sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==} 10201 resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
10153
10154 /object-is@1.1.5:
10155 resolution: {integrity: sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==}
10156 engines: {node: '>= 0.4'}
10157 dependencies:
10158 call-bind: 1.0.2
10159 define-properties: 1.2.0
10160 dev: true
10161 10202
10162 /object-keys@1.1.1: 10203 /object-keys@1.1.1:
10163 resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==} 10204 resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
@@ -10170,12 +10211,12 @@ packages:
10170 isobject: 3.0.1 10211 isobject: 3.0.1
10171 dev: false 10212 dev: false
10172 10213
10173 /object.assign@4.1.4: 10214 /object.assign@4.1.5:
10174 resolution: {integrity: sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==} 10215 resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
10175 engines: {node: '>= 0.4'} 10216 engines: {node: '>= 0.4'}
10176 dependencies: 10217 dependencies:
10177 call-bind: 1.0.2 10218 call-bind: 1.0.5
10178 define-properties: 1.2.0 10219 define-properties: 1.2.1
10179 has-symbols: 1.0.3 10220 has-symbols: 1.0.3
10180 object-keys: 1.1.1 10221 object-keys: 1.1.1
10181 dev: true 10222 dev: true
@@ -10190,38 +10231,38 @@ packages:
10190 isobject: 3.0.1 10231 isobject: 3.0.1
10191 dev: false 10232 dev: false
10192 10233
10193 /object.entries@1.1.6: 10234 /object.entries@1.1.7:
10194 resolution: {integrity: sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==} 10235 resolution: {integrity: sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==}
10195 engines: {node: '>= 0.4'} 10236 engines: {node: '>= 0.4'}
10196 dependencies: 10237 dependencies:
10197 call-bind: 1.0.2 10238 call-bind: 1.0.5
10198 define-properties: 1.2.0 10239 define-properties: 1.2.1
10199 es-abstract: 1.22.1 10240 es-abstract: 1.22.3
10200 dev: true 10241 dev: true
10201 10242
10202 /object.fromentries@2.0.6: 10243 /object.fromentries@2.0.7:
10203 resolution: {integrity: sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==} 10244 resolution: {integrity: sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==}
10204 engines: {node: '>= 0.4'} 10245 engines: {node: '>= 0.4'}
10205 dependencies: 10246 dependencies:
10206 call-bind: 1.0.2 10247 call-bind: 1.0.5
10207 define-properties: 1.2.0 10248 define-properties: 1.2.1
10208 es-abstract: 1.22.1 10249 es-abstract: 1.22.3
10209 dev: true 10250 dev: true
10210 10251
10211 /object.groupby@1.0.0: 10252 /object.groupby@1.0.1:
10212 resolution: {integrity: sha512-70MWG6NfRH9GnbZOikuhPPYzpUpof9iW2J9E4dW7FXTqPNb6rllE6u39SKwwiNh8lCwX3DDb5OgcKGiEBrTTyw==} 10253 resolution: {integrity: sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==}
10213 dependencies: 10254 dependencies:
10214 call-bind: 1.0.2 10255 call-bind: 1.0.5
10215 define-properties: 1.2.0 10256 define-properties: 1.2.1
10216 es-abstract: 1.22.1 10257 es-abstract: 1.22.3
10217 get-intrinsic: 1.2.1 10258 get-intrinsic: 1.2.2
10218 dev: true 10259 dev: true
10219 10260
10220 /object.hasown@1.1.2: 10261 /object.hasown@1.1.2:
10221 resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==} 10262 resolution: {integrity: sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==}
10222 dependencies: 10263 dependencies:
10223 define-properties: 1.2.0 10264 define-properties: 1.2.1
10224 es-abstract: 1.22.1 10265 es-abstract: 1.22.3
10225 dev: true 10266 dev: true
10226 10267
10227 /object.map@1.0.1: 10268 /object.map@1.0.1:
@@ -10239,13 +10280,13 @@ packages:
10239 isobject: 3.0.1 10280 isobject: 3.0.1
10240 dev: false 10281 dev: false
10241 10282
10242 /object.values@1.1.6: 10283 /object.values@1.1.7:
10243 resolution: {integrity: sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==} 10284 resolution: {integrity: sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==}
10244 engines: {node: '>= 0.4'} 10285 engines: {node: '>= 0.4'}
10245 dependencies: 10286 dependencies:
10246 call-bind: 1.0.2 10287 call-bind: 1.0.5
10247 define-properties: 1.2.0 10288 define-properties: 1.2.1
10248 es-abstract: 1.22.1 10289 es-abstract: 1.22.3
10249 dev: true 10290 dev: true
10250 10291
10251 /on-finished@2.3.0: 10292 /on-finished@2.3.0:
@@ -10385,7 +10426,7 @@ packages:
10385 resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==} 10426 resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
10386 engines: {node: '>=8'} 10427 engines: {node: '>=8'}
10387 dependencies: 10428 dependencies:
10388 '@babel/code-frame': 7.22.13 10429 '@babel/code-frame': 7.23.5
10389 error-ex: 1.3.2 10430 error-ex: 1.3.2
10390 json-parse-even-better-errors: 2.3.1 10431 json-parse-even-better-errors: 2.3.1
10391 lines-and-columns: 1.2.4 10432 lines-and-columns: 1.2.4
@@ -10451,8 +10492,9 @@ packages:
10451 resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==} 10492 resolution: {integrity: sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==}
10452 engines: {node: '>=16 || 14 >=14.17'} 10493 engines: {node: '>=16 || 14 >=14.17'}
10453 dependencies: 10494 dependencies:
10454 lru-cache: 10.0.1 10495 lru-cache: 10.1.0
10455 minipass: 7.0.4 10496 minipass: 7.0.4
10497 dev: true
10456 10498
10457 /path-to-regexp@2.4.0: 10499 /path-to-regexp@2.4.0:
10458 resolution: {integrity: sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==} 10500 resolution: {integrity: sha512-G6zHoVqC6GGTQkZwF4lkuEyMbVOjoBKAEybQUypI1WTkqinCOrq2x6U2+phkJ1XsEMTy4LjtwPI7HW+NVrRR2w==}
@@ -10605,8 +10647,8 @@ packages:
10605 dev: true 10647 dev: true
10606 optional: true 10648 optional: true
10607 10649
10608 /prettier@3.0.3: 10650 /prettier@3.1.1:
10609 resolution: {integrity: sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==} 10651 resolution: {integrity: sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==}
10610 engines: {node: '>=14'} 10652 engines: {node: '>=14'}
10611 hasBin: true 10653 hasBin: true
10612 dev: true 10654 dev: true
@@ -10895,6 +10937,10 @@ packages:
10895 ipaddr.js: 1.9.1 10937 ipaddr.js: 1.9.1
10896 dev: false 10938 dev: false
10897 10939
10940 /proxy-from-env@1.1.0:
10941 resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
10942 dev: true
10943
10898 /pseudomap@1.0.2: 10944 /pseudomap@1.0.2:
10899 resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==} 10945 resolution: {integrity: sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==}
10900 dev: false 10946 dev: false
@@ -10991,7 +11037,7 @@ packages:
10991 react: '>=16.9.0' 11037 react: '>=16.9.0'
10992 react-dom: '>=16.9.0' 11038 react-dom: '>=16.9.0'
10993 dependencies: 11039 dependencies:
10994 '@babel/runtime': 7.21.5 11040 '@babel/runtime': 7.23.5
10995 classnames: 2.3.2 11041 classnames: 2.3.2
10996 rc-util: 5.37.0(react-dom@18.2.0)(react@18.2.0) 11042 rc-util: 5.37.0(react-dom@18.2.0)(react@18.2.0)
10997 react: 18.2.0 11043 react: 18.2.0
@@ -11004,7 +11050,7 @@ packages:
11004 react: '>=16.9.0' 11050 react: '>=16.9.0'
11005 react-dom: '>=16.9.0' 11051 react-dom: '>=16.9.0'
11006 dependencies: 11052 dependencies:
11007 '@babel/runtime': 7.22.15 11053 '@babel/runtime': 7.23.5
11008 react: 18.2.0 11054 react: 18.2.0
11009 react-dom: 18.2.0(react@18.2.0) 11055 react-dom: 18.2.0(react@18.2.0)
11010 react-is: 16.13.1 11056 react-is: 16.13.1
@@ -11072,27 +11118,27 @@ packages:
11072 react-dom: 18.2.0(react@18.2.0) 11118 react-dom: 18.2.0(react@18.2.0)
11073 dev: false 11119 dev: false
11074 11120
11075 /react-intl@6.4.7(react@18.2.0)(typescript@5.2.2): 11121 /react-intl@6.5.5(react@18.2.0)(typescript@5.3.2):
11076 resolution: {integrity: sha512-0hnOHAZhxTFqD1hGTxrF40qNyZJPPYiGhWIIxIz0Udz+3e3c7sdN80qlxArR+AbJ+jb5ALXZkJYH20+GPFCM0Q==} 11122 resolution: {integrity: sha512-cI5UKvBh4tc1zxLIziHBYGMX3dhYWDEFlvUDVN6NfT2i96zTXz/zH2AmM8+2waqgOhwkFUzd+7kK1G9q7fiC2g==}
11077 peerDependencies: 11123 peerDependencies:
11078 react: ^16.6.0 || 17 || 18 11124 react: ^16.6.0 || 17 || 18
11079 typescript: ^4.7 || 5 11125 typescript: '5'
11080 peerDependenciesMeta: 11126 peerDependenciesMeta:
11081 typescript: 11127 typescript:
11082 optional: true 11128 optional: true
11083 dependencies: 11129 dependencies:
11084 '@formatjs/ecma402-abstract': 1.17.2 11130 '@formatjs/ecma402-abstract': 1.18.0
11085 '@formatjs/icu-messageformat-parser': 2.6.2 11131 '@formatjs/icu-messageformat-parser': 2.7.3
11086 '@formatjs/intl': 2.9.3(typescript@5.2.2) 11132 '@formatjs/intl': 2.9.9(typescript@5.3.2)
11087 '@formatjs/intl-displaynames': 6.5.2 11133 '@formatjs/intl-displaynames': 6.6.4
11088 '@formatjs/intl-listformat': 7.4.2 11134 '@formatjs/intl-listformat': 7.5.3
11089 '@types/hoist-non-react-statics': 3.3.1 11135 '@types/hoist-non-react-statics': 3.3.5
11090 '@types/react': 18.2.22 11136 '@types/react': 18.2.41
11091 hoist-non-react-statics: 3.3.2 11137 hoist-non-react-statics: 3.3.2
11092 intl-messageformat: 10.5.3 11138 intl-messageformat: 10.5.8
11093 react: 18.2.0 11139 react: 18.2.0
11094 tslib: 2.6.2 11140 tslib: 2.6.2
11095 typescript: 5.2.2 11141 typescript: 5.3.2
11096 dev: false 11142 dev: false
11097 11143
11098 /react-is@16.13.1: 11144 /react-is@16.13.1:
@@ -11106,7 +11152,7 @@ packages:
11106 peerDependencies: 11152 peerDependencies:
11107 react: '>=16.8.6' 11153 react: '>=16.8.6'
11108 dependencies: 11154 dependencies:
11109 '@babel/runtime': 7.20.7 11155 '@babel/runtime': 7.23.5
11110 '@emotion/is-prop-valid': 0.7.3 11156 '@emotion/is-prop-valid': 0.7.3
11111 css-jss: 10.10.0 11157 css-jss: 10.10.0
11112 hoist-non-react-statics: 3.3.2 11158 hoist-non-react-statics: 3.3.2
@@ -11124,7 +11170,7 @@ packages:
11124 resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==} 11170 resolution: {integrity: sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==}
11125 dev: false 11171 dev: false
11126 11172
11127 /react-loader-spinner@5.4.5(@babel/core@7.23.2)(react-dom@18.2.0)(react@18.2.0): 11173 /react-loader-spinner@5.4.5(@babel/core@7.23.6)(react-dom@18.2.0)(react@18.2.0):
11128 resolution: {integrity: sha512-32f+sb/v2tnNfyvnCCOS4fpyVHsGXjSyNo6QLniHcaj1XjKLxx14L2z0h6szRugOL8IEJ+53GPwNAdbkDqmy4g==} 11174 resolution: {integrity: sha512-32f+sb/v2tnNfyvnCCOS4fpyVHsGXjSyNo6QLniHcaj1XjKLxx14L2z0h6szRugOL8IEJ+53GPwNAdbkDqmy4g==}
11129 peerDependencies: 11175 peerDependencies:
11130 react: ^16.0.0 || ^17.0.0 || ^18.0.0 11176 react: ^16.0.0 || ^17.0.0 || ^18.0.0
@@ -11133,7 +11179,7 @@ packages:
11133 react: 18.2.0 11179 react: 18.2.0
11134 react-dom: 18.2.0(react@18.2.0) 11180 react-dom: 18.2.0(react@18.2.0)
11135 react-is: 18.2.0 11181 react-is: 18.2.0
11136 styled-components: 5.3.11(@babel/core@7.23.2)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0) 11182 styled-components: 5.3.11(@babel/core@7.23.6)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0)
11137 styled-tools: 1.7.2 11183 styled-tools: 1.7.2
11138 transitivePeerDependencies: 11184 transitivePeerDependencies:
11139 - '@babel/core' 11185 - '@babel/core'
@@ -11154,26 +11200,26 @@ packages:
11154 warning: 4.0.3 11200 warning: 4.0.3
11155 dev: false 11201 dev: false
11156 11202
11157 /react-router-dom@6.15.0(react-dom@18.2.0)(react@18.2.0): 11203 /react-router-dom@6.20.1(react-dom@18.2.0)(react@18.2.0):
11158 resolution: {integrity: sha512-aR42t0fs7brintwBGAv2+mGlCtgtFQeOzK0BM1/OiqEzRejOZtpMZepvgkscpMUnKb8YO84G7s3LsHnnDNonbQ==} 11204 resolution: {integrity: sha512-npzfPWcxfQN35psS7rJgi/EW0Gx6EsNjfdJSAk73U/HqMEJZ2k/8puxfwHFgDQhBGmS3+sjnGbMdMSV45axPQw==}
11159 engines: {node: '>=14.0.0'} 11205 engines: {node: '>=14.0.0'}
11160 peerDependencies: 11206 peerDependencies:
11161 react: '>=16.8' 11207 react: '>=16.8'
11162 react-dom: '>=16.8' 11208 react-dom: '>=16.8'
11163 dependencies: 11209 dependencies:
11164 '@remix-run/router': 1.8.0 11210 '@remix-run/router': 1.13.1
11165 react: 18.2.0 11211 react: 18.2.0
11166 react-dom: 18.2.0(react@18.2.0) 11212 react-dom: 18.2.0(react@18.2.0)
11167 react-router: 6.15.0(react@18.2.0) 11213 react-router: 6.20.1(react@18.2.0)
11168 dev: false 11214 dev: false
11169 11215
11170 /react-router@6.15.0(react@18.2.0): 11216 /react-router@6.20.1(react@18.2.0):
11171 resolution: {integrity: sha512-NIytlzvzLwJkCQj2HLefmeakxxWHWAP+02EGqWEZy+DgfHHKQMUoBBjUQLOtFInBMhWtb3hiUy6MfFgwLjXhqg==} 11217 resolution: {integrity: sha512-ccvLrB4QeT5DlaxSFFYi/KR8UMQ4fcD8zBcR71Zp1kaYTC5oJKYAp1cbavzGrogwxca+ubjkd7XjFZKBW8CxPA==}
11172 engines: {node: '>=14.0.0'} 11218 engines: {node: '>=14.0.0'}
11173 peerDependencies: 11219 peerDependencies:
11174 react: '>=16.8' 11220 react: '>=16.8'
11175 dependencies: 11221 dependencies:
11176 '@remix-run/router': 1.8.0 11222 '@remix-run/router': 1.13.1
11177 react: 18.2.0 11223 react: 18.2.0
11178 dev: false 11224 dev: false
11179 11225
@@ -11184,20 +11230,20 @@ packages:
11184 react: ^16.3.0 || ^17.0.0 || ^18.0.0 11230 react: ^16.3.0 || ^17.0.0 || ^18.0.0
11185 react-dom: ^16.3.0 || ^17.0.0 || ^18.0.0 11231 react-dom: ^16.3.0 || ^17.0.0 || ^18.0.0
11186 dependencies: 11232 dependencies:
11187 '@babel/runtime': 7.20.1 11233 '@babel/runtime': 7.23.5
11188 invariant: 2.2.4 11234 invariant: 2.2.4
11189 prop-types: 15.8.1 11235 prop-types: 15.8.1
11190 react: 18.2.0 11236 react: 18.2.0
11191 react-dom: 18.2.0(react@18.2.0) 11237 react-dom: 18.2.0(react@18.2.0)
11192 dev: false 11238 dev: false
11193 11239
11194 /react-tooltip@5.21.4(react-dom@18.2.0)(react@18.2.0): 11240 /react-tooltip@5.24.0(react-dom@18.2.0)(react@18.2.0):
11195 resolution: {integrity: sha512-LZsllEbiu63zNwuCalq3gIFcBu2Xf0I0fMg7uuF7/5ROo5//uHe8Sum7v9L1Rtp6IozcoU9YAjkNUZdrxutsNg==} 11241 resolution: {integrity: sha512-HjstgpOrUwP4eN6mHU4EThpbxVuKO5SvqumRt1aAcPq0ya+pIVVxlwltndtdIIMBJ7w3jnN05vNfcfh2sxE2mQ==}
11196 peerDependencies: 11242 peerDependencies:
11197 react: '>=16.14.0' 11243 react: '>=16.14.0'
11198 react-dom: '>=16.14.0' 11244 react-dom: '>=16.14.0'
11199 dependencies: 11245 dependencies:
11200 '@floating-ui/dom': 1.5.1 11246 '@floating-ui/dom': 1.5.3
11201 classnames: 2.3.2 11247 classnames: 2.3.2
11202 react: 18.2.0 11248 react: 18.2.0
11203 react-dom: 18.2.0(react@18.2.0) 11249 react-dom: 18.2.0(react@18.2.0)
@@ -11218,7 +11264,7 @@ packages:
11218 react: '>=16.6.0' 11264 react: '>=16.6.0'
11219 react-dom: '>=16.6.0' 11265 react-dom: '>=16.6.0'
11220 dependencies: 11266 dependencies:
11221 '@babel/runtime': 7.21.5 11267 '@babel/runtime': 7.23.5
11222 dom-helpers: 5.2.1 11268 dom-helpers: 5.2.1
11223 loose-envify: 1.4.0 11269 loose-envify: 1.4.0
11224 prop-types: 15.8.1 11270 prop-types: 15.8.1
@@ -11233,7 +11279,7 @@ packages:
11233 react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 11279 react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
11234 react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0 11280 react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
11235 dependencies: 11281 dependencies:
11236 '@babel/runtime': 7.22.15 11282 '@babel/runtime': 7.23.5
11237 memoize-one: 5.2.1 11283 memoize-one: 5.2.1
11238 react: 18.2.0 11284 react: 18.2.0
11239 react-dom: 18.2.0(react@18.2.0) 11285 react-dom: 18.2.0(react@18.2.0)
@@ -11301,15 +11347,6 @@ packages:
11301 string_decoder: 1.1.1 11347 string_decoder: 1.1.1
11302 util-deprecate: 1.0.2 11348 util-deprecate: 1.0.2
11303 11349
11304 /readable-stream@3.6.0:
11305 resolution: {integrity: sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==}
11306 engines: {node: '>= 6'}
11307 dependencies:
11308 inherits: 2.0.4
11309 string_decoder: 1.3.0
11310 util-deprecate: 1.0.2
11311 dev: true
11312
11313 /readable-stream@3.6.2: 11350 /readable-stream@3.6.2:
11314 resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==} 11351 resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
11315 engines: {node: '>= 6'} 11352 engines: {node: '>= 6'}
@@ -11356,7 +11393,7 @@ packages:
11356 resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==} 11393 resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
11357 engines: {node: '>= 0.10'} 11394 engines: {node: '>= 0.10'}
11358 dependencies: 11395 dependencies:
11359 resolve: 1.22.4 11396 resolve: 1.22.8
11360 dev: false 11397 dev: false
11361 11398
11362 /redent@3.0.0: 11399 /redent@3.0.0:
@@ -11371,24 +11408,21 @@ packages:
11371 resolution: {integrity: sha512-486O8/pQXwj9jV0mVvUnTsxq0uknpBnNJ0eCUhkZqJRQ8KutrT1PhzmumdCeM1hSBF2eMlFPmwECRER4IbKXlQ==} 11408 resolution: {integrity: sha512-486O8/pQXwj9jV0mVvUnTsxq0uknpBnNJ0eCUhkZqJRQ8KutrT1PhzmumdCeM1hSBF2eMlFPmwECRER4IbKXlQ==}
11372 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 11409 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
11373 dependencies: 11410 dependencies:
11374 '@eslint-community/regexpp': 4.6.2 11411 '@eslint-community/regexpp': 4.10.0
11375 dev: true 11412 dev: true
11376 11413
11377 /reflect.getprototypeof@1.0.4: 11414 /reflect.getprototypeof@1.0.4:
11378 resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==} 11415 resolution: {integrity: sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==}
11379 engines: {node: '>= 0.4'} 11416 engines: {node: '>= 0.4'}
11380 dependencies: 11417 dependencies:
11381 call-bind: 1.0.2 11418 call-bind: 1.0.5
11382 define-properties: 1.2.0 11419 define-properties: 1.2.1
11383 es-abstract: 1.22.1 11420 es-abstract: 1.22.3
11384 get-intrinsic: 1.2.1 11421 get-intrinsic: 1.2.2
11385 globalthis: 1.0.3 11422 globalthis: 1.0.3
11386 which-builtin-type: 1.1.3 11423 which-builtin-type: 1.1.3
11387 dev: true 11424 dev: true
11388 11425
11389 /regenerator-runtime@0.13.11:
11390 resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
11391
11392 /regenerator-runtime@0.14.0: 11426 /regenerator-runtime@0.14.0:
11393 resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==} 11427 resolution: {integrity: sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==}
11394 11428
@@ -11404,7 +11438,7 @@ packages:
11404 resolution: {integrity: sha512-OLxjyjPkVH+rQlBLb1I/P/VTmamSjGkvN5PTV5BXP432k3uVz727J7H29GA5IFiY0m7e1xBN7049Wn59FY3DEQ==} 11438 resolution: {integrity: sha512-OLxjyjPkVH+rQlBLb1I/P/VTmamSjGkvN5PTV5BXP432k3uVz727J7H29GA5IFiY0m7e1xBN7049Wn59FY3DEQ==}
11405 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0} 11439 engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
11406 dependencies: 11440 dependencies:
11407 '@eslint-community/regexpp': 4.6.2 11441 '@eslint-community/regexpp': 4.10.0
11408 refa: 0.11.0 11442 refa: 0.11.0
11409 dev: true 11443 dev: true
11410 11444
@@ -11413,13 +11447,13 @@ packages:
11413 hasBin: true 11447 hasBin: true
11414 dev: true 11448 dev: true
11415 11449
11416 /regexp.prototype.flags@1.5.0: 11450 /regexp.prototype.flags@1.5.1:
11417 resolution: {integrity: sha512-0SutC3pNudRKgquxGoRGIz946MZVHqbNfPjBdxeOhBrdgDKlRoXmYLQN9xRbrR09ZXWeGAdPuif7egofn6v5LA==} 11451 resolution: {integrity: sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==}
11418 engines: {node: '>= 0.4'} 11452 engines: {node: '>= 0.4'}
11419 dependencies: 11453 dependencies:
11420 call-bind: 1.0.2 11454 call-bind: 1.0.5
11421 define-properties: 1.2.0 11455 define-properties: 1.2.1
11422 functions-have-names: 1.2.3 11456 set-function-name: 2.0.1
11423 dev: true 11457 dev: true
11424 11458
11425 /regexpp@3.2.0: 11459 /regexpp@3.2.0:
@@ -11568,11 +11602,11 @@ packages:
11568 engines: {node: '>=10'} 11602 engines: {node: '>=10'}
11569 dev: true 11603 dev: true
11570 11604
11571 /resolve@1.22.4: 11605 /resolve@1.22.8:
11572 resolution: {integrity: sha512-PXNdCiPqDqeUou+w1C2eTQbNfxKSuMxqTCuvlmmMsk1NWHL5fRrhY6Pl0qEYYc6+QqGClco1Qj8XnjPego4wfg==} 11606 resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
11573 hasBin: true 11607 hasBin: true
11574 dependencies: 11608 dependencies:
11575 is-core-module: 2.13.0 11609 is-core-module: 2.13.1
11576 path-parse: 1.0.7 11610 path-parse: 1.0.7
11577 supports-preserve-symlinks-flag: 1.0.0 11611 supports-preserve-symlinks-flag: 1.0.0
11578 11612
@@ -11580,7 +11614,7 @@ packages:
11580 resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==} 11614 resolution: {integrity: sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==}
11581 hasBin: true 11615 hasBin: true
11582 dependencies: 11616 dependencies:
11583 is-core-module: 2.13.0 11617 is-core-module: 2.13.1
11584 path-parse: 1.0.7 11618 path-parse: 1.0.7
11585 supports-preserve-symlinks-flag: 1.0.0 11619 supports-preserve-symlinks-flag: 1.0.0
11586 dev: true 11620 dev: true
@@ -11619,12 +11653,12 @@ packages:
11619 dependencies: 11653 dependencies:
11620 glob: 7.2.3 11654 glob: 7.2.3
11621 11655
11622 /rimraf@5.0.1: 11656 /rimraf@5.0.5:
11623 resolution: {integrity: sha512-OfFZdwtd3lZ+XZzYP/6gTACubwFcHdLRqS9UX3UwpU2dnGQYkPFISRwvM3w9IiB2w7bW5qGo/uAwE4SmXXSKvg==} 11657 resolution: {integrity: sha512-CqDakW+hMe/Bz202FPEymy68P+G50RfMQK+Qo5YUqc9SPipvbGjCGKd0RSKEelbsfQuw3g5NZDSrlZZAJurH1A==}
11624 engines: {node: '>=14'} 11658 engines: {node: '>=14'}
11625 hasBin: true 11659 hasBin: true
11626 dependencies: 11660 dependencies:
11627 glob: 10.2.6 11661 glob: 10.3.10
11628 dev: true 11662 dev: true
11629 11663
11630 /rndm@1.2.0: 11664 /rndm@1.2.0:
@@ -11641,7 +11675,7 @@ packages:
11641 globalthis: 1.0.3 11675 globalthis: 1.0.3
11642 json-stringify-safe: 5.0.1 11676 json-stringify-safe: 5.0.1
11643 semver-compare: 1.0.0 11677 semver-compare: 1.0.0
11644 sprintf-js: 1.1.2 11678 sprintf-js: 1.1.3
11645 optional: true 11679 optional: true
11646 11680
11647 /route-parser@0.0.5: 11681 /route-parser@0.0.5:
@@ -11679,12 +11713,12 @@ packages:
11679 dependencies: 11713 dependencies:
11680 tslib: 2.6.2 11714 tslib: 2.6.2
11681 11715
11682 /safe-array-concat@1.0.0: 11716 /safe-array-concat@1.0.1:
11683 resolution: {integrity: sha512-9dVEFruWIsnie89yym+xWTAYASdpw3CJV7Li/6zBewGf9z2i1j31rP6jnY0pHEO4QZh6N0K11bFjWmdR8UGdPQ==} 11717 resolution: {integrity: sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==}
11684 engines: {node: '>=0.4'} 11718 engines: {node: '>=0.4'}
11685 dependencies: 11719 dependencies:
11686 call-bind: 1.0.2 11720 call-bind: 1.0.5
11687 get-intrinsic: 1.2.1 11721 get-intrinsic: 1.2.2
11688 has-symbols: 1.0.3 11722 has-symbols: 1.0.3
11689 isarray: 2.0.5 11723 isarray: 2.0.5
11690 dev: true 11724 dev: true
@@ -11702,8 +11736,8 @@ packages:
11702 /safe-regex-test@1.0.0: 11736 /safe-regex-test@1.0.0:
11703 resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==} 11737 resolution: {integrity: sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==}
11704 dependencies: 11738 dependencies:
11705 call-bind: 1.0.2 11739 call-bind: 1.0.5
11706 get-intrinsic: 1.2.1 11740 get-intrinsic: 1.2.2
11707 is-regex: 1.1.4 11741 is-regex: 1.1.4
11708 dev: true 11742 dev: true
11709 11743
@@ -11726,8 +11760,8 @@ packages:
11726 dependencies: 11760 dependencies:
11727 truncate-utf8-bytes: 1.0.2 11761 truncate-utf8-bytes: 1.0.2
11728 11762
11729 /sass@1.67.0: 11763 /sass@1.69.5:
11730 resolution: {integrity: sha512-SVrO9ZeX/QQyEGtuZYCVxoeAL5vGlYjJ9p4i4HFuekWl8y/LtJ7tJc10Z+ck1c8xOuoBm2MYzcLfTAffD0pl/A==} 11764 resolution: {integrity: sha512-qg2+UCJibLr2LCVOt3OlPhr/dqVHWOa9XtZf2OjbLs/T4VPSJ00udtgJxH3neXZm+QqX8B+3cU7RaLqp1iVfcQ==}
11731 engines: {node: '>=14.0.0'} 11765 engines: {node: '>=14.0.0'}
11732 hasBin: true 11766 hasBin: true
11733 dependencies: 11767 dependencies:
@@ -11736,8 +11770,8 @@ packages:
11736 source-map-js: 1.0.2 11770 source-map-js: 1.0.2
11737 dev: true 11771 dev: true
11738 11772
11739 /sax@1.2.4: 11773 /sax@1.3.0:
11740 resolution: {integrity: sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==} 11774 resolution: {integrity: sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==}
11741 11775
11742 /scheduler@0.23.0: 11776 /scheduler@0.23.0:
11743 resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==} 11777 resolution: {integrity: sha512-CtuThmgHNg7zIZWAXi3AsyIzA3n4xx7aNyjwC2VJldO2LMVDhFK+63xGqq6CsJH4rTAt6/M+N4GhZiDYPx9eUw==}
@@ -11752,7 +11786,7 @@ packages:
11752 /scslre@0.2.0: 11786 /scslre@0.2.0:
11753 resolution: {integrity: sha512-4hc49fUMmX3jM0XdFUAPBrs1xwEcdHa0KyjEsjFs+Zfc66mpFpq5YmRgDtl+Ffo6AtJIilfei+yKw8fUn3N88w==} 11787 resolution: {integrity: sha512-4hc49fUMmX3jM0XdFUAPBrs1xwEcdHa0KyjEsjFs+Zfc66mpFpq5YmRgDtl+Ffo6AtJIilfei+yKw8fUn3N88w==}
11754 dependencies: 11788 dependencies:
11755 '@eslint-community/regexpp': 4.6.2 11789 '@eslint-community/regexpp': 4.10.0
11756 refa: 0.11.0 11790 refa: 0.11.0
11757 regexp-ast-analysis: 0.6.0 11791 regexp-ast-analysis: 0.6.0
11758 dev: true 11792 dev: true
@@ -11780,20 +11814,10 @@ packages:
11780 hasBin: true 11814 hasBin: true
11781 dev: false 11815 dev: false
11782 11816
11783 /semver@5.7.1:
11784 resolution: {integrity: sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==}
11785 hasBin: true
11786 dev: false
11787
11788 /semver@5.7.2: 11817 /semver@5.7.2:
11789 resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==} 11818 resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
11790 hasBin: true 11819 hasBin: true
11791 11820
11792 /semver@6.3.0:
11793 resolution: {integrity: sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==}
11794 hasBin: true
11795 dev: true
11796
11797 /semver@6.3.1: 11821 /semver@6.3.1:
11798 resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==} 11822 resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
11799 hasBin: true 11823 hasBin: true
@@ -11870,6 +11894,24 @@ packages:
11870 /set-blocking@2.0.0: 11894 /set-blocking@2.0.0:
11871 resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==} 11895 resolution: {integrity: sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==}
11872 11896
11897 /set-function-length@1.1.1:
11898 resolution: {integrity: sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==}
11899 engines: {node: '>= 0.4'}
11900 dependencies:
11901 define-data-property: 1.1.1
11902 get-intrinsic: 1.2.2
11903 gopd: 1.0.1
11904 has-property-descriptors: 1.0.1
11905
11906 /set-function-name@2.0.1:
11907 resolution: {integrity: sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==}
11908 engines: {node: '>= 0.4'}
11909 dependencies:
11910 define-data-property: 1.1.1
11911 functions-have-names: 1.2.3
11912 has-property-descriptors: 1.0.1
11913 dev: true
11914
11873 /set-getter@0.1.1: 11915 /set-getter@0.1.1:
11874 resolution: {integrity: sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==} 11916 resolution: {integrity: sha512-9sVWOy+gthr+0G9DzqqLaYNA7+5OKkSmcqjL9cBpDEaZrr3ShQlyX2cZ/O/ozE41oxn/Tt0LGEM/w4Rub3A3gw==}
11875 engines: {node: '>=0.10.0'} 11917 engines: {node: '>=0.10.0'}
@@ -11978,9 +12020,9 @@ packages:
11978 /side-channel@1.0.4: 12020 /side-channel@1.0.4:
11979 resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==} 12021 resolution: {integrity: sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==}
11980 dependencies: 12022 dependencies:
11981 call-bind: 1.0.2 12023 call-bind: 1.0.5
11982 get-intrinsic: 1.2.1 12024 get-intrinsic: 1.2.2
11983 object-inspect: 1.12.3 12025 object-inspect: 1.13.1
11984 12026
11985 /signal-exit@3.0.7: 12027 /signal-exit@3.0.7:
11986 resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==} 12028 resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
@@ -11989,6 +12031,7 @@ packages:
11989 resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==} 12031 resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
11990 engines: {node: '>=14'} 12032 engines: {node: '>=14'}
11991 requiresBuild: true 12033 requiresBuild: true
12034 dev: true
11992 12035
11993 /simple-encryptor@2.0.0: 12036 /simple-encryptor@2.0.0:
11994 resolution: {integrity: sha512-dqjQbp9RwfMrE+my/7Pgz9viIsHmY3aQtybGJQkv2sL79YuDGmkxUjlmEBFGP6bcUjBRnSvqsBAcv1ro0Y4/5A==} 12037 resolution: {integrity: sha512-dqjQbp9RwfMrE+my/7Pgz9viIsHmY3aQtybGJQkv2sL79YuDGmkxUjlmEBFGP6bcUjBRnSvqsBAcv1ro0Y4/5A==}
@@ -12003,8 +12046,8 @@ packages:
12003 scmp: 2.0.0 12046 scmp: 2.0.0
12004 dev: false 12047 dev: false
12005 12048
12006 /simple-git@3.19.1: 12049 /simple-git@3.21.0:
12007 resolution: {integrity: sha512-Ck+rcjVaE1HotraRAS8u/+xgTvToTuoMkT9/l9lvuP5jftwnYUp6DwuJzsKErHgfyRk8IB8pqGHWEbM3tLgV1w==} 12050 resolution: {integrity: sha512-oTzw9248AF5bDTMk9MrxsRzEzivMlY+DWH0yWS4VYpMhNLhDWnN06pCtaUyPnqv/FpsdeNmRqmZugMABHRPdDA==}
12008 dependencies: 12051 dependencies:
12009 '@kwsites/file-exists': 1.1.1 12052 '@kwsites/file-exists': 1.1.1
12010 '@kwsites/promise-deferred': 1.1.1 12053 '@kwsites/promise-deferred': 1.1.1
@@ -12228,8 +12271,8 @@ packages:
12228 resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==} 12271 resolution: {integrity: sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==}
12229 dev: true 12272 dev: true
12230 12273
12231 /sprintf-js@1.1.2: 12274 /sprintf-js@1.1.3:
12232 resolution: {integrity: sha512-VE0SOVEHCk7Qc8ulkWw3ntAzXuqf7S2lvwQaDLRnUeIEaKNQJzV6BwmLKhOqT61aGhfUMrXeaBk+oDGCzvhcug==} 12275 resolution: {integrity: sha512-Oo+0REFV59/rz3gfJNKQiBlwfHaSESl1pcGyABQsnnIfWOFt6JNj5gCog2U6MLZ//IGYD+nA8nI+mTShREReaA==}
12233 requiresBuild: true 12276 requiresBuild: true
12234 optional: true 12277 optional: true
12235 12278
@@ -12267,18 +12310,18 @@ packages:
12267 tweetnacl: 0.14.5 12310 tweetnacl: 0.14.5
12268 dev: false 12311 dev: false
12269 12312
12270 /ssri@10.0.5: 12313 /ssri@8.0.1:
12271 resolution: {integrity: sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==} 12314 resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
12272 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 12315 engines: {node: '>= 8'}
12273 requiresBuild: true 12316 requiresBuild: true
12274 dependencies: 12317 dependencies:
12275 minipass: 7.0.4 12318 minipass: 3.3.6
12276 dev: false 12319 dev: false
12277 optional: true 12320 optional: true
12278 12321
12279 /ssri@8.0.1: 12322 /ssri@9.0.1:
12280 resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==} 12323 resolution: {integrity: sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==}
12281 engines: {node: '>= 8'} 12324 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
12282 requiresBuild: true 12325 requiresBuild: true
12283 dependencies: 12326 dependencies:
12284 minipass: 3.3.6 12327 minipass: 3.3.6
@@ -12366,43 +12409,44 @@ packages:
12366 eastasianwidth: 0.2.0 12409 eastasianwidth: 0.2.0
12367 emoji-regex: 9.2.2 12410 emoji-regex: 9.2.2
12368 strip-ansi: 7.1.0 12411 strip-ansi: 7.1.0
12412 dev: true
12369 12413
12370 /string.prototype.matchall@4.0.8: 12414 /string.prototype.matchall@4.0.8:
12371 resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==} 12415 resolution: {integrity: sha512-6zOCOcJ+RJAQshcTvXPHoxoQGONa3e/Lqx90wUA+wEzX78sg5Bo+1tQo4N0pohS0erG9qtCqJDjNCQBjeWVxyg==}
12372 dependencies: 12416 dependencies:
12373 call-bind: 1.0.2 12417 call-bind: 1.0.5
12374 define-properties: 1.2.0 12418 define-properties: 1.2.1
12375 es-abstract: 1.22.1 12419 es-abstract: 1.22.3
12376 get-intrinsic: 1.2.1 12420 get-intrinsic: 1.2.2
12377 has-symbols: 1.0.3 12421 has-symbols: 1.0.3
12378 internal-slot: 1.0.5 12422 internal-slot: 1.0.6
12379 regexp.prototype.flags: 1.5.0 12423 regexp.prototype.flags: 1.5.1
12380 side-channel: 1.0.4 12424 side-channel: 1.0.4
12381 dev: true 12425 dev: true
12382 12426
12383 /string.prototype.trim@1.2.7: 12427 /string.prototype.trim@1.2.8:
12384 resolution: {integrity: sha512-p6TmeT1T3411M8Cgg9wBTMRtY2q9+PNy9EV1i2lIXUN/btt763oIfxwN3RR8VU6wHX8j/1CFy0L+YuThm6bgOg==} 12428 resolution: {integrity: sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==}
12385 engines: {node: '>= 0.4'} 12429 engines: {node: '>= 0.4'}
12386 dependencies: 12430 dependencies:
12387 call-bind: 1.0.2 12431 call-bind: 1.0.5
12388 define-properties: 1.2.0 12432 define-properties: 1.2.1
12389 es-abstract: 1.22.1 12433 es-abstract: 1.22.3
12390 dev: true 12434 dev: true
12391 12435
12392 /string.prototype.trimend@1.0.6: 12436 /string.prototype.trimend@1.0.7:
12393 resolution: {integrity: sha512-JySq+4mrPf9EsDBEDYMOb/lM7XQLulwg5R/m1r0PXEFqrV0qHvl58sdTilSXtKOflCsK2E8jxf+GKC0T07RWwQ==} 12437 resolution: {integrity: sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==}
12394 dependencies: 12438 dependencies:
12395 call-bind: 1.0.2 12439 call-bind: 1.0.5
12396 define-properties: 1.2.0 12440 define-properties: 1.2.1
12397 es-abstract: 1.22.1 12441 es-abstract: 1.22.3
12398 dev: true 12442 dev: true
12399 12443
12400 /string.prototype.trimstart@1.0.6: 12444 /string.prototype.trimstart@1.0.7:
12401 resolution: {integrity: sha512-omqjMDaY92pbn5HOX7f9IccLA+U1tA9GvtU4JrodiXFfYB7jPzzHpRzpglLAjtUV6bB557zwClJezTqnAiYnQA==} 12445 resolution: {integrity: sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==}
12402 dependencies: 12446 dependencies:
12403 call-bind: 1.0.2 12447 call-bind: 1.0.5
12404 define-properties: 1.2.0 12448 define-properties: 1.2.1
12405 es-abstract: 1.22.1 12449 es-abstract: 1.22.3
12406 dev: true 12450 dev: true
12407 12451
12408 /string_decoder@0.10.31: 12452 /string_decoder@0.10.31:
@@ -12438,6 +12482,7 @@ packages:
12438 requiresBuild: true 12482 requiresBuild: true
12439 dependencies: 12483 dependencies:
12440 ansi-regex: 6.0.1 12484 ansi-regex: 6.0.1
12485 dev: true
12441 12486
12442 /strip-bom@3.0.0: 12487 /strip-bom@3.0.0:
12443 resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==} 12488 resolution: {integrity: sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==}
@@ -12481,7 +12526,7 @@ packages:
12481 engines: {node: '>=8'} 12526 engines: {node: '>=8'}
12482 dev: true 12527 dev: true
12483 12528
12484 /styled-components@5.3.11(@babel/core@7.23.2)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0): 12529 /styled-components@5.3.11(@babel/core@7.23.6)(react-dom@18.2.0)(react-is@18.2.0)(react@18.2.0):
12485 resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==} 12530 resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==}
12486 engines: {node: '>=10'} 12531 engines: {node: '>=10'}
12487 peerDependencies: 12532 peerDependencies:
@@ -12490,11 +12535,11 @@ packages:
12490 react-is: '>= 16.8.0' 12535 react-is: '>= 16.8.0'
12491 dependencies: 12536 dependencies:
12492 '@babel/helper-module-imports': 7.22.15 12537 '@babel/helper-module-imports': 7.22.15
12493 '@babel/traverse': 7.23.2(supports-color@5.5.0) 12538 '@babel/traverse': 7.23.5(supports-color@5.5.0)
12494 '@emotion/is-prop-valid': 1.2.1 12539 '@emotion/is-prop-valid': 1.2.1
12495 '@emotion/stylis': 0.8.5 12540 '@emotion/stylis': 0.8.5
12496 '@emotion/unitless': 0.7.5 12541 '@emotion/unitless': 0.7.5
12497 babel-plugin-styled-components: 2.1.4(@babel/core@7.23.2)(styled-components@5.3.11) 12542 babel-plugin-styled-components: 2.1.4(@babel/core@7.23.6)(styled-components@5.3.11)
12498 css-to-react-native: 3.2.0 12543 css-to-react-native: 3.2.0
12499 hoist-non-react-statics: 3.3.2 12544 hoist-non-react-statics: 3.3.2
12500 react: 18.2.0 12545 react: 18.2.0
@@ -12556,8 +12601,8 @@ packages:
12556 engines: {node: '>=0.10.0'} 12601 engines: {node: '>=0.10.0'}
12557 dev: false 12602 dev: false
12558 12603
12559 /synckit@0.8.5: 12604 /synckit@0.8.6:
12560 resolution: {integrity: sha512-L1dapNV6vu2s/4Sputv8xGsCdAVlb5nRDMFU/E27D44l5U6cw1g0dGd45uLc+OXjNMmF4ntiMdCimzcjFKQI8Q==} 12605 resolution: {integrity: sha512-laHF2savN6sMeHCjLRkheIU4wo3Zg9Ln5YOjOo7sZ5dVQW8yF5pPE5SIw1dsPhq3TRp1jisKRCdPhfs/1WMqDA==}
12561 engines: {node: ^14.18.0 || >=16.0.0} 12606 engines: {node: ^14.18.0 || >=16.0.0}
12562 dependencies: 12607 dependencies:
12563 '@pkgr/utils': 2.4.2 12608 '@pkgr/utils': 2.4.2
@@ -12823,16 +12868,16 @@ packages:
12823 dependencies: 12868 dependencies:
12824 utf8-byte-length: 1.0.4 12869 utf8-byte-length: 1.0.4
12825 12870
12826 /ts-api-utils@1.0.1(typescript@5.2.2): 12871 /ts-api-utils@1.0.3(typescript@5.3.2):
12827 resolution: {integrity: sha512-lC/RGlPmwdrIBFTX59wwNzqh7aR2otPNPR/5brHZm/XKFYKsfqxihXUe9pU3JI+3vGkl+vyCoNNnPhJn3aLK1A==} 12872 resolution: {integrity: sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==}
12828 engines: {node: '>=16.13.0'} 12873 engines: {node: '>=16.13.0'}
12829 peerDependencies: 12874 peerDependencies:
12830 typescript: '>=4.2.0' 12875 typescript: '>=4.2.0'
12831 dependencies: 12876 dependencies:
12832 typescript: 5.2.2 12877 typescript: 5.3.2
12833 dev: true 12878 dev: true
12834 12879
12835 /ts-node@10.9.1(@types/node@18.15.3)(typescript@5.2.2): 12880 /ts-node@10.9.1(@types/node@20.10.3)(typescript@5.3.2):
12836 resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} 12881 resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
12837 hasBin: true 12882 hasBin: true
12838 peerDependencies: 12883 peerDependencies:
@@ -12851,19 +12896,19 @@ packages:
12851 '@tsconfig/node12': 1.0.11 12896 '@tsconfig/node12': 1.0.11
12852 '@tsconfig/node14': 1.0.3 12897 '@tsconfig/node14': 1.0.3
12853 '@tsconfig/node16': 1.0.4 12898 '@tsconfig/node16': 1.0.4
12854 '@types/node': 18.15.3 12899 '@types/node': 20.10.3
12855 acorn: 8.10.0 12900 acorn: 8.11.2
12856 acorn-walk: 8.2.0 12901 acorn-walk: 8.2.0
12857 arg: 4.1.3 12902 arg: 4.1.3
12858 create-require: 1.1.1 12903 create-require: 1.1.1
12859 diff: 4.0.2 12904 diff: 4.0.2
12860 make-error: 1.3.6 12905 make-error: 1.3.6
12861 typescript: 5.2.2 12906 typescript: 5.3.2
12862 v8-compile-cache-lib: 3.0.1 12907 v8-compile-cache-lib: 3.0.1
12863 yn: 3.1.1 12908 yn: 3.1.1
12864 dev: true 12909 dev: true
12865 12910
12866 /ts-node@10.9.1(@types/node@20.4.7)(typescript@5.2.2): 12911 /ts-node@10.9.1(@types/node@20.4.7)(typescript@5.3.2):
12867 resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==} 12912 resolution: {integrity: sha512-NtVysVPkxxrwFGUUxGYhfux8k78pQB3JqYBXlLRZgdGUqTO5wU/UyHop5p70iEbGhB7q5KmiZiU0Y3KlJrScEw==}
12868 hasBin: true 12913 hasBin: true
12869 peerDependencies: 12914 peerDependencies:
@@ -12883,19 +12928,19 @@ packages:
12883 '@tsconfig/node14': 1.0.3 12928 '@tsconfig/node14': 1.0.3
12884 '@tsconfig/node16': 1.0.4 12929 '@tsconfig/node16': 1.0.4
12885 '@types/node': 20.4.7 12930 '@types/node': 20.4.7
12886 acorn: 8.10.0 12931 acorn: 8.11.2
12887 acorn-walk: 8.2.0 12932 acorn-walk: 8.2.0
12888 arg: 4.1.3 12933 arg: 4.1.3
12889 create-require: 1.1.1 12934 create-require: 1.1.1
12890 diff: 4.0.2 12935 diff: 4.0.2
12891 make-error: 1.3.6 12936 make-error: 1.3.6
12892 typescript: 5.2.2 12937 typescript: 5.3.2
12893 v8-compile-cache-lib: 3.0.1 12938 v8-compile-cache-lib: 3.0.1
12894 yn: 3.1.1 12939 yn: 3.1.1
12895 dev: true 12940 dev: true
12896 12941
12897 /tsconfig-paths@3.14.2: 12942 /tsconfig-paths@3.15.0:
12898 resolution: {integrity: sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==} 12943 resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
12899 dependencies: 12944 dependencies:
12900 '@types/json5': 0.0.29 12945 '@types/json5': 0.0.29
12901 json5: 1.0.2 12946 json5: 1.0.2
@@ -12919,14 +12964,14 @@ packages:
12919 engines: {node: '>=0.6.x'} 12964 engines: {node: '>=0.6.x'}
12920 dev: false 12965 dev: false
12921 12966
12922 /tsutils@3.21.0(typescript@5.2.2): 12967 /tsutils@3.21.0(typescript@5.3.2):
12923 resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==} 12968 resolution: {integrity: sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==}
12924 engines: {node: '>= 6'} 12969 engines: {node: '>= 6'}
12925 peerDependencies: 12970 peerDependencies:
12926 typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta' 12971 typescript: '>=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta'
12927 dependencies: 12972 dependencies:
12928 tslib: 1.14.1 12973 tslib: 1.14.1
12929 typescript: 5.2.2 12974 typescript: 5.3.2
12930 dev: true 12975 dev: true
12931 12976
12932 /tunnel-agent@0.6.0: 12977 /tunnel-agent@0.6.0:
@@ -13011,8 +13056,8 @@ packages:
13011 resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==} 13056 resolution: {integrity: sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==}
13012 engines: {node: '>= 0.4'} 13057 engines: {node: '>= 0.4'}
13013 dependencies: 13058 dependencies:
13014 call-bind: 1.0.2 13059 call-bind: 1.0.5
13015 get-intrinsic: 1.2.1 13060 get-intrinsic: 1.2.2
13016 is-typed-array: 1.1.12 13061 is-typed-array: 1.1.12
13017 dev: true 13062 dev: true
13018 13063
@@ -13020,7 +13065,7 @@ packages:
13020 resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==} 13065 resolution: {integrity: sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==}
13021 engines: {node: '>= 0.4'} 13066 engines: {node: '>= 0.4'}
13022 dependencies: 13067 dependencies:
13023 call-bind: 1.0.2 13068 call-bind: 1.0.5
13024 for-each: 0.3.3 13069 for-each: 0.3.3
13025 has-proto: 1.0.1 13070 has-proto: 1.0.1
13026 is-typed-array: 1.1.12 13071 is-typed-array: 1.1.12
@@ -13031,7 +13076,7 @@ packages:
13031 engines: {node: '>= 0.4'} 13076 engines: {node: '>= 0.4'}
13032 dependencies: 13077 dependencies:
13033 available-typed-arrays: 1.0.5 13078 available-typed-arrays: 1.0.5
13034 call-bind: 1.0.2 13079 call-bind: 1.0.5
13035 for-each: 0.3.3 13080 for-each: 0.3.3
13036 has-proto: 1.0.1 13081 has-proto: 1.0.1
13037 is-typed-array: 1.1.12 13082 is-typed-array: 1.1.12
@@ -13040,7 +13085,7 @@ packages:
13040 /typed-array-length@1.0.4: 13085 /typed-array-length@1.0.4:
13041 resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==} 13086 resolution: {integrity: sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==}
13042 dependencies: 13087 dependencies:
13043 call-bind: 1.0.2 13088 call-bind: 1.0.5
13044 for-each: 0.3.3 13089 for-each: 0.3.3
13045 is-typed-array: 1.1.12 13090 is-typed-array: 1.1.12
13046 dev: true 13091 dev: true
@@ -13051,8 +13096,8 @@ packages:
13051 hasBin: true 13096 hasBin: true
13052 dev: true 13097 dev: true
13053 13098
13054 /typescript@5.2.2: 13099 /typescript@5.3.2:
13055 resolution: {integrity: sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==} 13100 resolution: {integrity: sha512-6l+RyNy7oAHDfxC4FzSJcz9vnjTKxrLpDG5M2Vu4SHRVNg6xzqZp6LYSR9zjqQTu8DU/f5xwxUdADOkbrIX2gQ==}
13056 engines: {node: '>=14.17'} 13101 engines: {node: '>=14.17'}
13057 hasBin: true 13102 hasBin: true
13058 13103
@@ -13066,7 +13111,7 @@ packages:
13066 /unbox-primitive@1.0.2: 13111 /unbox-primitive@1.0.2:
13067 resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==} 13112 resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
13068 dependencies: 13113 dependencies:
13069 call-bind: 1.0.2 13114 call-bind: 1.0.5
13070 has-bigints: 1.0.2 13115 has-bigints: 1.0.2
13071 has-symbols: 1.0.3 13116 has-symbols: 1.0.3
13072 which-boxed-primitive: 1.0.2 13117 which-boxed-primitive: 1.0.2
@@ -13084,6 +13129,9 @@ packages:
13084 engines: {node: '>=0.10.0'} 13129 engines: {node: '>=0.10.0'}
13085 dev: false 13130 dev: false
13086 13131
13132 /undici-types@5.26.5:
13133 resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
13134
13087 /union-value@1.0.1: 13135 /union-value@1.0.1:
13088 resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==} 13136 resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
13089 engines: {node: '>=0.10.0'} 13137 engines: {node: '>=0.10.0'}
@@ -13102,12 +13150,12 @@ packages:
13102 dev: false 13150 dev: false
13103 optional: true 13151 optional: true
13104 13152
13105 /unique-filename@3.0.0: 13153 /unique-filename@2.0.1:
13106 resolution: {integrity: sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==} 13154 resolution: {integrity: sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==}
13107 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 13155 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
13108 requiresBuild: true 13156 requiresBuild: true
13109 dependencies: 13157 dependencies:
13110 unique-slug: 4.0.0 13158 unique-slug: 3.0.0
13111 dev: false 13159 dev: false
13112 optional: true 13160 optional: true
13113 13161
@@ -13119,25 +13167,25 @@ packages:
13119 dev: false 13167 dev: false
13120 optional: true 13168 optional: true
13121 13169
13122 /unique-slug@4.0.0: 13170 /unique-slug@3.0.0:
13123 resolution: {integrity: sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==} 13171 resolution: {integrity: sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==}
13124 engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0} 13172 engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
13125 requiresBuild: true 13173 requiresBuild: true
13126 dependencies: 13174 dependencies:
13127 imurmurhash: 0.1.4 13175 imurmurhash: 0.1.4
13128 dev: false 13176 dev: false
13129 optional: true 13177 optional: true
13130 13178
13131 /universal-user-agent@6.0.0: 13179 /universal-user-agent@6.0.1:
13132 resolution: {integrity: sha512-isyNax3wXoKaulPDZWHQqbmIx1k2tb9fb3GGDBRxCscfYV2Ch7WxPArBsFEG8s/safwXTT7H4QGhaIkTp9447w==} 13180 resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
13133 dev: false 13181 dev: false
13134 13182
13135 /universalify@0.1.2: 13183 /universalify@0.1.2:
13136 resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==} 13184 resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
13137 engines: {node: '>= 4.0.0'} 13185 engines: {node: '>= 4.0.0'}
13138 13186
13139 /universalify@2.0.0: 13187 /universalify@2.0.1:
13140 resolution: {integrity: sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==} 13188 resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
13141 engines: {node: '>= 10.0.0'} 13189 engines: {node: '>= 10.0.0'}
13142 13190
13143 /unpipe@1.0.0: 13191 /unpipe@1.0.0:
@@ -13187,6 +13235,17 @@ packages:
13187 browserslist: 4.21.10 13235 browserslist: 4.21.10
13188 escalade: 3.1.1 13236 escalade: 3.1.1
13189 picocolors: 1.0.0 13237 picocolors: 1.0.0
13238 dev: true
13239
13240 /update-browserslist-db@1.0.13(browserslist@4.22.2):
13241 resolution: {integrity: sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==}
13242 hasBin: true
13243 peerDependencies:
13244 browserslist: '>= 4.21.0'
13245 dependencies:
13246 browserslist: 4.22.2
13247 escalade: 3.1.1
13248 picocolors: 1.0.0
13190 13249
13191 /uri-js@4.4.1: 13250 /uri-js@4.4.1:
13192 resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==} 13251 resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -13207,7 +13266,7 @@ packages:
13207 resolution: {integrity: sha512-jUVHvx1t3bVjx2dI9fG4iKzjO5WA6qtjWaR/PitNvd6zQMJNlFYehNwRUaAAKkhBCkw1T0U9e2oG9Sg3wSmc6Q==} 13266 resolution: {integrity: sha512-jUVHvx1t3bVjx2dI9fG4iKzjO5WA6qtjWaR/PitNvd6zQMJNlFYehNwRUaAAKkhBCkw1T0U9e2oG9Sg3wSmc6Q==}
13208 dependencies: 13267 dependencies:
13209 normalize-version: 1.0.5 13268 normalize-version: 1.0.5
13210 semver: 5.7.1 13269 semver: 5.7.2
13211 semver-closest: 0.1.2 13270 semver-closest: 0.1.2
13212 dev: false 13271 dev: false
13213 13272
@@ -13312,13 +13371,13 @@ packages:
13312 replace-ext: 1.0.1 13371 replace-ext: 1.0.1
13313 dev: true 13372 dev: true
13314 13373
13315 /wait-on@7.0.1(debug@4.3.4): 13374 /wait-on@7.2.0(debug@4.3.4):
13316 resolution: {integrity: sha512-9AnJE9qTjRQOlTZIldAaf/da2eW0eSRSgcqq85mXQja/DW3MriHxkpODDSUEg+Gri/rKEcXUZHe+cevvYItaog==} 13375 resolution: {integrity: sha512-wCQcHkRazgjG5XoAq9jbTMLpNIjoSlZslrJ2+N9MxDsGEv1HnFoVjOCexL0ESva7Y9cu350j+DWADdk54s4AFQ==}
13317 engines: {node: '>=12.0.0'} 13376 engines: {node: '>=12.0.0'}
13318 hasBin: true 13377 hasBin: true
13319 dependencies: 13378 dependencies:
13320 axios: 0.27.2(debug@4.3.4) 13379 axios: 1.6.2(debug@4.3.4)
13321 joi: 17.7.0 13380 joi: 17.11.0
13322 lodash: 4.17.21 13381 lodash: 4.17.21
13323 minimist: 1.2.8 13382 minimist: 1.2.8
13324 rxjs: 7.8.1 13383 rxjs: 7.8.1
@@ -13380,7 +13439,7 @@ packages:
13380 resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==} 13439 resolution: {integrity: sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==}
13381 engines: {node: '>= 0.4'} 13440 engines: {node: '>= 0.4'}
13382 dependencies: 13441 dependencies:
13383 function.prototype.name: 1.1.5 13442 function.prototype.name: 1.1.6
13384 has-tostringtag: 1.0.0 13443 has-tostringtag: 1.0.0
13385 is-async-function: 2.0.0 13444 is-async-function: 2.0.0
13386 is-date-object: 1.0.5 13445 is-date-object: 1.0.5
@@ -13391,7 +13450,7 @@ packages:
13391 isarray: 2.0.5 13450 isarray: 2.0.5
13392 which-boxed-primitive: 1.0.2 13451 which-boxed-primitive: 1.0.2
13393 which-collection: 1.0.1 13452 which-collection: 1.0.1
13394 which-typed-array: 1.1.11 13453 which-typed-array: 1.1.13
13395 dev: true 13454 dev: true
13396 13455
13397 /which-collection@1.0.1: 13456 /which-collection@1.0.1:
@@ -13407,12 +13466,12 @@ packages:
13407 resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==} 13466 resolution: {integrity: sha512-iBdZ57RDvnOR9AGBhML2vFZf7h8vmBjhoaZqODJBFWHVtKkDmKuHai3cx5PgVMrX5YDNp27AofYbAwctSS+vhQ==}
13408 dev: true 13467 dev: true
13409 13468
13410 /which-typed-array@1.1.11: 13469 /which-typed-array@1.1.13:
13411 resolution: {integrity: sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==} 13470 resolution: {integrity: sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==}
13412 engines: {node: '>= 0.4'} 13471 engines: {node: '>= 0.4'}
13413 dependencies: 13472 dependencies:
13414 available-typed-arrays: 1.0.5 13473 available-typed-arrays: 1.0.5
13415 call-bind: 1.0.2 13474 call-bind: 1.0.5
13416 for-each: 0.3.3 13475 for-each: 0.3.3
13417 gopd: 1.0.1 13476 gopd: 1.0.1
13418 has-tostringtag: 1.0.0 13477 has-tostringtag: 1.0.0
@@ -13474,7 +13533,7 @@ packages:
13474 dependencies: 13533 dependencies:
13475 '@colors/colors': 1.5.0 13534 '@colors/colors': 1.5.0
13476 '@dabh/diagnostics': 2.0.3 13535 '@dabh/diagnostics': 2.0.3
13477 async: 3.2.4 13536 async: 3.2.5
13478 is-stream: 2.0.1 13537 is-stream: 2.0.1
13479 logform: 2.4.2 13538 logform: 2.4.2
13480 one-time: 1.0.0 13539 one-time: 1.0.0
@@ -13501,6 +13560,7 @@ packages:
13501 ansi-styles: 4.3.0 13560 ansi-styles: 4.3.0
13502 string-width: 4.2.3 13561 string-width: 4.2.3
13503 strip-ansi: 6.0.1 13562 strip-ansi: 6.0.1
13563 dev: true
13504 13564
13505 /wrap-ansi@8.1.0: 13565 /wrap-ansi@8.1.0:
13506 resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==} 13566 resolution: {integrity: sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==}
@@ -13510,6 +13570,7 @@ packages:
13510 ansi-styles: 6.2.1 13570 ansi-styles: 6.2.1
13511 string-width: 5.1.2 13571 string-width: 5.1.2
13512 strip-ansi: 7.1.0 13572 strip-ansi: 7.1.0
13573 dev: true
13513 13574
13514 /wrappy@1.0.2: 13575 /wrappy@1.0.2:
13515 resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==} 13576 resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
@@ -13540,7 +13601,7 @@ packages:
13540 resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==} 13601 resolution: {integrity: sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==}
13541 engines: {node: '>=4.0.0'} 13602 engines: {node: '>=4.0.0'}
13542 dependencies: 13603 dependencies:
13543 sax: 1.2.4 13604 sax: 1.3.0
13544 xmlbuilder: 11.0.1 13605 xmlbuilder: 11.0.1
13545 dev: false 13606 dev: false
13546 13607
@@ -13676,8 +13737,9 @@ packages:
13676 dependencies: 13737 dependencies:
13677 bindings: 1.5.0 13738 bindings: 1.5.0
13678 node-addon-api: 3.0.0 13739 node-addon-api: 3.0.0
13679 node-gyp: 9.4.0 13740 node-gyp: 9.4.1
13680 transitivePeerDependencies: 13741 transitivePeerDependencies:
13742 - bluebird
13681 - supports-color 13743 - supports-color
13682 dev: false 13744 dev: false
13683 optional: true 13745 optional: true
diff --git a/recipes b/recipes
Subproject 25794f73fc6051d146dcac9d4711ef748fbd417 Subproject 725d0e802198cb48f0f9e115506550e414ab78d
diff --git a/src/api/server/ServerApi.ts b/src/api/server/ServerApi.ts
index c6cbbd2e2..1530dd478 100644
--- a/src/api/server/ServerApi.ts
+++ b/src/api/server/ServerApi.ts
@@ -506,7 +506,7 @@ export default class ServerApi {
506 try { 506 try {
507 const config = readJsonSync(file); 507 const config = readJsonSync(file);
508 508
509 if (Object.prototype.hasOwnProperty.call(config, 'services')) { 509 if (Object.hasOwn(config, 'services')) {
510 const services = await Promise.all( 510 const services = await Promise.all(
511 config.services.map(async (s: { service: any }) => { 511 config.services.map(async (s: { service: any }) => {
512 const service = s; 512 const service = s;
@@ -542,7 +542,6 @@ export default class ServerApi {
542 return Promise.all( 542 return Promise.all(
543 services.map(async (service: any) => this._prepareServiceModel(service)), 543 services.map(async (service: any) => this._prepareServiceModel(service)),
544 ); 544 );
545 /* eslint-enable no-return-await */
546 } 545 }
547 546
548 async _prepareServiceModel(service: { recipeId: string }) { 547 async _prepareServiceModel(service: { recipeId: string }) {
diff --git a/src/components/auth/SetupAssistant.tsx b/src/components/auth/SetupAssistant.tsx
index fdcbba45e..c25495471 100644
--- a/src/components/auth/SetupAssistant.tsx
+++ b/src/components/auth/SetupAssistant.tsx
@@ -39,10 +39,9 @@ const messages = defineMessages({
39 }, 39 },
40}); 40});
41 41
42const transition = 42const transition = window?.matchMedia('(prefers-reduced-motion: no-preference)')
43 window && window.matchMedia('(prefers-reduced-motion: no-preference)') 43 ? 'all 0.25s'
44 ? 'all 0.25s' 44 : 'none';
45 : 'none';
46 45
47const styles = theme => ({ 46const styles = theme => ({
48 root: { 47 root: {
diff --git a/src/components/auth/Welcome.tsx b/src/components/auth/Welcome.tsx
index 259e3c335..c1a2db386 100644
--- a/src/components/auth/Welcome.tsx
+++ b/src/components/auth/Welcome.tsx
@@ -91,8 +91,8 @@ class Welcome extends Component<IProps> {
91 className="settings__hr-sections" 91 className="settings__hr-sections"
92 style={{ marginTop: 24, marginBottom: 24, borderStyle: 'solid' }} 92 style={{ marginTop: 24, marginBottom: 24, borderStyle: 'solid' }}
93 /> 93 />
94 {/* eslint-disable-next-line react/button-has-type */}
95 <button 94 <button
95 type="button"
96 className="button" 96 className="button"
97 onClick={this.useLocalServer.bind(this)} 97 onClick={this.useLocalServer.bind(this)}
98 onKeyDown={noop} 98 onKeyDown={noop}
diff --git a/src/components/downloadManager/DownloadManagerDashboard.tsx b/src/components/downloadManager/DownloadManagerDashboard.tsx
index 86facc476..25e73d48f 100644
--- a/src/components/downloadManager/DownloadManagerDashboard.tsx
+++ b/src/components/downloadManager/DownloadManagerDashboard.tsx
@@ -138,10 +138,10 @@ class DownloadManagerDashboard extends Component<IProps, IState> {
138 ? null 138 ? null
139 : 'Paused' 139 : 'Paused'
140 : state === 'cancelled' 140 : state === 'cancelled'
141 ? 'Cancelled' 141 ? 'Cancelled'
142 : state === 'completed' 142 : state === 'completed'
143 ? null 143 ? null
144 : 'Error'; 144 : 'Error';
145 145
146 return ( 146 return (
147 <Card 147 <Card
@@ -181,8 +181,8 @@ class DownloadManagerDashboard extends Component<IProps, IState> {
181 stateParse !== null && stateParse !== 'Paused' 181 stateParse !== null && stateParse !== 'Paused'
182 ? 'line-through' 182 ? 'line-through'
183 : state === 'completed' 183 : state === 'completed'
184 ? 'underline' 184 ? 'underline'
185 : null, 185 : null,
186 }} 186 }}
187 > 187 >
188 {filename} 188 {filename}
@@ -195,8 +195,8 @@ class DownloadManagerDashboard extends Component<IProps, IState> {
195 {stateParse !== null && stateParse !== 'Paused' 195 {stateParse !== null && stateParse !== 'Paused'
196 ? stateParse 196 ? stateParse
197 : stateParse === 'Paused' 197 : stateParse === 'Paused'
198 ? stateParse 198 ? stateParse
199 : null} 199 : null}
200 </Typography> 200 </Typography>
201 </Box> 201 </Box>
202 <Typography variant="body2">{url}</Typography> 202 <Typography variant="body2">{url}</Typography>
diff --git a/src/components/layout/Sidebar.tsx b/src/components/layout/Sidebar.tsx
index 7904d7653..e423e408b 100644
--- a/src/components/layout/Sidebar.tsx
+++ b/src/components/layout/Sidebar.tsx
@@ -352,6 +352,7 @@ class Sidebar extends Component<IProps, IState> {
352 type="button" 352 type="button"
353 onClick={() => openDownloads({ path: '/downloadmanager' })} 353 onClick={() => openDownloads({ path: '/downloadmanager' })}
354 className={ 354 className={
355 // biome-ignore lint/style/useTemplate: <explanation>
355 'sidebar__button' + 356 'sidebar__button' +
356 `${isDownloading ? ' sidebar__button--downloading' : ''}` + 357 `${isDownloading ? ' sidebar__button--downloading' : ''}` +
357 `${justFinishedDownloading ? ' sidebar__button--done' : ''}` 358 `${justFinishedDownloading ? ' sidebar__button--done' : ''}`
diff --git a/src/components/services/content/ServiceView.tsx b/src/components/services/content/ServiceView.tsx
index 37dcafbe4..d89cd0610 100644
--- a/src/components/services/content/ServiceView.tsx
+++ b/src/components/services/content/ServiceView.tsx
@@ -64,7 +64,7 @@ class ServiceView extends Component<IProps, IState> {
64 64
65 componentWillUnmount() { 65 componentWillUnmount() {
66 this.autorunDisposer!(); 66 this.autorunDisposer!();
67 clearTimeout(this.forceRepaintTimeout!); 67 clearTimeout(this.forceRepaintTimeout);
68 // clearTimeout(this.hibernationTimer); // TODO: [TS DEBT] class property not reassigned, need to find its purpose 68 // clearTimeout(this.hibernationTimer); // TODO: [TS DEBT] class property not reassigned, need to find its purpose
69 } 69 }
70 70
diff --git a/src/components/services/content/WebviewCrashHandler.tsx b/src/components/services/content/WebviewCrashHandler.tsx
index e9b17e8aa..91c9cf927 100644
--- a/src/components/services/content/WebviewCrashHandler.tsx
+++ b/src/components/services/content/WebviewCrashHandler.tsx
@@ -36,7 +36,7 @@ interface IState {
36 36
37@observer 37@observer
38class WebviewCrashHandler extends Component<IProps, IState> { 38class WebviewCrashHandler extends Component<IProps, IState> {
39 countdownInterval: NodeJS.Timer | undefined; 39 countdownInterval: NodeJS.Timeout | undefined;
40 40
41 countdownIntervalTimeout = ms('1s'); 41 countdownIntervalTimeout = ms('1s');
42 42
@@ -58,7 +58,7 @@ class WebviewCrashHandler extends Component<IProps, IState> {
58 58
59 if (this.state.countdown <= 0) { 59 if (this.state.countdown <= 0) {
60 reload(); 60 reload();
61 clearInterval(this.countdownInterval!); 61 clearInterval(this.countdownInterval);
62 } 62 }
63 }, this.countdownIntervalTimeout); 63 }, this.countdownIntervalTimeout);
64 } 64 }
diff --git a/src/components/services/tabs/TabItem.tsx b/src/components/services/tabs/TabItem.tsx
index 287dedfcb..804efe8a5 100644
--- a/src/components/services/tabs/TabItem.tsx
+++ b/src/components/services/tabs/TabItem.tsx
@@ -80,7 +80,7 @@ let pollIndicatorTransition = 'none';
80let polledTransition = 'none'; 80let polledTransition = 'none';
81let pollAnsweredTransition = 'none'; 81let pollAnsweredTransition = 'none';
82 82
83if (window && window.matchMedia('(prefers-reduced-motion: no-preference)')) { 83if (window?.matchMedia('(prefers-reduced-motion: no-preference)')) {
84 pollIndicatorTransition = 'background 0.5s'; 84 pollIndicatorTransition = 'background 0.5s';
85 polledTransition = 'background 0.1s'; 85 polledTransition = 'background 0.1s';
86 pollAnsweredTransition = 'background 0.1s'; 86 pollAnsweredTransition = 'background 0.1s';
diff --git a/src/components/settings/services/ServiceItem.tsx b/src/components/settings/services/ServiceItem.tsx
index babe06b5a..35b63b160 100644
--- a/src/components/settings/services/ServiceItem.tsx
+++ b/src/components/settings/services/ServiceItem.tsx
@@ -44,11 +44,7 @@ class ServiceItem extends Component<IProps> {
44 'service-table__row--disabled': !service.isEnabled, 44 'service-table__row--disabled': !service.isEnabled,
45 })} 45 })}
46 > 46 >
47 <td 47 <td className="service-table__column-icon" onClick={goToServiceForm}>
48 className="service-table__column-icon"
49 onClick={goToServiceForm}
50 role="gridcell"
51 >
52 <img 48 <img
53 src={service.icon} 49 src={service.icon}
54 className={classnames({ 50 className={classnames({
@@ -58,18 +54,10 @@ class ServiceItem extends Component<IProps> {
58 alt="" 54 alt=""
59 /> 55 />
60 </td> 56 </td>
61 <td 57 <td className="service-table__column-name" onClick={goToServiceForm}>
62 className="service-table__column-name"
63 onClick={goToServiceForm}
64 role="gridcell"
65 >
66 {service.name === '' ? service.recipe.name : service.name} 58 {service.name === '' ? service.recipe.name : service.name}
67 </td> 59 </td>
68 <td 60 <td className="service-table__column-info" onClick={goToServiceForm}>
69 className="service-table__column-info"
70 onClick={goToServiceForm}
71 role="gridcell"
72 >
73 {service.isMuted && ( 61 {service.isMuted && (
74 <Icon 62 <Icon
75 icon={mdiBellOff} 63 icon={mdiBellOff}
@@ -78,11 +66,7 @@ class ServiceItem extends Component<IProps> {
78 /> 66 />
79 )} 67 )}
80 </td> 68 </td>
81 <td 69 <td className="service-table__column-info" onClick={goToServiceForm}>
82 className="service-table__column-info"
83 onClick={goToServiceForm}
84 role="gridcell"
85 >
86 {!service.isEnabled && ( 70 {!service.isEnabled && (
87 <Icon 71 <Icon
88 icon={mdiPower} 72 icon={mdiPower}
@@ -93,11 +77,7 @@ class ServiceItem extends Component<IProps> {
93 /> 77 />
94 )} 78 )}
95 </td> 79 </td>
96 <td 80 <td className="service-table__column-info" onClick={goToServiceForm}>
97 className="service-table__column-info"
98 onClick={goToServiceForm}
99 role="gridcell"
100 >
101 {!service.isNotificationEnabled && ( 81 {!service.isNotificationEnabled && (
102 <Icon 82 <Icon
103 icon={mdiMessageBulletedOff} 83 icon={mdiMessageBulletedOff}
diff --git a/src/components/settings/settings/EditSettingsForm.tsx b/src/components/settings/settings/EditSettingsForm.tsx
index 210c8d9e9..1672a1411 100644
--- a/src/components/settings/settings/EditSettingsForm.tsx
+++ b/src/components/settings/settings/EditSettingsForm.tsx
@@ -397,7 +397,7 @@ class EditSettingsForm extends Component<IProps, IState> {
397 debug('cacheSize:', cacheSize); 397 debug('cacheSize:', cacheSize);
398 notCleared = 398 notCleared =
399 this.state.clearCacheButtonClicked && 399 this.state.clearCacheButtonClicked &&
400 isClearingAllCache === false && 400 !isClearingAllCache &&
401 cacheSizeBytes !== 0; 401 cacheSizeBytes !== 0;
402 } else { 402 } else {
403 cacheSize = '…'; 403 cacheSize = '…';
diff --git a/src/components/ui/AppLoader/index.tsx b/src/components/ui/AppLoader/index.tsx
index 64c840aaa..4b5828ef4 100644
--- a/src/components/ui/AppLoader/index.tsx
+++ b/src/components/ui/AppLoader/index.tsx
@@ -61,7 +61,7 @@ class AppLoader extends Component<IProps, IState> {
61 className={classes.component} 61 className={classes.component}
62 spinnerColor={theme.colorAppLoaderSpinner} 62 spinnerColor={theme.colorAppLoaderSpinner}
63 > 63 >
64 {texts?.map((text, i) => ( 64 {texts.map((text, i) => (
65 <span 65 <span
66 key={text} 66 key={text}
67 className={classnames({ 67 className={classnames({
diff --git a/src/components/ui/Link.tsx b/src/components/ui/Link.tsx
index a9a429d3a..f9fdd57f9 100644
--- a/src/components/ui/Link.tsx
+++ b/src/components/ui/Link.tsx
@@ -54,6 +54,7 @@ class Link extends Component<IProps> {
54 }); 54 });
55 55
56 return ( 56 return (
57 // biome-ignore lint/a11y/useValidAnchor: <explanation>
57 <a 58 <a
58 href={router.history.createHref(to)} 59 href={router.history.createHref(to)}
59 className={linkClasses} 60 className={linkClasses}
diff --git a/src/components/ui/Radio.tsx b/src/components/ui/Radio.tsx
index 1f41deedc..901958c78 100644
--- a/src/components/ui/Radio.tsx
+++ b/src/components/ui/Radio.tsx
@@ -2,6 +2,7 @@ import { Component } from 'react';
2import { observer } from 'mobx-react'; 2import { observer } from 'mobx-react';
3import classnames from 'classnames'; 3import classnames from 'classnames';
4import FieldInterface from 'mobx-react-form/lib/models/FieldInterface'; 4import FieldInterface from 'mobx-react-form/lib/models/FieldInterface';
5// biome-ignore lint/suspicious/noShadowRestrictedNames: <explanation>
5import Error from './error'; 6import Error from './error';
6 7
7type Props = { 8type Props = {
diff --git a/src/components/ui/SearchInput.tsx b/src/components/ui/SearchInput.tsx
index 39b8f95bf..b2caaa1de 100644
--- a/src/components/ui/SearchInput.tsx
+++ b/src/components/ui/SearchInput.tsx
@@ -82,6 +82,7 @@ class SearchInput extends Component<IProps, IState> {
82 82
83 return ( 83 return (
84 <div className={classnames([className, 'search-input'])}> 84 <div className={classnames([className, 'search-input'])}>
85 {/* eslint-disable-next-line jsx-a11y/label-has-associated-control */}
85 <label htmlFor={name}> 86 <label htmlFor={name}>
86 <Icon icon={mdiMagnify} /> 87 <Icon icon={mdiMagnify} />
87 <input 88 <input
diff --git a/src/components/ui/button/index.tsx b/src/components/ui/button/index.tsx
index f8bcf76b2..a2194e34d 100644
--- a/src/components/ui/button/index.tsx
+++ b/src/components/ui/button/index.tsx
@@ -205,6 +205,7 @@ class ButtonComponent extends Component<IProps, IState> {
205 ); 205 );
206 206
207 const wrapperComponent = href ? ( 207 const wrapperComponent = href ? (
208 // biome-ignore lint/a11y/useValidAnchor: <explanation>
208 <a 209 <a
209 href={href} 210 href={href}
210 target={target} 211 target={target}
diff --git a/src/components/ui/input/index.tsx b/src/components/ui/input/index.tsx
index 064c1807f..68cc9ee22 100644
--- a/src/components/ui/input/index.tsx
+++ b/src/components/ui/input/index.tsx
@@ -14,6 +14,7 @@ import { observer } from 'mobx-react';
14import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl'; 14import { defineMessages, injectIntl, WrappedComponentProps } from 'react-intl';
15import Icon from '../icon'; 15import Icon from '../icon';
16import { IFormField } from '../typings/generic'; 16import { IFormField } from '../typings/generic';
17// biome-ignore lint/suspicious/noShadowRestrictedNames: <explanation>
17import Error from '../error'; 18import Error from '../error';
18import Label from '../label'; 19import Label from '../label';
19import Wrapper from '../wrapper'; 20import Wrapper from '../wrapper';
diff --git a/src/components/ui/input/scorePassword.ts b/src/components/ui/input/scorePassword.ts
index 59502e2b0..4a9f67265 100644
--- a/src/components/ui/input/scorePassword.ts
+++ b/src/components/ui/input/scorePassword.ts
@@ -33,7 +33,7 @@ export function scorePasswordFunc(password: string): number {
33 33
34 let variationCount = 0; 34 let variationCount = 0;
35 for (const key of Object.keys(variations)) { 35 for (const key of Object.keys(variations)) {
36 variationCount += variations[key] === true ? 1 : 0; 36 variationCount += variations[key] ? 1 : 0;
37 } 37 }
38 38
39 score += (variationCount - 1) * 10; 39 score += (variationCount - 1) * 10;
diff --git a/src/components/ui/select/index.tsx b/src/components/ui/select/index.tsx
index 650600fb3..0d8520f58 100644
--- a/src/components/ui/select/index.tsx
+++ b/src/components/ui/select/index.tsx
@@ -10,6 +10,7 @@ import withStyles, { WithStylesProps } from 'react-jss';
10import { noop } from 'lodash'; 10import { noop } from 'lodash';
11import { Theme } from '../../../themes'; 11import { Theme } from '../../../themes';
12import { IFormField } from '../typings/generic'; 12import { IFormField } from '../typings/generic';
13// biome-ignore lint/suspicious/noShadowRestrictedNames: <explanation>
13import Error from '../error'; 14import Error from '../error';
14import Label from '../label'; 15import Label from '../label';
15import Wrapper from '../wrapper'; 16import Wrapper from '../wrapper';
@@ -281,23 +282,23 @@ class SelectComponent extends Component<IProps, IState> {
281 282
282 if (!open) return; 283 if (!open) return;
283 284
284 if (e.keyCode === 38 || e.keyCode === 40) { 285 if (e.key === 'ArrowUp' || e.key === 'ArrowDown') {
285 e.preventDefault(); 286 e.preventDefault();
286 } 287 }
287 288
288 if (this.componentRef?.current) { 289 if (this.componentRef?.current) {
289 if (e.keyCode === 38 && selected > 0) { 290 if (e.key === 'ArrowUp' && selected > 0) {
290 this.setState((state: IState) => ({ 291 this.setState((state: IState) => ({
291 selected: state.selected - 1, 292 selected: state.selected - 1,
292 })); 293 }));
293 } else if ( 294 } else if (
294 e.keyCode === 40 && 295 e.key === 'ArrowDown' &&
295 selected < Object.keys(options!).length - 1 296 selected < Object.keys(options!).length - 1
296 ) { 297 ) {
297 this.setState((state: IState) => ({ 298 this.setState((state: IState) => ({
298 selected: state.selected + 1, 299 selected: state.selected + 1,
299 })); 300 }));
300 } else if (e.keyCode === 13) { 301 } else if (e.key === 'Enter') {
301 this.select(Object.keys(options!)[selected]); 302 this.select(Object.keys(options!)[selected]);
302 } 303 }
303 304
@@ -310,19 +311,6 @@ class SelectComponent extends Component<IProps, IState> {
310 this.scrollContainerRef.current.scrollTop = topOffset - 35; 311 this.scrollContainerRef.current.scrollTop = topOffset - 35;
311 } 312 }
312 } 313 }
313
314 switch (e.keyCode) {
315 case 37:
316 case 39:
317 case 38:
318 case 40: // Arrow keys
319 case 32: {
320 break;
321 } // Space
322 default: {
323 break;
324 } // do not block other keys
325 }
326 } 314 }
327 315
328 render(): ReactElement { 316 render(): ReactElement {
diff --git a/src/components/ui/textarea/index.tsx b/src/components/ui/textarea/index.tsx
index fbdef7fc6..0967c4c25 100644
--- a/src/components/ui/textarea/index.tsx
+++ b/src/components/ui/textarea/index.tsx
@@ -5,6 +5,7 @@ import injectSheet, { WithStylesProps } from 'react-jss';
5import { noop } from 'lodash'; 5import { noop } from 'lodash';
6import { IFormField } from '../typings/generic'; 6import { IFormField } from '../typings/generic';
7 7
8// biome-ignore lint/suspicious/noShadowRestrictedNames: <explanation>
8import Error from '../error'; 9import Error from '../error';
9import Label from '../label'; 10import Label from '../label';
10import Wrapper from '../wrapper'; 11import Wrapper from '../wrapper';
@@ -40,6 +41,7 @@ class TextareaComponent extends Component<IProps> {
40 41
41 if (this.textareaRef?.current && data) { 42 if (this.textareaRef?.current && data) {
42 Object.keys(data).map( 43 Object.keys(data).map(
44 // biome-ignore lint/suspicious/noAssignInExpressions: <explanation>
43 key => (this.textareaRef.current!.dataset[key] = data[key]), 45 key => (this.textareaRef.current!.dataset[key] = data[key]),
44 ); 46 );
45 } 47 }
diff --git a/src/components/ui/toggle/index.tsx b/src/components/ui/toggle/index.tsx
index 275d28bf6..878ffecdc 100644
--- a/src/components/ui/toggle/index.tsx
+++ b/src/components/ui/toggle/index.tsx
@@ -4,6 +4,7 @@ import { noop } from 'lodash';
4import { Component, InputHTMLAttributes, ReactElement } from 'react'; 4import { Component, InputHTMLAttributes, ReactElement } from 'react';
5import withStyles, { WithStylesProps } from 'react-jss'; 5import withStyles, { WithStylesProps } from 'react-jss';
6import { Theme } from '../../../themes'; 6import { Theme } from '../../../themes';
7// biome-ignore lint/suspicious/noShadowRestrictedNames: <explanation>
7import Error from '../error'; 8import Error from '../error';
8import Label from '../label'; 9import Label from '../label';
9import { IFormField } from '../typings/generic'; 10import { IFormField } from '../typings/generic';
diff --git a/src/containers/settings/EditServiceScreen.tsx b/src/containers/settings/EditServiceScreen.tsx
index ff2076fed..946ec09d3 100644
--- a/src/containers/settings/EditServiceScreen.tsx
+++ b/src/containers/settings/EditServiceScreen.tsx
@@ -261,7 +261,7 @@ class EditServiceScreen extends Component<IProps> {
261 }, 261 },
262 customIcon: { 262 customIcon: {
263 label: intl.formatMessage(messages.icon), 263 label: intl.formatMessage(messages.icon),
264 value: service?.hasCustomUploadedIcon ? service?.icon : null, 264 value: service?.hasCustomUploadedIcon ? service.icon : null,
265 type: 'file', 265 type: 'file',
266 }, 266 },
267 isDarkModeEnabled: { 267 isDarkModeEnabled: {
@@ -276,21 +276,21 @@ class EditServiceScreen extends Component<IProps> {
276 darkReaderBrightness: { 276 darkReaderBrightness: {
277 label: intl.formatMessage(messages.darkReaderBrightness), 277 label: intl.formatMessage(messages.darkReaderBrightness),
278 value: service?.darkReaderSettings 278 value: service?.darkReaderSettings
279 ? service?.darkReaderSettings.brightness 279 ? service.darkReaderSettings.brightness
280 : DEFAULT_SERVICE_SETTINGS.darkReaderBrightness, 280 : DEFAULT_SERVICE_SETTINGS.darkReaderBrightness,
281 default: DEFAULT_SERVICE_SETTINGS.darkReaderBrightness, 281 default: DEFAULT_SERVICE_SETTINGS.darkReaderBrightness,
282 }, 282 },
283 darkReaderContrast: { 283 darkReaderContrast: {
284 label: intl.formatMessage(messages.darkReaderContrast), 284 label: intl.formatMessage(messages.darkReaderContrast),
285 value: service?.darkReaderSettings 285 value: service?.darkReaderSettings
286 ? service?.darkReaderSettings.contrast 286 ? service.darkReaderSettings.contrast
287 : DEFAULT_SERVICE_SETTINGS.darkReaderContrast, 287 : DEFAULT_SERVICE_SETTINGS.darkReaderContrast,
288 default: DEFAULT_SERVICE_SETTINGS.darkReaderContrast, 288 default: DEFAULT_SERVICE_SETTINGS.darkReaderContrast,
289 }, 289 },
290 darkReaderSepia: { 290 darkReaderSepia: {
291 label: intl.formatMessage(messages.darkReaderSepia), 291 label: intl.formatMessage(messages.darkReaderSepia),
292 value: service?.darkReaderSettings 292 value: service?.darkReaderSettings
293 ? service?.darkReaderSettings.sepia 293 ? service.darkReaderSettings.sepia
294 : DEFAULT_SERVICE_SETTINGS.darkReaderSepia, 294 : DEFAULT_SERVICE_SETTINGS.darkReaderSepia,
295 default: DEFAULT_SERVICE_SETTINGS.darkReaderSepia, 295 default: DEFAULT_SERVICE_SETTINGS.darkReaderSepia,
296 }, 296 },
diff --git a/src/features/quickSwitch/Component.tsx b/src/features/quickSwitch/Component.tsx
index ab07e5d4d..7f6ad6432 100644
--- a/src/features/quickSwitch/Component.tsx
+++ b/src/features/quickSwitch/Component.tsx
@@ -88,14 +88,6 @@ interface IState {
88@inject('stores', 'actions') 88@inject('stores', 'actions')
89@observer 89@observer
90class QuickSwitchModal extends Component<IProps, IState> { 90class QuickSwitchModal extends Component<IProps, IState> {
91 ARROW_DOWN = 40;
92
93 ARROW_UP = 38;
94
95 ENTER = 13;
96
97 TAB = 9;
98
99 inputRef = createRef<HTMLDivElement>(); 91 inputRef = createRef<HTMLDivElement>();
100 92
101 serviceElements = {}; 93 serviceElements = {};
@@ -214,12 +206,12 @@ class QuickSwitchModal extends Component<IProps, IState> {
214 // Handle global key presses to change the selection 206 // Handle global key presses to change the selection
215 _handleKeyDown(event: KeyboardEvent): void { 207 _handleKeyDown(event: KeyboardEvent): void {
216 if (ModalState.isModalVisible) { 208 if (ModalState.isModalVisible) {
217 switch (event.keyCode) { 209 switch (event.key) {
218 case this.ARROW_DOWN: { 210 case 'ArrowDown': {
219 this.changeSelected(1); 211 this.changeSelected(1);
220 break; 212 break;
221 } 213 }
222 case this.TAB: { 214 case 'Tab': {
223 if (event.shiftKey) { 215 if (event.shiftKey) {
224 this.changeSelected(-1); 216 this.changeSelected(-1);
225 } else { 217 } else {
@@ -227,11 +219,11 @@ class QuickSwitchModal extends Component<IProps, IState> {
227 } 219 }
228 break; 220 break;
229 } 221 }
230 case this.ARROW_UP: { 222 case 'ArrowUp': {
231 this.changeSelected(-1); 223 this.changeSelected(-1);
232 break; 224 break;
233 } 225 }
234 case this.ENTER: { 226 case 'Enter': {
235 this.openService(this.state.selected); 227 this.openService(this.state.selected);
236 break; 228 break;
237 } 229 }
diff --git a/src/features/todos/store.ts b/src/features/todos/store.ts
index 882fa6a1e..50704c73f 100644
--- a/src/features/todos/store.ts
+++ b/src/features/todos/store.ts
@@ -164,7 +164,7 @@ export default class TodoStore extends FeatureStore {
164 164
165 // Actions 165 // Actions
166 166
167 @action _resize = ({ width }) => { 167 @action _resize = (width: number) => {
168 this._updateSettings({ 168 this._updateSettings({
169 width, 169 width,
170 }); 170 });
diff --git a/src/features/workspaces/components/WorkspaceDrawerItem.tsx b/src/features/workspaces/components/WorkspaceDrawerItem.tsx
index 4fd7662f5..85ed4c38c 100644
--- a/src/features/workspaces/components/WorkspaceDrawerItem.tsx
+++ b/src/features/workspaces/components/WorkspaceDrawerItem.tsx
@@ -72,8 +72,7 @@ interface IProps extends WithStylesProps<typeof styles>, WrappedComponentProps {
72 name: string; 72 name: string;
73 onClick: MouseEventHandler<HTMLInputElement>; 73 onClick: MouseEventHandler<HTMLInputElement>;
74 services: string[]; 74 services: string[];
75 // eslint-disable-next-line @typescript-eslint/no-invalid-void-type 75 onContextMenuEditClick?: (() => void) | null;
76 onContextMenuEditClick?: () => void | null;
77 shortcutIndex: number; 76 shortcutIndex: number;
78} 77}
79 78
diff --git a/src/features/workspaces/components/WorkspaceItem.tsx b/src/features/workspaces/components/WorkspaceItem.tsx
index 6c4dd649b..36c6ed2f5 100644
--- a/src/features/workspaces/components/WorkspaceItem.tsx
+++ b/src/features/workspaces/components/WorkspaceItem.tsx
@@ -1,4 +1,3 @@
1/* eslint-disable jsx-a11y/no-noninteractive-element-interactions */
2import { Component, ReactElement } from 'react'; 1import { Component, ReactElement } from 'react';
3import { observer } from 'mobx-react'; 2import { observer } from 'mobx-react';
4import withStyles, { WithStylesProps } from 'react-jss'; 3import withStyles, { WithStylesProps } from 'react-jss';
diff --git a/src/helpers/service-helpers.ts b/src/helpers/service-helpers.ts
index 678d5024f..f27d53285 100644
--- a/src/helpers/service-helpers.ts
+++ b/src/helpers/service-helpers.ts
@@ -12,7 +12,7 @@ export function removeServicePartitionDirectory(
12 const servicePartition = getServicePartitionsDirectory( 12 const servicePartition = getServicePartitionsDirectory(
13 `${addServicePrefix ? 'service-' : ''}${id}`, 13 `${addServicePrefix ? 'service-' : ''}${id}`,
14 ); 14 );
15 return removeSync(servicePartition); 15 removeSync(servicePartition);
16} 16}
17 17
18export async function getServiceIdsFromPartitions() { 18export async function getServiceIdsFromPartitions() {
diff --git a/src/helpers/translation-helpers.ts b/src/helpers/translation-helpers.ts
index 0edd95412..2e8f6b260 100644
--- a/src/helpers/translation-helpers.ts
+++ b/src/helpers/translation-helpers.ts
@@ -1,4 +1,3 @@
1import fetch from 'node-fetch';
2import translateGoogle from 'google-translate-api-x'; 1import translateGoogle from 'google-translate-api-x';
3import { LIVE_API_FERDIUM_LIBRETRANSLATE } from '../config'; 2import { LIVE_API_FERDIUM_LIBRETRANSLATE } from '../config';
4 3
diff --git a/src/helpers/update-helpers.ts b/src/helpers/update-helpers.ts
index 9a36850fc..ca541c4b0 100644
--- a/src/helpers/update-helpers.ts
+++ b/src/helpers/update-helpers.ts
@@ -5,7 +5,7 @@ export function getFerdiumVersion(
5 currentLocation: string, 5 currentLocation: string,
6 ferdiumVersion: string, 6 ferdiumVersion: string,
7): string { 7): string {
8 const matches = currentLocation?.match(/version=([^&]*)/); 8 const matches = currentLocation.match(/version=([^&]*)/);
9 if (matches !== null) { 9 if (matches !== null) {
10 return `v${matches[1]}`; 10 return `v${matches[1]}`;
11 } 11 }
diff --git a/src/helpers/userAgent-helpers.ts b/src/helpers/userAgent-helpers.ts
index bc99fbc52..42e3a9851 100644
--- a/src/helpers/userAgent-helpers.ts
+++ b/src/helpers/userAgent-helpers.ts
@@ -13,7 +13,7 @@ import {
13function macOS() { 13function macOS() {
14 const version = macosVersion() ?? ''; 14 const version = macosVersion() ?? '';
15 let cpuName = cpus()[0].model.split(' ')[0]; 15 let cpuName = cpus()[0].model.split(' ')[0];
16 if (cpuName && /\(/.test(cpuName)) { 16 if (cpuName.includes('(')) {
17 // eslint-disable-next-line prefer-destructuring 17 // eslint-disable-next-line prefer-destructuring
18 cpuName = cpuName.split('(')[0]; 18 cpuName = cpuName.split('(')[0];
19 } 19 }
diff --git a/src/i18n/locales/fr.json b/src/i18n/locales/fr.json
index 590bb1085..c95fc5003 100644
--- a/src/i18n/locales/fr.json
+++ b/src/i18n/locales/fr.json
@@ -11,7 +11,7 @@
11 "connectionLostBanner.message": "Oh non ! Ferdium a perdu la connexion avec {name}.", 11 "connectionLostBanner.message": "Oh non ! Ferdium a perdu la connexion avec {name}.",
12 "downloadManager.empty": "Votre liste de téléchargement est vide.", 12 "downloadManager.empty": "Votre liste de téléchargement est vide.",
13 "downloadManager.headline": "Gestionnaire de téléchargement", 13 "downloadManager.headline": "Gestionnaire de téléchargement",
14 "feature.basicAuth.signIn": "Connexion", 14 "feature.basicAuth.signIn": "S'identifier",
15 "feature.publishDebugInfo.error": "Il y a eu une erreur en essayant de publier les informations de débogage. Veuillez réessayer plus tard ou consulter la console pour plus d'informations.", 15 "feature.publishDebugInfo.error": "Il y a eu une erreur en essayant de publier les informations de débogage. Veuillez réessayer plus tard ou consulter la console pour plus d'informations.",
16 "feature.publishDebugInfo.info": "La publication de vos informations de débogage nous aide à trouver des problèmes et des erreurs dans Ferdium. En publiant vos informations de débogage, vous acceptez la politique de confidentialité et les conditions d'utilisation de Ferdium Debugger", 16 "feature.publishDebugInfo.info": "La publication de vos informations de débogage nous aide à trouver des problèmes et des erreurs dans Ferdium. En publiant vos informations de débogage, vous acceptez la politique de confidentialité et les conditions d'utilisation de Ferdium Debugger",
17 "feature.publishDebugInfo.privacy": "Politique de confidentialité", 17 "feature.publishDebugInfo.privacy": "Politique de confidentialité",
diff --git a/src/i18n/locales/ja.json b/src/i18n/locales/ja.json
index 81e9a9551..ed2c60736 100644
--- a/src/i18n/locales/ja.json
+++ b/src/i18n/locales/ja.json
@@ -9,6 +9,8 @@
9 "connectionLostBanner.cta": "サービスをリロードã™ã‚‹", 9 "connectionLostBanner.cta": "サービスをリロードã™ã‚‹",
10 "connectionLostBanner.informationLink": "何ãŒèµ·ãã¾ã—ãŸã‹ï¼Ÿ", 10 "connectionLostBanner.informationLink": "何ãŒèµ·ãã¾ã—ãŸã‹ï¼Ÿ",
11 "connectionLostBanner.message": "{name} ã¸ã®æŽ¥ç¶šãŒåˆ‡æ–­ã•ã‚Œã¾ã—ãŸã€‚", 11 "connectionLostBanner.message": "{name} ã¸ã®æŽ¥ç¶šãŒåˆ‡æ–­ã•ã‚Œã¾ã—ãŸã€‚",
12 "downloadManager.empty": "ダウンロードリストãŒç©ºã§ã™ã€‚",
13 "downloadManager.headline": "ダウンロードマãƒãƒ¼ã‚¸ãƒ£ãƒ¼",
12 "feature.basicAuth.signIn": "サインイン", 14 "feature.basicAuth.signIn": "サインイン",
13 "feature.publishDebugInfo.error": "デãƒãƒƒã‚°æƒ…å ±ã®å…¬é–‹ä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚後ã§ã‚‚ã†ä¸€åº¦è©¦ã™ã‹ã€ã‚³ãƒ³ã‚½ãƒ¼ãƒ«ã‚’表示ã—ã¦è©³ç´°ãªæƒ…報を確èªã—ã¾ã™ã€‚", 15 "feature.publishDebugInfo.error": "デãƒãƒƒã‚°æƒ…å ±ã®å…¬é–‹ä¸­ã«ã‚¨ãƒ©ãƒ¼ãŒç™ºç”Ÿã—ã¾ã—ãŸã€‚後ã§ã‚‚ã†ä¸€åº¦è©¦ã™ã‹ã€ã‚³ãƒ³ã‚½ãƒ¼ãƒ«ã‚’表示ã—ã¦è©³ç´°ãªæƒ…報を確èªã—ã¾ã™ã€‚",
14 "feature.publishDebugInfo.info": "デãƒãƒƒã‚°æƒ…報を公開ã™ã‚‹ã“ã¨ã§ã€Ferdiumã®é–‹ç™ºè€…ãŒå•é¡Œã‚„エラーを発見ã™ã‚‹æ‰‹åŠ©ã‘ã¨ãªã‚Šã¾ã™ã€‚ デãƒãƒƒã‚°æƒ…報を公開ã™ã‚‹ã“ã¨ã§ã€Ferdium Debuggerã®ãƒ—ライãƒã‚·ãƒ¼ãƒãƒªã‚·ãƒ¼ã¨åˆ©ç”¨è¦ç´„ã«åŒæ„ã—ãŸã“ã¨ã«ãªã‚Šã¾ã™ã€‚", 16 "feature.publishDebugInfo.info": "デãƒãƒƒã‚°æƒ…報を公開ã™ã‚‹ã“ã¨ã§ã€Ferdiumã®é–‹ç™ºè€…ãŒå•é¡Œã‚„エラーを発見ã™ã‚‹æ‰‹åŠ©ã‘ã¨ãªã‚Šã¾ã™ã€‚ デãƒãƒƒã‚°æƒ…報を公開ã™ã‚‹ã“ã¨ã§ã€Ferdium Debuggerã®ãƒ—ライãƒã‚·ãƒ¼ãƒãƒªã‚·ãƒ¼ã¨åˆ©ç”¨è¦ç´„ã«åŒæ„ã—ãŸã“ã¨ã«ãªã‚Šã¾ã™ã€‚",
@@ -22,6 +24,8 @@
22 "feature.quickSwitch.title": "クイックスイッãƒ", 24 "feature.quickSwitch.title": "クイックスイッãƒ",
23 "global.api.unhealthy": "オンラインサービス{serverNameParse}ã«æŽ¥ç¶šã§ãã¾ã›ã‚“", 25 "global.api.unhealthy": "オンラインサービス{serverNameParse}ã«æŽ¥ç¶šã§ãã¾ã›ã‚“",
24 "global.cancel": "キャンセル", 26 "global.cancel": "キャンセル",
27 "global.clearCache": "キャッシュを消去ã™ã‚‹",
28 "global.downloads": "ダウンロード",
25 "global.edit": "編集", 29 "global.edit": "編集",
26 "global.no": "ã„ã„ãˆ", 30 "global.no": "ã„ã„ãˆ",
27 "global.notConnectedToTheInternet": "インターãƒãƒƒãƒˆã«æŽ¥ç¶šã•ã‚Œã¦ã„ã¾ã›ã‚“。", 31 "global.notConnectedToTheInternet": "インターãƒãƒƒãƒˆã«æŽ¥ç¶šã•ã‚Œã¦ã„ã¾ã›ã‚“。",
@@ -218,6 +222,7 @@
218 "settings.app.form.hibernateOnStartup": "起動時ã«ã‚µãƒ¼ãƒ“スを休止状態ã«ã™ã‚‹", 222 "settings.app.form.hibernateOnStartup": "起動時ã«ã‚µãƒ¼ãƒ“スを休止状態ã«ã™ã‚‹",
219 "settings.app.form.hibernationStrategy": "休止状態ã®æ–¹æ³•", 223 "settings.app.form.hibernationStrategy": "休止状態ã®æ–¹æ³•",
220 "settings.app.form.hideCollapseButton": "折りãŸãŸã¿ãƒœã‚¿ãƒ³ã‚’éžè¡¨ç¤º", 224 "settings.app.form.hideCollapseButton": "折りãŸãŸã¿ãƒœã‚¿ãƒ³ã‚’éžè¡¨ç¤º",
225 "settings.app.form.hideDownloadButton": "ダウンロードボタンをéžè¡¨ç¤ºã«ã™ã‚‹",
221 "settings.app.form.hideNotificationsButton": "通知ã¨ã‚µã‚¦ãƒ³ãƒ‰ãƒœã‚¿ãƒ³ã‚’éžè¡¨ç¤º", 226 "settings.app.form.hideNotificationsButton": "通知ã¨ã‚µã‚¦ãƒ³ãƒ‰ãƒœã‚¿ãƒ³ã‚’éžè¡¨ç¤º",
222 "settings.app.form.hideRecipesButton": "レシピボタンをéžè¡¨ç¤º", 227 "settings.app.form.hideRecipesButton": "レシピボタンをéžè¡¨ç¤º",
223 "settings.app.form.hideSettingsButton": "設定ボタンをéžè¡¨ç¤º", 228 "settings.app.form.hideSettingsButton": "設定ボタンをéžè¡¨ç¤º",
diff --git a/src/i18n/locales/lv.json b/src/i18n/locales/lv.json
index 6bda2e2e1..421b8c0f0 100644
--- a/src/i18n/locales/lv.json
+++ b/src/i18n/locales/lv.json
@@ -4,25 +4,25 @@
4 "changeserver.customServerLabel": "PielÄgots serveris", 4 "changeserver.customServerLabel": "PielÄgots serveris",
5 "changeserver.headline": "Mainīt serveri", 5 "changeserver.headline": "Mainīt serveri",
6 "changeserver.label": "Serveris", 6 "changeserver.label": "Serveris",
7 "changeserver.urlError": "Ievadiet derÄ«gu URL", 7 "changeserver.urlError": "JÄievada derÄ«gs URL",
8 "changeserver.warning": "Ferdium nodroÅ¡inÄtie papildu iestatÄ«jumi netiks saglabÄti", 8 "changeserver.warning": "Ferdium nodroÅ¡inÄtie papildu iestatÄ«jumi netiks saglabÄti",
9 "connectionLostBanner.cta": "PÄrlÄdÄ“t Pakalpojumu", 9 "connectionLostBanner.cta": "PÄrlÄdÄ“t pakalpojumu",
10 "connectionLostBanner.informationLink": "Kas notika?", 10 "connectionLostBanner.informationLink": "Kas notika?",
11 "connectionLostBanner.message": "Ak nē! Ferdium zaudēja savienojumu ar {name}.", 11 "connectionLostBanner.message": "Ak nē! Ferdium zaudēja savienojumu ar {name}.",
12 "downloadManager.empty": "LejupielĞu saraksts ir tukšs.", 12 "downloadManager.empty": "LejupielĞu saraksts ir tukšs.",
13 "downloadManager.headline": "LejupielÄžu pÄrvaldnieks", 13 "downloadManager.headline": "LejupielÄžu pÄrvaldnieks",
14 "feature.basicAuth.signIn": "Pieteikties", 14 "feature.basicAuth.signIn": "Pieteikties",
15 "feature.publishDebugInfo.error": "Notika kļūme publicÄ“jot atkļūdoÅ¡anas informÄciju. LÅ«dzu, mÄ“Ä£iniet vÄ“lreiz vÄ“lÄk vai apskatiet konsoli priekÅ¡ vairÄk informÄcijas.", 15 "feature.publishDebugInfo.error": "AtgadÄ«jÄs kļūda, kamÄ“r notika mÄ“Ä£inÄjums dalÄ«ties ar atkļūdoÅ¡anas informÄciju. LÅ«gums vÄ“lÄk mÄ“Ä£inÄt vÄ“lreiz vai meklÄ“t vairÄk informÄcijas konsolÄ“.",
16 "feature.publishDebugInfo.info": "DalÄ«Å¡anÄs ar atkļūdoÅ¡anas informÄciju palÄ«dz mums atrast Ferdium nepilnÄ«bas un kļūmes. Daloties ar atkļūdoÅ¡anas informÄciju tiek pieņemti Ferdium atkļūdotÄja privÄtuma nosacÄ«jumi un pakalpojuma noteikumi", 16 "feature.publishDebugInfo.info": "DalÄ«Å¡anÄs ar atkļūdoÅ¡anas informÄciju palÄ«dz mums atrast Ferdium nepilnÄ«bas un kļūmes. Daloties ar atkļūdoÅ¡anas informÄciju tiek pieņemti Ferdium atkļūdotÄja privÄtuma nosacÄ«jumi un pakalpojuma noteikumi",
17 "feature.publishDebugInfo.privacy": "PrivÄtuma nosacÄ«jumi", 17 "feature.publishDebugInfo.privacy": "PrivÄtuma nosacÄ«jumi",
18 "feature.publishDebugInfo.publish": "ApstiprinÄt un publicÄ“t", 18 "feature.publishDebugInfo.publish": "ApstiprinÄt un publicÄ“t",
19 "feature.publishDebugInfo.published": "AtkļūdoÅ¡anas žurnÄls tika padarÄ«ts pieejams un tagad ir atrodams", 19 "feature.publishDebugInfo.published": "AtkļūdoÅ¡anas žurnÄls tika padarÄ«ts pieejams un tagad ir atrodams",
20 "feature.publishDebugInfo.terms": "Lietošanas noteikumi", 20 "feature.publishDebugInfo.terms": "Pakalpojuma izmantošanas noteikumi",
21 "feature.publishDebugInfo.title": "PublicÄt atkļūdoÅ¡anas informÄciju", 21 "feature.publishDebugInfo.title": "Da«ties ar atkļūdoÅ¡anas informÄciju",
22 "feature.quickSwitch.info": "Izvēlies pakalpojumu ar TAB, ↑ un ↓. Atver pakalpojumu ar ENTER.", 22 "feature.quickSwitch.info": "Pakalpojumu var izvēlēties ar TAB, ↑ un ↓. Pakalpojumu var atvērt ar ENTER.",
23 "feature.quickSwitch.search": "Meklēt...", 23 "feature.quickSwitch.search": "Meklēt...",
24 "feature.quickSwitch.title": "Ä€trÄPÄrslÄ“gÅ¡anÄs", 24 "feature.quickSwitch.title": "Ä€trÄ pÄrslÄ“gÅ¡anÄs",
25 "global.api.unhealthy": "Nevarēja savienoties ar {serverNameParse} online pakalpojumiem", 25 "global.api.unhealthy": "Nevar savienoties ar {serverNameParse} tiešsaistes pakalpojumiem",
26 "global.cancel": "Atcelt", 26 "global.cancel": "Atcelt",
27 "global.clearCache": "Iztīrīt kešatmiņu", 27 "global.clearCache": "Iztīrīt kešatmiņu",
28 "global.downloads": "LejupielÄdes", 28 "global.downloads": "LejupielÄdes",
@@ -39,7 +39,7 @@
39 "global.spellchecking.autodetect.short": "AutomÄtiski", 39 "global.spellchecking.autodetect.short": "AutomÄtiski",
40 "global.spellchecking.language": "PareizrakstÄ«bas pÄrbaudes valoda", 40 "global.spellchecking.language": "PareizrakstÄ«bas pÄrbaudes valoda",
41 "global.submit": "ApstiprinÄt", 41 "global.submit": "ApstiprinÄt",
42 "global.userAgentHelp": "Izmanto 'https://whatmyuseragent.com/' (lai uzzinÄtu) vai 'https://developers.whatismybrowser.com/useragents/explore/' (lai izvÄ“lÄ“tos) savu vÄ“lamo user-agent un iekopÄ“ to Å¡eit.", 42 "global.userAgentHelp": "JÄizmanto 'https://whatmyuseragent.com/' (lai uzzinÄtu) vai 'https://developers.whatismybrowser.com/useragents/explore/' (lai izvÄ“lÄ“tos), un savs vÄ“lamais lietotÄja aÄ£ents ir jÄielÄ«mÄ“ Å¡eit.",
43 "global.userAgentPref": "User Agent", 43 "global.userAgentPref": "User Agent",
44 "global.yes": "JÄ", 44 "global.yes": "JÄ",
45 "infobar.authRequestFailed": "AtgadÄ«jÄs kļūdas apliecinÄta pieprasÄ«juma veikÅ¡anas mÄ“Ä£inÄjumÄ. LÅ«gums mÄ“Ä£inÄt atteikties un atkÄrtoti pieteikties, ja kļūme ir paliekoÅ¡a.", 45 "infobar.authRequestFailed": "AtgadÄ«jÄs kļūdas apliecinÄta pieprasÄ«juma veikÅ¡anas mÄ“Ä£inÄjumÄ. LÅ«gums mÄ“Ä£inÄt atteikties un atkÄrtoti pieteikties, ja kļūme ir paliekoÅ¡a.",
@@ -52,8 +52,8 @@
52 "infobar.updateAvailable": "Ir pieejams jauns Ferdium atjauninÄjums.", 52 "infobar.updateAvailable": "Ir pieejams jauns Ferdium atjauninÄjums.",
53 "infobox.dismiss": "Atmest", 53 "infobox.dismiss": "Atmest",
54 "invite.email.label": "E-pasta adrese", 54 "invite.email.label": "E-pasta adrese",
55 "invite.headline.friends": "Uzaicini 3 savus draugus vai kolēģus", 55 "invite.headline.friends": "Uzaicini 3 savus draugus vai kolēģus!",
56 "invite.name.label": "VÄrds", 56 "invite.name.label": "Nosaukums",
57 "invite.skip.label": "VÄ“los to darÄ«t vÄ“lÄk", 57 "invite.skip.label": "VÄ“los to darÄ«t vÄ“lÄk",
58 "invite.submit.label": "SÅ«tÄ«t uzaicinÄjumus", 58 "invite.submit.label": "SÅ«tÄ«t uzaicinÄjumus",
59 "invite.successInfo": "UzaicinÄjums nosÅ«tÄ«ti veiksmÄ«gi", 59 "invite.successInfo": "UzaicinÄjums nosÅ«tÄ«ti veiksmÄ«gi",
@@ -66,7 +66,7 @@
66 "login.changeServer": "Maini Å¡eit!", 66 "login.changeServer": "Maini Å¡eit!",
67 "login.changeServerMessage": "Tu izmanto {serverNameParse} serveri. Vai vēlies to mainīt?", 67 "login.changeServerMessage": "Tu izmanto {serverNameParse} serveri. Vai vēlies to mainīt?",
68 "login.customServerQuestion": "Izmanto pielÄgotu Ferdium serveri?", 68 "login.customServerQuestion": "Izmanto pielÄgotu Ferdium serveri?",
69 "login.customServerSuggestion": "Mēģini importēt savu Franz kontu", 69 "login.customServerSuggestion": "Mēģini ievietot savu Franz kontu!",
70 "login.email.label": "E-pasta adrese", 70 "login.email.label": "E-pasta adrese",
71 "login.headline": "Pieteikties", 71 "login.headline": "Pieteikties",
72 "login.invalidCredentials": "E-pasta adrese vai parole ir nederīga", 72 "login.invalidCredentials": "E-pasta adrese vai parole ir nederīga",
@@ -88,10 +88,10 @@
88 "menu.edit.copy": "Kopēt", 88 "menu.edit.copy": "Kopēt",
89 "menu.edit.cut": "Izgriezt", 89 "menu.edit.cut": "Izgriezt",
90 "menu.edit.delete": "Dzēst", 90 "menu.edit.delete": "Dzēst",
91 "menu.edit.emojiSymbols": "Emoji & Simboli", 91 "menu.edit.emojiSymbols": "Emocijzīmes un zīmes",
92 "menu.edit.findInPage": "MeklÄ“t LapÄ", 92 "menu.edit.findInPage": "MeklÄ“t lapÄ",
93 "menu.edit.paste": "Ielīmēt", 93 "menu.edit.paste": "Ielīmēt",
94 "menu.edit.pasteAndMatchStyle": "IelÄ«mÄ“t Un Pieskaņot Stilam", 94 "menu.edit.pasteAndMatchStyle": "IelÄ«mÄ“t un pielÄgot stilam",
95 "menu.edit.redo": "Atcelt atsaukšanu", 95 "menu.edit.redo": "Atcelt atsaukšanu",
96 "menu.edit.selectAll": "Atlasīt visu", 96 "menu.edit.selectAll": "Atlasīt visu",
97 "menu.edit.speech": "Runa", 97 "menu.edit.speech": "Runa",
@@ -102,21 +102,21 @@
102 "menu.file": "Datne", 102 "menu.file": "Datne",
103 "menu.help": "Palīdzība", 103 "menu.help": "Palīdzība",
104 "menu.help.changelog": "Izmaiņu žurnÄls", 104 "menu.help.changelog": "Izmaiņu žurnÄls",
105 "menu.help.debugInfo": "KopÄ“t AtkļūdoÅ¡anas informÄciju", 105 "menu.help.debugInfo": "Ievietot starpliktuvÄ“ atkļūdoÅ¡anas informÄciju",
106 "menu.help.debugInfoCopiedBody": "AtkļūdoÅ¡anas informÄcija tika ievietota starpliktuvÄ“.", 106 "menu.help.debugInfoCopiedBody": "AtkļūdoÅ¡anas informÄcija tika ievietota starpliktuvÄ“.",
107 "menu.help.debugInfoCopiedHeadline": "Ferdium AtkļūdoÅ¡anas InformÄcija", 107 "menu.help.debugInfoCopiedHeadline": "Ferdium atkļūdoÅ¡anas informÄcija",
108 "menu.help.importExportData": "ImportÄ“t/EksportÄ“t KonfigurÄcijas Datus", 108 "menu.help.importExportData": "Ievietot/IzgÅ«t iestatÄ«jumus",
109 "menu.help.learnMore": "UzzinÄt VairÄk", 109 "menu.help.learnMore": "UzzinÄt vairÄk",
110 "menu.help.privacy": "KonfidencialitÄtes Paziņojums", 110 "menu.help.privacy": "PrivÄtuma paskaidrojums",
111 "menu.help.publishDebugInfo": "PublicÄt AtkļūdoÅ¡anas InformÄciju", 111 "menu.help.publishDebugInfo": "Da«ties ar atkļūdoÅ¡anas informÄciju",
112 "menu.help.support": "Atbalsts", 112 "menu.help.support": "Atbalsts",
113 "menu.help.tos": "Lietošanas Noteikumi", 113 "menu.help.tos": "Pakalpojuma izmantošanas noteikumi",
114 "menu.services": "Pakalpojumi", 114 "menu.services": "Pakalpojumi",
115 "menu.services.activatePreviousService": "AktivizÄ“t iepriekÅ¡Ä“jo pakalpojumu", 115 "menu.services.activatePreviousService": "PÄrslÄgties uz iepriekÅ¡Ä“jo pakalpojumu",
116 "menu.services.addNewService": "Pievienot Jaunu Pakalpojumu...", 116 "menu.services.addNewService": "Pievienot jaunu pakalpojumu...",
117 "menu.services.copyToClipboard": "Kopēt starpliktuvē", 117 "menu.services.copyToClipboard": "Kopēt starpliktuvē",
118 "menu.services.goHome": "SÄkums", 118 "menu.services.goHome": "SÄkums",
119 "menu.services.setNextServiceActive": "AktivizÄ“t nÄkamo pakalpojumu", 119 "menu.services.setNextServiceActive": "PÄrslÄgties uz nÄkamo pakalpojumu",
120 "menu.todos": "DarÄmais", 120 "menu.todos": "DarÄmais",
121 "menu.todos.disableTodos": "AtspÄ“jot darÄmo", 121 "menu.todos.disableTodos": "AtspÄ“jot darÄmo",
122 "menu.todos.enableTodos": "IespÄ“jot darÄmo", 122 "menu.todos.enableTodos": "IespÄ“jot darÄmo",
@@ -124,28 +124,28 @@
124 "menu.view.back": "Atpakaļ", 124 "menu.view.back": "Atpakaļ",
125 "menu.view.forward": "Uz priekšu", 125 "menu.view.forward": "Uz priekšu",
126 "menu.view.lockFerdium": "Aizslēgt Ferdium", 126 "menu.view.lockFerdium": "Aizslēgt Ferdium",
127 "menu.view.openQuickSwitch": "AtvÄ“rt Ätro PÄrslÄ“gÅ¡anos", 127 "menu.view.openQuickSwitch": "AtvÄ“rt Ätro pÄrslÄ“gÅ¡anos",
128 "menu.view.reloadFerdium": "PÄrlÄdÄ“t Ferdium", 128 "menu.view.reloadFerdium": "PÄrlÄdÄ“t Ferdium",
129 "menu.view.reloadService": "PÄrlÄdÄ“t Pakalpojumu", 129 "menu.view.reloadService": "PÄrlÄdÄ“t Pakalpojumu",
130 "menu.view.reloadTodos": "PÄrlÄdÄ“t darÄmo", 130 "menu.view.reloadTodos": "PÄrlÄdÄ“t darÄmo",
131 "menu.view.resetZoom": "Īstais Lielums", 131 "menu.view.resetZoom": "Īstais mērogs",
132 "menu.view.splitModeToggle": "PÄrslÄ“gt SadalÄ«to režīmu", 132 "menu.view.splitModeToggle": "PÄrslÄ“gt sadalÄ«to skatu",
133 "menu.view.toggleDarkMode": "PÄrslÄ“gt TumÅ¡o Režīmu", 133 "menu.view.toggleDarkMode": "PÄrslÄ“gt tumÅ¡o izskatu",
134 "menu.view.toggleDevTools": "PÄrslÄ“gt IzstrÄdÄtÄja RÄ«kus", 134 "menu.view.toggleDevTools": "PÄrslÄ“gt izstrÄdÄtÄja rÄ«kus",
135 "menu.view.toggleFullScreen": "PÄrslÄ“gt PilnekrÄna Režīmu", 135 "menu.view.toggleFullScreen": "PÄrslÄ“gt pilnekrÄnu",
136 "menu.view.toggleNavigationBar": "PÄrslÄ“gt NavigÄcijas joslu", 136 "menu.view.toggleNavigationBar": "PÄrslÄ“gt navigÄcijas joslu",
137 "menu.view.toggleServiceDevTools": "PÄrslÄ“gt Pakalpojuma IzstrÄdÄtÄja RÄ«kus", 137 "menu.view.toggleServiceDevTools": "PÄrslÄ“gt pakalpojuma izstrÄdÄtÄja rÄ«kus",
138 "menu.view.toggleTodosDevTools": "PÄrslÄ“gt darÄmÄ izstrÄdÄtÄja rÄ«kus", 138 "menu.view.toggleTodosDevTools": "PÄrslÄ“gt darÄmÄ izstrÄdÄtÄja rÄ«kus",
139 "menu.view.zoomIn": "PietuvinÄt", 139 "menu.view.zoomIn": "PietuvinÄt",
140 "menu.view.zoomOut": "AttÄlinÄt", 140 "menu.view.zoomOut": "AttÄlinÄt",
141 "menu.window": "Logs", 141 "menu.window": "Logs",
142 "menu.window.close": "Aizvērt", 142 "menu.window.close": "Aizvērt",
143 "menu.window.minimize": "Minimit", 143 "menu.window.minimize": "SamazinÄt",
144 "menu.workspaces": "Darbvietas", 144 "menu.workspaces": "Darbvietas",
145 "menu.workspaces.addNewWorkspace": "Pievienot Jaunu Darbvirsmu...", 145 "menu.workspaces.addNewWorkspace": "Pievienot jaunu darbvietu...",
146 "menu.workspaces.closeWorkspaceDrawer": "Aizvērt Darbvirsmu sarakstu", 146 "menu.workspaces.closeWorkspaceDrawer": "Aizvērt darbvietu atvilktni",
147 "menu.workspaces.defaultWorkspace": "Visi pakalpojumi", 147 "menu.workspaces.defaultWorkspace": "Visi pakalpojumi",
148 "menu.workspaces.openWorkspaceDrawer": "Atvērt darbvirsmu sarakstu", 148 "menu.workspaces.openWorkspaceDrawer": "Atvērt darbvietu atvilktni",
149 "password.email.label": "E-pasta adrese", 149 "password.email.label": "E-pasta adrese",
150 "password.headline": "Atiestatīt paroli", 150 "password.headline": "Atiestatīt paroli",
151 "password.link.login": "Pieteikties savÄ kontÄ", 151 "password.link.login": "Pieteikties savÄ kontÄ",
@@ -166,7 +166,7 @@
166 "service.webviewLoader.loading": "IelÄdÄ“ {service}", 166 "service.webviewLoader.loading": "IelÄdÄ“ {service}",
167 "services.getStarted": "SÄksim", 167 "services.getStarted": "SÄksim",
168 "services.login": "LÅ«gums pieteikties, lai izmantotu Ferdium.", 168 "services.login": "LÅ«gums pieteikties, lai izmantotu Ferdium.",
169 "services.serverInfo": "PÄ“c izvÄ“les varat mainÄ«t savu Ferdium serveri, noklikÅ¡Ä·inot uz zobrata apakÅ¡Ä“jÄ kreisajÄ stÅ«rÄ«. Ja pÄrslÄ“dzaties (no viena no hosted serveriem) uz Ferdium bez konta, lÅ«dzu, ņemiet vÄ“rÄ, ka varat eksportÄ“t savus datus no Å¡Ä« servera un pÄ“c tam importÄ“t, izmantojot izvÄ“lni PalÄ«dzÄ«ba, lai atjaunotu visas savas darbvietas un konfigurÄ“tos pakalpojumus!", 169 "services.serverInfo": "PÄ“c izvÄ“les ir iespÄ“jams mainÄ«t Ferdium serveri, klikÅ¡Ä·inot uz zobrata apakÅ¡Ä“jÄ kreisajÄ stÅ«rÄ«. Ja pÄrej (no kÄda no izvietotajiem serveriem) uz Ferdium bez konta, lÅ«gums ņemt vÄ“rÄ, ka ir iespÄ“jams izgÅ«t savus datus no tÄ servera un pÄ“c tam tos ievietot paÅ¡reizÄ“jÄ, izmantojot palÄ«dzÄ«bas izvÄ“lni, lai atjaunotu visas savas darbvietas un pievienotos pakalpojumus.",
170 "services.serverless": "Izmantot Ferdium bez Konta", 170 "services.serverless": "Izmantot Ferdium bez Konta",
171 "settings.account.account.editButton": "Labot kontu", 171 "settings.account.account.editButton": "Labot kontu",
172 "settings.account.accountUnavailable": "Konts nav pieejams", 172 "settings.account.accountUnavailable": "Konts nav pieejams",
@@ -174,23 +174,23 @@
174 "settings.account.buttonSave": "Atjaunot profilu", 174 "settings.account.buttonSave": "Atjaunot profilu",
175 "settings.account.deleteAccount": "Dzēst kontu", 175 "settings.account.deleteAccount": "Dzēst kontu",
176 "settings.account.deleteEmailSent": "E-pastÄ ir nosÅ«tÄ«ta saite konta dzÄ“Å¡anas apstiprinÄÅ¡anai. Kontu un tÄ datus nevar atjaunot.", 176 "settings.account.deleteEmailSent": "E-pastÄ ir nosÅ«tÄ«ta saite konta dzÄ“Å¡anas apstiprinÄÅ¡anai. Kontu un tÄ datus nevar atjaunot.",
177 "settings.account.deleteInfo": "Ja tev vairs nevajag tavu Ferdium kontu, tu vari dzēst savu kontu un visus saistītos datus šeit.", 177 "settings.account.deleteInfo": "Ja Ferdium konts vairs nav nepieciešams, to un visus saistītos datus var izdzēst šeit.",
178 "settings.account.headline": "Konts", 178 "settings.account.headline": "Konts",
179 "settings.account.headlineAccount": "Konta informÄcija", 179 "settings.account.headlineAccount": "Konta informÄcija",
180 "settings.account.headlineDangerZone": "BÄ«stamÄ Zona", 180 "settings.account.headlineDangerZone": "BÄ«stamÄ Zona",
181 "settings.account.headlineInvoices": "RÄ“Ä·ini", 181 "settings.account.headlineInvoices": "RÄ“Ä·ini",
182 "settings.account.headlinePassword": "Mainīt paroli", 182 "settings.account.headlinePassword": "Mainīt paroli",
183 "settings.account.headlineProfile": "Atjaunot profilu", 183 "settings.account.headlineProfile": "Atjaunot profilu",
184 "settings.account.successInfo": "Tavas Izmaiņas tika saglabÄtas", 184 "settings.account.successInfo": "Izmaiņas tika saglabÄtas",
185 "settings.account.tryReloadServices": "Mēģini vēlreiz", 185 "settings.account.tryReloadServices": "Mēģini vēlreiz",
186 "settings.account.tryReloadUserInfoRequest": "Mēģini vēlreiz", 186 "settings.account.tryReloadUserInfoRequest": "Mēģini vēlreiz",
187 "settings.account.userInfoRequestFailed": "NeizdevÄs ielÄdÄ“t lietotÄja informÄciju", 187 "settings.account.userInfoRequestFailed": "NeizdevÄs ielÄdÄ“t lietotÄja informÄciju",
188 "settings.account.yourLicense": "Tava Ferdium licence:", 188 "settings.account.yourLicense": "Tava Ferdium licence:",
189 "settings.app.accentColorInfo": "Ieraksti savu krÄsu CSS-atbalstÄ«tÄ formÄtÄ. (NoklusÄ“juma: {defaultAccentColor} vai notÄ«ri ievades lauku)", 189 "settings.app.accentColorInfo": "Sava krÄsas izvÄ“le ir jÄieraksta CSS saderÄ«gÄ veidÄ. (NoklusÄ“jums: {defaultAccentColor} vai notÄ«rÄ«ts ievades lauks)",
190 "settings.app.buttonInstallUpdate": "PÄrsÄknÄ“t un uzstÄdÄ«t atjauninÄjumu", 190 "settings.app.buttonInstallUpdate": "PÄrsÄknÄ“t un uzstÄdÄ«t atjauninÄjumu",
191 "settings.app.buttonOpenFerdiumProfileFolder": "ParÄdÄ«t profila mapi", 191 "settings.app.buttonOpenFerdiumProfileFolder": "ParÄdÄ«t profila mapi",
192 "settings.app.buttonOpenFerdiumServiceRecipesFolder": "Atvērt Pakalpojumu Recepšu mapi", 192 "settings.app.buttonOpenFerdiumServiceRecipesFolder": "Atvērt Pakalpojumu Recepšu mapi",
193 "settings.app.buttonOpenImportExport": "Importēt / Eksportēt", 193 "settings.app.buttonOpenImportExport": "Ievietot / Izgūt",
194 "settings.app.buttonSearchForUpdate": "MeklÄ“t atjauninÄjumus", 194 "settings.app.buttonSearchForUpdate": "MeklÄ“t atjauninÄjumus",
195 "settings.app.buttonShowChangelog": "ParÄdÄ«t Izmaiņu žurnÄlu", 195 "settings.app.buttonShowChangelog": "ParÄdÄ«t Izmaiņu žurnÄlu",
196 "settings.app.cacheInfo": "Ferdium kešatmiņa pašreiz izmanto {size} diska vietas.", 196 "settings.app.cacheInfo": "Ferdium kešatmiņa pašreiz izmanto {size} diska vietas.",
@@ -198,8 +198,8 @@
198 "settings.app.closeSettings": "Aizvērt iestatījumus", 198 "settings.app.closeSettings": "Aizvērt iestatījumus",
199 "settings.app.currentVersion": "PaÅ¡reizÄ“jÄ versija:", 199 "settings.app.currentVersion": "PaÅ¡reizÄ“jÄ versija:",
200 "settings.app.form.accentColor": "Akcenta krÄsa", 200 "settings.app.form.accentColor": "Akcenta krÄsa",
201 "settings.app.form.adaptableDarkMode": "SinhronizÄ“t tumÅ¡o režīmu ar manas OS tumÅ¡Ä režīma iestatÄ«jumiem", 201 "settings.app.form.adaptableDarkMode": "Saskaņot tumÅ¡o izskatu ar operÄ“tÄjsistÄ“mas tumÅ¡Ä izskata iestatÄ«jumu",
202 "settings.app.form.alwaysShowWorkspaces": "VienmÄ“r rÄdÄ«t darbvirsmu sarakstu", 202 "settings.app.form.alwaysShowWorkspaces": "VienmÄ“r rÄdÄ«t darbvietu atvilktni",
203 "settings.app.form.autoLaunchInBackground": "AtvÄ“rt fonÄ", 203 "settings.app.form.autoLaunchInBackground": "AtvÄ“rt fonÄ",
204 "settings.app.form.autoLaunchOnStart": "Palaist Ferdium startējot datoru", 204 "settings.app.form.autoLaunchOnStart": "Palaist Ferdium startējot datoru",
205 "settings.app.form.automaticUpdates": "IeslÄ“gt atjauninÄjumus", 205 "settings.app.form.automaticUpdates": "IeslÄ“gt atjauninÄjumus",
@@ -208,7 +208,7 @@
208 "settings.app.form.closeToSystemTray": "AizvÄ“rt Ferdium sistÄ“mas ikonjoslÄ", 208 "settings.app.form.closeToSystemTray": "AizvÄ“rt Ferdium sistÄ“mas ikonjoslÄ",
209 "settings.app.form.confirmOnQuit": "ApstiprinÄt, kad aizverat Ferdium", 209 "settings.app.form.confirmOnQuit": "ApstiprinÄt, kad aizverat Ferdium",
210 "settings.app.form.customTodoServer": "PielÄgots darÄmÄ serveris", 210 "settings.app.form.customTodoServer": "PielÄgots darÄmÄ serveris",
211 "settings.app.form.darkMode": "Ieslēgt Tumšo Režīmu", 211 "settings.app.form.darkMode": "Iespējot tumšo izskatu",
212 "settings.app.form.enableGPUAcceleration": "IeslÄ“gt GPU PaÄtrinÄÅ¡anu", 212 "settings.app.form.enableGPUAcceleration": "IeslÄ“gt GPU PaÄtrinÄÅ¡anu",
213 "settings.app.form.enableGlobalHideShortcut": "IeslÄ“gt GlobÄlu saÄ«sni, lai paslÄ“ptu Ferdium", 213 "settings.app.form.enableGlobalHideShortcut": "IeslÄ“gt GlobÄlu saÄ«sni, lai paslÄ“ptu Ferdium",
214 "settings.app.form.enableLock": "Ieslēgt Aizslēgšanu ar Paroli", 214 "settings.app.form.enableLock": "Ieslēgt Aizslēgšanu ar Paroli",
@@ -223,11 +223,11 @@
223 "settings.app.form.hibernationStrategy": "HibernÄcijas stratÄ“Ä£ija", 223 "settings.app.form.hibernationStrategy": "HibernÄcijas stratÄ“Ä£ija",
224 "settings.app.form.hideCollapseButton": "Paslēpt sakļaušanas pogu", 224 "settings.app.form.hideCollapseButton": "Paslēpt sakļaušanas pogu",
225 "settings.app.form.hideDownloadButton": "Paslēpt lejupielĞu pogu", 225 "settings.app.form.hideDownloadButton": "Paslēpt lejupielĞu pogu",
226 "settings.app.form.hideNotificationsButton": "Paslēpt Paziņojumu & Skaņu pogu", 226 "settings.app.form.hideNotificationsButton": "Paslēpt paziņojumu un skaņu pogu",
227 "settings.app.form.hideRecipesButton": "Paslēpt Recepšu pogu", 227 "settings.app.form.hideRecipesButton": "Paslēpt Recepšu pogu",
228 "settings.app.form.hideSettingsButton": "Paslēpt Iestatījumu pogu", 228 "settings.app.form.hideSettingsButton": "Paslēpt Iestatījumu pogu",
229 "settings.app.form.hideSplitModeButton": "PaslÄ“pt SadalÄ«to režīmu", 229 "settings.app.form.hideSplitModeButton": "PaslÄ“pt sadalÄ«tÄ skata pogu",
230 "settings.app.form.hideWorkspacesButton": "Paslēpt Darbvirsmu Saraksta pogu", 230 "settings.app.form.hideWorkspacesButton": "Paslēpt darbvietu atvilktnes pogu",
231 "settings.app.form.iconSize": "Pakalpojuma ikonas izmērs", 231 "settings.app.form.iconSize": "Pakalpojuma ikonas izmērs",
232 "settings.app.form.inactivityLock": "Aizslēgt pēc ilgstošas prombūtnes", 232 "settings.app.form.inactivityLock": "Aizslēgt pēc ilgstošas prombūtnes",
233 "settings.app.form.keepAllWorkspacesLoaded": "PaturÄ“t visas darbvietas ielÄdÄ“tas", 233 "settings.app.form.keepAllWorkspacesLoaded": "PaturÄ“t visas darbvietas ielÄdÄ“tas",
@@ -255,11 +255,11 @@
255 "settings.app.form.showServiceName": "RÄdÄ«t pakalpojuma nosaukumu zem ikonas", 255 "settings.app.form.showServiceName": "RÄdÄ«t pakalpojuma nosaukumu zem ikonas",
256 "settings.app.form.sidebarServicesLocation": "SÄnjoslas Pakalpojumu Ikonu Novietojums", 256 "settings.app.form.sidebarServicesLocation": "SÄnjoslas Pakalpojumu Ikonu Novietojums",
257 "settings.app.form.splitColumns": "Kolonnu skaits", 257 "settings.app.form.splitColumns": "Kolonnu skaits",
258 "settings.app.form.splitMode": "Ieslēgt Sadalīto režīmu", 258 "settings.app.form.splitMode": "Iespējot sadalīto skatu",
259 "settings.app.form.startMinimized": "SÄkt minimizÄtu", 259 "settings.app.form.startMinimized": "Palaist samazinÄtu",
260 "settings.app.form.translatorEngine": "TulkotÄja nodroÅ¡inÄtÄjs", 260 "settings.app.form.translatorEngine": "TulkotÄja nodroÅ¡inÄtÄjs",
261 "settings.app.form.translatorLanguage": "NoklusÄ“juma tulkotÄja valoda", 261 "settings.app.form.translatorLanguage": "NoklusÄ“juma tulkotÄja valoda",
262 "settings.app.form.universalDarkMode": "IeslÄ“gt univerlo TumÅ¡o Režīmu", 262 "settings.app.form.universalDarkMode": "IespÄ“jot vispÄrÄ“jo tumÅ¡o izskatu",
263 "settings.app.form.useGrayscaleServices": "Izmantot pelēktoņu pakalpojumu ikonas", 263 "settings.app.form.useGrayscaleServices": "Izmantot pelēktoņu pakalpojumu ikonas",
264 "settings.app.form.useHorizontalStyle": "Lietot horizontÄlu stilu", 264 "settings.app.form.useHorizontalStyle": "Lietot horizontÄlu stilu",
265 "settings.app.form.useTouchIdToUnlock": "AtļÄut izmantot Touch ID, lai atbloÄ·Ä“tu Ferdium", 265 "settings.app.form.useTouchIdToUnlock": "AtļÄut izmantot Touch ID, lai atbloÄ·Ä“tu Ferdium",
@@ -274,9 +274,9 @@
274 "settings.app.headlinePrivacy": "PrivÄtums", 274 "settings.app.headlinePrivacy": "PrivÄtums",
275 "settings.app.headlineServices": "Pakalpojumi", 275 "settings.app.headlineServices": "Pakalpojumi",
276 "settings.app.headlineUpdates": "AtjauninÄjumi", 276 "settings.app.headlineUpdates": "AtjauninÄjumi",
277 "settings.app.hibernateInfo": "PÄ“c noklusÄ“juma, Ferdium paturÄ“s visus pakalpojumu atvÄ“rtus un ielÄdÄ“tus fonÄ, lai tie vienmÄ“r bÅ«tu gatavi darbam. Pakalpojuma HibernÄcija izslÄ“gs pakalpojumus pÄ“c specifiska laika. Å is ir noderÄ«gi, lai ietaupÄ«tu RAM vai atturÄ“tu pakalpojumus no datora palÄ“ninÄÅ¡anas.", 277 "settings.app.hibernateInfo": "PÄ“c noklusÄ“juma Ferdium paturÄ“s visus pakalpojumus atvÄ“rtus un ielÄdÄ“tus fonÄ, lai tie bÅ«tu gatavi, kad ir vajadzÄ«ba tos izmantot. Pakalpojuma hibernÄcija izslÄ“gs pakalpojumus pÄ“c noteikta laika. Tas ir noderÄ«gi, lai ietaupÄ«tu RAM vai atturÄ“tu pakalpojumus no datora pelÄ“ninÄÅ¡anas.",
278 "settings.app.inactivityLockInfo": "NeaktÄ«vo minÅ«Å¡u skaits, pÄ“c kurÄm Ferdium automÄtiski aizslÄ“gsies. Izmanto 0, lai atslÄ“gtu", 278 "settings.app.inactivityLockInfo": "NeaktÄ«vo minÅ«Å¡u skaits, pÄ“c kurÄm Ferdium automÄtiski aizslÄ“gsies. Izmanto 0, lai atslÄ“gtu",
279 "settings.app.lockInfo": "Paroles AizslÄ“gÅ¡ana ļauj tev aizsargÄt savas ziņas.\nIzmantojot Paroles AizslÄ“gÅ¡anu, tev tiks pieprasÄ«ta parole katru reizi, kad tu atver Ferdium, vai aizslÄ“dz Ferdium pats, izmantojot slÄ“dzenes simbolu kreisajÄ, apakÅ¡Ä“jÄ stÅ«rÄ« vai arÄ« ar {lockShortcut} saÄ«sni.", 279 "settings.app.lockInfo": "AizslÄ“gÅ¡ana ar paroli ļauj aizsargÄt ziņojumus.\nAr aizslÄ“gÅ¡anu ar paroli tiks vaicÄts ievadÄ«t paroli katru reizi, kad Ferdium tiek sÄknÄ“ts vai paÅ¡rocÄ«gi aizslÄ“gts ar slÄ“dzenes zimi apakÅ¡Ä“jÄ kreisajÄ stÅ«rÄ« vai saÄ«sni {lockShortcut}.",
280 "settings.app.lockedPassword": "Parole", 280 "settings.app.lockedPassword": "Parole",
281 "settings.app.lockedPasswordInfo": "LÅ«dzu, pÄrliecinies, ka ievadi paroli, kuru atcerÄ“sies.\nJa tu pazaudÄ“si Å¡o paroli, tev vajadzÄ“s pÄrinstalÄ“t Ferdium.", 281 "settings.app.lockedPasswordInfo": "LÅ«dzu, pÄrliecinies, ka ievadi paroli, kuru atcerÄ“sies.\nJa tu pazaudÄ“si Å¡o paroli, tev vajadzÄ“s pÄrinstalÄ“t Ferdium.",
282 "settings.app.overallTheme": "VispÄrÄ“jÄ TÄ“ma", 282 "settings.app.overallTheme": "VispÄrÄ“jÄ TÄ“ma",
@@ -300,7 +300,7 @@
300 "settings.app.subheadlineCache": "Kešatmiņa", 300 "settings.app.subheadlineCache": "Kešatmiņa",
301 "settings.app.subheadlineFerdiumProfile": "Ferdium Profils", 301 "settings.app.subheadlineFerdiumProfile": "Ferdium Profils",
302 "settings.app.todoServerInfo": "Å is serveris tiks izmantots \"Ferdium darÄmais\" iespÄ“jai.", 302 "settings.app.todoServerInfo": "Å is serveris tiks izmantots \"Ferdium darÄmais\" iespÄ“jai.",
303 "settings.app.translationHelp": "PalÄ«dzi mums pÄrtulkot Ferdium savÄ valodÄ.", 303 "settings.app.translationHelp": "PalÄ«dzi mums pÄrtulkot Ferdium savÄ valodÄ!",
304 "settings.app.universalDarkModeInfo": "UniversÄlais TumÅ¡ais Režīms mÄ“Ä£ina dinamiski Ä£enerÄ“t tumÅ¡Ä režīma stilus priekÅ¡ pakalpojumiem, kas tos savÄdÄk neatbalsta.", 304 "settings.app.universalDarkModeInfo": "UniversÄlais TumÅ¡ais Režīms mÄ“Ä£ina dinamiski Ä£enerÄ“t tumÅ¡Ä režīma stilus priekÅ¡ pakalpojumiem, kas tos savÄdÄk neatbalsta.",
305 "settings.app.updateStatusAvailable": "AtjauninÄjums pieejams, lejupielÄdÄ“...", 305 "settings.app.updateStatusAvailable": "AtjauninÄjums pieejams, lejupielÄdÄ“...",
306 "settings.app.updateStatusSearching": "MeklÄ“ atjauninÄjumus...", 306 "settings.app.updateStatusSearching": "MeklÄ“ atjauninÄjumus...",
@@ -312,20 +312,20 @@
312 "settings.navigation.releaseNotes": "InformÄcija par laidienu", 312 "settings.navigation.releaseNotes": "InformÄcija par laidienu",
313 "settings.navigation.supportFerdium": "Par Ferdium", 313 "settings.navigation.supportFerdium": "Par Ferdium",
314 "settings.navigation.team": "PÄrvaldÄ«t Komandu", 314 "settings.navigation.team": "PÄrvaldÄ«t Komandu",
315 "settings.navigation.yourServices": "Tavi pakalpojumi", 315 "settings.navigation.yourServices": "Mani pakalpojumi",
316 "settings.navigation.yourWorkspaces": "Tavas darbvietas", 316 "settings.navigation.yourWorkspaces": "Manas darbvietas",
317 "settings.recipes.all": "Visi pakalpojumi", 317 "settings.recipes.all": "Visi pakalpojumi",
318 "settings.recipes.custom": "PielÄgotie Pakalpojumi", 318 "settings.recipes.custom": "PielÄgotie Pakalpojumi",
319 "settings.recipes.customService.headline.communityRecipes": "Kopienas Trešo Pušu Receptes", 319 "settings.recipes.customService.headline.communityRecipes": "Kopienas Trešo Pušu Receptes",
320 "settings.recipes.customService.headline.customRecipes": "PielÄgotÄs TreÅ¡o PuÅ¡u Receptes", 320 "settings.recipes.customService.headline.customRecipes": "PielÄgotÄs TreÅ¡o PuÅ¡u Receptes",
321 "settings.recipes.customService.headline.devRecipes": "Tavas IzstrÄdes Pakalpojumu Receptes", 321 "settings.recipes.customService.headline.devRecipes": "Manas izstrÄdes pakalpojumu receptes",
322 "settings.recipes.customService.intro": "Lai pievienotu pielÄgotu pakalpojumu, kopÄ“ pakalpojuma receptes mapi iekÅ¡Ä:", 322 "settings.recipes.customService.intro": "Lai pievienotu pielÄgotu pakalpojumu, kopÄ“ pakalpojuma receptes mapi iekÅ¡Ä:",
323 "settings.recipes.customService.openDevDocs": "IzstrÄdÄtÄja DokumentÄcija", 323 "settings.recipes.customService.openDevDocs": "IzstrÄdÄtÄja rokasgrÄmata",
324 "settings.recipes.customService.openFolder": "Atvērt mapi", 324 "settings.recipes.customService.openFolder": "Atvērt mapi",
325 "settings.recipes.ferdiumPicks": "Ferdium Izvēle", 325 "settings.recipes.ferdiumPicks": "Ferdium Izvēle",
326 "settings.recipes.headline": "Pieejamie pakalpojumi", 326 "settings.recipes.headline": "Pieejamie pakalpojumi",
327 "settings.recipes.missingService": "Trūkst pakalpojuma?", 327 "settings.recipes.missingService": "Trūkst pakalpojuma?",
328 "settings.recipes.nothingFound": "Atvaino, bet neviens pakalpojums netika atrast - tu to tÄ pat vari pievienot izmantojot \"Custom MÄjaslapa\" opciju. Å…em vÄ“rÄ, ka mÄjaslapa var uzrÄdÄ«t vairÄk pakalpojumus, kuri tika pievienoti Ferdium jaunÄkÄ versijÄ nekÄ tev patreiz ir. Lai iegÅ«tu tos jaunos pakalpojumus, lÅ«dzu, atjaunini Ferdium uz jaunÄku versiju.", 328 "settings.recipes.nothingFound": "Atvaino, bet neviens pakalpojums neatbilst meklÄ“Å¡anas nosacÄ«jumiem, bet to joprojÄm ir iespÄ“jams pievienot ar \"PielÄgota tÄ«mekļa vietne\" iespÄ“ju. LÅ«gums ņemt vÄ“rÄ, ka tÄ«mekļa vietne var uzrÄdÄ«t vairÄk pakalpojumu, kas tika pievienoti Ferdium kopÅ¡ paÅ¡reiz izmantotÄs versijas. Lai iegÅ«tu jaunos pakalpojumus, lÅ«gums apsvÄ“rt atjaunot uz jaunÄku Ferdium versiju.",
329 "settings.recipes.servicesSuccessfulAddedInfo": "Pakalpojums veiksmīgi pievienots", 329 "settings.recipes.servicesSuccessfulAddedInfo": "Pakalpojums veiksmīgi pievienots",
330 "settings.releasenotes.connectionError": "Notika kļūme savienojoties ar Github, lÅ«dzu, mÄ“Ä£ini vÄ“lreiz vÄ“lÄk.", 330 "settings.releasenotes.connectionError": "Notika kļūme savienojoties ar Github, lÅ«dzu, mÄ“Ä£ini vÄ“lreiz vÄ“lÄk.",
331 "settings.releasenotes.connectionErrorPageMissing": "Notika kļūme savienojoties ar Github. Lapa, kuru tu meklē, netika atrasta.", 331 "settings.releasenotes.connectionErrorPageMissing": "Notika kļūme savienojoties ar Github. Lapa, kuru tu meklē, netika atrasta.",
@@ -345,7 +345,7 @@
345 "settings.service.form.editServiceHeadline": "Labot {name}", 345 "settings.service.form.editServiceHeadline": "Labot {name}",
346 "settings.service.form.enableAudio": "Ieslēgt audio", 346 "settings.service.form.enableAudio": "Ieslēgt audio",
347 "settings.service.form.enableBadge": "RÄdÄ«t nelasÄ«to ziņu nozÄ«mi", 347 "settings.service.form.enableBadge": "RÄdÄ«t nelasÄ«to ziņu nozÄ«mi",
348 "settings.service.form.enableDarkMode": "Ieslēgt Tumšo Režīmu", 348 "settings.service.form.enableDarkMode": "Iespējot tumšo izskatu",
349 "settings.service.form.enableHibernation": "IeslÄ“gt HibernÄciju", 349 "settings.service.form.enableHibernation": "IeslÄ“gt HibernÄciju",
350 "settings.service.form.enableMediaBadge": "IespÄ“jot atskaņoÅ¡anas rÄdÄ«tÄju", 350 "settings.service.form.enableMediaBadge": "IespÄ“jot atskaņoÅ¡anas rÄdÄ«tÄju",
351 "settings.service.form.enableNotification": "Ieslēgt paziņojumus", 351 "settings.service.form.enableNotification": "Ieslēgt paziņojumus",
@@ -359,14 +359,14 @@
359 "settings.service.form.headlineNotifications": "Paziņojumi", 359 "settings.service.form.headlineNotifications": "Paziņojumi",
360 "settings.service.form.icon": "PielÄgota ikona", 360 "settings.service.form.icon": "PielÄgota ikona",
361 "settings.service.form.iconDelete": "Dzēst", 361 "settings.service.form.iconDelete": "Dzēst",
362 "settings.service.form.iconUpload": "Ievelc savu attÄ“lu, vai spied Å¡eit", 362 "settings.service.form.iconUpload": "JÄievelk attÄ“ls vai jÄklikÅ¡Ä·ina Å¡eit",
363 "settings.service.form.indirectMessageInfo": "Tiks paziņots par visÄm plÅ«smas jaunajÄm ziņÄm, ne tikai @username, @channel, @here, ...", 363 "settings.service.form.indirectMessageInfo": "Tiks paziņots par visÄm plÅ«smas jaunajÄm ziņÄm, ne tikai @username, @channel, @here, ...",
364 "settings.service.form.indirectMessages": "RÄdÄ«t ziņu nozÄ«mi visÄm jaunÄm ziņÄm", 364 "settings.service.form.indirectMessages": "RÄdÄ«t ziņu nozÄ«mi visÄm jaunÄm ziņÄm",
365 "settings.service.form.isHibernatedEnabledInfo": "Kad iespējots, pakalpojums tik izslēgts pēc noteikta laika posma, lai taupītu sistēmas resursus.", 365 "settings.service.form.isHibernatedEnabledInfo": "Kad iespējots, pakalpojums tik izslēgts pēc noteikta laika posma, lai taupītu sistēmas resursus.",
366 "settings.service.form.isMutedInfo": "Kad izslēgts, visas paziņojuma skaņas un audio atskaņošana ir noklusēta", 366 "settings.service.form.isMutedInfo": "Kad izslēgts, visas paziņojuma skaņas un audio atskaņošana ir noklusēta",
367 "settings.service.form.maxFileSize": "MaksimÄlais faila izmÄ“rs:", 367 "settings.service.form.maxFileSize": "MaksimÄlais faila izmÄ“rs:",
368 "settings.service.form.maxFileSizeError": "Fails, ko mÄ“Ä£ini ievietot, ir pÄrÄk liels.", 368 "settings.service.form.maxFileSizeError": "Fails, ko mÄ“Ä£ini ievietot, ir pÄrÄk liels.",
369 "settings.service.form.name": "VÄrds", 369 "settings.service.form.name": "Nosaukums",
370 "settings.service.form.onlyShowFavoritesInUnreadCount": "RÄdÄ«t tikai FavorÄ«tus nelasÄ«to skaitÄ", 370 "settings.service.form.onlyShowFavoritesInUnreadCount": "RÄdÄ«t tikai FavorÄ«tus nelasÄ«to skaitÄ",
371 "settings.service.form.openDarkmodeCss": "Atvērt darkmode.css", 371 "settings.service.form.openDarkmodeCss": "Atvērt darkmode.css",
372 "settings.service.form.openUserCss": "Atvērt user.css", 372 "settings.service.form.openUserCss": "Atvērt user.css",
@@ -379,35 +379,35 @@
379 "settings.service.form.proxy.port": "Ports", 379 "settings.service.form.proxy.port": "Ports",
380 "settings.service.form.proxy.restartInfo": "LÅ«gums pÄrsÄknÄ“t Ferdium pÄ“c starpniekservera iestatÄ«jumu izmainÄ«Å¡anas.", 380 "settings.service.form.proxy.restartInfo": "LÅ«gums pÄrsÄknÄ“t Ferdium pÄ“c starpniekservera iestatÄ«jumu izmainÄ«Å¡anas.",
381 "settings.service.form.proxy.user": "LietotÄjs (neobligÄts)", 381 "settings.service.form.proxy.user": "LietotÄjs (neobligÄts)",
382 "settings.service.form.recipeFileInfo": "Tavi lietotÄja faili tiks ievietoti mÄjaslapÄ, lai vari pielÄgot pakalpojumu kÄ vien vÄ“lies. LietotÄja faili tiek glabÄti lokÄi un netiek pÄrvietoti uz citiem datoriem, izmantojot to paÅ¡u kontu.", 382 "settings.service.form.recipeFileInfo": "LietotÄja datnes tiks ievietotas tÄ«mekļa lapÄ, lai varÄ“tu pielÄgot pakalpojumus pÄ“c saviem ieskatiem. LietotÄja datnes tiek glabÄtas tikai vietÄ“ji un netiek nosÅ«tÄ«tas uz citiem datoriem, kuros tiek izmantots tas pats konts.",
383 "settings.service.form.saveButton": "SaglabÄt pakalpojumu", 383 "settings.service.form.saveButton": "SaglabÄt pakalpojumu",
384 "settings.service.form.tabHosted": "Hosted", 384 "settings.service.form.tabHosted": "Izvietots",
385 "settings.service.form.tabOnPremise": "Self hosted â­ï¸", 385 "settings.service.form.tabOnPremise": "PaÅ¡izvietots â­ï¸",
386 "settings.service.form.team": "Komanda", 386 "settings.service.form.team": "Komanda",
387 "settings.service.form.trapLinkClicks": "Atvērt saites ar Ferdium", 387 "settings.service.form.trapLinkClicks": "Atvērt saites ar Ferdium",
388 "settings.service.form.useHostedService": "Izmanto hosted {name} pakalpojumu.", 388 "settings.service.form.useHostedService": "Izmanto izvietotu {name} pakalpojumu.",
389 "settings.service.form.yourServices": "Tavi pakalpojumi", 389 "settings.service.form.yourServices": "Mani pakalpojumi",
390 "settings.service.reloadRequired": "PÄ“c izmaiņu veikÅ¡nas ir nepiecieÅ¡ams pÄrlÄdÄ“t pakalpojumu", 390 "settings.service.reloadRequired": "PÄ“c izmaiņu veikÅ¡nas ir nepiecieÅ¡ams pÄrlÄdÄ“t pakalpojumu",
391 "settings.services.deletedInfo": "Pakalpojums tika dzēsts", 391 "settings.services.deletedInfo": "Pakalpojums tika dzēsts",
392 "settings.services.discoverServices": "AtklÄj pakalpojumus", 392 "settings.services.discoverServices": "AtklÄj pakalpojumus",
393 "settings.services.headline": "Tavi pakalpojumi", 393 "settings.services.headline": "Mani pakalpojumi",
394 "settings.services.noServicesAdded": "SÄc ar pakalpojuma pievienoÅ¡anu.", 394 "settings.services.noServicesAdded": "SÄc ar pakalpojuma pievienoÅ¡anu.",
395 "settings.services.nothingFound": "Atvainojamies, bet neviens pakalpojums neatbilst meklēšanas nosacījumiem.", 395 "settings.services.nothingFound": "Atvainojamies, bet neviens pakalpojums neatbilst meklēšanas nosacījumiem.",
396 "settings.services.servicesRequestFailed": "NeizdevÄs ielÄdÄ“t tavus pakalpojumus", 396 "settings.services.servicesRequestFailed": "NeizdevÄs ielÄdÄ“t pakalpojumus",
397 "settings.services.tooltip.isDisabled": "Pakalpojums ir atslēgts", 397 "settings.services.tooltip.isDisabled": "Pakalpojums ir atslēgts",
398 "settings.services.tooltip.isMuted": "Visas skaņas ir apklusinÄtas", 398 "settings.services.tooltip.isMuted": "Visas skaņas ir apklusinÄtas",
399 "settings.services.tooltip.notificationsDisabled": "Paziņojumi ir atslēgti", 399 "settings.services.tooltip.notificationsDisabled": "Paziņojumi ir atslēgti",
400 "settings.services.updatedInfo": "Tavas Izmaiņas tika saglabÄtas", 400 "settings.services.updatedInfo": "Izmaiņas tika saglabÄtas",
401 "settings.supportFerdium.about": "Ferdium izstrÄdi veic lÄ«dzstrÄdnieki. Cilveki, kas izmanto Ferdium, kÄ tu. Viņi uztur, labo un uzlabo Ferdium savÄ brÄ«vajÄ laikÄ.", 401 "settings.supportFerdium.about": "Ferdium izstrÄdi veic lÄ«dzstrÄdnieki. Cilveki, kas izmanto Ferdium, kÄ tu. Viņi uztur, labo un uzlabo Ferdium savÄ brÄ«vajÄ laikÄ.",
402 "settings.supportFerdium.aboutIntro": "ĪpaÅ¡s paldies jÄsaka Å¡iem lieliskajiem cilvÄ“kiem:", 402 "settings.supportFerdium.aboutIntro": "ĪpaÅ¡s paldies jÄsaka Å¡iem lieliskajiem cilvÄ“kiem:",
403 "settings.supportFerdium.headline": "Par Ferdium", 403 "settings.supportFerdium.headline": "Par Ferdium",
404 "settings.team.contentHeadline": "Franz Komandas Vadība", 404 "settings.team.contentHeadline": "Franz Komandas Vadība",
405 "settings.team.copy": "Franz Komandas menedžments ļauj jums menedžēt savu Franz Abonomentu vairÄkiem lietotÄjiem. LÅ«dzu, ņem verÄ, ka Franz Premium abonoments tev nesniegs nekÄdas priekÅ¡rocÄ«bas izmantojot Ferdium: VienÄ«gais iemesls, kÄpÄ“c tev vÄ“l ir piekļuve Komandu Menedžmentam ir, lai tu varÄ“tu menedžēt savas vecÄs Franz Komandas un nezaudÄ“tu nekÄdu funckionalitÄti menedžējot savu kontu.", 405 "settings.team.copy": "Franz Komandu pÄrvaldÄ«ba ļauj pÄrvaldÄ«t Franz abonementus vairÄkiem lietotÄjiem. LÅ«gums paturÄ“t prÄtÄ, ka Franz Premium abonements nesniegs nekÄdas priekÅ¡rocÄ«bas Ferdium izmantoÅ¡anÄ: vienÄ«gais iemesls, kÄdēļ vÄ“l ir piekļuve Komandu pÄrvaldÄ«bai, ir, lai bÅ«tu iespÄ“ja pÄrvaldÄ«t savas novecojuÅ¡Äs Franz komandas un lai netiktu zaudÄ“tas sava konta pÄrvaldÄ«bas iespÄ“jas.",
406 "settings.team.headline": "Komanda", 406 "settings.team.headline": "Komanda",
407 "settings.team.intro": "Tu patreiz izmanto Franz Serverus. TÄpÄ“c tev ir piekļuve Komandu PÄrvaldÄ«bai.", 407 "settings.team.intro": "Tu patreiz izmanto Franz Serverus. TÄpÄ“c tev ir piekļuve Komandu PÄrvaldÄ«bai.",
408 "settings.team.manageAction": "PÄrvaldi savu komandu iekÅ¡ meetfranz.com", 408 "settings.team.manageAction": "Sava komanda ir pÄrvaldÄma meetfranz.com",
409 "settings.team.teamsUnavailable": "Komandas nav pieejamas", 409 "settings.team.teamsUnavailable": "Komandas nav pieejamas",
410 "settings.team.teamsUnavailableInfo": "Komandas patreiz ir pieejamas, izmantojot tikai Franz Serveri un maksÄjot par Franz Professional. LÅ«dzu, nomaini savu serveri uz https://api.franzinfra.com, lai izmantotu komandas.", 410 "settings.team.teamsUnavailableInfo": "Komandas paÅ¡reiz ir pieejams tikai tad, kad tiek izmantots Franz serveris un kad ir samaksÄts par Franz Professional. LÅ«gums nomainÄ«t serveri uz https://api.franzinfra.com, lai izmantotu komandas.",
411 "settings.team.tryReloadUserInfoRequest": "MÄ“Ä£ini pÄrlÄdÄ“t", 411 "settings.team.tryReloadUserInfoRequest": "MÄ“Ä£ini pÄrlÄdÄ“t",
412 "settings.team.userInfoRequestFailed": "LietotÄja informÄcija pieprasÄ«jums neizdevÄs", 412 "settings.team.userInfoRequestFailed": "LietotÄja informÄcija pieprasÄ«jums neizdevÄs",
413 "settings.user.form.accountType.company": "Uzņēmums", 413 "settings.user.form.accountType.company": "Uzņēmums",
@@ -419,36 +419,36 @@
419 "settings.user.form.firstname": "VÄrds", 419 "settings.user.form.firstname": "VÄrds",
420 "settings.user.form.lastname": "UzvÄrds", 420 "settings.user.form.lastname": "UzvÄrds",
421 "settings.user.form.newPassword": "Jauna parole", 421 "settings.user.form.newPassword": "Jauna parole",
422 "settings.workspace.add.form.name": "VÄrds", 422 "settings.workspace.add.form.name": "Nosaukums",
423 "settings.workspace.add.form.submitButton": "Izveidot jaunu darbvirsmu", 423 "settings.workspace.add.form.submitButton": "Izveidot darbvietu",
424 "settings.workspace.form.buttonDelete": "Dzēst darbvirsmu", 424 "settings.workspace.form.buttonDelete": "Izdzēst darbvietu",
425 "settings.workspace.form.buttonSave": "SaglabÄt darbvirsmu", 425 "settings.workspace.form.buttonSave": "SaglabÄt darbvietu",
426 "settings.workspace.form.keepLoaded": "PaturÄ“t Å¡o darbvirsmu ielÄdÄ“tu*", 426 "settings.workspace.form.keepLoaded": "PaturÄ“t Å¡o darbvietu ielÄdÄ“tu*",
427 "settings.workspace.form.keepLoadedInfo": "*Å o iespÄ“ju pÄrrakstÄ«s vispÄrÄ“jais iestatÄ«jums \"PaturÄ“t visas darbietas ielÄdÄ“tas\".", 427 "settings.workspace.form.keepLoadedInfo": "*Å o iespÄ“ju pÄrrakstÄ«s vispÄrÄ“jais iestatÄ«jums \"PaturÄ“t visas darbvietas ielÄdÄ“tas\".",
428 "settings.workspace.form.name": "VÄrds", 428 "settings.workspace.form.name": "Nosaukums",
429 "settings.workspace.form.servicesInWorkspaceHeadline": "Pakalpojumi Å¡ajÄ DarbvirsmÄ", 429 "settings.workspace.form.servicesInWorkspaceHeadline": "Å Ä«s darbvietas pakalpojumi",
430 "settings.workspace.form.yourWorkspaces": "Tavas darbvietas", 430 "settings.workspace.form.yourWorkspaces": "Manas darbvietas",
431 "settings.workspaces.deletedInfo": "Darbvirsma tika dzēsta", 431 "settings.workspaces.deletedInfo": "Darbvieta tika izdzēsta",
432 "settings.workspaces.headline": "Tavas darbvietas", 432 "settings.workspaces.headline": "Manas darbvietas",
433 "settings.workspaces.noWorkspacesAdded": "Tu vēl neesi izveidojis nevienu darbvirsmu.", 433 "settings.workspaces.noWorkspacesAdded": "Vēl nav izveidota neviena darbvieta.",
434 "settings.workspaces.tryReloadWorkspaces": "MÄ“Ä£ini vÄ“lreiz", 434 "settings.workspaces.tryReloadWorkspaces": "MÄ“Ä£inÄt vÄ“lreiz",
435 "settings.workspaces.updatedInfo": "Tavas Izmaiņas tika saglabÄtas", 435 "settings.workspaces.updatedInfo": "Izmaiņas tika saglabÄtas",
436 "settings.workspaces.workspaceFeatureHeadline": "Mazak ir VairÄk: IepazÄ«stinam ar Ferdium DarbvirsmÄm", 436 "settings.workspaces.workspaceFeatureHeadline": "Mazak ir vairÄk: iepazÄ«stinÄm ar Ferdium darbvietÄm",
437 "settings.workspaces.workspaceFeatureInfo": "Ferdium darbvietas ļauj pievÄ“rst uzmanÄ«bu tam, kas ir svarÄ«gs tieÅ¡i Å¡obrÄ«d. Iestati vairÄkas pakalpojumu kopas un viegli pÄrslÄ“dzies starp tÄm jebkurÄ brÄ«dÄ«! Tu izlem, kuri pakalpojumi ir nepiecieÅ¡ami kad un kur, lai mÄ“s varam palÄ«dzÄ“t Tev bÅ«t virsotnÄ“, vai arÄ« vari vienkÄrÅ¡i atslÄ“gties no darba, kad vien vÄ“lies.", 437 "settings.workspaces.workspaceFeatureInfo": "Ferdium darbvietas ļauj pievÄ“rst uzmanÄ«bu tam, kas ir svarÄ«gs tieÅ¡i Å¡obrÄ«d. Iestati vairÄkas pakalpojumu kopas un viegli pÄrslÄ“dzies starp tÄm jebkurÄ brÄ«dÄ«! Tu izlem, kuri pakalpojumi ir nepiecieÅ¡ami kad un kur, lai mÄ“s varam palÄ«dzÄ“t Tev bÅ«t virsotnÄ“, vai arÄ« vari vienkÄrÅ¡i atslÄ“gties no darba, kad vien vÄ“lies.",
438 "settings.workspaces.workspacesRequestFailed": "NeizdevÄs ielÄdÄ“t Tavas darbvietas", 438 "settings.workspaces.workspacesRequestFailed": "NeizdevÄs ielÄdÄ“t darbvietas",
439 "setupAssistant.headline": "SÄkam", 439 "setupAssistant.headline": "SÄkam",
440 "setupAssistant.skip.label": "Izlaist", 440 "setupAssistant.skip.label": "Izlaist",
441 "setupAssistant.subheadline": "IzvÄ“lies kÄdu no mÅ«su visbiežÄk izmantotÄkajiem pakalpojumiem un esi komunikÄcijas augÅ¡galÄ tagad.", 441 "setupAssistant.subheadline": "JÄizvÄ“las no mÅ«su visizmantotÄkajiem pakalpojumiem, lai atgrieztos savas saziņas virsotnÄ“.",
442 "setupAssistant.submit.label": "Aiziet", 442 "setupAssistant.submit.label": "Aiziet",
443 "sidebar.addNewService": "Pievienot jaunu pakalpojumu", 443 "sidebar.addNewService": "Pievienot jaunu pakalpojumu",
444 "sidebar.closeTodosDrawer": "AizvÄ“rt Ferdium darÄmo", 444 "sidebar.closeTodosDrawer": "AizvÄ“rt Ferdium darÄmo",
445 "sidebar.closeWorkspaceDrawer": "Aizvērt Darbvirsmu sarakstu", 445 "sidebar.closeWorkspaceDrawer": "Aizvērt darbvietu atvilktni",
446 "sidebar.lockFerdium": "Aizslēgt Ferdium", 446 "sidebar.lockFerdium": "Aizslēgt Ferdium",
447 "sidebar.muteApp": "Izslēgt paziņojumus & audio", 447 "sidebar.muteApp": "Atspējot paziņojumus un skaņu",
448 "sidebar.openTodosDrawer": "AtvÄ“rt Ferdium darÄmo", 448 "sidebar.openTodosDrawer": "AtvÄ“rt Ferdium darÄmo",
449 "sidebar.openWorkspaceDrawer": "Atvērt darbvirsmu sarakstu", 449 "sidebar.openWorkspaceDrawer": "Atvērt darbvietu atvilktni",
450 "sidebar.splitModeToggle": "SadalÄ«tÄ Režīma PÄrslÄ“gÅ¡ana", 450 "sidebar.splitModeToggle": "SadalÄ«tÄ Režīma PÄrslÄ“gÅ¡ana",
451 "sidebar.unmuteApp": "Ieslēgt paziņojumus & audio", 451 "sidebar.unmuteApp": "Iespējot paziņojumus un skaņu",
452 "signup.company.label": "Uzņēmums", 452 "signup.company.label": "Uzņēmums",
453 "signup.email.label": "E-pasta adrese", 453 "signup.email.label": "E-pasta adrese",
454 "signup.emailDuplicate": "Jau pastÄv lietotÄjs ar tÄdu e-pasta adresi", 454 "signup.emailDuplicate": "Jau pastÄv lietotÄjs ar tÄdu e-pasta adresi",
@@ -456,19 +456,19 @@
456 "signup.headline": "Reģistrēties", 456 "signup.headline": "Reģistrēties",
457 "signup.lastname.label": "UzvÄrds", 457 "signup.lastname.label": "UzvÄrds",
458 "signup.legal.info": "Ar Ferdium konta izveidošanu tiek piekrists", 458 "signup.legal.info": "Ar Ferdium konta izveidošanu tiek piekrists",
459 "signup.legal.privacy": "KonfidencialitÄtes Paziņojums", 459 "signup.legal.privacy": "PrivÄtuma paskaidrojums",
460 "signup.legal.terms": "Lietošanas noteikumi", 460 "signup.legal.terms": "Pakalpojuma izmantošanas noteikumi",
461 "signup.link.login": "Jau ir konts, pieteikties?", 461 "signup.link.login": "Jau ir konts, pieteikties?",
462 "signup.password.label": "Parole", 462 "signup.password.label": "Parole",
463 "signup.submit.label": "Izveidot kontu", 463 "signup.submit.label": "Izveidot kontu",
464 "tabs.item.confirmDeleteService": "Vai tieÅ¡Äm vÄ“lies dzÄ“st {serviceName} pakalpojumu?", 464 "tabs.item.confirmDeleteService": "Vai tieÅ¡Äm vÄ“lies dzÄ“st {serviceName} pakalpojumu?",
465 "tabs.item.deleteService": "Dzēst pakalpojumu", 465 "tabs.item.deleteService": "Dzēst pakalpojumu",
466 "tabs.item.disableAudio": "Izslēgt audio", 466 "tabs.item.disableAudio": "Izslēgt audio",
467 "tabs.item.disableDarkMode": "Izslēgt Tumšo Režīmu", 467 "tabs.item.disableDarkMode": "Atspējot tumšo izskatu",
468 "tabs.item.disableNotifications": "Izslēgt paziņojumus", 468 "tabs.item.disableNotifications": "Izslēgt paziņojumus",
469 "tabs.item.disableService": "Izslēgt pakalpojumu", 469 "tabs.item.disableService": "Izslēgt pakalpojumu",
470 "tabs.item.enableAudio": "Ieslēgt audio", 470 "tabs.item.enableAudio": "Ieslēgt audio",
471 "tabs.item.enableDarkMode": "Ieslēgt Tumšo Režīmu", 471 "tabs.item.enableDarkMode": "Iespējot tumšo izskatu",
472 "tabs.item.enableNotification": "Ieslēgt paziņojumus", 472 "tabs.item.enableNotification": "Ieslēgt paziņojumus",
473 "tabs.item.enableService": "Ieslēgt pakalpojumu", 473 "tabs.item.enableService": "Ieslēgt pakalpojumu",
474 "tabs.item.hibernateService": "Hibernēt pakalpojumu", 474 "tabs.item.hibernateService": "Hibernēt pakalpojumu",
@@ -486,12 +486,12 @@
486 "webControls.reload": "PÄrlÄdÄ“t", 486 "webControls.reload": "PÄrlÄdÄ“t",
487 "welcome.loginButton": "Pieteikties savÄ kontÄ", 487 "welcome.loginButton": "Pieteikties savÄ kontÄ",
488 "welcome.signupButton": "Izveidot bezmaksas kontu", 488 "welcome.signupButton": "Izveidot bezmaksas kontu",
489 "workspaceDrawer.addNewWorkspaceLabel": "Pievienot jaunu darbvirsmu", 489 "workspaceDrawer.addNewWorkspaceLabel": "Pievienot jaunu darbvietu",
490 "workspaceDrawer.allServices": "Visi pakalpojumi", 490 "workspaceDrawer.allServices": "Visi pakalpojumi",
491 "workspaceDrawer.headline": "Darbvietas", 491 "workspaceDrawer.headline": "Darbvietas",
492 "workspaceDrawer.item.contextMenuEdit": "labot", 492 "workspaceDrawer.item.contextMenuEdit": "labot",
493 "workspaceDrawer.item.noServicesAddedYet": "Neviens pakalpojums vēl nav pievienots", 493 "workspaceDrawer.item.noServicesAddedYet": "Vēl nav pievienots neviens pakalpojums",
494 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdium darbvietas ļauj pievÄ“rst uzmanÄ«bu tam, kas ir svarÄ«gs tieÅ¡i Å¡obrÄ«d. Iestati vairÄkas pakalpojumu kopas un viegli pÄrslÄ“dzies starp tÄm jebkurÄ brÄ«dÄ«!</p><p>Tu izlem, kuri pakalpojumi ir nepiecieÅ¡ami kad un kur, lai mÄ“s varam palÄ«dzÄ“t Tev bÅ«t virsotnÄ“, vai arÄ« vari vienkÄrÅ¡i atslÄ“gties no darba, kad vien vÄ“lies</p>", 494 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdium darbvietas ļauj pievÄ“rst uzmanÄ«bu tam, kas ir svarÄ«gs tieÅ¡i Å¡obrÄ«d. Iestati vairÄkas pakalpojumu kopas un viegli pÄrslÄ“dzies starp tÄm jebkurÄ brÄ«dÄ«!</p><p>Tu izlem, kuri pakalpojumi ir nepiecieÅ¡ami kad un kur, lai mÄ“s varam palÄ«dzÄ“t Tev bÅ«t virsotnÄ“, vai arÄ« vari vienkÄrÅ¡i atslÄ“gties no darba, kad vien vÄ“lies</p>",
495 "workspaceDrawer.workspacesSettingsTooltip": "Mainīt darbvirsmu iestatījumus", 495 "workspaceDrawer.workspacesSettingsTooltip": "Mainīt darbvirsmu iestatījumus",
496 "workspaces.switchingIndicator.switchingTo": "PÄrslÄ“gties uz" 496 "workspaces.switchingIndicator.switchingTo": "PÄrslÄ“dzas uz"
497} \ No newline at end of file 497} \ No newline at end of file
diff --git a/src/i18n/locales/nl.json b/src/i18n/locales/nl.json
index c21c86edc..340106095 100644
--- a/src/i18n/locales/nl.json
+++ b/src/i18n/locales/nl.json
@@ -19,7 +19,7 @@
19 "feature.publishDebugInfo.published": "Uw foutopsporingslogboek is gepubliceerd en is nu beschikbaar op", 19 "feature.publishDebugInfo.published": "Uw foutopsporingslogboek is gepubliceerd en is nu beschikbaar op",
20 "feature.publishDebugInfo.terms": "Gebruiksvoorwaarden", 20 "feature.publishDebugInfo.terms": "Gebruiksvoorwaarden",
21 "feature.publishDebugInfo.title": "Foutopsporingsinformatie publiceren", 21 "feature.publishDebugInfo.title": "Foutopsporingsinformatie publiceren",
22 "feature.quickSwitch.info": "Selecteer een service met TAB, ↑ en ↓. Open een service met ENTER.", 22 "feature.quickSwitch.info": "Selecteer een dienst met TAB, ↑ en ↓. Open een dienst met ENTER.",
23 "feature.quickSwitch.search": "Zoeken...", 23 "feature.quickSwitch.search": "Zoeken...",
24 "feature.quickSwitch.title": "Snelschakelaar", 24 "feature.quickSwitch.title": "Snelschakelaar",
25 "global.api.unhealthy": "Kan geen verbinding maken met {serverNameParse} online diensten", 25 "global.api.unhealthy": "Kan geen verbinding maken met {serverNameParse} online diensten",
@@ -219,7 +219,7 @@
219 "settings.app.form.enableTodos": "Ferdium Taken inschakelen", 219 "settings.app.form.enableTodos": "Ferdium Taken inschakelen",
220 "settings.app.form.enableTranslator": "Vertaler inschakelen", 220 "settings.app.form.enableTranslator": "Vertaler inschakelen",
221 "settings.app.form.grayscaleServicesDim": "Grijswaarden dim niveau", 221 "settings.app.form.grayscaleServicesDim": "Grijswaarden dim niveau",
222 "settings.app.form.hibernateOnStartup": "Services in slaapstand houden bij opstarten", 222 "settings.app.form.hibernateOnStartup": "Diensten in slaapstand houden bij opstarten",
223 "settings.app.form.hibernationStrategy": "Slaapstand strategie", 223 "settings.app.form.hibernationStrategy": "Slaapstand strategie",
224 "settings.app.form.hideCollapseButton": "Samenvouwknop verbergen", 224 "settings.app.form.hideCollapseButton": "Samenvouwknop verbergen",
225 "settings.app.form.hideDownloadButton": "Downloadknop verbergen", 225 "settings.app.form.hideDownloadButton": "Downloadknop verbergen",
@@ -228,7 +228,7 @@
228 "settings.app.form.hideSettingsButton": "Verberg Instellingen knop", 228 "settings.app.form.hideSettingsButton": "Verberg Instellingen knop",
229 "settings.app.form.hideSplitModeButton": "Verberg Splits Modus knop", 229 "settings.app.form.hideSplitModeButton": "Verberg Splits Modus knop",
230 "settings.app.form.hideWorkspacesButton": "Verberg werkruimte overzicht knop", 230 "settings.app.form.hideWorkspacesButton": "Verberg werkruimte overzicht knop",
231 "settings.app.form.iconSize": "Service icoongrootte", 231 "settings.app.form.iconSize": "Formaat dienst icoon",
232 "settings.app.form.inactivityLock": "Vergrendel na inactiviteit", 232 "settings.app.form.inactivityLock": "Vergrendel na inactiviteit",
233 "settings.app.form.keepAllWorkspacesLoaded": "Alle werkruimtes geladen houden", 233 "settings.app.form.keepAllWorkspacesLoaded": "Alle werkruimtes geladen houden",
234 "settings.app.form.language": "Taal", 234 "settings.app.form.language": "Taal",
@@ -253,7 +253,7 @@
253 "settings.app.form.showDragArea": "Sleepbaar gebied in venster tonen", 253 "settings.app.form.showDragArea": "Sleepbaar gebied in venster tonen",
254 "settings.app.form.showMessagesBadgesWhenMuted": "Toon badge met ongelezen berichten wanneer meldingen zijn uitgeschakeld", 254 "settings.app.form.showMessagesBadgesWhenMuted": "Toon badge met ongelezen berichten wanneer meldingen zijn uitgeschakeld",
255 "settings.app.form.showServiceName": "Dienstnaam onder pictogram weergeven", 255 "settings.app.form.showServiceName": "Dienstnaam onder pictogram weergeven",
256 "settings.app.form.sidebarServicesLocation": "Locatie zijbalk Diensten iconen", 256 "settings.app.form.sidebarServicesLocation": "Positie zijbalk Diensten iconen",
257 "settings.app.form.splitColumns": "Aantal kolommen", 257 "settings.app.form.splitColumns": "Aantal kolommen",
258 "settings.app.form.splitMode": "Gesplitste weergave inschakelen", 258 "settings.app.form.splitMode": "Gesplitste weergave inschakelen",
259 "settings.app.form.startMinimized": "Geminimaliseerd starten", 259 "settings.app.form.startMinimized": "Geminimaliseerd starten",
@@ -274,7 +274,7 @@
274 "settings.app.headlinePrivacy": "Privacy", 274 "settings.app.headlinePrivacy": "Privacy",
275 "settings.app.headlineServices": "Diensten", 275 "settings.app.headlineServices": "Diensten",
276 "settings.app.headlineUpdates": "Updates", 276 "settings.app.headlineUpdates": "Updates",
277 "settings.app.hibernateInfo": "Ferdium houdt uw services standaard open op de achtergrond zodat ze klaarstaan voor gebruik. Als u de slaapstand inschakelt, worden services na een bepaalde tijd gesloten. Dit bespaart RAM en voorkomt dat services uw computer vertragen.", 277 "settings.app.hibernateInfo": "Ferdium houdt uw diensten standaard open op de achtergrond zodat ze klaarstaan voor gebruik. Als u de slaapstand inschakelt, worden diensten na een bepaalde tijd gesloten. Dit bespaart RAM en voorkomt dat diensten uw computer vertragen.",
278 "settings.app.inactivityLockInfo": "Minuten van inactiviteit, waarna Ferdium automatisch vergrendelt. Gebruik 0 om uit te schakelen", 278 "settings.app.inactivityLockInfo": "Minuten van inactiviteit, waarna Ferdium automatisch vergrendelt. Gebruik 0 om uit te schakelen",
279 "settings.app.lockInfo": "Wachtwoordvergrendeling maakt het mogelijk om uw berichten te beschermen.\nWachtwoordvergrendeling zal u vragen om uw wachtwoord in te voeren telkens wanneer u Ferdium of Ferdium vergrendelen zelf start met behulp van het vergrendelingssymbool linksonder op het scherm of de sneltoets {lockShortcut}.", 279 "settings.app.lockInfo": "Wachtwoordvergrendeling maakt het mogelijk om uw berichten te beschermen.\nWachtwoordvergrendeling zal u vragen om uw wachtwoord in te voeren telkens wanneer u Ferdium of Ferdium vergrendelen zelf start met behulp van het vergrendelingssymbool linksonder op het scherm of de sneltoets {lockShortcut}.",
280 "settings.app.lockedPassword": "Wachtwoord", 280 "settings.app.lockedPassword": "Wachtwoord",
@@ -301,7 +301,7 @@
301 "settings.app.subheadlineFerdiumProfile": "Ferdium-profiel", 301 "settings.app.subheadlineFerdiumProfile": "Ferdium-profiel",
302 "settings.app.todoServerInfo": "Deze server wordt gebruikt voor de functie Ferdium Taken.", 302 "settings.app.todoServerInfo": "Deze server wordt gebruikt voor de functie Ferdium Taken.",
303 "settings.app.translationHelp": "Help ons om Ferdium uw taal te laten spreken.", 303 "settings.app.translationHelp": "Help ons om Ferdium uw taal te laten spreken.",
304 "settings.app.universalDarkModeInfo": "De universele donkere modus probeert dynamische stijlen voor services te genereren die eigenlijk geen donkere modus hebben.", 304 "settings.app.universalDarkModeInfo": "De universele donkere modus probeert dynamische stijlen voor diensten te genereren die eigenlijk geen donkere modus hebben.",
305 "settings.app.updateStatusAvailable": "Update beschikbaar, downloaden...", 305 "settings.app.updateStatusAvailable": "Update beschikbaar, downloaden...",
306 "settings.app.updateStatusSearching": "Zoeken naar updates...", 306 "settings.app.updateStatusSearching": "Zoeken naar updates...",
307 "settings.app.updateStatusUpToDate": "U gebruikt de laatste versie van Ferdium", 307 "settings.app.updateStatusUpToDate": "U gebruikt de laatste versie van Ferdium",
@@ -325,7 +325,7 @@
325 "settings.recipes.ferdiumPicks": "Ferdiums Favorieten", 325 "settings.recipes.ferdiumPicks": "Ferdiums Favorieten",
326 "settings.recipes.headline": "Beschikbare services", 326 "settings.recipes.headline": "Beschikbare services",
327 "settings.recipes.missingService": "Mist u een dienst?", 327 "settings.recipes.missingService": "Mist u een dienst?",
328 "settings.recipes.nothingFound": "Sorry, geen enkele service komt overeen met uw zoekterm - maar u kunt deze waarschijnlijk nog toevoegen met behulp van de optie \"Aangepaste Website\". Houd er rekening mee dat de website meer diensten kan tonen die zijn toegevoegd aan Ferdium sinds de versie waar u momenteel mee bezig bent. Overweeg een upgrade naar een nieuwere versie van Ferdium om deze nieuwe diensten te krijgen.", 328 "settings.recipes.nothingFound": "Sorry, geen enkele dienst komt overeen met uw zoekterm - maar u kunt deze waarschijnlijk nog toevoegen met behulp van de optie \"Aangepaste Website\". Houd er rekening mee dat de website meer diensten kan tonen die zijn toegevoegd aan Ferdium sinds de versie die u momenteel gebruikt. Overweeg een upgrade naar een nieuwere versie van Ferdium om deze nieuwe diensten te krijgen.",
329 "settings.recipes.servicesSuccessfulAddedInfo": "Dienst succesvol toegevoegd", 329 "settings.recipes.servicesSuccessfulAddedInfo": "Dienst succesvol toegevoegd",
330 "settings.releasenotes.connectionError": "Er is een fout opgetreden tijdens het verbinden met Github, probeer het later nog eens.", 330 "settings.releasenotes.connectionError": "Er is een fout opgetreden tijdens het verbinden met Github, probeer het later nog eens.",
331 "settings.releasenotes.connectionErrorPageMissing": "Er is een fout opgetreden tijdens het verbinden met Github, de pagina die u zoekt ontbreekt.", 331 "settings.releasenotes.connectionErrorPageMissing": "Er is een fout opgetreden tijdens het verbinden met Github, de pagina die u zoekt ontbreekt.",
@@ -434,7 +434,7 @@
434 "settings.workspaces.tryReloadWorkspaces": "Probeer opnieuw", 434 "settings.workspaces.tryReloadWorkspaces": "Probeer opnieuw",
435 "settings.workspaces.updatedInfo": "Je wijzigingen zijn opgeslagen", 435 "settings.workspaces.updatedInfo": "Je wijzigingen zijn opgeslagen",
436 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Zie hier Ferdium Werkruimtes", 436 "settings.workspaces.workspaceFeatureHeadline": "Less is More: Zie hier Ferdium Werkruimtes",
437 "settings.workspaces.workspaceFeatureInfo": "Ferdium Workspaces laten u focussen op wat er op dit moment belangrijk is. Stel verschillende soorten diensten in en schakel er op elk moment eenvoudig tussen in. Je bepaalt welke diensten je nodig hebt wanneer en waar zodat we je kunnen helpen om aan je spel te blijven - of eenvoudig uit te schakelen van werk wanneer je maar wilt.", 437 "settings.workspaces.workspaceFeatureInfo": "Ferdium Werkruimtes laat u focussen op wat er nu belangrijk is. Stel verschillende groepen van diensten in en schakel er op elk moment eenvoudig tussen. U bepaalt welke diensten u wanneer en waar nodig hebt, zodat we u kunnen helpen uw zaken op orde te houden - of leg gewoon uw werk terzijde wanneer u maar wilt.",
438 "settings.workspaces.workspacesRequestFailed": "Kan uw werkruimtes niet laden", 438 "settings.workspaces.workspacesRequestFailed": "Kan uw werkruimtes niet laden",
439 "setupAssistant.headline": "Laten we beginnen", 439 "setupAssistant.headline": "Laten we beginnen",
440 "setupAssistant.skip.label": "Overslaan", 440 "setupAssistant.skip.label": "Overslaan",
@@ -491,7 +491,7 @@
491 "workspaceDrawer.headline": "Werkruimtes", 491 "workspaceDrawer.headline": "Werkruimtes",
492 "workspaceDrawer.item.contextMenuEdit": "bewerken", 492 "workspaceDrawer.item.contextMenuEdit": "bewerken",
493 "workspaceDrawer.item.noServicesAddedYet": "Nog geen diensten toegevoegd", 493 "workspaceDrawer.item.noServicesAddedYet": "Nog geen diensten toegevoegd",
494 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdium Workspaces laten je concentreren op wat op dit moment belangrijk is. Stel verschillende sets diensten in en schakel er op elk moment gemakkelijk tussen uit.</p><p>Je bepaalt welke diensten je nodig hebt wanneer en waar zodat we je kunnen helpen om aan je spel te blijven - of eenvoudig uit te schakelen van werk wanneer je maar wilt.</p>", 494 "workspaceDrawer.workspaceFeatureInfo": "<p>Ferdium Werkruimtes laat u focussen op wat er nu belangrijk is. Stel verschillende groepen van diensten in en schakel er op elk moment eenvoudig tussen.</p><p>U bepaalt welke diensten u wanneer en waar nodig hebt, zodat we u kunnen helpen uw zaken op orde te houden - of leg gewoon uw werk terzijde wanneer u maar wilt</p>",
495 "workspaceDrawer.workspacesSettingsTooltip": "Werkruimte-instellingen aanpassen", 495 "workspaceDrawer.workspacesSettingsTooltip": "Werkruimte-instellingen aanpassen",
496 "workspaces.switchingIndicator.switchingTo": "Overschakelen naar" 496 "workspaces.switchingIndicator.switchingTo": "Overschakelen naar"
497} \ No newline at end of file 497} \ No newline at end of file
diff --git a/src/index.ts b/src/index.ts
index c765bac73..e466b4ab1 100644
--- a/src/index.ts
+++ b/src/index.ts
@@ -455,12 +455,8 @@ if (argv['auth-negotiate-delegate-whitelist']) {
455 ); 455 );
456} 456}
457 457
458// Disable Chromium's poor MPRIS implementation 458// Apply workaround for https://github.com/electron/electron/pull/26432
459// and apply workaround for https://github.com/electron/electron/pull/26432 459app.commandLine.appendSwitch('disable-features', 'CrossOriginOpenerPolicy');
460app.commandLine.appendSwitch(
461 'disable-features',
462 'HardwareMediaKeyHandling,MediaSessionService,CrossOriginOpenerPolicy',
463);
464 460
465// This method will be called when Electron has finished 461// This method will be called when Electron has finished
466// initialization and is ready to create browser windows. 462// initialization and is ready to create browser windows.
diff --git a/src/internal-server/app/Controllers/Http/RecipeController.js b/src/internal-server/app/Controllers/Http/RecipeController.js
index 61fa6be8f..48d3ce7e5 100644
--- a/src/internal-server/app/Controllers/Http/RecipeController.js
+++ b/src/internal-server/app/Controllers/Http/RecipeController.js
@@ -3,7 +3,6 @@ const Drive = use('Drive');
3const { validateAll } = use('Validator'); 3const { validateAll } = use('Validator');
4const Env = use('Env'); 4const Env = use('Env');
5 5
6const fetch = require('node-fetch');
7const debug = require('../../../../preload-safe-debug')( 6const debug = require('../../../../preload-safe-debug')(
8 'Ferdium:internalServer:RecipeController', 7 'Ferdium:internalServer:RecipeController',
9); 8);
@@ -60,8 +59,8 @@ class RecipeController {
60 })); 59 }));
61 } else { 60 } else {
62 let remoteResults = []; 61 let remoteResults = [];
63 // eslint-disable-next-line eqeqeq 62
64 if (Env.get('CONNECT_WITH_FRANZ') == 'true') { 63 if (Env.get('CONNECT_WITH_FRANZ') === 'true') {
65 const recipesUrlFetch = await fetch( 64 const recipesUrlFetch = await fetch(
66 `${RECIPES_URL}/search?needle=${encodeURIComponent(needle)}`, 65 `${RECIPES_URL}/search?needle=${encodeURIComponent(needle)}`,
67 ); 66 );
@@ -124,8 +123,8 @@ class RecipeController {
124 if (await Drive.exists(`${service}.tar.gz`)) { 123 if (await Drive.exists(`${service}.tar.gz`)) {
125 return response.send(await Drive.get(`${service}.tar.gz`)); 124 return response.send(await Drive.get(`${service}.tar.gz`));
126 } 125 }
127 // eslint-disable-next-line eqeqeq 126
128 if (Env.get('CONNECT_WITH_FRANZ') == 'true') { 127 if (Env.get('CONNECT_WITH_FRANZ') === 'true') {
129 return response.redirect(`${RECIPES_URL}/download/${service}`); 128 return response.redirect(`${RECIPES_URL}/download/${service}`);
130 } 129 }
131 return response.status(400).send({ 130 return response.status(400).send({
diff --git a/src/internal-server/app/Controllers/Http/ServiceController.js b/src/internal-server/app/Controllers/Http/ServiceController.js
index 940cac065..8e8aa97a8 100644
--- a/src/internal-server/app/Controllers/Http/ServiceController.js
+++ b/src/internal-server/app/Controllers/Http/ServiceController.js
@@ -126,10 +126,9 @@ class ServiceController {
126 const newSettings = { 126 const newSettings = {
127 ...settings, 127 ...settings,
128 iconId, 128 iconId,
129 customIconVersion: 129 customIconVersion: settings?.customIconVersion
130 settings && settings.customIconVersion 130 ? settings.customIconVersion + 1
131 ? settings.customIconVersion + 1 131 : 1,
132 : 1,
133 }; 132 };
134 133
135 // Update data in database 134 // Update data in database
diff --git a/src/internal-server/app/Controllers/Http/UserController.js b/src/internal-server/app/Controllers/Http/UserController.js
index d0c4d73b7..db733336c 100644
--- a/src/internal-server/app/Controllers/Http/UserController.js
+++ b/src/internal-server/app/Controllers/Http/UserController.js
@@ -5,7 +5,6 @@ const Workspace = use('App/Models/Workspace');
5const { validateAll } = use('Validator'); 5const { validateAll } = use('Validator');
6 6
7const crypto = require('node:crypto'); 7const crypto = require('node:crypto');
8const fetch = require('node-fetch');
9const { v4: uuid } = require('uuid'); 8const { v4: uuid } = require('uuid');
10const { DEFAULT_APP_SETTINGS } = require('../../../../config'); 9const { DEFAULT_APP_SETTINGS } = require('../../../../config');
11const { convertToJSON } = require('../../../../jsUtils'); 10const { convertToJSON } = require('../../../../jsUtils');
diff --git a/src/internal-server/start/migrate.js b/src/internal-server/start/migrate.js
index 4cd502c3f..67533ed9e 100644
--- a/src/internal-server/start/migrate.js
+++ b/src/internal-server/start/migrate.js
@@ -35,8 +35,7 @@ module.exports = async () => {
35 !settings.db_version || 35 !settings.db_version ||
36 settings.db_version !== ferdiumVersion 36 settings.db_version !== ferdiumVersion
37 ) { 37 ) {
38 const srcVersion = 38 const srcVersion = settings?.db_version || '5.4.0-beta.2';
39 settings && settings.db_version ? settings.db_version : '5.4.0-beta.2';
40 migrateLog(`🔮 Migrating table from ${srcVersion} to ${ferdiumVersion}`); 39 migrateLog(`🔮 Migrating table from ${srcVersion} to ${ferdiumVersion}`);
41 40
42 // Migrate database to current Ferdium version 41 // Migrate database to current Ferdium version
diff --git a/src/lib/Tray.ts b/src/lib/Tray.ts
index c8f113346..d83f91478 100644
--- a/src/lib/Tray.ts
+++ b/src/lib/Tray.ts
@@ -153,16 +153,13 @@ export default class TrayIcon {
153 153
154 _toggleWindow(): void { 154 _toggleWindow(): void {
155 const [mainWindow] = BrowserWindow.getAllWindows(); 155 const [mainWindow] = BrowserWindow.getAllWindows();
156 if (!mainWindow) {
157 return;
158 }
159 156
160 if (mainWindow.isMinimized()) { 157 if (mainWindow.isMinimized()) {
161 mainWindow.restore(); 158 mainWindow.restore();
162 } else if (mainWindow.isVisible() && mainWindow.isFocused()) { 159 } else if (mainWindow.isVisible() && mainWindow.isFocused()) {
163 if (isMac && mainWindow.isFullScreen()) { 160 if (isMac && mainWindow.isFullScreen()) {
164 mainWindow.once('show', () => mainWindow?.setFullScreen(true)); 161 mainWindow.once('show', () => mainWindow.setFullScreen(true));
165 mainWindow.once('leave-full-screen', () => mainWindow?.hide()); 162 mainWindow.once('leave-full-screen', () => mainWindow.hide());
166 mainWindow.setFullScreen(false); 163 mainWindow.setFullScreen(false);
167 } else { 164 } else {
168 mainWindow.hide(); 165 mainWindow.hide();
diff --git a/src/stores/AppStore.ts b/src/stores/AppStore.ts
index df8c17c01..9af0a9a4f 100644
--- a/src/stores/AppStore.ts
+++ b/src/stores/AppStore.ts
@@ -49,8 +49,8 @@ const mainWindow = getCurrentWindow();
49const executablePath = isMac 49const executablePath = isMac
50 ? remoteProcess.execPath 50 ? remoteProcess.execPath
51 : isWinPortable 51 : isWinPortable
52 ? process.env.PORTABLE_EXECUTABLE_FILE 52 ? process.env.PORTABLE_EXECUTABLE_FILE
53 : process.execPath; 53 : process.execPath;
54const autoLauncher = new AutoLaunch({ 54const autoLauncher = new AutoLaunch({
55 name: 'Ferdium', 55 name: 'Ferdium',
56 path: executablePath, 56 path: executablePath,
@@ -128,7 +128,7 @@ export default class AppStore extends TypedStore {
128 128
129 dictionaries = []; 129 dictionaries = [];
130 130
131 fetchDataInterval: null | NodeJS.Timer = null; 131 fetchDataInterval: NodeJS.Timeout | null = null;
132 132
133 @observable downloads: Download[] = []; 133 @observable downloads: Download[] = [];
134 134
diff --git a/src/stores/ServicesStore.ts b/src/stores/ServicesStore.ts
index 9c0072586..95aae6ccb 100644
--- a/src/stores/ServicesStore.ts
+++ b/src/stores/ServicesStore.ts
@@ -966,7 +966,8 @@ export default class ServicesStore extends TypedStore {
966 service.lostRecipeConnection = false; 966 service.lostRecipeConnection = false;
967 967
968 if (service.isTodosService) { 968 if (service.isTodosService) {
969 return this.actions.todos.reload(); 969 this.actions.todos.reload();
970 return;
970 } 971 }
971 972
972 if (!service.webview) return; 973 if (!service.webview) return;
diff --git a/src/webview/contextMenuBuilder.ts b/src/webview/contextMenuBuilder.ts
index 93dfbebb6..ee55fbe62 100644
--- a/src/webview/contextMenuBuilder.ts
+++ b/src/webview/contextMenuBuilder.ts
@@ -101,7 +101,7 @@ function translatePopup(res, isError: boolean = false) {
101 101
102 document.addEventListener('click', e => { 102 document.addEventListener('click', e => {
103 if (div !== e.target && !childOf(e.target, div)) { 103 if (div !== e.target && !childOf(e.target, div)) {
104 div?.remove(); 104 div.remove();
105 } 105 }
106 }); 106 });
107} 107}
@@ -253,10 +253,7 @@ export class ContextMenuBuilder {
253 return this.buildMenuForVideo(info); 253 return this.buildMenuForVideo(info);
254 } 254 }
255 255
256 if ( 256 if (info.isEditable || info.inputFieldType !== 'none') {
257 info.isEditable ||
258 (info.inputFieldType && info.inputFieldType !== 'none')
259 ) {
260 return this.buildMenuForTextInput(info); 257 return this.buildMenuForTextInput(info);
261 } 258 }
262 259