From 9038692c97295637c59e91573d017c4a359c5a67 Mon Sep 17 00:00:00 2001
From: Alexey Kulakov
Date: Tue, 24 Dec 2024 03:11:21 -0800
Subject: [PATCH 1/2] feat: v2 migration
---
.ember-cli | 9 -
.eslintrc.js | 54 -
.github/workflows/ci.yml | 73 +-
.github/workflows/push-dist.yml | 32 +
.gitignore | 27 +-
.npmignore | 39 -
.npmrc | 28 +
.prettierignore | 19 +-
.prettierrc.cjs | 6 +
.travis.yml | 61 -
.watchmanconfig | 3 -
README.md | 4 +-
addon/.gitignore | 17 +
addon/.prettierignore | 9 +
addon/.prettierrc.cjs | 14 +
addon/.stylelintignore | 3 +
addon/.stylelintrc.js | 5 +
.../.template-lintrc.cjs | 0
addon/addon-main.cjs | 5 +
addon/babel.config.json | 24 +
addon/components/navigation-narrator.hbs | 18 -
addon/eslint.config.mjs | 133 +
addon/index.js | 1 -
addon/package.json | 111 +
addon/rollup.config.mjs | 75 +
.../components/navigation-narrator.gts} | 99 +-
addon/src/index.ts | 2 +
.../styles/navigation-narrator.css} | 6 +-
addon/src/template-registry.ts | 9 +
addon/{ => src}/utils/routing.js | 0
addon/{ => src}/utils/validators.js | 2 +-
addon/tsconfig.json | 52 +
.../unpublished-development-types/index.d.ts | 14 +
app/components/navigation-narrator.js | 1 -
config/ember-cli-update.json | 22 +
config/environment.js | 5 -
ember-cli-build.js | 19 -
index.js | 5 -
jsconfig.json | 1 -
package.json | 117 +-
pnpm-lock.yaml | 12485 +++++++---------
pnpm-workspace.yaml | 3 +
test-app/.editorconfig | 19 +
test-app/.ember-cli | 7 +
test-app/.gitignore | 25 +
.eslintignore => test-app/.prettierignore | 13 +-
test-app/.prettierrc.js | 14 +
test-app/.stylelintignore | 8 +
test-app/.stylelintrc.js | 5 +
.../.template-lintrc.js | 2 +-
test-app/.watchmanconfig | 3 +
test-app/README.md | 57 +
tests/dummy/app/app.js => test-app/app/app.ts | 2 +-
{addon => test-app/app/components}/.gitkeep | 0
test-app/app/config/environment.d.ts | 14 +
{app => test-app/app/controllers}/.gitkeep | 0
.../app/helpers}/.gitkeep | 0
{tests/dummy => test-app}/app/index.html | 7 +-
.../app/models}/.gitkeep | 0
.../app/router.js => test-app/app/router.ts | 2 +-
.../alpha.js => test-app/app/routes/alpha.ts | 0
.../bravo.js => test-app/app/routes/bravo.ts | 0
.../app/routes/bravo/november.ts | 4 +-
.../index.js => test-app/app/routes/index.ts | 0
.../app.css => test-app/app/styles/app.scss | 65 +-
test-app/app/templates/alpha.hbs | 7 +
.../app/templates/application.hbs | 2 +-
test-app/app/templates/bravo.hbs | 7 +
.../app/templates/bravo/november.hbs | 0
test-app/app/templates/index.hbs | 64 +
test-app/config/ember-cli-update.json | 24 +
{config => test-app/config}/ember-try.js | 17 +-
.../dummy => test-app}/config/environment.js | 9 +-
.../config/optional-features.json | 3 +-
{tests/dummy => test-app}/config/targets.js | 7 -
test-app/ember-cli-build.js | 22 +
test-app/eslint.config.mjs | 146 +
test-app/package.json | 103 +
{tests/dummy => test-app}/public/robots.txt | 0
testem.js => test-app/testem.js | 0
test-app/tests/helpers/index.ts | 44 +
.../tests/helpers/mocks.ts | 0
{tests => test-app/tests}/index.html | 9 +-
.../components/navigation-narrator-test.gts | 95 +-
test-app/tests/test-helper.ts | 15 +
.../unit/utils/default-validator-test.ts | 23 +-
test-app/tsconfig.json | 18 +
test-app/types/global.d.ts | 16 +
tests/dummy/app/helpers/.gitkeep | 0
tests/dummy/app/models/.gitkeep | 0
tests/dummy/app/routes/.gitkeep | 0
tests/dummy/app/templates/alpha.hbs | 5 -
tests/dummy/app/templates/bravo.hbs | 6 -
tests/dummy/app/templates/index.hbs | 34 -
tests/dummy/config/ember-cli-update.json | 20 -
tests/helpers/.gitkeep | 0
tests/integration/.gitkeep | 0
tests/test-helper.js | 12 -
tests/unit/.gitkeep | 0
vendor/.gitkeep | 0
100 files changed, 6690 insertions(+), 7877 deletions(-)
delete mode 100644 .ember-cli
delete mode 100644 .eslintrc.js
create mode 100644 .github/workflows/push-dist.yml
delete mode 100644 .npmignore
create mode 100644 .npmrc
create mode 100644 .prettierrc.cjs
delete mode 100644 .travis.yml
delete mode 100644 .watchmanconfig
create mode 100644 addon/.gitignore
create mode 100644 addon/.prettierignore
create mode 100644 addon/.prettierrc.cjs
create mode 100644 addon/.stylelintignore
create mode 100644 addon/.stylelintrc.js
rename .template-lintrc.js => addon/.template-lintrc.cjs (100%)
create mode 100644 addon/addon-main.cjs
create mode 100644 addon/babel.config.json
delete mode 100644 addon/components/navigation-narrator.hbs
create mode 100644 addon/eslint.config.mjs
delete mode 100644 addon/index.js
create mode 100644 addon/package.json
create mode 100644 addon/rollup.config.mjs
rename addon/{components/navigation-narrator.js => src/components/navigation-narrator.gts} (60%)
create mode 100644 addon/src/index.ts
rename addon/{styles/addon.css => src/styles/navigation-narrator.css} (85%)
create mode 100644 addon/src/template-registry.ts
rename addon/{ => src}/utils/routing.js (100%)
rename addon/{ => src}/utils/validators.js (69%)
create mode 100644 addon/tsconfig.json
create mode 100644 addon/unpublished-development-types/index.d.ts
delete mode 100644 app/components/navigation-narrator.js
create mode 100644 config/ember-cli-update.json
delete mode 100644 config/environment.js
delete mode 100644 ember-cli-build.js
delete mode 100644 index.js
delete mode 100644 jsconfig.json
create mode 100644 pnpm-workspace.yaml
create mode 100644 test-app/.editorconfig
create mode 100644 test-app/.ember-cli
create mode 100644 test-app/.gitignore
rename .eslintignore => test-app/.prettierignore (50%)
create mode 100644 test-app/.prettierrc.js
create mode 100644 test-app/.stylelintignore
create mode 100644 test-app/.stylelintrc.js
rename .prettierrc.js => test-app/.template-lintrc.js (58%)
create mode 100644 test-app/.watchmanconfig
create mode 100644 test-app/README.md
rename tests/dummy/app/app.js => test-app/app/app.ts (87%)
rename {addon => test-app/app/components}/.gitkeep (100%)
create mode 100644 test-app/app/config/environment.d.ts
rename {app => test-app/app/controllers}/.gitkeep (100%)
rename {tests/dummy/app/components => test-app/app/helpers}/.gitkeep (100%)
rename {tests/dummy => test-app}/app/index.html (78%)
rename {tests/dummy/app/controllers => test-app/app/models}/.gitkeep (100%)
rename tests/dummy/app/router.js => test-app/app/router.ts (85%)
rename tests/dummy/app/routes/alpha.js => test-app/app/routes/alpha.ts (100%)
rename tests/dummy/app/routes/bravo.js => test-app/app/routes/bravo.ts (100%)
rename tests/dummy/app/routes/bravo/november.js => test-app/app/routes/bravo/november.ts (77%)
rename tests/dummy/app/routes/index.js => test-app/app/routes/index.ts (100%)
rename tests/dummy/app/styles/app.css => test-app/app/styles/app.scss (52%)
create mode 100644 test-app/app/templates/alpha.hbs
rename {tests/dummy => test-app}/app/templates/application.hbs (94%)
create mode 100644 test-app/app/templates/bravo.hbs
rename {tests/dummy => test-app}/app/templates/bravo/november.hbs (100%)
create mode 100644 test-app/app/templates/index.hbs
create mode 100644 test-app/config/ember-cli-update.json
rename {config => test-app/config}/ember-try.js (73%)
rename {tests/dummy => test-app}/config/environment.js (87%)
rename {tests/dummy => test-app}/config/optional-features.json (58%)
rename {tests/dummy => test-app}/config/targets.js (50%)
create mode 100644 test-app/ember-cli-build.js
create mode 100644 test-app/eslint.config.mjs
create mode 100644 test-app/package.json
rename {tests/dummy => test-app}/public/robots.txt (100%)
rename testem.js => test-app/testem.js (100%)
create mode 100644 test-app/tests/helpers/index.ts
rename tests/helpers/mocks.js => test-app/tests/helpers/mocks.ts (100%)
rename {tests => test-app/tests}/index.html (78%)
rename tests/integration/components/navigation-narrator-test.js => test-app/tests/integration/components/navigation-narrator-test.gts (74%)
create mode 100644 test-app/tests/test-helper.ts
rename tests/unit/utils/default-validator-test.js => test-app/tests/unit/utils/default-validator-test.ts (87%)
create mode 100644 test-app/tsconfig.json
create mode 100644 test-app/types/global.d.ts
delete mode 100644 tests/dummy/app/helpers/.gitkeep
delete mode 100644 tests/dummy/app/models/.gitkeep
delete mode 100644 tests/dummy/app/routes/.gitkeep
delete mode 100644 tests/dummy/app/templates/alpha.hbs
delete mode 100644 tests/dummy/app/templates/bravo.hbs
delete mode 100644 tests/dummy/app/templates/index.hbs
delete mode 100644 tests/dummy/config/ember-cli-update.json
delete mode 100644 tests/helpers/.gitkeep
delete mode 100644 tests/integration/.gitkeep
delete mode 100644 tests/test-helper.js
delete mode 100644 tests/unit/.gitkeep
delete mode 100644 vendor/.gitkeep
diff --git a/.ember-cli b/.ember-cli
deleted file mode 100644
index ee64cfe..0000000
--- a/.ember-cli
+++ /dev/null
@@ -1,9 +0,0 @@
-{
- /**
- Ember CLI sends analytics information by default. The data is completely
- anonymous, but there are times when you might want to disable this behavior.
-
- Setting `disableAnalytics` to true will prevent any data from being sent.
- */
- "disableAnalytics": false
-}
diff --git a/.eslintrc.js b/.eslintrc.js
deleted file mode 100644
index 2504063..0000000
--- a/.eslintrc.js
+++ /dev/null
@@ -1,54 +0,0 @@
-'use strict';
-
-module.exports = {
- root: true,
- parser: 'babel-eslint',
- parserOptions: {
- ecmaVersion: 2018,
- sourceType: 'module',
- ecmaFeatures: {
- legacyDecorators: true,
- },
- },
- plugins: ['ember'],
- extends: [
- 'eslint:recommended',
- 'plugin:ember/recommended',
- 'plugin:prettier/recommended',
- ],
- env: {
- browser: true,
- },
- rules: {},
- overrides: [
- // node files
- {
- files: [
- '.eslintrc.js',
- '.prettierrc.js',
- '.template-lintrc.js',
- 'ember-cli-build.js',
- 'index.js',
- 'testem.js',
- 'blueprints/*/index.js',
- 'config/**/*.js',
- 'tests/dummy/config/**/*.js',
- ],
- excludedFiles: [
- 'addon/**',
- 'addon-test-support/**',
- 'app/**',
- 'tests/dummy/app/**',
- ],
- parserOptions: {
- sourceType: 'script',
- },
- env: {
- browser: false,
- node: true,
- },
- plugins: ['node'],
- extends: ['plugin:node/recommended'],
- },
- ],
-};
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e1e0265..afa6361 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -1,4 +1,4 @@
-name: Run tests
+name: CI
on:
push:
@@ -6,57 +6,74 @@ on:
- main
pull_request: {}
+concurrency:
+ group: ci-${{ github.head_ref || github.ref }}
+ cancel-in-progress: true
+
jobs:
test:
+ name: "Tests"
runs-on: ubuntu-latest
+ timeout-minutes: 10
steps:
- - name: Checkout repository
- uses: actions/checkout@v4
-
- - name: Set up Node.js
- uses: actions/setup-node@v3
+ - uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+ - uses: actions/setup-node@v4
with:
- node-version: '18.x'
-
- - name: Install pnpm
- run: npm install -g pnpm
+ node-version: 18
+ cache: pnpm
+ - name: Install Dependencies
+ run: pnpm install --frozen-lockfile
+ - name: Lint
+ run: pnpm lint
+ - name: Run Tests
+ run: pnpm test
- - name: Install dependencies
- run: pnpm i
+ floating:
+ name: "Floating Dependencies"
+ runs-on: ubuntu-latest
+ timeout-minutes: 10
- - name: Run tests
+ steps:
+ - uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 18
+ cache: pnpm
+ - name: Install Dependencies
+ run: pnpm install --no-lockfile
+ - name: Run Tests
run: pnpm test
try-scenarios:
name: ${{ matrix.try-scenario }}
runs-on: ubuntu-latest
needs: 'test'
+ timeout-minutes: 10
strategy:
fail-fast: false
matrix:
try-scenario:
- - ember-lts-3.28
- ember-lts-4.12
+ - ember-lts-5.4
- ember-release
+ - ember-beta
+ - ember-canary
- embroider-safe
- embroider-optimized
steps:
- - name: Checkout repository
- uses: actions/checkout@v4
-
- - name: Set up Node.js
- uses: actions/setup-node@v3
+ - uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+ - uses: actions/setup-node@v4
with:
- node-version: '18.x'
-
- - name: Install pnpm
- run: npm install -g pnpm
-
- - name: Install dependencies
- run: pnpm i
-
+ node-version: 18
+ cache: pnpm
+ - name: Install Dependencies
+ run: pnpm install --frozen-lockfile
- name: Run Tests
- run: pnpm ember try:one ${{ matrix.try-scenario }}
+ run: ./node_modules/.bin/ember try:one ${{ matrix.try-scenario }} --skip-cleanup
+ working-directory: test-app
diff --git a/.github/workflows/push-dist.yml b/.github/workflows/push-dist.yml
new file mode 100644
index 0000000..5e786fc
--- /dev/null
+++ b/.github/workflows/push-dist.yml
@@ -0,0 +1,32 @@
+# Because this library needs to be built,
+# we can't easily point package.json files at the git repo for easy cross-repo testing.
+#
+# This workflow brings back that capability by placing the compiled assets on a "dist" branch
+# (configurable via the "branch" option below)
+name: Push dist
+
+on:
+ push:
+ branches:
+ - main
+
+jobs:
+ push-dist:
+ name: Push dist
+ runs-on: ubuntu-latest
+ timeout-minutes: 10
+
+ steps:
+ - uses: actions/checkout@v4
+ - uses: pnpm/action-setup@v4
+ - uses: actions/setup-node@v4
+ with:
+ node-version: 18
+ cache: pnpm
+ - name: Install Dependencies
+ run: pnpm install --frozen-lockfile
+ - uses: kategengler/put-built-npm-package-contents-on-branch@v2.0.0
+ with:
+ branch: dist
+ token: ${{ secrets.GITHUB_TOKEN }}
+ working-directory: 'addon'
diff --git a/.gitignore b/.gitignore
index ba2ed78..be29758 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,27 +1,10 @@
# See https://help.github.com/ignore-files/ for more about ignoring files.
-# compiled output
-/dist/
-/tmp/
-
# dependencies
-/bower_components/
-/node_modules/
+node_modules/
# misc
-/.env*
-/.pnp*
-/.sass-cache
-/.eslintcache
-/connect.lock
-/coverage/
-/libpeerconnection.log
-/npm-debug.log*
-/testem.log
-/yarn-error.log
-
-# ember-try
-/.node_modules.ember-try/
-/bower.json.ember-try
-/package.json.ember-try
-/yarn.lock.ember-try
\ No newline at end of file
+.env*
+.pnpm-debug.log
+npm-debug.log*
+yarn-error.log
diff --git a/.npmignore b/.npmignore
deleted file mode 100644
index eee76e3..0000000
--- a/.npmignore
+++ /dev/null
@@ -1,39 +0,0 @@
-# compiled output
-/dist/
-/tmp/
-
-# dependencies
-/bower_components/
-
-# misc
-/.bowerrc
-/.editorconfig
-/.ember-cli
-/.env*
-/.eslintcache
-/.eslintignore
-/.eslintrc.js
-/.git/
-/.github/
-/.gitignore
-/.prettierignore
-/.prettierrc.js
-/.template-lintrc.js
-/.travis.yml
-/.watchmanconfig
-/bower.json
-/config/ember-try.js
-/CONTRIBUTING.md
-/ember-cli-build.js
-/jsconfig.json
-/RELEASE.md
-/renovate.json
-/testem.js
-/tests/
-/yarn.lock
-.gitkeep
-
-# ember-try
-/.node_modules.ember-try/
-/bower.json.ember-try
-/package.json.ember-try
diff --git a/.npmrc b/.npmrc
new file mode 100644
index 0000000..618c018
--- /dev/null
+++ b/.npmrc
@@ -0,0 +1,28 @@
+####################
+# super strict mode
+####################
+auto-install-peers=false
+strict-peer-dependents=true
+resolve-peers-from-workspace-root=false
+
+################
+# Optimizations
+################
+# Less strict, but required for tooling to not barf on duplicate peer trees.
+# (many libraries declare the same peers, which resolve to the same
+# versions)
+dedupe-peer-dependents=true
+public-hoist-pattern[]=ember-source
+
+################
+# Compatibility
+################
+# highest is what everyone is used to, but
+# not ensuring folks are actually compatible with declared ranges.
+resolution-mode=highest
+
+################
+# Misc
+################
+# uncomment when https://github.com/pnpm/pnpm/pull/8957 is released
+#verify-deps-before-run=install # always verify deps before running any scripts
diff --git a/.prettierignore b/.prettierignore
index 9221655..e8f376b 100644
--- a/.prettierignore
+++ b/.prettierignore
@@ -1,21 +1,10 @@
-# unconventional js
-/blueprints/*/files/
-/vendor/
-
-# compiled output
-/dist/
-/tmp/
-
-# dependencies
-/bower_components/
-/node_modules/
+# Prettier is also run from each package, so the ignores here
+# protect against files that may not be within a package
# misc
-/coverage/
!.*
-.eslintcache
+.lint-todo/
# ember-try
/.node_modules.ember-try/
-/bower.json.ember-try
-/package.json.ember-try
+/pnpm-lock.ember-try.yaml
diff --git a/.prettierrc.cjs b/.prettierrc.cjs
new file mode 100644
index 0000000..d6a5295
--- /dev/null
+++ b/.prettierrc.cjs
@@ -0,0 +1,6 @@
+'use strict';
+
+module.exports = {
+ plugins: ['prettier-plugin-ember-template-tag'],
+ singleQuote: true,
+};
diff --git a/.travis.yml b/.travis.yml
deleted file mode 100644
index 803da5b..0000000
--- a/.travis.yml
+++ /dev/null
@@ -1,61 +0,0 @@
----
-language: node_js
-node_js:
- # we recommend testing addons with the same minimum supported node version as Ember CLI
- # so that your addon works for all apps
- - "12"
-
-dist: xenial
-
-addons:
- chrome: stable
-
-cache:
- directories:
- - $HOME/.npm
-
-env:
- global:
- # See https://git.io/vdao3 for details.
- - JOBS=1
-
-branches:
- only:
- - master
- # npm version tags
- - /^v\d+\.\d+\.\d+/
-
-jobs:
- fast_finish: true
- allow_failures:
- - env: EMBER_TRY_SCENARIO=ember-canary
-
- include:
- # runs linting and tests with current locked deps
- - stage: "Tests"
- name: "Tests"
- script:
- - npm run lint
- - npm run test:ember
-
- - stage: "Additional Tests"
- name: "Floating Dependencies"
- install:
- - npm install --no-package-lock
- script:
- - npm run test:ember
-
- # we recommend new addons test the current and previous LTS
- # as well as latest stable release (bonus points to beta/canary)
- - env: EMBER_TRY_SCENARIO=ember-lts-3.16
- - env: EMBER_TRY_SCENARIO=ember-lts-3.20
- - env: EMBER_TRY_SCENARIO=ember-release
- - env: EMBER_TRY_SCENARIO=ember-beta
- - env: EMBER_TRY_SCENARIO=ember-canary
- - env: EMBER_TRY_SCENARIO=ember-default-with-jquery
- - env: EMBER_TRY_SCENARIO=ember-classic
- - env: EMBER_TRY_SCENARIO=embroider-safe
- - env: EMBER_TRY_SCENARIO=embroider-optimized
-
-script:
- - node_modules/.bin/ember try:one $EMBER_TRY_SCENARIO
diff --git a/.watchmanconfig b/.watchmanconfig
deleted file mode 100644
index e7834e3..0000000
--- a/.watchmanconfig
+++ /dev/null
@@ -1,3 +0,0 @@
-{
- "ignore_dirs": ["tmp", "dist"]
-}
diff --git a/README.md b/README.md
index 56fecee..71b07ad 100644
--- a/README.md
+++ b/README.md
@@ -31,8 +31,8 @@ Since this will run before other content, focus can be programmatically moved by
Compatibility
------------------------------------------------------------------------------
-* Ember.js v3.28 or above
-* Node.js v16 or above
+* Ember.js v4.12 or above
+* Node.js v18 or above
Installation
------------------------------------------------------------------------------
diff --git a/addon/.gitignore b/addon/.gitignore
new file mode 100644
index 0000000..eedd0d8
--- /dev/null
+++ b/addon/.gitignore
@@ -0,0 +1,17 @@
+# The authoritative copies of these live in the monorepo root (because they're
+# more useful on github that way), but the build copies them into here so they
+# will also appear in published NPM packages.
+/README.md
+/LICENSE.md
+
+# compiled output
+dist/
+declarations/
+
+# npm/pnpm/yarn pack output
+*.tgz
+
+# deps & caches
+node_modules/
+.eslintcache
+.prettiercache
diff --git a/addon/.prettierignore b/addon/.prettierignore
new file mode 100644
index 0000000..4e98274
--- /dev/null
+++ b/addon/.prettierignore
@@ -0,0 +1,9 @@
+# unconventional js
+/blueprints/*/files/
+
+# compiled output
+/dist/
+/declarations/
+
+# misc
+/coverage/
diff --git a/addon/.prettierrc.cjs b/addon/.prettierrc.cjs
new file mode 100644
index 0000000..8e62a45
--- /dev/null
+++ b/addon/.prettierrc.cjs
@@ -0,0 +1,14 @@
+'use strict';
+
+module.exports = {
+ plugins: ['prettier-plugin-ember-template-tag'],
+ overrides: [
+ {
+ files: '*.{js,gjs,ts,gts,mjs,mts,cjs,cts}',
+ options: {
+ singleQuote: true,
+ templateSingleQuote: false,
+ },
+ },
+ ],
+};
diff --git a/addon/.stylelintignore b/addon/.stylelintignore
new file mode 100644
index 0000000..45a56f4
--- /dev/null
+++ b/addon/.stylelintignore
@@ -0,0 +1,3 @@
+# compiled output
+/dist/
+/declarations/
diff --git a/addon/.stylelintrc.js b/addon/.stylelintrc.js
new file mode 100644
index 0000000..56a013c
--- /dev/null
+++ b/addon/.stylelintrc.js
@@ -0,0 +1,5 @@
+'use strict';
+
+module.exports = {
+ extends: ['stylelint-config-standard'],
+};
diff --git a/.template-lintrc.js b/addon/.template-lintrc.cjs
similarity index 100%
rename from .template-lintrc.js
rename to addon/.template-lintrc.cjs
diff --git a/addon/addon-main.cjs b/addon/addon-main.cjs
new file mode 100644
index 0000000..d36b0c8
--- /dev/null
+++ b/addon/addon-main.cjs
@@ -0,0 +1,5 @@
+'use strict';
+
+const { addonV1Shim } = require('@embroider/addon-shim');
+
+module.exports = addonV1Shim(__dirname);
diff --git a/addon/babel.config.json b/addon/babel.config.json
new file mode 100644
index 0000000..a4dcce1
--- /dev/null
+++ b/addon/babel.config.json
@@ -0,0 +1,24 @@
+{
+ "plugins": [
+ [
+ "@babel/plugin-transform-typescript",
+ {
+ "allExtensions": true,
+ "onlyRemoveTypeImports": true,
+ "allowDeclareFields": true
+ }
+ ],
+ "@embroider/addon-dev/template-colocation-plugin",
+ [
+ "babel-plugin-ember-template-compilation",
+ {
+ "targetFormat": "hbs",
+ "transforms": []
+ }
+ ],
+ [
+ "module:decorator-transforms",
+ { "runtime": { "import": "decorator-transforms/runtime" } }
+ ]
+ ]
+}
diff --git a/addon/components/navigation-narrator.hbs b/addon/components/navigation-narrator.hbs
deleted file mode 100644
index c40fd0a..0000000
--- a/addon/components/navigation-narrator.hbs
+++ /dev/null
@@ -1,18 +0,0 @@
-
- {{this.navigationText}}
-
-{{#if this.skipLink}}
-
- {{this.skipText}}
-
-{{/if}}
\ No newline at end of file
diff --git a/addon/eslint.config.mjs b/addon/eslint.config.mjs
new file mode 100644
index 0000000..a7c9d80
--- /dev/null
+++ b/addon/eslint.config.mjs
@@ -0,0 +1,133 @@
+/**
+ * Debugging:
+ * https://eslint.org/docs/latest/use/configure/debug
+ * ----------------------------------------------------
+ *
+ * Print a file's calculated configuration
+ *
+ * npx eslint --print-config path/to/file.js
+ *
+ * Inspecting the config
+ *
+ * npx eslint --inspect-config
+ *
+ */
+import babelParser from '@babel/eslint-parser';
+import js from '@eslint/js';
+import prettier from 'eslint-config-prettier';
+import ember from 'eslint-plugin-ember/recommended';
+import importPlugin from 'eslint-plugin-import';
+import n from 'eslint-plugin-n';
+import globals from 'globals';
+import ts from 'typescript-eslint';
+
+const parserOptions = {
+ esm: {
+ js: {
+ ecmaFeatures: { modules: true },
+ ecmaVersion: 'latest',
+ },
+ ts: {
+ projectService: true,
+ project: true,
+ tsconfigRootDir: import.meta.dirname,
+ },
+ },
+};
+
+export default ts.config(
+ js.configs.recommended,
+ ember.configs.base,
+ ember.configs.gjs,
+ ember.configs.gts,
+ prettier,
+ /**
+ * Ignores must be in their own object
+ * https://eslint.org/docs/latest/use/configure/ignore
+ */
+ {
+ ignores: ['dist/', 'declarations/', 'node_modules/', 'coverage/', '!**/.*'],
+ },
+ /**
+ * https://eslint.org/docs/latest/use/configure/configuration-files#configuring-linter-options
+ */
+ {
+ linterOptions: {
+ reportUnusedDisableDirectives: 'error',
+ },
+ },
+ {
+ files: ['**/*.js'],
+ languageOptions: {
+ parser: babelParser,
+ },
+ },
+ {
+ files: ['**/*.{js,gjs}'],
+ languageOptions: {
+ parserOptions: parserOptions.esm.js,
+ globals: {
+ ...globals.browser,
+ },
+ },
+ },
+ {
+ files: ['**/*.{ts,gts}'],
+ languageOptions: {
+ parser: ember.parser,
+ parserOptions: parserOptions.esm.ts,
+ },
+ extends: [...ts.configs.recommendedTypeChecked, ember.configs.gts],
+ },
+ {
+ files: ['src/**/*'],
+ plugins: {
+ import: importPlugin,
+ },
+ rules: {
+ // require relative imports use full extensions
+ 'import/extensions': ['error', 'always', { ignorePackages: true }],
+ },
+ },
+ /**
+ * CJS node files
+ */
+ {
+ files: [
+ '**/*.cjs',
+ '.prettierrc.js',
+ '.stylelintrc.js',
+ '.template-lintrc.js',
+ 'addon-main.cjs',
+ ],
+ plugins: {
+ n,
+ },
+
+ languageOptions: {
+ sourceType: 'script',
+ ecmaVersion: 'latest',
+ globals: {
+ ...globals.node,
+ },
+ },
+ },
+ /**
+ * ESM node files
+ */
+ {
+ files: ['**/*.mjs'],
+ plugins: {
+ n,
+ },
+
+ languageOptions: {
+ sourceType: 'module',
+ ecmaVersion: 'latest',
+ parserOptions: parserOptions.esm.js,
+ globals: {
+ ...globals.node,
+ },
+ },
+ },
+);
diff --git a/addon/index.js b/addon/index.js
deleted file mode 100644
index 06dd1e6..0000000
--- a/addon/index.js
+++ /dev/null
@@ -1 +0,0 @@
-export { defaultValidator } from './utils/validators';
diff --git a/addon/package.json b/addon/package.json
new file mode 100644
index 0000000..1199c60
--- /dev/null
+++ b/addon/package.json
@@ -0,0 +1,111 @@
+{
+ "name": "ember-a11y-refocus",
+ "version": "4.1.4",
+ "description": "accessibility addon to announce route change, reset focus, and provide a skip link",
+ "keywords": [
+ "ember-addon",
+ "accessibility",
+ "a11y",
+ "skiplink"
+ ],
+ "repository": "https://github.com/ember-a11y/ember-a11y-refocus",
+ "license": "MIT",
+ "author": "Melanie Sumner ",
+ "contributors": [
+ {
+ "name": "Alexey Kulakov"
+ }
+ ],
+ "exports": {
+ ".": {
+ "types": "./declarations/index.d.ts",
+ "default": "./dist/index.js"
+ },
+ "./*": {
+ "types": "./declarations/*.d.ts",
+ "default": "./dist/*.js"
+ },
+ "./addon-main.js": "./addon-main.cjs"
+ },
+ "typesVersions": {
+ "*": {
+ "*": [
+ "declarations/*"
+ ]
+ }
+ },
+ "files": [
+ "addon-main.cjs",
+ "declarations",
+ "dist"
+ ],
+ "scripts": {
+ "build": "rollup --config",
+ "format": "prettier . --cache --write",
+ "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
+ "lint:css": "stylelint \"**/*.css\"",
+ "lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
+ "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm format",
+ "lint:format": "prettier . --cache --check --write",
+ "lint:hbs": "ember-template-lint . --no-error-on-unmatched-pattern",
+ "lint:hbs:fix": "ember-template-lint . --fix --no-error-on-unmatched-pattern",
+ "lint:js": "eslint . --cache",
+ "lint:js:fix": "eslint . --fix",
+ "lint:types": "glint",
+ "prepack": "rollup --config",
+ "start": "rollup --config --watch",
+ "test": "echo 'A v2 addon does not have tests, run tests in test-app'"
+ },
+ "dependencies": {
+ "@embroider/addon-shim": "^1.9.0",
+ "@glimmer/component": "^2.0.0",
+ "@glimmer/tracking": "^1.1.2",
+ "decorator-transforms": "^2.3.0"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.26.0",
+ "@babel/eslint-parser": "^7.26.5",
+ "@babel/plugin-transform-typescript": "^7.26.5",
+ "@babel/runtime": "^7.26.0",
+ "@embroider/addon-dev": "^7.1.1",
+ "@eslint/js": "^9.18.0",
+ "@glint/core": "^1.5.1",
+ "@glint/environment-ember-loose": "^1.5.1",
+ "@glint/environment-ember-template-imports": "^1.5.1",
+ "@glint/template": "^1.5.1",
+ "@rollup/plugin-babel": "^6.0.4",
+ "@tsconfig/ember": "^3.0.8",
+ "babel-plugin-ember-template-compilation": "^2.3.0",
+ "concurrently": "^9.1.2",
+ "ember-source": "^6.1.0",
+ "ember-template-lint": "^6.1.0",
+ "eslint": "^9.18.0",
+ "eslint-config-prettier": "^10.0.1",
+ "eslint-plugin-ember": "^12.3.3",
+ "eslint-plugin-import": "^2.31.0",
+ "eslint-plugin-n": "^17.15.1",
+ "globals": "^15.14.0",
+ "prettier": "^3.4.2",
+ "prettier-plugin-ember-template-tag": "^2.0.4",
+ "rollup": "^4.31.0",
+ "rollup-plugin-copy": "^3.5.0",
+ "stylelint": "^16.13.2",
+ "stylelint-config-standard": "^37.0.0",
+ "typescript": "~5.7.3",
+ "typescript-eslint": "^8.21.0"
+ },
+ "peerDependencies": {
+ "ember-source": ">= 4.12.0"
+ },
+ "ember": {
+ "edition": "octane"
+ },
+ "ember-addon": {
+ "app-js": {
+ "./components/navigation-narrator.js": "./dist/_app_/components/navigation-narrator.js"
+ },
+ "main": "addon-main.cjs",
+ "type": "addon",
+ "version": 2
+ }
+}
diff --git a/addon/rollup.config.mjs b/addon/rollup.config.mjs
new file mode 100644
index 0000000..49adb85
--- /dev/null
+++ b/addon/rollup.config.mjs
@@ -0,0 +1,75 @@
+import { Addon } from '@embroider/addon-dev/rollup';
+import { babel } from '@rollup/plugin-babel';
+import copy from 'rollup-plugin-copy';
+
+const addon = new Addon({
+ srcDir: 'src',
+ destDir: 'dist',
+});
+
+export default {
+ // This provides defaults that work well alongside `publicEntrypoints` below.
+ // You can augment this if you need to.
+ output: addon.output(),
+
+ plugins: [
+ // These are the modules that users should be able to import from your
+ // addon. Anything not listed here may get optimized away.
+ // By default all your JavaScript modules (**/*.js) will be importable.
+ // But you are encouraged to tweak this to only cover the modules that make
+ // up your addon's public API. Also make sure your package.json#exports
+ // is aligned to the config here.
+ // See https://github.com/embroider-build/embroider/blob/main/docs/v2-faq.md#how-can-i-define-the-public-exports-of-my-addon
+ addon.publicEntrypoints(['**/*.js', 'index.js', 'template-registry.js']),
+
+ // These are the modules that should get reexported into the traditional
+ // "app" tree. Things in here should also be in publicEntrypoints above, but
+ // not everything in publicEntrypoints necessarily needs to go here.
+ addon.appReexports([
+ 'components/**/*.js',
+ 'helpers/**/*.js',
+ 'modifiers/**/*.js',
+ 'services/**/*.js',
+ ]),
+
+ // Follow the V2 Addon rules about dependencies. Your code can import from
+ // `dependencies` and `peerDependencies` as well as standard Ember-provided
+ // package names.
+ addon.dependencies(),
+
+ // This babel config should *not* apply presets or compile away ES modules.
+ // It exists only to provide development niceties for you, like automatic
+ // template colocation.
+ //
+ // By default, this will load the actual babel config from the file
+ // babel.config.json.
+ babel({
+ babelHelpers: 'bundled',
+ extensions: ['.js', '.gjs', '.ts', '.gts'],
+ }),
+
+ // Ensure that standalone .hbs files are properly integrated as Javascript.
+ addon.hbs(),
+
+ // Ensure that .gjs files are properly integrated as Javascript
+ addon.gjs(),
+
+ // Emit .d.ts declaration files
+ addon.declarations('declarations'),
+
+ // addons are allowed to contain imports of .css files, which we want rollup
+ // to leave alone and keep in the published output.
+ addon.keepAssets(['**/*.css']),
+
+ // Remove leftover build artifacts when starting a new build.
+ addon.clean(),
+
+ // Copy Readme and License into published package
+ copy({
+ targets: [
+ { src: '../README.md', dest: '.' },
+ { src: '../LICENSE.md', dest: '.' },
+ ],
+ }),
+ ],
+};
diff --git a/addon/components/navigation-narrator.js b/addon/src/components/navigation-narrator.gts
similarity index 60%
rename from addon/components/navigation-narrator.js
rename to addon/src/components/navigation-narrator.gts
index d9a9528..e9f9c75 100644
--- a/addon/components/navigation-narrator.js
+++ b/addon/src/components/navigation-narrator.gts
@@ -1,15 +1,41 @@
import Component from '@glimmer/component';
-import { action } from '@ember/object';
+import { service } from '@ember/service';
+import { tracked } from '@glimmer/tracking';
+import { on } from '@ember/modifier';
import { registerDestructor } from '@ember/destroyable';
-import { inject as service } from '@ember/service';
import { schedule, cancel } from '@ember/runloop';
-import { tracked } from '@glimmer/tracking';
-import { defaultValidator } from 'ember-a11y-refocus';
-export default class NavigationNarratorComponent extends Component {
- @service router;
+import { defaultValidator } from '../utils/validators.js';
+
+import type RouterService from '@ember/routing/router-service';
+import type Owner from '@ember/owner';
+import type Transition from '@ember/routing/transition';
+import type { Timer } from '@ember/runloop';
+
+export interface NavigationNarratorSignature {
+ Args: {
+ skipLink?: boolean;
+ skipTo?: string;
+ skipText?: string;
+ navigationText?: string;
+ routeChangeValidator?: (transition: Transition) => boolean;
+ excludeAllQueryParams?: boolean;
+ };
+
+ Blocks: {
+ default: [];
+ };
+
+ Element: HTMLElement;
+}
+
+export default class NavigationNarrator extends Component {
+ @service declare readonly router: RouterService;
+
@tracked isSkipLinkFocused = false;
- timer = null;
+
+ timer: Timer | undefined;
+ transition: Transition | undefined;
/*
* @param skipLink
@@ -81,8 +107,8 @@ export default class NavigationNarratorComponent extends Component {
*/
get hasQueryParams() {
if (
- Object.keys(this.transition.from?.queryParams || {}).length ||
- Object.keys(this.transition.to?.queryParams || {}).length > 0
+ Object.keys(this.transition?.from?.queryParams || {}).length ||
+ Object.keys(this.transition?.to?.queryParams || {}).length > 0
) {
return true;
} else {
@@ -90,45 +116,72 @@ export default class NavigationNarratorComponent extends Component {
}
}
- constructor() {
- super(...arguments);
+ constructor(owner: Owner, args: NavigationNarratorSignature['Args']) {
+ super(owner, args);
this.router.on('routeDidChange', this.onRouteChange);
registerDestructor(this, () => {
+ // eslint-disable-next-line ember/no-runloop
cancel(this.timer);
- this.timer = null;
+ this.timer = undefined;
this.router.off('routeDidChange', this.onRouteChange);
});
}
- @action
- onRouteChange(transition) {
- let shouldFocus;
+ onRouteChange = (transition: Transition) => {
this.transition = transition; // We need to do this because we can't pass an argument to a getter
// add a check to see if it's the same route
- let hasSameRoute = this.transition.from?.name === this.transition.to?.name;
+ const hasSameRoute =
+ this.transition.from?.name === this.transition.to?.name;
if (this.excludeAllQueryParams && this.hasQueryParams && hasSameRoute) {
return;
}
- shouldFocus = this.routeChangeValidator(transition);
+ const shouldFocus = this.routeChangeValidator(transition);
// leaving this here for now because maybe it needs to be used in a custom validator function
if (!shouldFocus) {
return;
}
+ // eslint-disable-next-line ember/no-runloop
this.timer = schedule('afterRender', this, function () {
- this.timer = null;
- document.body.querySelector('#ember-a11y-refocus-nav-message').focus();
+ this.timer = undefined;
+ (
+ document.body.querySelector(
+ '#ember-a11y-refocus-nav-message',
+ ) as HTMLElement
+ )?.focus();
});
- }
+ };
- @action
- handleSkipLinkFocus() {
+ handleSkipLinkFocus = () => {
this.isSkipLinkFocused = !this.isSkipLinkFocused;
- }
+ };
+
+
+
+ {{this.navigationText}}
+
+
+ {{#if this.skipLink}}
+
+ {{this.skipText}}
+
+ {{/if}}
+
}
diff --git a/addon/src/index.ts b/addon/src/index.ts
new file mode 100644
index 0000000..2c4cdc6
--- /dev/null
+++ b/addon/src/index.ts
@@ -0,0 +1,2 @@
+export { default as NavigationNarrator } from './components/navigation-narrator.gts';
+export { defaultValidator } from './utils/validators.js';
diff --git a/addon/styles/addon.css b/addon/src/styles/navigation-narrator.css
similarity index 85%
rename from addon/styles/addon.css
rename to addon/src/styles/navigation-narrator.css
index 3ac1094..0fb3532 100644
--- a/addon/styles/addon.css
+++ b/addon/src/styles/navigation-narrator.css
@@ -13,15 +13,15 @@
position: absolute;
left: 0;
top: 0;
- background-color: rgba(0, 0, 0, 0.75);
+ background-color: rgb(0 0 0 / 75%);
font-size: 0.75rem;
color: #fff;
padding: 0.25rem;
text-decoration: none;
- transform: translateY(-100%);
+ transform: translateY(-100%);
transition: transform 0.3s ease-in-out;
}
.ember-a11y-refocus-skip-link:focus {
transform: translateY(0);
-}
\ No newline at end of file
+}
diff --git a/addon/src/template-registry.ts b/addon/src/template-registry.ts
new file mode 100644
index 0000000..75c0719
--- /dev/null
+++ b/addon/src/template-registry.ts
@@ -0,0 +1,9 @@
+// Easily allow apps, which are not yet using strict mode templates, to consume your Glint types, by importing this file.
+// Add all your components, helpers and modifiers to the template registry here, so apps don't have to do this.
+// See https://typed-ember.gitbook.io/glint/environments/ember/authoring-addons
+
+import type NavigationNarrator from './components/navigation-narrator.gts';
+
+export default interface EmberA11yRefocusRegistry {
+ NavigationNarrator: typeof NavigationNarrator;
+}
diff --git a/addon/utils/routing.js b/addon/src/utils/routing.js
similarity index 100%
rename from addon/utils/routing.js
rename to addon/src/utils/routing.js
diff --git a/addon/utils/validators.js b/addon/src/utils/validators.js
similarity index 69%
rename from addon/utils/validators.js
rename to addon/src/utils/validators.js
index f09636b..1db1c99 100644
--- a/addon/utils/validators.js
+++ b/addon/src/utils/validators.js
@@ -1,4 +1,4 @@
-import { routeInfoEqual } from './routing';
+import { routeInfoEqual } from './routing.js';
export function defaultValidator(transition) {
return !routeInfoEqual(transition.from, transition.to);
diff --git a/addon/tsconfig.json b/addon/tsconfig.json
new file mode 100644
index 0000000..b4d5a45
--- /dev/null
+++ b/addon/tsconfig.json
@@ -0,0 +1,52 @@
+{
+ "extends": "@tsconfig/ember",
+ "include": ["src/**/*", "unpublished-development-types/**/*"],
+ "glint": {
+ "environment": ["ember-loose", "ember-template-imports"]
+ },
+ "compilerOptions": {
+ "allowJs": true,
+ "declarationDir": "declarations",
+ /**
+ https://www.typescriptlang.org/tsconfig#noEmit
+
+ We want to emit declarations, so this option must be set to `false`.
+ @tsconfig/ember sets this to `true`, which is incompatible with our need to set `emitDeclarationOnly`.
+ @tsconfig/ember is more optimized for apps, which wouldn't emit anything, only type check.
+ */
+ "noEmit": false,
+ /**
+ https://www.typescriptlang.org/tsconfig#emitDeclarationOnly
+ We want to only emit declarations as we use Rollup to emit JavaScript.
+ */
+ "emitDeclarationOnly": true,
+
+ /**
+ https://www.typescriptlang.org/tsconfig#noEmitOnError
+ Do not block emit on TS errors.
+ */
+ "noEmitOnError": false,
+
+ /**
+ https://www.typescriptlang.org/tsconfig#rootDir
+ "Default: The longest common path of all non-declaration input files."
+
+ Because we want our declarations' structure to match our rollup output,
+ we need this "rootDir" to match the "srcDir" in the rollup.config.mjs.
+
+ This way, we can have simpler `package.json#exports` that matches
+ imports to files on disk
+ */
+ "rootDir": "./src",
+
+ /**
+ https://www.typescriptlang.org/tsconfig#allowImportingTsExtensions
+
+ We want our tooling to know how to resolve our custom files so the appropriate plugins
+ can do the proper transformations on those files.
+ */
+ "allowImportingTsExtensions": true,
+
+ "types": ["ember-source/types"]
+ }
+}
diff --git a/addon/unpublished-development-types/index.d.ts b/addon/unpublished-development-types/index.d.ts
new file mode 100644
index 0000000..b0440ad
--- /dev/null
+++ b/addon/unpublished-development-types/index.d.ts
@@ -0,0 +1,14 @@
+// Add any types here that you need for local development only.
+// These will *not* be published as part of your addon, so be careful that your published code does not rely on them!
+
+import '@glint/environment-ember-loose';
+import '@glint/environment-ember-template-imports';
+
+declare module '@glint/environment-ember-loose/registry' {
+ // Remove this once entries have been added! 👇
+ // eslint-disable-next-line @typescript-eslint/no-empty-object-type
+ export default interface Registry {
+ // Add any registry entries from other addons here that your addon itself uses (in non-strict mode templates)
+ // See https://typed-ember.gitbook.io/glint/using-glint/ember/using-addons
+ }
+}
diff --git a/app/components/navigation-narrator.js b/app/components/navigation-narrator.js
deleted file mode 100644
index af08ca4..0000000
--- a/app/components/navigation-narrator.js
+++ /dev/null
@@ -1 +0,0 @@
-export { default } from 'ember-a11y-refocus/components/navigation-narrator';
diff --git a/config/ember-cli-update.json b/config/ember-cli-update.json
new file mode 100644
index 0000000..f79f5f5
--- /dev/null
+++ b/config/ember-cli-update.json
@@ -0,0 +1,22 @@
+{
+ "schemaVersion": "1.0.0",
+ "packages": [
+ {
+ "name": "@embroider/addon-blueprint",
+ "version": "3.0.0",
+ "blueprints": [
+ {
+ "name": "@embroider/addon-blueprint",
+ "isBaseBlueprint": true,
+ "options": [
+ "--pnpm",
+ "--typescript",
+ "--addon-location=addon",
+ "--test-app-location=test-app",
+ "--test-app-name=test-app"
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/config/environment.js b/config/environment.js
deleted file mode 100644
index 331ab30..0000000
--- a/config/environment.js
+++ /dev/null
@@ -1,5 +0,0 @@
-'use strict';
-
-module.exports = function (/* environment, appConfig */) {
- return {};
-};
diff --git a/ember-cli-build.js b/ember-cli-build.js
deleted file mode 100644
index a778499..0000000
--- a/ember-cli-build.js
+++ /dev/null
@@ -1,19 +0,0 @@
-'use strict';
-
-const EmberAddon = require('ember-cli/lib/broccoli/ember-addon');
-
-module.exports = function (defaults) {
- let app = new EmberAddon(defaults, {
- // Add options here
- });
-
- /*
- This build file specifies the options for the dummy test app of this
- addon, located in `/tests/dummy`
- This build file does *not* influence how the addon or the app using it
- behave. You most likely want to be modifying `./index.js` or app's build file
- */
-
- const { maybeEmbroider } = require('@embroider/test-setup');
- return maybeEmbroider(app);
-};
diff --git a/index.js b/index.js
deleted file mode 100644
index 0ca063d..0000000
--- a/index.js
+++ /dev/null
@@ -1,5 +0,0 @@
-'use strict';
-
-module.exports = {
- name: require('./package').name,
-};
diff --git a/jsconfig.json b/jsconfig.json
deleted file mode 100644
index f408cac..0000000
--- a/jsconfig.json
+++ /dev/null
@@ -1 +0,0 @@
-{"compilerOptions":{"target":"es6","experimentalDecorators":true},"exclude":["node_modules","bower_components","tmp","vendor",".git","dist"]}
\ No newline at end of file
diff --git a/package.json b/package.json
index 2860736..e297d7d 100644
--- a/package.json
+++ b/package.json
@@ -1,109 +1,28 @@
{
- "name": "ember-a11y-refocus",
+ "name": "workspace-root",
"version": "4.1.4",
- "description": "accessibility addon to announce route change, reset focus, and provide a skip link",
- "keywords": [
- "ember-addon",
- "accessibility",
- "a11y",
- "skiplink"
- ],
- "repository": "https://github.com/ember-a11y/ember-a11y-refocus",
+ "private": true,
+ "repository": "",
"license": "MIT",
- "author": "Melanie Sumner ",
- "directories": {
- "doc": "doc",
- "test": "tests"
- },
+ "author": "",
"scripts": {
- "build": "ember build --environment=production",
- "lint": "npm-run-all --aggregate-output --continue-on-error --parallel 'lint:!(fix)'",
- "lint:fix": "npm-run-all --aggregate-output --continue-on-error --parallel lint:*:fix",
- "lint:hbs": "ember-template-lint .",
- "lint:hbs:fix": "ember-template-lint . --fix",
- "lint:js": "eslint . --cache",
- "lint:js:fix": "eslint . --fix",
- "start": "ember serve -p 0",
- "test": "npm-run-all lint test:*",
- "test:ember": "ember test",
- "test:ember-compat": "ember try:each"
- },
- "dependencies": {
- "ember-cli-babel": "^7.26.11",
- "ember-cli-htmlbars": "^6.0.1"
+ "build": "pnpm --filter ember-a11y-refocus build",
+ "lint": "pnpm --filter '*' lint",
+ "lint:fix": "pnpm --filter '*' lint:fix",
+ "prepare": "pnpm build",
+ "start": "concurrently 'pnpm:start:*' --restart-after 5000 --prefix-colors cyan,white,yellow",
+ "start:addon": "pnpm --filter ember-a11y-refocus start",
+ "start:test-app": "pnpm --filter test-app start",
+ "test": "pnpm --filter '*' test"
},
"devDependencies": {
- "@babel/core": "^7.0.0",
- "@babel/plugin-proposal-async-generator-functions": "^7.20.7",
- "@babel/plugin-proposal-class-static-block": "^7.21.0",
- "@ember/optional-features": "^2.0.0",
- "@ember/string": "^4.0.0",
- "@ember/test-helpers": "^2.6.0",
- "@embroider/compat": "1.9.0",
- "@embroider/core": "1.9.0",
- "@embroider/test-setup": "1.8.3",
- "@embroider/webpack": "1.9.0",
- "@glimmer/component": "^1.1.2",
- "@glimmer/tracking": "^1.1.2",
- "babel-eslint": "^10.1.0",
- "broccoli-asset-rev": "^3.0.0",
- "ember-auto-import": "2.7.4",
- "ember-cli": "^4.1.0",
- "ember-cli-dependency-checker": "^3.2.0",
- "ember-cli-inject-live-reload": "^2.1.0",
- "ember-cli-sri": "^2.1.1",
- "ember-cli-terser": "^4.0.2",
- "ember-disable-prototype-extensions": "^1.1.3",
- "ember-export-application-global": "^2.0.1",
- "ember-load-initializers": "^2.1.2",
- "ember-maybe-import-regenerator": "^1.0.0",
- "ember-page-title": "^7.0.0",
- "ember-qunit": "^5.1.5",
- "ember-resolver": "^8.0.3",
- "ember-source": "^4.12.4",
- "ember-source-channel-url": "^3.0.0",
- "ember-template-lint": "^4.0.0",
- "ember-try": "2.0.0",
- "eslint": "^7.23.0",
- "eslint-config-prettier": "^8.3.0",
- "eslint-plugin-ember": "^10.5.8",
- "eslint-plugin-node": "^11.1.0",
- "eslint-plugin-prettier": "^4.0.0",
- "loader.js": "^4.7.0",
- "npm-run-all": "^4.1.5",
- "npm-run-all2": "^5.0.0",
- "prettier": "^2.5.1",
- "qunit": "^2.17.2",
- "qunit-dom": "^2.0.0",
- "release-it": "^14.2.1",
- "release-it-lerna-changelog": "^4.0.0",
- "webpack": "^5.65.0"
+ "@glint/core": "^1.5.1",
+ "concurrently": "^9.1.2",
+ "prettier": "^3.4.2",
+ "prettier-plugin-ember-template-tag": "^2.0.4"
},
+ "packageManager": "pnpm@10.0.0+sha512.b8fef5494bd3fe4cbd4edabd0745df2ee5be3e4b0b8b08fa643aa3e4c6702ccc0f00d68fa8a8c9858a735a0032485a44990ed2810526c875e416f001b17df12b",
"engines": {
- "node": "16.* || >= 18.*"
- },
- "publishConfig": {
- "registry": "https://registry.npmjs.org"
- },
- "ember": {
- "edition": "octane"
- },
- "ember-addon": {
- "configPath": "tests/dummy/config"
- },
- "release-it": {
- "plugins": {
- "release-it-lerna-changelog": {
- "infile": "CHANGELOG.md",
- "launchEditor": false
- }
- },
- "git": {
- "tagName": "v${version}"
- },
- "github": {
- "release": true,
- "tokenRef": "GITHUB_AUTH"
- }
+ "pnpm": ">= 10.0.0"
}
}
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index b4c8087..e9d6edc 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -1,155 +1,329 @@
lockfileVersion: '9.0'
settings:
- autoInstallPeers: true
+ autoInstallPeers: false
excludeLinksFromLockfile: false
importers:
.:
+ devDependencies:
+ '@glint/core':
+ specifier: ^1.5.1
+ version: 1.5.1(typescript@5.7.3)
+ concurrently:
+ specifier: ^9.1.2
+ version: 9.1.2
+ prettier:
+ specifier: ^3.4.2
+ version: 3.4.2
+ prettier-plugin-ember-template-tag:
+ specifier: ^2.0.4
+ version: 2.0.4(prettier@3.4.2)
+
+ addon:
dependencies:
- ember-cli-babel:
- specifier: ^7.26.11
- version: 7.26.11
- ember-cli-htmlbars:
- specifier: ^6.0.1
- version: 6.3.0
+ '@embroider/addon-shim':
+ specifier: ^1.9.0
+ version: 1.9.0
+ '@glimmer/component':
+ specifier: ^2.0.0
+ version: 2.0.0
+ '@glimmer/tracking':
+ specifier: ^1.1.2
+ version: 1.1.2
+ decorator-transforms:
+ specifier: ^2.3.0
+ version: 2.3.0(@babel/core@7.26.0)
devDependencies:
'@babel/core':
- specifier: ^7.0.0
- version: 7.24.6
- '@babel/plugin-proposal-async-generator-functions':
- specifier: ^7.20.7
- version: 7.20.7(@babel/core@7.24.6)
- '@babel/plugin-proposal-class-static-block':
- specifier: ^7.21.0
- version: 7.21.0(@babel/core@7.24.6)
+ specifier: ^7.26.0
+ version: 7.26.0
+ '@babel/eslint-parser':
+ specifier: ^7.26.5
+ version: 7.26.5(@babel/core@7.26.0)(eslint@9.18.0)
+ '@babel/plugin-transform-typescript':
+ specifier: ^7.26.5
+ version: 7.26.5(@babel/core@7.26.0)
+ '@babel/runtime':
+ specifier: ^7.26.0
+ version: 7.26.0
+ '@embroider/addon-dev':
+ specifier: ^7.1.1
+ version: 7.1.1(@glint/template@1.5.1)(rollup@4.31.0)
+ '@eslint/js':
+ specifier: ^9.18.0
+ version: 9.18.0
+ '@glint/core':
+ specifier: ^1.5.1
+ version: 1.5.1(typescript@5.7.3)
+ '@glint/environment-ember-loose':
+ specifier: ^1.5.1
+ version: 1.5.1(@glimmer/component@2.0.0)(@glint/template@1.5.1)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))
+ '@glint/environment-ember-template-imports':
+ specifier: ^1.5.1
+ version: 1.5.1(@glint/environment-ember-loose@1.5.1(@glimmer/component@2.0.0)(@glint/template@1.5.1)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))))(@glint/template@1.5.1)
+ '@glint/template':
+ specifier: ^1.5.1
+ version: 1.5.1
+ '@rollup/plugin-babel':
+ specifier: ^6.0.4
+ version: 6.0.4(@babel/core@7.26.0)(rollup@4.31.0)
+ '@tsconfig/ember':
+ specifier: ^3.0.8
+ version: 3.0.8
+ babel-plugin-ember-template-compilation:
+ specifier: ^2.3.0
+ version: 2.3.0
+ concurrently:
+ specifier: ^9.1.2
+ version: 9.1.2
+ ember-source:
+ specifier: ^6.1.0
+ version: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
+ ember-template-lint:
+ specifier: ^6.1.0
+ version: 6.1.0
+ eslint:
+ specifier: ^9.18.0
+ version: 9.18.0
+ eslint-config-prettier:
+ specifier: ^10.0.1
+ version: 10.0.1(eslint@9.18.0)
+ eslint-plugin-ember:
+ specifier: ^12.3.3
+ version: 12.3.3(@babel/core@7.26.0)(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)
+ eslint-plugin-import:
+ specifier: ^2.31.0
+ version: 2.31.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)
+ eslint-plugin-n:
+ specifier: ^17.15.1
+ version: 17.15.1(eslint@9.18.0)
+ globals:
+ specifier: ^15.14.0
+ version: 15.14.0
+ prettier:
+ specifier: ^3.4.2
+ version: 3.4.2
+ prettier-plugin-ember-template-tag:
+ specifier: ^2.0.4
+ version: 2.0.4(prettier@3.4.2)
+ rollup:
+ specifier: ^4.31.0
+ version: 4.31.0
+ rollup-plugin-copy:
+ specifier: ^3.5.0
+ version: 3.5.0
+ stylelint:
+ specifier: ^16.13.2
+ version: 16.13.2(typescript@5.7.3)
+ stylelint-config-standard:
+ specifier: ^37.0.0
+ version: 37.0.0(stylelint@16.13.2(typescript@5.7.3))
+ typescript:
+ specifier: ~5.7.3
+ version: 5.7.3
+ typescript-eslint:
+ specifier: ^8.21.0
+ version: 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+
+ test-app:
+ devDependencies:
+ '@babel/core':
+ specifier: ^7.26.0
+ version: 7.26.0
+ '@babel/eslint-parser':
+ specifier: ^7.26.5
+ version: 7.26.5(@babel/core@7.26.0)(eslint@9.18.0)
+ '@babel/plugin-proposal-decorators':
+ specifier: ^7.25.9
+ version: 7.25.9(@babel/core@7.26.0)
'@ember/optional-features':
- specifier: ^2.0.0
- version: 2.1.0
+ specifier: ^2.2.0
+ version: 2.2.0
'@ember/string':
specifier: ^4.0.0
version: 4.0.0
'@ember/test-helpers':
- specifier: ^2.6.0
- version: 2.9.4(@babel/core@7.24.6)(ember-source@4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0))
- '@embroider/compat':
- specifier: 1.9.0
- version: 1.9.0(@embroider/core@1.9.0)
- '@embroider/core':
- specifier: 1.9.0
- version: 1.9.0
+ specifier: ^5.0.0
+ version: 5.0.0(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
'@embroider/test-setup':
- specifier: 1.8.3
- version: 1.8.3
- '@embroider/webpack':
- specifier: 1.9.0
- version: 1.9.0(@embroider/core@1.9.0)(webpack@5.91.0)
+ specifier: ^4.0.0
+ version: 4.0.0(@embroider/core@3.5.0(@glint/template@1.5.1))
+ '@eslint/js':
+ specifier: ^9.18.0
+ version: 9.18.0
'@glimmer/component':
- specifier: ^1.1.2
- version: 1.1.2(@babel/core@7.24.6)
+ specifier: ^2.0.0
+ version: 2.0.0
'@glimmer/tracking':
specifier: ^1.1.2
version: 1.1.2
- babel-eslint:
- specifier: ^10.1.0
- version: 10.1.0(eslint@7.32.0)
+ '@glint/core':
+ specifier: ^1.5.1
+ version: 1.5.1(typescript@5.7.3)
+ '@glint/environment-ember-loose':
+ specifier: ^1.5.1
+ version: 1.5.1(@glimmer/component@2.0.0)(@glint/template@1.5.1)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))
+ '@glint/environment-ember-template-imports':
+ specifier: ^1.5.1
+ version: 1.5.1(@glint/environment-ember-loose@1.5.1(@glimmer/component@2.0.0)(@glint/template@1.5.1)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))))(@glint/template@1.5.1)
+ '@glint/template':
+ specifier: ^1.5.1
+ version: 1.5.1
+ '@tsconfig/ember':
+ specifier: ^3.0.8
+ version: 3.0.8
+ '@types/eslint__js':
+ specifier: ^8.42.3
+ version: 8.42.3
+ '@types/qunit':
+ specifier: ^2.19.12
+ version: 2.19.12
+ '@types/rsvp':
+ specifier: ^4.0.9
+ version: 4.0.9
+ '@typescript-eslint/eslint-plugin':
+ specifier: ^8.21.0
+ version: 8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3)
+ '@typescript-eslint/parser':
+ specifier: ^8.21.0
+ version: 8.21.0(eslint@9.18.0)(typescript@5.7.3)
broccoli-asset-rev:
specifier: ^3.0.0
version: 3.0.0
+ concurrently:
+ specifier: ^9.1.2
+ version: 9.1.2
+ ember-a11y-refocus:
+ specifier: workspace:*
+ version: link:../addon
ember-auto-import:
- specifier: 2.7.4
- version: 2.7.4(webpack@5.91.0)
+ specifier: ^2.10.0
+ version: 2.10.0(@glint/template@1.5.1)(webpack@5.97.1)
ember-cli:
- specifier: ^4.1.0
- version: 4.12.3(babel-core@6.26.3)(handlebars@4.7.8)(underscore@1.13.6)
+ specifier: ~6.1.0
+ version: 6.1.0(handlebars@4.7.8)(underscore@1.13.7)
+ ember-cli-app-version:
+ specifier: ^7.0.0
+ version: 7.0.0(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
+ ember-cli-babel:
+ specifier: ^8.2.0
+ version: 8.2.0(@babel/core@7.26.0)
+ ember-cli-clean-css:
+ specifier: ^3.0.0
+ version: 3.0.0
ember-cli-dependency-checker:
- specifier: ^3.2.0
- version: 3.3.2(ember-cli@4.12.3(babel-core@6.26.3)(handlebars@4.7.8)(underscore@1.13.6))
+ specifier: ^3.3.3
+ version: 3.3.3(ember-cli@6.1.0(handlebars@4.7.8)(underscore@1.13.7))
+ ember-cli-htmlbars:
+ specifier: ^6.3.0
+ version: 6.3.0
ember-cli-inject-live-reload:
specifier: ^2.1.0
version: 2.1.0
+ ember-cli-sass:
+ specifier: ^11.0.1
+ version: 11.0.1
ember-cli-sri:
specifier: ^2.1.1
version: 2.1.1
ember-cli-terser:
specifier: ^4.0.2
version: 4.0.2
- ember-disable-prototype-extensions:
- specifier: ^1.1.3
- version: 1.1.3
- ember-export-application-global:
- specifier: ^2.0.1
- version: 2.0.1
+ ember-data:
+ specifier: ~5.3.9
+ version: 5.3.9(@ember/string@4.0.0)(@ember/test-helpers@5.0.0(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@ember/test-waiters@3.1.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))(qunit@2.24.0)
+ ember-fetch:
+ specifier: ^8.1.2
+ version: 8.1.2
ember-load-initializers:
- specifier: ^2.1.2
- version: 2.1.2(@babel/core@7.24.6)
- ember-maybe-import-regenerator:
- specifier: ^1.0.0
- version: 1.0.0
+ specifier: ^3.0.1
+ version: 3.0.1(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
+ ember-modifier:
+ specifier: ^4.2.0
+ version: 4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
ember-page-title:
- specifier: ^7.0.0
- version: 7.0.0
+ specifier: ^8.2.3
+ version: 8.2.3(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
ember-qunit:
- specifier: ^5.1.5
- version: 5.1.5(@ember/test-helpers@2.9.4(@babel/core@7.24.6)(ember-source@4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0)))(qunit@2.20.1)
+ specifier: ^9.0.1
+ version: 9.0.1(@ember/test-helpers@5.0.0(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))(qunit@2.24.0)
ember-resolver:
- specifier: ^8.0.3
- version: 8.1.0(@babel/core@7.24.6)
+ specifier: ^13.1.0
+ version: 13.1.0(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
ember-source:
- specifier: ^4.12.4
- version: 4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0)
+ specifier: ~6.1.0
+ version: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
ember-source-channel-url:
specifier: ^3.0.0
- version: 3.0.0(encoding@0.1.13)
+ version: 3.0.0
+ ember-template-imports:
+ specifier: ^4.2.0
+ version: 4.2.0
ember-template-lint:
- specifier: ^4.0.0
- version: 4.18.2
+ specifier: ^6.1.0
+ version: 6.1.0
ember-try:
- specifier: 2.0.0
- version: 2.0.0(encoding@0.1.13)
+ specifier: ^3.0.0
+ version: 3.0.0
eslint:
- specifier: ^7.23.0
- version: 7.32.0
+ specifier: ^9.18.0
+ version: 9.18.0
eslint-config-prettier:
- specifier: ^8.3.0
- version: 8.10.0(eslint@7.32.0)
+ specifier: ^10.0.1
+ version: 10.0.1(eslint@9.18.0)
eslint-plugin-ember:
- specifier: ^10.5.8
- version: 10.6.1(eslint@7.32.0)
- eslint-plugin-node:
- specifier: ^11.1.0
- version: 11.1.0(eslint@7.32.0)
- eslint-plugin-prettier:
- specifier: ^4.0.0
- version: 4.2.1(eslint-config-prettier@8.10.0(eslint@7.32.0))(eslint@7.32.0)(prettier@2.8.8)
+ specifier: ^12.3.3
+ version: 12.3.3(@babel/core@7.26.0)(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)
+ eslint-plugin-n:
+ specifier: ^17.15.1
+ version: 17.15.1(eslint@9.18.0)
+ eslint-plugin-qunit:
+ specifier: ^8.1.2
+ version: 8.1.2(eslint@9.18.0)
+ globals:
+ specifier: ^15.14.0
+ version: 15.14.0
loader.js:
specifier: ^4.7.0
version: 4.7.0
- npm-run-all:
- specifier: ^4.1.5
- version: 4.1.5
- npm-run-all2:
- specifier: ^5.0.0
- version: 5.0.2
prettier:
- specifier: ^2.5.1
- version: 2.8.8
+ specifier: ^3.4.2
+ version: 3.4.2
+ prettier-plugin-ember-template-tag:
+ specifier: ^2.0.4
+ version: 2.0.4(prettier@3.4.2)
qunit:
- specifier: ^2.17.2
- version: 2.20.1
+ specifier: ^2.24.0
+ version: 2.24.0
qunit-dom:
- specifier: ^2.0.0
- version: 2.0.0
- release-it:
- specifier: ^14.2.1
- version: 14.14.3(encoding@0.1.13)
- release-it-lerna-changelog:
+ specifier: ^3.4.0
+ version: 3.4.0
+ sass:
+ specifier: ^1.83.4
+ version: 1.83.4
+ stylelint:
+ specifier: ^16.13.2
+ version: 16.13.2(typescript@5.7.3)
+ stylelint-config-standard:
+ specifier: ^37.0.0
+ version: 37.0.0(stylelint@16.13.2(typescript@5.7.3))
+ stylelint-config-standard-scss:
+ specifier: ^13.1.0
+ version: 13.1.0(postcss@8.5.1)(stylelint@16.13.2(typescript@5.7.3))
+ tracked-built-ins:
specifier: ^4.0.0
- version: 4.0.1(release-it@14.14.3(encoding@0.1.13))
+ version: 4.0.0(@babel/core@7.26.0)
+ typescript:
+ specifier: ^5.7.3
+ version: 5.7.3
+ typescript-eslint:
+ specifier: ^8.21.0
+ version: 8.21.0(eslint@9.18.0)(typescript@5.7.3)
webpack:
- specifier: ^5.65.0
- version: 5.91.0
+ specifier: ^5.97.1
+ version: 5.97.1
packages:
@@ -157,171 +331,146 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
- '@babel/code-frame@7.12.11':
- resolution: {integrity: sha512-Zt1yodBx1UcyiePMSkWnU4hPqhwq7hGi2nFL1LeA3EUl+q2LQx16MISgJ0+z7dnmgvP9QtIleuETGOiOH1RcIw==}
-
- '@babel/code-frame@7.24.6':
- resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==}
+ '@babel/code-frame@7.26.2':
+ resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.24.6':
- resolution: {integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==}
+ '@babel/compat-data@7.26.3':
+ resolution: {integrity: sha512-nHIxvKPniQXpmQLb0vhY3VaFb3S0YrTAwpOWJZh1wn3oJPjJk9Asva204PsBdmAE8vpzfHudT8DB0scYvy9q0g==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.24.6':
- resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==}
+ '@babel/core@7.26.0':
+ resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.24.6':
- resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==}
- engines: {node: '>=6.9.0'}
+ '@babel/eslint-parser@7.26.5':
+ resolution: {integrity: sha512-Kkm8C8uxI842AwQADxl0GbcG1rupELYLShazYEZO/2DYjhyWXJIOUVOE3tBYm6JXzUCNJOZEzqc4rCW/jsEQYQ==}
+ engines: {node: ^10.13.0 || ^12.13.0 || >=14.0.0}
+ peerDependencies:
+ '@babel/core': ^7.11.0
+ eslint: ^7.5.0 || ^8.0.0 || ^9.0.0
- '@babel/helper-annotate-as-pure@7.24.6':
- resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==}
+ '@babel/generator@7.26.3':
+ resolution: {integrity: sha512-6FF/urZvD0sTeO7k6/B15pMLC4CHUv1426lzr3N01aHJTl046uCAh9LXW/fzeXXjPNCJ6iABW5XaWOsIZB93aQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.6':
- resolution: {integrity: sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==}
+ '@babel/helper-annotate-as-pure@7.25.9':
+ resolution: {integrity: sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.24.6':
- resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==}
+ '@babel/helper-compilation-targets@7.25.9':
+ resolution: {integrity: sha512-j9Db8Suy6yV/VHa4qzrj9yZfZxhLWQdVnRlXxmKLYlhWUVB1sB2G5sxuWYXk/whHD9iW76PmNzxZ4UCnTQTVEQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.24.6':
- resolution: {integrity: sha512-djsosdPJVZE6Vsw3kk7IPRWethP94WHGOhQTc67SNXE0ZzMhHgALw8iGmYS0TD1bbMM0VDROy43od7/hN6WYcA==}
+ '@babel/helper-create-class-features-plugin@7.25.9':
+ resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.24.6':
- resolution: {integrity: sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==}
+ '@babel/helper-create-regexp-features-plugin@7.26.3':
+ resolution: {integrity: sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-define-polyfill-provider@0.6.2':
- resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
+ '@babel/helper-define-polyfill-provider@0.6.3':
+ resolution: {integrity: sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- '@babel/helper-environment-visitor@7.24.6':
- resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-function-name@7.24.6':
- resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-hoist-variables@7.24.6':
- resolution: {integrity: sha512-SF/EMrC3OD7dSta1bLJIlrsVxwtd0UpjRJqLno6125epQMJ/kyFmpTT4pbvPbdQHzCHg+biQ7Syo8lnDtbR+uA==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-member-expression-to-functions@7.24.6':
- resolution: {integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==}
+ '@babel/helper-member-expression-to-functions@7.25.9':
+ resolution: {integrity: sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.6':
- resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==}
+ '@babel/helper-module-imports@7.25.9':
+ resolution: {integrity: sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-transforms@7.24.6':
- resolution: {integrity: sha512-Y/YMPm83mV2HJTbX1Qh2sjgjqcacvOlhbzdCCsSlblOKjSYmQqEbO6rUniWQyRo9ncyfjT8hnUjlG06RXDEmcA==}
+ '@babel/helper-module-transforms@7.26.0':
+ resolution: {integrity: sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-optimise-call-expression@7.24.6':
- resolution: {integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==}
+ '@babel/helper-optimise-call-expression@7.25.9':
+ resolution: {integrity: sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.6':
- resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==}
+ '@babel/helper-plugin-utils@7.26.5':
+ resolution: {integrity: sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-remap-async-to-generator@7.24.6':
- resolution: {integrity: sha512-1Qursq9ArRZPAMOZf/nuzVW8HgJLkTB9y9LfP4lW2MVp4e9WkLJDovfKBxoDcCk6VuzIxyqWHyBoaCtSRP10yg==}
+ '@babel/helper-remap-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.24.6':
- resolution: {integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==}
+ '@babel/helper-replace-supers@7.25.9':
+ resolution: {integrity: sha512-IiDqTOTBQy0sWyeXyGSC5TBJpGFXBkRynjBeXsvbhQFKj2viwJC76Epz35YLU1fpe/Am6Vppb7W7zM4fPQzLsQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-simple-access@7.24.6':
- resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
- resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-split-export-declaration@7.24.6':
- resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==}
- engines: {node: '>=6.9.0'}
-
- '@babel/helper-string-parser@7.24.6':
- resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==}
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
+ resolution: {integrity: sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.6':
- resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==}
+ '@babel/helper-string-parser@7.25.9':
+ resolution: {integrity: sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.6':
- resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==}
+ '@babel/helper-validator-identifier@7.25.9':
+ resolution: {integrity: sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.24.6':
- resolution: {integrity: sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==}
+ '@babel/helper-validator-option@7.25.9':
+ resolution: {integrity: sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.24.6':
- resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==}
+ '@babel/helper-wrap-function@7.25.9':
+ resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.6':
- resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==}
+ '@babel/helpers@7.26.0':
+ resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.24.6':
- resolution: {integrity: sha512-eNZXdfU35nJC2h24RznROuOpO94h6x8sg9ju0tT9biNtLZ2vuP8SduLqqV+/8+cebSLV9SJEAN5Z3zQbJG/M+Q==}
+ '@babel/parser@7.26.3':
+ resolution: {integrity: sha512-WJ/CvmY8Mea8iDXo6a7RK2wbmJITT5fN3BEkRuFlxVyNx8jOKIIhmC4fSkTcPcf8JyavbBwIe6OpiCOBXt/IcA==}
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6':
- resolution: {integrity: sha512-bYndrJ6Ph6Ar+GaB5VAc0JPoP80bQCm4qon6JEzXfRl5QZyQ8Ur1K6k7htxWmPA5z+k7JQvaMUrtXlqclWYzKw==}
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9':
+ resolution: {integrity: sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6':
- resolution: {integrity: sha512-iVuhb6poq5ikqRq2XWU6OQ+R5o9wF+r/or9CeUyovgptz0UlnK4/seOQ1Istu/XybYjAhQv1FRSSfHHufIku5Q==}
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9':
+ resolution: {integrity: sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6':
- resolution: {integrity: sha512-c8TER5xMDYzzFcGqOEp9l4hvB7dcbhcGjcLVwxWfe4P5DOafdwjsBJZKsmv+o3aXh7NhopvayQIovHrh2zSRUQ==}
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9':
+ resolution: {integrity: sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.13.0
+ '@babel/core': ^7.0.0
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6':
- resolution: {integrity: sha512-z8zEjYmwBUHN/pCF3NuWBhHQjJCrd33qAi8MgANfMrAvn72k2cImT8VjK9LJFu4ysOLJqhfkYYb3MvwANRUNZQ==}
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.13.0
- '@babel/plugin-proposal-async-generator-functions@7.20.7':
- resolution: {integrity: sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==}
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9':
+ resolution: {integrity: sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==}
engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-async-generator-functions instead.
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
'@babel/plugin-proposal-class-properties@7.18.6':
resolution: {integrity: sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==}
@@ -330,30 +479,9 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-class-static-block@7.21.0':
- resolution: {integrity: sha512-XP5G9MWNUskFuP30IfFSEFB0Z6HzLIUcjYM4bYOPHXl7eiJ9HFv8tWj6TXTN5QODiEhDZAeI4hLok2iHFFV4hw==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-static-block instead.
- peerDependencies:
- '@babel/core': ^7.12.0
-
- '@babel/plugin-proposal-decorators@7.24.6':
- resolution: {integrity: sha512-8DjR0/DzlBhz2SVi9a19/N2U5+C3y3rseXuyoKL9SP8vnbewscj1eHZtL6kpEn4UCuUmqEo0mvqyDYRFoN2gpA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6':
- resolution: {integrity: sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==}
- engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-proposal-optional-chaining@7.21.0':
- resolution: {integrity: sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==}
+ '@babel/plugin-proposal-decorators@7.25.9':
+ resolution: {integrity: sha512-smkNLL/O1ezy9Nhy4CNosc4Va+1wo5w4gzSZeLe6y6dM4mmHfYOCPolXQPHQxonZCF+ZyebxN9vqOolkYrSn5g==}
engines: {node: '>=6.9.0'}
- deprecated: This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -377,104 +505,32 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-async-generators@7.8.4':
- resolution: {integrity: sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-class-properties@7.12.13':
- resolution: {integrity: sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-class-static-block@7.14.5':
- resolution: {integrity: sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-decorators@7.24.6':
- resolution: {integrity: sha512-gInH8LEqBp+wkwTVihCd/qf+4s28g81FZyvlIbAurHk9eSiItEKG7E0uNK2UdpgsD79aJVAW3R3c85h0YJ0jsw==}
+ '@babel/plugin-syntax-decorators@7.25.9':
+ resolution: {integrity: sha512-ryzI0McXUPJnRCvMo4lumIKZUzhYUO/ScI+Mz4YVaTLt04DHNSjEUjKVvbzQjZFLuod/cYEc07mJWhzl6v4DPg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-dynamic-import@7.8.3':
- resolution: {integrity: sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-export-namespace-from@7.8.3':
- resolution: {integrity: sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-import-assertions@7.24.6':
- resolution: {integrity: sha512-BE6o2BogJKJImTmGpkmOic4V0hlRRxVtzqxiSPa8TIFxyhi4EFjHm08nq1M4STK4RytuLMgnSz0/wfflvGFNOg==}
+ '@babel/plugin-syntax-import-assertions@7.26.0':
+ resolution: {integrity: sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-attributes@7.24.6':
- resolution: {integrity: sha512-D+CfsVZousPXIdudSII7RGy52+dYRtbyKAZcvtQKq/NpsivyMVduepzcLqG5pMBugtMdedxdC8Ramdpcne9ZWQ==}
+ '@babel/plugin-syntax-import-attributes@7.26.0':
+ resolution: {integrity: sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-import-meta@7.10.4':
- resolution: {integrity: sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-json-strings@7.8.3':
- resolution: {integrity: sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4':
- resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3':
- resolution: {integrity: sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-numeric-separator@7.10.4':
- resolution: {integrity: sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-object-rest-spread@7.8.3':
- resolution: {integrity: sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-optional-catch-binding@7.8.3':
- resolution: {integrity: sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-optional-chaining@7.8.3':
- resolution: {integrity: sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-private-property-in-object@7.14.5':
resolution: {integrity: sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-top-level-await@7.14.5':
- resolution: {integrity: sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
- '@babel/plugin-syntax-typescript@7.24.6':
- resolution: {integrity: sha512-TzCtxGgVTEJWWwcYwQhCIQ6WaKlo80/B+Onsk4RRCcYqpYGFcG9etPW94VToGte5AAcxRrhjPUFvUS3Y2qKi4A==}
+ '@babel/plugin-syntax-typescript@7.25.9':
+ resolution: {integrity: sha512-hjMgRy5hb8uJJjUcdWunWVcoi9bGpJp8p5Ol1229PoN6aytsLwNMgmdftO23wnCLMfVmTwZDWMPNq/D1SY60JQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -485,312 +541,314 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-arrow-functions@7.24.6':
- resolution: {integrity: sha512-jSSSDt4ZidNMggcLx8SaKsbGNEfIl0PHx/4mFEulorE7bpYLbN0d3pDW3eJ7Y5Z3yPhy3L3NaPCYyTUY7TuugQ==}
+ '@babel/plugin-transform-arrow-functions@7.25.9':
+ resolution: {integrity: sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.24.6':
- resolution: {integrity: sha512-VEP2o4iR2DqQU6KPgizTW2mnMx6BG5b5O9iQdrW9HesLkv8GIA8x2daXBQxw1MrsIkFQGA/iJ204CKoQ8UcnAA==}
+ '@babel/plugin-transform-async-generator-functions@7.25.9':
+ resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.24.6':
- resolution: {integrity: sha512-NTBA2SioI3OsHeIn6sQmhvXleSl9T70YY/hostQLveWs0ic+qvbA3fa0kwAwQ0OA/XGaAerNZRQGJyRfhbJK4g==}
+ '@babel/plugin-transform-async-to-generator@7.25.9':
+ resolution: {integrity: sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoped-functions@7.24.6':
- resolution: {integrity: sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==}
+ '@babel/plugin-transform-block-scoped-functions@7.25.9':
+ resolution: {integrity: sha512-toHc9fzab0ZfenFpsyYinOX0J/5dgJVA2fm64xPewu7CoYHWEivIWKxkK2rMi4r3yQqLnVmheMXRdG+k239CgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.24.6':
- resolution: {integrity: sha512-S/t1Xh4ehW7sGA7c1j/hiOBLnEYCp/c2sEG4ZkL8kI1xX9tW2pqJTCHKtdhe/jHKt8nG0pFCrDHUXd4DvjHS9w==}
+ '@babel/plugin-transform-block-scoping@7.25.9':
+ resolution: {integrity: sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-properties@7.24.6':
- resolution: {integrity: sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==}
+ '@babel/plugin-transform-class-properties@7.25.9':
+ resolution: {integrity: sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-class-static-block@7.24.6':
- resolution: {integrity: sha512-1QSRfoPI9RoLRa8Mnakc6v3e0gJxiZQTYrMfLn+mD0sz5+ndSzwymp2hDcYJTyT0MOn0yuWzj8phlIvO72gTHA==}
+ '@babel/plugin-transform-class-static-block@7.26.0':
+ resolution: {integrity: sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.12.0
- '@babel/plugin-transform-classes@7.24.6':
- resolution: {integrity: sha512-+fN+NO2gh8JtRmDSOB6gaCVo36ha8kfCW1nMq2Gc0DABln0VcHN4PrALDvF5/diLzIRKptC7z/d7Lp64zk92Fg==}
+ '@babel/plugin-transform-classes@7.25.9':
+ resolution: {integrity: sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.24.6':
- resolution: {integrity: sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==}
+ '@babel/plugin-transform-computed-properties@7.25.9':
+ resolution: {integrity: sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.6':
- resolution: {integrity: sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==}
+ '@babel/plugin-transform-destructuring@7.25.9':
+ resolution: {integrity: sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dotall-regex@7.24.6':
- resolution: {integrity: sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==}
+ '@babel/plugin-transform-dotall-regex@7.25.9':
+ resolution: {integrity: sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-duplicate-keys@7.24.6':
- resolution: {integrity: sha512-/8Odwp/aVkZwPFJMllSbawhDAO3UJi65foB00HYnK/uXvvCPm0TAXSByjz1mpRmp0q6oX2SIxpkUOpPFHk7FLA==}
+ '@babel/plugin-transform-duplicate-keys@7.25.9':
+ resolution: {integrity: sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-dynamic-import@7.24.6':
- resolution: {integrity: sha512-vpq8SSLRTBLOHUZHSnBqVo0AKX3PBaoPs2vVzYVWslXDTDIpwAcCDtfhUcHSQQoYoUvcFPTdC8TZYXu9ZnLT/w==}
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-transform-exponentiation-operator@7.24.6':
- resolution: {integrity: sha512-EemYpHtmz0lHE7hxxxYEuTYOOBZ43WkDgZ4arQ4r+VX9QHuNZC+WH3wUWmRNvR8ECpTRne29aZV6XO22qpOtdA==}
+ '@babel/plugin-transform-dynamic-import@7.25.9':
+ resolution: {integrity: sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-export-namespace-from@7.24.6':
- resolution: {integrity: sha512-inXaTM1SVrIxCkIJ5gqWiozHfFMStuGbGJAxZFBoHcRRdDP0ySLb3jH6JOwmfiinPwyMZqMBX+7NBDCO4z0NSA==}
+ '@babel/plugin-transform-exponentiation-operator@7.26.3':
+ resolution: {integrity: sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.24.6':
- resolution: {integrity: sha512-n3Sf72TnqK4nw/jziSqEl1qaWPbCRw2CziHH+jdRYvw4J6yeCzsj4jdw8hIntOEeDGTmHVe2w4MVL44PN0GMzg==}
+ '@babel/plugin-transform-export-namespace-from@7.25.9':
+ resolution: {integrity: sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.24.6':
- resolution: {integrity: sha512-sOajCu6V0P1KPljWHKiDq6ymgqB+vfo3isUS4McqW1DZtvSVU2v/wuMhmRmkg3sFoq6GMaUUf8W4WtoSLkOV/Q==}
+ '@babel/plugin-transform-for-of@7.25.9':
+ resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-json-strings@7.24.6':
- resolution: {integrity: sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==}
+ '@babel/plugin-transform-function-name@7.25.9':
+ resolution: {integrity: sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.24.6':
- resolution: {integrity: sha512-f2wHfR2HF6yMj+y+/y07+SLqnOSwRp8KYLpQKOzS58XLVlULhXbiYcygfXQxJlMbhII9+yXDwOUFLf60/TL5tw==}
+ '@babel/plugin-transform-json-strings@7.25.9':
+ resolution: {integrity: sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-logical-assignment-operators@7.24.6':
- resolution: {integrity: sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==}
+ '@babel/plugin-transform-literals@7.25.9':
+ resolution: {integrity: sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-member-expression-literals@7.24.6':
- resolution: {integrity: sha512-9g8iV146szUo5GWgXpRbq/GALTnY+WnNuRTuRHWWFfWGbP9ukRL0aO/jpu9dmOPikclkxnNsjY8/gsWl6bmZJQ==}
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9':
+ resolution: {integrity: sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-amd@7.24.6':
- resolution: {integrity: sha512-eAGogjZgcwqAxhyFgqghvoHRr+EYRQPFjUXrTYKBRb5qPnAVxOOglaxc4/byHqjvq/bqO2F3/CGwTHsgKJYHhQ==}
+ '@babel/plugin-transform-member-expression-literals@7.25.9':
+ resolution: {integrity: sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.6':
- resolution: {integrity: sha512-JEV8l3MHdmmdb7S7Cmx6rbNEjRCgTQMZxllveHO0mx6uiclB0NflCawlQQ6+o5ZrwjUBYPzHm2XoK4wqGVUFuw==}
+ '@babel/plugin-transform-modules-amd@7.25.9':
+ resolution: {integrity: sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-systemjs@7.24.6':
- resolution: {integrity: sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==}
+ '@babel/plugin-transform-modules-commonjs@7.26.3':
+ resolution: {integrity: sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-umd@7.24.6':
- resolution: {integrity: sha512-esRCC/KsSEUvrSjv5rFYnjZI6qv4R1e/iHQrqwbZIoRJqk7xCvEUiN7L1XrmW5QSmQe3n1XD88wbgDTWLbVSyg==}
+ '@babel/plugin-transform-modules-systemjs@7.25.9':
+ resolution: {integrity: sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.6':
- resolution: {integrity: sha512-6DneiCiu91wm3YiNIGDWZsl6GfTTbspuj/toTEqLh9d4cx50UIzSdg+T96p8DuT7aJOBRhFyaE9ZvTHkXrXr6Q==}
+ '@babel/plugin-transform-modules-umd@7.25.9':
+ resolution: {integrity: sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0
+ '@babel/core': ^7.0.0-0
- '@babel/plugin-transform-new-target@7.24.6':
- resolution: {integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==}
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9':
+ resolution: {integrity: sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.6':
- resolution: {integrity: sha512-+QlAiZBMsBK5NqrBWFXCYeXyiU1y7BQ/OYaiPAcQJMomn5Tyg+r5WuVtyEuvTbpV7L25ZSLfE+2E9ywj4FD48A==}
+ '@babel/plugin-transform-new-target@7.25.9':
+ resolution: {integrity: sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-numeric-separator@7.24.6':
- resolution: {integrity: sha512-6voawq8T25Jvvnc4/rXcWZQKKxUNZcKMS8ZNrjxQqoRFernJJKjE3s18Qo6VFaatG5aiX5JV1oPD7DbJhn0a4Q==}
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9':
+ resolution: {integrity: sha512-ENfftpLZw5EItALAD4WsY/KUWvhUlZndm5GC7G3evUsVeSJB6p0pBeLQUnRnBCBx7zV0RKQjR9kCuwrsIrjWog==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-rest-spread@7.24.6':
- resolution: {integrity: sha512-OKmi5wiMoRW5Smttne7BwHM8s/fb5JFs+bVGNSeHWzwZkWXWValR1M30jyXo1s/RaqgwwhEC62u4rFH/FBcBPg==}
+ '@babel/plugin-transform-numeric-separator@7.25.9':
+ resolution: {integrity: sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-object-super@7.24.6':
- resolution: {integrity: sha512-N/C76ihFKlZgKfdkEYKtaRUtXZAgK7sOY4h2qrbVbVTXPrKGIi8aww5WGe/+Wmg8onn8sr2ut6FXlsbu/j6JHg==}
+ '@babel/plugin-transform-object-rest-spread@7.25.9':
+ resolution: {integrity: sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-catch-binding@7.24.6':
- resolution: {integrity: sha512-L5pZ+b3O1mSzJ71HmxSCmTVd03VOT2GXOigug6vDYJzE5awLI7P1g0wFcdmGuwSDSrQ0L2rDOe/hHws8J1rv3w==}
+ '@babel/plugin-transform-object-super@7.25.9':
+ resolution: {integrity: sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-optional-chaining@7.24.6':
- resolution: {integrity: sha512-cHbqF6l1QP11OkYTYQ+hhVx1E017O5ZcSPXk9oODpqhcAD1htsWG2NpHrrhthEO2qZomLK0FXS+u7NfrkF5aOQ==}
+ '@babel/plugin-transform-optional-catch-binding@7.25.9':
+ resolution: {integrity: sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.6':
- resolution: {integrity: sha512-ST7guE8vLV+vI70wmAxuZpIKzVjvFX9Qs8bl5w6tN/6gOypPWUmMQL2p7LJz5E63vEGrDhAiYetniJFyBH1RkA==}
+ '@babel/plugin-transform-optional-chaining@7.25.9':
+ resolution: {integrity: sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.6':
- resolution: {integrity: sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==}
+ '@babel/plugin-transform-parameters@7.25.9':
+ resolution: {integrity: sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.24.6':
- resolution: {integrity: sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==}
+ '@babel/plugin-transform-private-methods@7.25.9':
+ resolution: {integrity: sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-property-literals@7.24.6':
- resolution: {integrity: sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==}
+ '@babel/plugin-transform-private-property-in-object@7.25.9':
+ resolution: {integrity: sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-regenerator@7.24.6':
- resolution: {integrity: sha512-SMDxO95I8WXRtXhTAc8t/NFQUT7VYbIWwJCJgEli9ml4MhqUMh4S6hxgH6SmAC3eAQNWCDJFxcFeEt9w2sDdXg==}
+ '@babel/plugin-transform-property-literals@7.25.9':
+ resolution: {integrity: sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-reserved-words@7.24.6':
- resolution: {integrity: sha512-DcrgFXRRlK64dGE0ZFBPD5egM2uM8mgfrvTMOSB2yKzOtjpGegVYkzh3s1zZg1bBck3nkXiaOamJUqK3Syk+4A==}
+ '@babel/plugin-transform-regenerator@7.25.9':
+ resolution: {integrity: sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.6':
- resolution: {integrity: sha512-W3gQydMb0SY99y/2lV0Okx2xg/8KzmZLQsLaiCmwNRl1kKomz14VurEm+2TossUb+sRvBCnGe+wx8KtIgDtBbQ==}
+ '@babel/plugin-transform-regexp-modifiers@7.26.0':
+ resolution: {integrity: sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==}
engines: {node: '>=6.9.0'}
peerDependencies:
- '@babel/core': ^7.0.0-0
+ '@babel/core': ^7.0.0
- '@babel/plugin-transform-shorthand-properties@7.24.6':
- resolution: {integrity: sha512-xnEUvHSMr9eOWS5Al2YPfc32ten7CXdH7Zwyyk7IqITg4nX61oHj+GxpNvl+y5JHjfN3KXE2IV55wAWowBYMVw==}
+ '@babel/plugin-transform-reserved-words@7.25.9':
+ resolution: {integrity: sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.24.6':
- resolution: {integrity: sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==}
+ '@babel/plugin-transform-runtime@7.25.9':
+ resolution: {integrity: sha512-nZp7GlEl+yULJrClz0SwHPqir3lc0zsPrDHQUcxGspSL7AKrexNSEfTbfqnDNJUO13bgKyfuOLMF8Xqtu8j3YQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.6':
- resolution: {integrity: sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==}
+ '@babel/plugin-transform-shorthand-properties@7.25.9':
+ resolution: {integrity: sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.24.6':
- resolution: {integrity: sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==}
+ '@babel/plugin-transform-spread@7.25.9':
+ resolution: {integrity: sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.24.6':
- resolution: {integrity: sha512-IshCXQ+G9JIFJI7bUpxTE/oA2lgVLAIK8q1KdJNoPXOpvRaNjMySGuvLfBw/Xi2/1lLo953uE8hyYSDW3TSYig==}
+ '@babel/plugin-transform-sticky-regex@7.25.9':
+ resolution: {integrity: sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.24.6':
- resolution: {integrity: sha512-H0i+hDLmaYYSt6KU9cZE0gb3Cbssa/oxWis7PX4ofQzbvsfix9Lbh8SRk7LCPDlLWJHUiFeHU0qRRpF/4Zv7mQ==}
+ '@babel/plugin-transform-template-literals@7.25.9':
+ resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.4.5':
- resolution: {integrity: sha512-RPB/YeGr4ZrFKNwfuQRlMf2lxoCUaU01MTw39/OFE/RiL8HDjtn68BwEPft1P7JN4akyEmjGWAMNldOV7o9V2g==}
+ '@babel/plugin-transform-typeof-symbol@7.25.9':
+ resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.5.5':
- resolution: {integrity: sha512-pehKf4m640myZu5B2ZviLaiBlxMCjSZ1qTEO459AXKX5GnPueyulJeCqZFs1nz/Ya2dDzXQ1NxZ/kKNWyD4h6w==}
+ '@babel/plugin-transform-typescript@7.26.5':
+ resolution: {integrity: sha512-GJhPO0y8SD5EYVCy2Zr+9dSZcEgaSmq5BLR0Oc25TOEhC+ba49vUAGZFjy8v79z9E1mdldq4x9d1xgh4L1d5dQ==}
+ engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-escapes@7.24.6':
- resolution: {integrity: sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==}
+ '@babel/plugin-transform-unicode-escapes@7.25.9':
+ resolution: {integrity: sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-property-regex@7.24.6':
- resolution: {integrity: sha512-8EIgImzVUxy15cZiPii9GvLZwsy7Vxc+8meSlR3cXFmBIl5W5Tn9LGBf7CDKkHj4uVfNXCJB8RsVfnmY61iedA==}
+ '@babel/plugin-transform-unicode-property-regex@7.25.9':
+ resolution: {integrity: sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.6':
- resolution: {integrity: sha512-pssN6ExsvxaKU638qcWb81RrvvgZom3jDgU/r5xFZ7TONkZGFf4MhI2ltMb8OcQWhHyxgIavEU+hgqtbKOmsPA==}
+ '@babel/plugin-transform-unicode-regex@7.25.9':
+ resolution: {integrity: sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-sets-regex@7.24.6':
- resolution: {integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==}
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9':
+ resolution: {integrity: sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -799,8 +857,8 @@ packages:
resolution: {integrity: sha512-X0pi0V6gxLi6lFZpGmeNa4zxtwEmCs42isWLNjZZDE0Y8yVfgu0T2OAHlzBbdYlqbW/YXVvoBHpATEM+goCj8g==}
deprecated: 🚨 This package has been deprecated in favor of separate inclusion of a polyfill and regenerator-runtime (when needed). See the @babel/polyfill docs (https://babeljs.io/docs/en/babel-polyfill) for more information.
- '@babel/preset-env@7.24.6':
- resolution: {integrity: sha512-CrxEAvN7VxfjOG8JNF2Y/eMqMJbZPZ185amwGUBp8D9USK90xQmv7dLdFSa+VbD7fdIqcy/Mfv7WtzG8+/qxKg==}
+ '@babel/preset-env@7.26.0':
+ resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -810,26 +868,23 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0 || ^8.0.0-0 <8.0.0
- '@babel/regjsgen@0.8.0':
- resolution: {integrity: sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==}
-
'@babel/runtime@7.12.18':
resolution: {integrity: sha512-BogPQ7ciE6SYAUPtlm9tWbgI9+2AgqSam6QivMgXgAT+fKbgppaj4ZX15MHeLC1PVF5sNk70huBu20XxWOs8Cg==}
- '@babel/runtime@7.24.6':
- resolution: {integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==}
+ '@babel/runtime@7.26.0':
+ resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.24.6':
- resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==}
+ '@babel/template@7.25.9':
+ resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.24.6':
- resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==}
+ '@babel/traverse@7.26.4':
+ resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.24.6':
- resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
+ '@babel/types@7.26.3':
+ resolution: {integrity: sha512-vN5p+1kl59GVKMvTHt55NzzmYVxprfJD+ql7U9NFIfKCBkYE55LYtS+WtPlaYOyzydrKI8Nezd+aZextrd+FMA==}
engines: {node: '>=6.9.0'}
'@cnakazawa/watch@1.0.4':
@@ -841,55 +896,186 @@ packages:
resolution: {integrity: sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==}
engines: {node: '>=0.1.90'}
+ '@csstools/css-parser-algorithms@3.0.4':
+ resolution: {integrity: sha512-Up7rBoV77rv29d3uKHUIVubz1BTcgyUK72IvCQAbfbMv584xHcGKCKbWh7i8hPrRJ7qU4Y8IO3IY9m+iTB7P3A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-tokenizer': ^3.0.3
+
+ '@csstools/css-tokenizer@3.0.3':
+ resolution: {integrity: sha512-UJnjoFsmxfKUdNYdWgOB0mWUypuLvAfQPH1+pyvRJs6euowbFkFC6P13w1l8mJyi3vxYMxc9kld5jZEGRQs6bw==}
+ engines: {node: '>=18'}
+
+ '@csstools/media-query-list-parser@4.0.2':
+ resolution: {integrity: sha512-EUos465uvVvMJehckATTlNqGj4UJWkTmdWuDMjqvSUkjGpmOyFZBVwb4knxCm/k2GMTXY+c/5RkdndzFYWeX5A==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ '@csstools/css-parser-algorithms': ^3.0.4
+ '@csstools/css-tokenizer': ^3.0.3
+
+ '@csstools/selector-specificity@5.0.0':
+ resolution: {integrity: sha512-PCqQV3c4CoVm3kdPhyeZ07VmBRdH2EpMFA/pd9OASpOEC3aXNGoqPDAZ80D0cLpMBxnmk0+yNhGsEx31hq7Gtw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ postcss-selector-parser: ^7.0.0
+
+ '@dual-bundle/import-meta-resolve@4.1.0':
+ resolution: {integrity: sha512-+nxncfwHM5SgAtrVzgpzJOI1ol0PkumhVo469KCf9lUi21IGcY90G98VuHm9VRrUypmAzawAHO9bs6hqeADaVg==}
+
+ '@ember-data/adapter@5.3.9':
+ resolution: {integrity: sha512-qa8wrmh0iHdVeDcO+smgLkuic4ZwKN8QuCNKcbaK4Y3lRkF86IKpeJFBBNkDlZ7Bmxlir2TN9oIUp6I0Cx3osA==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember-data/legacy-compat': 5.3.9
+ '@ember-data/request-utils': 5.3.9
+ '@ember-data/store': 5.3.9
+ '@warp-drive/core-types': 0.0.0-beta.12
+
+ '@ember-data/debug@5.3.9':
+ resolution: {integrity: sha512-yB9V1JRzEKAoeR0G6JS0Tc6rQUNTL/qDXk6mc5nNRCHyoZ6u35/TuVXm62zzwBsDwU+kNJcCrbcUW11/TIw3Ng==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember-data/model': 5.3.9
+ '@ember-data/request-utils': 5.3.9
+ '@ember-data/store': 5.3.9
+ '@warp-drive/core-types': 0.0.0-beta.12
+
+ '@ember-data/graph@5.3.9':
+ resolution: {integrity: sha512-mbwt7dDta7maKTsquBXpcU8hDf0Ukq9mtQNd2CPhkFgQ9YBt28NumBuiAviMr4HloOcJ8WA/GtX/RXIGP6yvEw==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember-data/store': 5.3.9
+ '@warp-drive/core-types': 0.0.0-beta.12
+
+ '@ember-data/json-api@5.3.9':
+ resolution: {integrity: sha512-q+x+EFAKLT0WmrDe+7J1Yx9bn/KUDLU/QwJ2Vapnve05qXOOyXgjMF6ckSXBaulDIZksGGgTegNRzPHLB4o1fg==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember-data/graph': 5.3.9
+ '@ember-data/request-utils': 5.3.9
+ '@ember-data/store': 5.3.9
+ '@warp-drive/core-types': 0.0.0-beta.12
+
+ '@ember-data/legacy-compat@5.3.9':
+ resolution: {integrity: sha512-PGh9t+1DOwPQFJuWxuBlVFRxT7Q63pzoEvC0HXKVfL6pgvEZYPNQ6WNJ3H4MkD+zcdd6rWpCwjsdMq/VQRWfAQ==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember-data/graph': 5.3.9
+ '@ember-data/json-api': 5.3.9
+ '@ember-data/request': 5.3.9
+ '@ember-data/request-utils': 5.3.9
+ '@ember-data/store': 5.3.9
+ '@ember/test-waiters': ^3.1.0
+ '@warp-drive/core-types': 0.0.0-beta.12
+ peerDependenciesMeta:
+ '@ember-data/graph':
+ optional: true
+ '@ember-data/json-api':
+ optional: true
+
+ '@ember-data/model@5.3.9':
+ resolution: {integrity: sha512-cYNkxiAvTCO67FMuPDagvvs/iYr68l9Dg40qB7em1Jhy0QmwpajvxkyEaj6q/fOrGaH69KmzHJhOvu4eKGTz8Q==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember-data/graph': 5.3.9
+ '@ember-data/json-api': 5.3.9
+ '@ember-data/legacy-compat': 5.3.9
+ '@ember-data/request-utils': 5.3.9
+ '@ember-data/store': 5.3.9
+ '@ember-data/tracking': 5.3.9
+ '@warp-drive/core-types': 0.0.0-beta.12
+ peerDependenciesMeta:
+ '@ember-data/graph':
+ optional: true
+ '@ember-data/json-api':
+ optional: true
+
+ '@ember-data/request-utils@5.3.9':
+ resolution: {integrity: sha512-4qZNh2ZbmKBSwE2jUHYl8QNlfqU9f4ww+z3HO70aJLtFjmnwWrsENi1N9st0mWEpR201UlEiFvF3gmyjv2Hn4g==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember/string': ^3.1.1 || ^4.0.0
+ '@warp-drive/core-types': 0.0.0-beta.12
+ ember-inflector: ^4.0.2 || ^5.0.0
+ peerDependenciesMeta:
+ '@ember/string':
+ optional: true
+ ember-inflector:
+ optional: true
+
+ '@ember-data/request@5.3.9':
+ resolution: {integrity: sha512-odTe3B7eLt9HsrExkeIr6PwLP+uiS4chqu4JVxqDnCk8KpnOnbKgVnQQbIEFx8jTuv0y1vS+Jc9o6vynSV5YjQ==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@warp-drive/core-types': 0.0.0-beta.12
+
'@ember-data/rfc395-data@0.0.4':
resolution: {integrity: sha512-tGRdvgC9/QMQSuSuJV45xoyhI0Pzjm7A9o/MVVA3HakXIImJbbzx/k/6dO9CUEQXIyS2y0fW6C1XaYOG7rY0FQ==}
+ '@ember-data/serializer@5.3.9':
+ resolution: {integrity: sha512-LzXh1972xs5kTNysql8ZptD1rI+WrZAskFdj9+8a+ON0TmxDznaS4PQjCi3Rw3+qF/h5qYZm105Yd8Z/AlzH5w==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember-data/legacy-compat': 5.3.9
+ '@ember-data/request-utils': 5.3.9
+ '@ember-data/store': 5.3.9
+ '@warp-drive/core-types': 0.0.0-beta.12
+
+ '@ember-data/store@5.3.9':
+ resolution: {integrity: sha512-3G24GtpgRKGlvTbF6Q6Uz/YQqxFrSfgvXpdqbSjMRu5UDd/EI7qkB+MOgD1rV6EBJ2xpic5+6a0q154lTL0dUg==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember-data/request': 5.3.9
+ '@ember-data/request-utils': 5.3.9
+ '@ember-data/tracking': 5.3.9
+ '@warp-drive/core-types': 0.0.0-beta.12
+
+ '@ember-data/tracking@5.3.9':
+ resolution: {integrity: sha512-YRhf4AqG8SUP5t0GgGmqq6iAGwtNqtf2HtW/GQ4V8WO3jDtYyPVB+li78hdFxkkc3zxLtMiXoLVhPjtloyR8Eg==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@warp-drive/core-types': 0.0.0-beta.12
+ ember-source: '>= 3.28.12'
+
'@ember/edition-utils@1.2.0':
resolution: {integrity: sha512-VmVq/8saCaPdesQmftPqbFtxJWrzxNGSQ+e8x8LLe3Hjm36pJ04Q8LeORGZkAeOhldoUX9seLGmSaHeXkIqoog==}
- '@ember/optional-features@2.1.0':
- resolution: {integrity: sha512-IXjDpTFhsjPk9h3OXwXjlRfhM/Wjtw2E71Xos/81ZsTTwZMB9H+DWhsxePXOkzYy7Jvw4TIzKbMfcnT8mrtwWQ==}
+ '@ember/optional-features@2.2.0':
+ resolution: {integrity: sha512-a1OQ+w9vDvMXd9BNA9r779yr8MAPguGaMGbIeTMPWACeWBdD6bACBB5iKE3gNyrJAYKMq2wab6BKmRFS3Qw3hw==}
engines: {node: 10.* || 12.* || >= 14}
'@ember/string@4.0.0':
resolution: {integrity: sha512-IMVyVE72twuAMSYcHzWSgtgYTtzlHlKSGW8vEbztnnmkU6uo7kVHmiqSN9R4RkBhzvh0VD4G76Eph+55t3iNIA==}
- '@ember/test-helpers@2.9.4':
- resolution: {integrity: sha512-z+Qs1NYWyIVDmrY6WdmOS5mdG1lJ5CFfzh6dRhLfs9lq45deDaDrVNcaCYhnNeJZTvUBK2XR2SvPcZm0RloXdA==}
- engines: {node: 10.* || 12.* || 14.* || 15.* || >= 16.*}
+ '@ember/test-helpers@5.0.0':
+ resolution: {integrity: sha512-a2T44RJtekXs+zWveK3VUopooAd0KBNDdDjtJRD2na1U1LGulInBL4KD1r46bZlnQ6EYs3I9Zwcko5zMGHRMnA==}
peerDependencies:
- ember-source: '>=3.8.0'
+ ember-source: '>= 4.0.0'
'@ember/test-waiters@3.1.0':
resolution: {integrity: sha512-bb9h95ktG2wKY9+ja1sdsFBdOms2lB19VWs8wmNpzgHv1NCetonBoV5jHBV4DHt0uS1tg9z66cZqhUVlYs96KQ==}
engines: {node: 10.* || 12.* || >= 14.*}
- '@embroider/babel-loader-8@1.9.0':
- resolution: {integrity: sha512-kEAPkyHXEWxJA9n/zmExhRIOCZPhEgWGyAb3t1hxcJGUzzD6r8zAEE6zfZGRIwpfi3jhkCn/FOZi43eVLJsjgA==}
- engines: {node: 12.* || 14.* || >= 16}
- peerDependencies:
- '@embroider/core': ^1.8.3
-
- '@embroider/compat@1.9.0':
- resolution: {integrity: sha512-4BMW8frZ5RZJY54jmhDNe7cdRqosWynJ6bPTVfL+jvE0Z8o2ROtneMOojj7jouhyRE9XfAnIioI/RenZTei3kg==}
+ '@embroider/addon-dev@7.1.1':
+ resolution: {integrity: sha512-81xGvfvIULEvZTZIswdF4X2Ag7dRKfiUfIQsQ9s11ScozexVj7gyBsMZ4iIwpPmv9iz7WZdBu+ptyJjOdx+HgA==}
engines: {node: 12.* || 14.* || >= 16}
hasBin: true
peerDependencies:
- '@embroider/core': ^1.8.3
+ rollup: ^4.6.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
- '@embroider/core@1.9.0':
- resolution: {integrity: sha512-fjPb1pU7a+V9clpfBCa8CHdxbz7hr6azwNw/DqRQIMM272nrOPml65YVsBE24z7NrHdkqHjvmvDQ+qtl6oBhPw==}
+ '@embroider/addon-shim@1.9.0':
+ resolution: {integrity: sha512-fMzayl/licUL8VRAy4qXROKcYvHwUbV8aTh4m97L5/MRuVpxbcAy92DGGTqx5OBKCSQN3gMg+sUKeE6AviefpQ==}
engines: {node: 12.* || 14.* || >= 16}
- '@embroider/hbs-loader@1.9.0':
- resolution: {integrity: sha512-HBJ/zND9Pwe/eSAPJzR+b8XR/RrjxFKLq80YMEevkkmFLgkT/7aiK3FnZoN3eyuHRZwO5+ela1c57FIM3zSoWg==}
+ '@embroider/core@3.5.0':
+ resolution: {integrity: sha512-5vt2lX0jss/8Qk5ls9NrIpXx5dYMb1uuiMC2yTEj8vaBo+5Im/YJoJ0HR3VS4EGy1OB69yAASu+noyPajU7fvg==}
engines: {node: 12.* || 14.* || >= 16}
- peerDependencies:
- '@embroider/core': ^1.8.3
- webpack: ^5
- '@embroider/macros@1.16.2':
- resolution: {integrity: sha512-V7/6zkPmoZrPmoHKlmMyNmg8mUMdIOH7z4dqygQwWoMJp6EYd6agSLLXsfEkjBPHwTvNmiUd64Ey4dyBcYWhwQ==}
+ '@embroider/macros@1.16.10':
+ resolution: {integrity: sha512-G0vCsKgNCX0PMmuVNsTLG7IYXz8VkekQMK4Kcllzqpwb7ivFRDwVx2bD4QSvZ9LCTd4eWQ654RsCqVbW5aviww==}
engines: {node: 12.* || 14.* || >= 16}
peerDependencies:
'@glint/template': ^1.0.0
@@ -897,58 +1083,75 @@ packages:
'@glint/template':
optional: true
- '@embroider/macros@1.9.0':
- resolution: {integrity: sha512-12ElrRT+mX3aSixGHjHnfsnyoH1hw5nM+P+Ax0ITZdp6TaAvWZ8dENnVHltdnv4ssHiX0EsVEXmqbIIdMN4nLA==}
- engines: {node: 12.* || 14.* || >= 16}
-
- '@embroider/shared-internals@1.8.3':
- resolution: {integrity: sha512-N5Gho6Qk8z5u+mxLCcMYAoQMbN4MmH+z2jXwQHVs859bxuZTxwF6kKtsybDAASCtd2YGxEmzcc1Ja/wM28824w==}
- engines: {node: 12.* || 14.* || >= 16}
-
- '@embroider/shared-internals@2.6.1':
- resolution: {integrity: sha512-STU1oDP36JQY+zpivyAfXGXadN664d+DOiVNBUW+4AAuWLVxIRWDIuFj8UxzREXZU9trZY8vOhKwKQtfEgdwSg==}
- engines: {node: 12.* || 14.* || >= 16}
-
- '@embroider/test-setup@1.8.3':
- resolution: {integrity: sha512-BCCbBG7UWkCw+cQ401Ip6LnqTRaQDeKImxR+e7Q4oP6H4EBj7p4iGR1z6fhMy4NNyXKPB6jk3bGa9bTiiNoEAw==}
+ '@embroider/shared-internals@2.8.1':
+ resolution: {integrity: sha512-zi0CENFD1e0DH7c9M/rNKJnFnt2c3+736J3lguBddZdmaIV6Cb8l3HQSkskSW5O4ady+SavemLKO3hCjQQJBIw==}
engines: {node: 12.* || 14.* || >= 16}
- '@embroider/util@1.13.1':
- resolution: {integrity: sha512-MRbs2FPO4doQ31YHIYk+QKChEs7k15aTsMk8QmO4eKiuQq9OT0sr1oasObZyGB8cVVbr29WWRWmsNirxzQtHIg==}
+ '@embroider/test-setup@4.0.0':
+ resolution: {integrity: sha512-1S3Ebk0CEh3XDqD93AWSwQZBCk+oGv03gtkaGgdgyXGIR7jrVyDgEnEuslN/hJ0cuU8TqhiXrzHMw7bJwIGhWw==}
engines: {node: 12.* || 14.* || >= 16}
peerDependencies:
- '@glint/environment-ember-loose': ^1.0.0
- '@glint/template': ^1.0.0
- ember-source: '*'
+ '@embroider/compat': ^3.4.8
+ '@embroider/core': ^3.4.8
+ '@embroider/webpack': ^4.0.0
peerDependenciesMeta:
- '@glint/environment-ember-loose':
+ '@embroider/compat':
optional: true
- '@glint/template':
+ '@embroider/core':
+ optional: true
+ '@embroider/webpack':
optional: true
- '@embroider/webpack@1.9.0':
- resolution: {integrity: sha512-/jq+Tr6Lbp86vT9+PuTT8l7+xXURBmN0fQcRdMSClRlgJhjgz+f/NT0Yn9UUsEe3tRQVo9u8dnnlBo67loyhaA==}
- engines: {node: 12.* || 14.* || >= 16}
+ '@eslint-community/eslint-utils@4.4.1':
+ resolution: {integrity: sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
peerDependencies:
- '@embroider/core': ^1.8.3
- webpack: ^5.0.0
+ eslint: ^6.0.0 || ^7.0.0 || >=8.0.0
- '@eslint/eslintrc@0.4.3':
- resolution: {integrity: sha512-J6KFFz5QCYUJq3pf0mjEcCJVERbzv71PUIDczuh9JkwGEzced6CO5ADLHB1rbf/+oPBtoPfMYNOpGDzCANlbXw==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ '@eslint-community/regexpp@4.12.1':
+ resolution: {integrity: sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==}
+ engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
- '@gar/promisify@1.1.3':
- resolution: {integrity: sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==}
+ '@eslint/config-array@0.19.1':
+ resolution: {integrity: sha512-fo6Mtm5mWyKjA/Chy1BYTdn5mGJoDNjC7C64ug20ADsRDGrA85bN3uK3MaKbeRkRuuIEAR5N33Jr1pbm411/PA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@glimmer/component@1.1.2':
- resolution: {integrity: sha512-XyAsEEa4kWOPy+gIdMjJ8XlzA3qrGH55ZDv6nA16ibalCR17k74BI0CztxuRds+Rm6CtbUVgheCVlcCULuqD7A==}
- engines: {node: 6.* || 8.* || >= 10.*}
+ '@eslint/core@0.10.0':
+ resolution: {integrity: sha512-gFHJ+xBOo4G3WRlR1e/3G8A6/KZAH6zcE/hkLRCZTi/B9avAG365QhFA8uOGzTMqgTghpn7/fSnscW++dpMSAw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/eslintrc@3.2.0':
+ resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/js@9.18.0':
+ resolution: {integrity: sha512-fK6L7rxcq6/z+AaQMtiFTkvbHkBLNlwyRxHpKawP0x3u9+NC6MQTnFW+AdpwC6gfHTW0051cokQgtTN2FqlxQA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/object-schema@2.1.5':
+ resolution: {integrity: sha512-o0bhxnL89h5Bae5T318nFoFzGy+YE5i/gGkoPAgkmTVdRKTiv3p8JHevPiPaMwoloKfEiiaHlawCqaZMqRm+XQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@eslint/plugin-kit@0.2.5':
+ resolution: {integrity: sha512-lB05FkqEdUg2AA0xEbUz0SnkXT1LcCTa438W4IWTUh4hdOnVbQyOJ81OrDXsJk/LSiJHubgGEFoR5EHq1NsH1A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ '@glimmer/compiler@0.92.4':
+ resolution: {integrity: sha512-xoR8F6fsgFqWbPbCfSgJuJ95vaLnXw0SgDCwyl/KMeeaSxpHwJbr8+BfiUl+7ko2A+HzrY5dPXXnGr4ZM+CUXw==}
+ engines: {node: '>= 16.0.0'}
+
+ '@glimmer/component@2.0.0':
+ resolution: {integrity: sha512-eATSzBOUm0MZ9+YfJx7Y5p3gbwnaeMzLSSsCDn1ihDtUOIm5YYEV0ee0G7tXt/uKxowt8tXYn/EMbI9OlRF0CA==}
+ engines: {node: '>= 18'}
- '@glimmer/di@0.1.11':
- resolution: {integrity: sha512-moRwafNDwHTnTHzyyZC9D+mUSvYrs1Ak0tRPjjmCghdoHHIvMshVbEnwKb/1WmW5CUlKc2eL9rlAV32n3GiItg==}
+ '@glimmer/debug@0.92.4':
+ resolution: {integrity: sha512-waTBOdtp92MC3h/51mYbc4GRumO+Tsa5jbXLoewqALjE1S8bMu9qgkG7Cx635x3/XpjsD9xceMqagBvYhuI6tA==}
- '@glimmer/encoder@0.42.2':
- resolution: {integrity: sha512-8xkdly0i0BP5HMI0suPB9ly0AnEq8x9Z8j3Gee1HYIovM5VLNtmh7a8HsaHYRs/xHmBEZcqtr8JV89w6F59YMQ==}
+ '@glimmer/destroyable@0.92.3':
+ resolution: {integrity: sha512-vQ+mzT9Vkf+JueY7L5XbZqK0WyEVTKv0HOLrw/zDw9F5Szn3F/8Ea/qbAClo3QK3oZeg+ulFTa/61rdjSFYHGA==}
+
+ '@glimmer/encoder@0.92.3':
+ resolution: {integrity: sha512-DJ8DB33LxODjzCWRrxozHUaRqVyZj4p8jDLG42aCNmWo3smxrsjshcaVUwDmib24DW+dzR7kMc39ObMqT5zK0w==}
'@glimmer/env@0.1.7':
resolution: {integrity: sha512-JKF/a9I9jw6fGoz8kA7LEQslrwJ5jms5CXhu/aqkBWk+PmZ6pTl8mlb/eJ/5ujBGTiQzBhy5AIWF712iA+4/mw==}
@@ -956,77 +1159,158 @@ packages:
'@glimmer/global-context@0.84.3':
resolution: {integrity: sha512-8Oy9Wg5IZxMEeAnVmzD2NkObf89BeHoFSzJgJROE/deutd3rxg83mvlOez4zBBGYwnTb+VGU2LYRpet92egJjA==}
- '@glimmer/interfaces@0.42.2':
- resolution: {integrity: sha512-7LOuQd02cxxNNHChzdHMAU8/qOeQvTro141CU5tXITP7z6aOv2D2gkFdau97lLQiVxezGrh8J7h8GCuF7TEqtg==}
+ '@glimmer/global-context@0.92.3':
+ resolution: {integrity: sha512-tvlK5pt6oSe3furJ1KsO9vG/KmF9S98HLrcR48XbfwXlkuxvUeS94cdQId4GCN5naeX4OC4xm6eEjZWdc2s+jw==}
'@glimmer/interfaces@0.84.3':
resolution: {integrity: sha512-dk32ykoNojt0mvEaIW6Vli5MGTbQo58uy3Epj7ahCgTHmWOKuw/0G83f2UmFprRwFx689YTXG38I/vbpltEjzg==}
- '@glimmer/low-level@0.42.2':
- resolution: {integrity: sha512-s+Q44SnKdTBTnkgX0deBlVNnNPVas+Pg8xEnwky9VrUqOHKsIZRrPgfVULeC6bIdFXtXOKm5CjTajhb9qnQbXQ==}
+ '@glimmer/interfaces@0.92.3':
+ resolution: {integrity: sha512-QwQeA01N+0h+TAi/J7iUnZtRuJy+093hNyagxDQBA6b1wCBw+q+al9+O6gmbWlkWE7EifzmNE1nnrgcecJBlJQ==}
+
+ '@glimmer/manager@0.92.4':
+ resolution: {integrity: sha512-YMoarZT/+Ft2YSd+Wuu5McVsdP9y6jeAdVQGYFpno3NlL3TXYbl7ELtK7OGxFLjzQE01BdiUZZRvcY+a/s9+CQ==}
+
+ '@glimmer/node@0.92.4':
+ resolution: {integrity: sha512-a5GME7HQJZFJPQDdSetQI6jjKXXQi0Vdr3WuUrYwhienVTV5LG0uClbFE2yYWC7TX97YDHpRrNk1CC258rujkQ==}
+
+ '@glimmer/opcode-compiler@0.92.4':
+ resolution: {integrity: sha512-WnZSBwxNqW/PPD/zfxEg6BVR5tHwTm8fp76piix8BNCQ6CuzVn6HUJ5SlvBsOwyoRCmzt/pkKmBJn+I675KG4w==}
- '@glimmer/program@0.42.2':
- resolution: {integrity: sha512-XpQ6EYzA1VL9ESKoih5XW5JftFmlRvwy3bF/I1ABOa3yLIh8mApEwrRI/sIHK0Nv5s1j0uW4itVF196WxnJXgw==}
+ '@glimmer/owner@0.92.3':
+ resolution: {integrity: sha512-ZxmXIUCy6DOobhGDhA6kMpaXZS7HAucEgIl/qcjV9crlzGOO8H4j+n2x6nA/8zpuqvO0gYaBzqdNdu+7EgOEmw==}
- '@glimmer/reference@0.42.2':
- resolution: {integrity: sha512-XuhbRjr3M9Q/DP892jGxVfPE6jaGGHu5w9ppGMnuTY7Vm/x+A+68MCiaREhDcEwJlzGg4UkfVjU3fdgmUIrc5Q==}
+ '@glimmer/program@0.92.4':
+ resolution: {integrity: sha512-fkquujQ11lsGCWl/+XpZW2E7bjHj/g6/Ht292A7pSoANBD8Bz/gPYiPM+XuMwes9MApEsTEMjV4EXlyk2/Cirg==}
'@glimmer/reference@0.84.3':
resolution: {integrity: sha512-lV+p/aWPVC8vUjmlvYVU7WQJsLh319SdXuAWoX/SE3pq340BJlAJiEcAc6q52y9JNhT57gMwtjMX96W5Xcx/qw==}
- '@glimmer/runtime@0.42.2':
- resolution: {integrity: sha512-52LVZJsLKM3GzI3TEmYcw2LdI9Uk0jotISc3w2ozQBWvkKoYxjDNvI/gsjyMpenj4s7FcG2ggOq0x4tNFqm1GA==}
+ '@glimmer/reference@0.92.3':
+ resolution: {integrity: sha512-Ud4LE689mEXL6BJnJx0ZPt2dt/A540C+TAnBFXHpcAjROz5gT337RN+tgajwudEUqpufExhcPSMGzs1pvWYCJg==}
- '@glimmer/syntax@0.42.2':
- resolution: {integrity: sha512-SR26SmF/Mb5o2cc4eLHpOyoX5kwwXP4KRhq4fbWfrvan74xVWA38PLspPCzwGhyVH/JsE7tUEPMjSo2DcJge/Q==}
+ '@glimmer/runtime@0.92.4':
+ resolution: {integrity: sha512-ISqM/8hVh+fY/gnLAAPKfts4CvnJBOyCYAXgGccIlzzQrSVLaz0NoRiWTLGj5B/3xyPbqLwYPDvlTsOjYtvPoA==}
'@glimmer/syntax@0.84.3':
resolution: {integrity: sha512-ioVbTic6ZisLxqTgRBL2PCjYZTFIwobifCustrozRU2xGDiYvVIL0vt25h2c1ioDsX59UgVlDkIK4YTAQQSd2A==}
+ '@glimmer/syntax@0.92.3':
+ resolution: {integrity: sha512-7wPKQmULyXCYf0KvbPmfrs/skPISH2QGR9atCnmDWnHyLv5SSZVLm1P0Ctrpta6+Ci3uGQb7hGk0IjsLEavcYQ==}
+
'@glimmer/tracking@1.1.2':
resolution: {integrity: sha512-cyV32zsHh+CnftuRX84ALZpd2rpbDrhLhJnTXn9W//QpqdRZ5rdMsxSY9fOsj0CKEc706tmEU299oNnDc0d7tA==}
- '@glimmer/util@0.42.2':
- resolution: {integrity: sha512-Heck0baFSaWDanCYtmOcLeaz7v+rSqI8ovS7twrp2/FWEteb3Ze5sWQ2BEuSAG23L/k/lzVwYM/MY7ZugxBpaA==}
-
- '@glimmer/util@0.44.0':
- resolution: {integrity: sha512-duAsm30uVK9jSysElCbLyU6QQYO2X9iLDLBIBUcCqck9qN1o3tK2qWiHbGK5d6g8E2AJ4H88UrfElkyaJlGrwg==}
-
'@glimmer/util@0.84.3':
resolution: {integrity: sha512-qFkh6s16ZSRuu2rfz3T4Wp0fylFj3HBsONGXQcrAdZjdUaIS6v3pNj6mecJ71qRgcym9Hbaq/7/fefIwECUiKw==}
+ '@glimmer/util@0.92.3':
+ resolution: {integrity: sha512-K1oH93gGU36slycxJ9CcFpUTsdOc4XQ6RuZFu5oRsxFYtEF5PSu7ik11h58fyeoaWOr1ebfkyAMawbeI2AJ5GA==}
+
'@glimmer/validator@0.44.0':
resolution: {integrity: sha512-i01plR0EgFVz69GDrEuFgq1NheIjZcyTy3c7q+w7d096ddPVeVcRzU3LKaqCfovvLJ+6lJx40j45ecycASUUyw==}
'@glimmer/validator@0.84.3':
resolution: {integrity: sha512-RTBV4TokUB0vI31UC7ikpV7lOYpWUlyqaKV//pRC4pexYMlmqnVhkFrdiimB/R1XyNdUOQUmnIAcdic39NkbhQ==}
- '@glimmer/vm-babel-plugins@0.84.2':
- resolution: {integrity: sha512-HS2dEbJ3CgXn56wk/5QdudM7rE3vtNMvPIoG7Rrg+GhkGMNxBCIRxOeEF2g520j9rwlA2LAZFpc7MCDMFbTjNA==}
+ '@glimmer/validator@0.92.3':
+ resolution: {integrity: sha512-HKrMYeW0YhiksSeKYqX2chUR/rz82j12DcY7p2dORQlTV3qlAfiE5zRTJH1KRA1X3ZMf7DI2/GOzkXwYp0o+3Q==}
+
+ '@glimmer/vm-babel-plugins@0.92.3':
+ resolution: {integrity: sha512-VpkKsHc3oiq9ruiwT7sN4RuOIc5n10PCeWX7tYSNZ85S1bETcAFn0XbyNjI+G3uFshQGEK0T8Fn3+/8VTNIQIg==}
+ engines: {node: '>=16'}
+
+ '@glimmer/vm@0.92.3':
+ resolution: {integrity: sha512-DNMQz7nn2zRwKO1irVZ4alg1lH+VInwR3vkWVgobUs0yh7OoHVGXKMd5uxzIksqJEUw1XOX9Qgu/GYZB1PiH3w==}
+
+ '@glimmer/wire-format@0.92.3':
+ resolution: {integrity: sha512-gFz81Q9+V7Xs0X8mSq6y8qacHm0dPaGJo2/Bfcsdow1hLOKNgTCLr4XeDBhRML8f6I6Gk9ugH4QDxyIOXOpC4w==}
+
+ '@glint/core@1.5.1':
+ resolution: {integrity: sha512-5VDL/7z9CrirHyx4XyCARDOjujl2Z92hftp19ChXWEPLypukoXW+uDG/awgYCh2T1eNtxufX4j2Liqw0m1eAEw==}
+ hasBin: true
+ peerDependencies:
+ typescript: '>=4.8.0'
+
+ '@glint/environment-ember-loose@1.5.1':
+ resolution: {integrity: sha512-cWZaRB5UwmgU6X5VYIkdTSjaLZROnsiHRXj1zjJH/q9FOF4+gtLAW8A/RDbp+pU0SgoJxSbC9IjlxMGsB/3lBA==}
+ peerDependencies:
+ '@glimmer/component': ^1.1.2
+ '@glint/template': ^1.5.1
+ '@types/ember__array': ^4.0.2
+ '@types/ember__component': ^4.0.10
+ '@types/ember__controller': ^4.0.2
+ '@types/ember__object': ^4.0.4
+ '@types/ember__routing': ^4.0.11
+ ember-cli-htmlbars: ^6.0.1
+ ember-modifier: ^3.2.7 || ^4.0.0
+ peerDependenciesMeta:
+ '@types/ember__array':
+ optional: true
+ '@types/ember__component':
+ optional: true
+ '@types/ember__controller':
+ optional: true
+ '@types/ember__object':
+ optional: true
+ '@types/ember__routing':
+ optional: true
+ ember-cli-htmlbars:
+ optional: true
+ ember-modifier:
+ optional: true
- '@glimmer/vm@0.42.2':
- resolution: {integrity: sha512-D2MNU5glICLqvet5SfVPrv+l6JNK2TR+CdQhch1Ew+btOoqlW+2LIJIF/5wLb1POjIMEkt+78t/7RN0mDFXGzw==}
+ '@glint/environment-ember-template-imports@1.5.1':
+ resolution: {integrity: sha512-jRlLXSQiaSunCDwJxDih5hcdo1/+rQCG7zfBE1rrJIivodCcLuf8/5Ot4GG6q4paugrOROOF37jFdSi5foEq2Q==}
+ peerDependencies:
+ '@glint/environment-ember-loose': ^1.5.1
+ '@glint/template': ^1.5.1
+ '@types/ember__component': ^4.0.10
+ '@types/ember__helper': ^4.0.1
+ '@types/ember__modifier': ^4.0.3
+ '@types/ember__routing': ^4.0.12
+ peerDependenciesMeta:
+ '@types/ember__component':
+ optional: true
+ '@types/ember__helper':
+ optional: true
+ '@types/ember__modifier':
+ optional: true
+ '@types/ember__routing':
+ optional: true
- '@glimmer/wire-format@0.42.2':
- resolution: {integrity: sha512-IqUo6mdJ7GRsK7KCyZxrc17ioSg9RBniEnb418ZMQxsV/WBv9NQ359MuClUck2M24z1AOXo4TerUw0U7+pb1/A==}
+ '@glint/template@1.5.1':
+ resolution: {integrity: sha512-KBWG3XZemv8VyFsq3m7eebXmQuY+AShgKSUlbjiqQaPfMK3a1ri1oS3wqTS5eRGwcfQgbbEHH2rkgppB7yoz5w==}
'@handlebars/parser@2.0.0':
resolution: {integrity: sha512-EP9uEDZv/L5Qh9IWuMUGJRfwhXJ4h1dqKTT4/3+tY0eu7sPis7xh23j61SYUnNF4vqCQvvUXpDo9Bh/+q1zASA==}
- '@humanwhocodes/config-array@0.5.0':
- resolution: {integrity: sha512-FagtKFz74XrTl7y6HCzQpwDfXP0yhxe9lHLD1UZxjvZIcbyRz8zTFF/yYNfSfzU414eDwZ1SrO0Qvtyf+wFMQg==}
- engines: {node: '>=10.10.0'}
- deprecated: Use @eslint/config-array instead
+ '@humanfs/core@0.19.1':
+ resolution: {integrity: sha512-5DyQ4+1JEUzejeK1JGICcideyfUbGixgS9jNgex5nqkW+cY7WZhxBigmieN5Qnw9ZosSNVC9KQKyb+GUaGyKUA==}
+ engines: {node: '>=18.18.0'}
- '@humanwhocodes/object-schema@1.2.1':
- resolution: {integrity: sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==}
- deprecated: Use @eslint/object-schema instead
+ '@humanfs/node@0.16.6':
+ resolution: {integrity: sha512-YuI2ZHQL78Q5HbhDiBA1X4LmYdXCKCMQIfw0pw7piHJwyREFebJUvrQN4cMssyES6x+vfUbx1CIpaQUKYdQZOw==}
+ engines: {node: '>=18.18.0'}
- '@iarna/toml@2.2.5':
- resolution: {integrity: sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==}
+ '@humanwhocodes/module-importer@1.0.1':
+ resolution: {integrity: sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==}
+ engines: {node: '>=12.22'}
- '@jridgewell/gen-mapping@0.3.5':
- resolution: {integrity: sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==}
+ '@humanwhocodes/retry@0.3.1':
+ resolution: {integrity: sha512-JBxkERygn7Bv/GbN5Rv8Ul6LVknS+5Bp6RgDC/O8gEBU/yeH5Ui5C/OlWrTb6qct7LjjfT6Re2NxB0ln0yYybA==}
+ engines: {node: '>=18.18'}
+
+ '@humanwhocodes/retry@0.4.1':
+ resolution: {integrity: sha512-c7hNEllBlenFTHBky65mhq8WD2kbN9Q6gk0bTk8lSBvc554jpXSkST1iePudpt7+A/AQvuHs9EMqjHDXMY1lrA==}
+ engines: {node: '>=18.18'}
+
+ '@inquirer/figures@1.0.9':
+ resolution: {integrity: sha512-BXvGj0ehzrngHTPTDqUoDT3NXL8U0RxUk2zJm2A66RhCEIWdtU1v6GuUqNAgArW4PQ9CinqIWyHdQgdwOj06zQ==}
+ engines: {node: '>=18'}
+
+ '@jridgewell/gen-mapping@0.3.8':
+ resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
'@jridgewell/resolve-uri@3.1.2':
@@ -1040,16 +1324,22 @@ packages:
'@jridgewell/source-map@0.3.6':
resolution: {integrity: sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==}
- '@jridgewell/sourcemap-codec@1.4.15':
- resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
+ '@keyv/serialize@1.0.2':
+ resolution: {integrity: sha512-+E/LyaAeuABniD/RvUezWVXKpeuvwLEA9//nE9952zBaOdBd2mQ3pPoM8cUe2X6IcMByfuSLzmYqnYshG60+HQ==}
+
'@lint-todo/utils@13.1.1':
resolution: {integrity: sha512-F5z53uvRIF4dYfFfJP3a2Cqg+4P1dgJchJsFnsZE0eZp0LK8X7g2J0CsJHRgns+skpXOlM7n5vFGwkWCWj8qJg==}
engines: {node: 12.* || >= 14}
+ '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
+ resolution: {integrity: sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==}
+
'@nodelib/fs.scandir@2.1.5':
resolution: {integrity: sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==}
engines: {node: '>= 8'}
@@ -1062,55 +1352,226 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
- '@npmcli/fs@1.1.1':
- resolution: {integrity: sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==}
+ '@parcel/watcher-android-arm64@2.5.0':
+ resolution: {integrity: sha512-qlX4eS28bUcQCdribHkg/herLe+0A9RyYC+mm2PXpncit8z5b3nSqGVzMNR3CmtAOgRutiZ02eIJJgP/b1iEFQ==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [android]
- '@npmcli/move-file@1.1.2':
- resolution: {integrity: sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==}
- engines: {node: '>=10'}
- deprecated: This functionality has been moved to @npmcli/fs
+ '@parcel/watcher-darwin-arm64@2.5.0':
+ resolution: {integrity: sha512-hyZ3TANnzGfLpRA2s/4U1kbw2ZI4qGxaRJbBH2DCSREFfubMswheh8TeiC1sGZ3z2jUf3s37P0BBlrD3sjVTUw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [darwin]
- '@octokit/auth-token@2.5.0':
- resolution: {integrity: sha512-r5FVUJCOLl19AxiuZD2VRZ/ORjp/4IN98Of6YJoJOkY75CIBuYfmiNHGrDwXr+aLGG55igl9QrxX3hbiXlLb+g==}
+ '@parcel/watcher-darwin-x64@2.5.0':
+ resolution: {integrity: sha512-9rhlwd78saKf18fT869/poydQK8YqlU26TMiNg7AIu7eBp9adqbJZqmdFOsbZ5cnLp5XvRo9wcFmNHgHdWaGYA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [darwin]
- '@octokit/core@3.6.0':
- resolution: {integrity: sha512-7RKRKuA4xTjMhY+eG3jthb3hlZCsOwg3rztWh75Xc+ShDWOfDDATWbeZpAHBNRpm4Tv9WgBMOy1zEJYXG6NJ7Q==}
+ '@parcel/watcher-freebsd-x64@2.5.0':
+ resolution: {integrity: sha512-syvfhZzyM8kErg3VF0xpV8dixJ+RzbUaaGaeb7uDuz0D3FK97/mZ5AJQ3XNnDsXX7KkFNtyQyFrXZzQIcN49Tw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [freebsd]
- '@octokit/endpoint@6.0.12':
- resolution: {integrity: sha512-lF3puPwkQWGfkMClXb4k/eUT/nZKQfxinRWJrdZaJO85Dqwo/G0yOC434Jr2ojwafWJMYqFGFa5ms4jJUgujdA==}
+ '@parcel/watcher-linux-arm-glibc@2.5.0':
+ resolution: {integrity: sha512-0VQY1K35DQET3dVYWpOaPFecqOT9dbuCfzjxoQyif1Wc574t3kOSkKevULddcR9znz1TcklCE7Ht6NIxjvTqLA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
- '@octokit/graphql@4.8.0':
- resolution: {integrity: sha512-0gv+qLSBLKF0z8TKaSKTsS39scVKF9dbMxJpj3U0vC7wjNWFuIpL/z76Qe2fiuCbDRcJSavkXsVtMS6/dtQQsg==}
+ '@parcel/watcher-linux-arm-musl@2.5.0':
+ resolution: {integrity: sha512-6uHywSIzz8+vi2lAzFeltnYbdHsDm3iIB57d4g5oaB9vKwjb6N6dRIgZMujw4nm5r6v9/BQH0noq6DzHrqr2pA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm]
+ os: [linux]
- '@octokit/openapi-types@12.11.0':
- resolution: {integrity: sha512-VsXyi8peyRq9PqIz/tpqiL2w3w80OgVMwBHltTml3LmVvXiphgeqmY9mvBw9Wu7e0QWk/fqD37ux8yP5uVekyQ==}
+ '@parcel/watcher-linux-arm64-glibc@2.5.0':
+ resolution: {integrity: sha512-BfNjXwZKxBy4WibDb/LDCriWSKLz+jJRL3cM/DllnHH5QUyoiUNEp3GmL80ZqxeumoADfCCP19+qiYiC8gUBjA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
- '@octokit/plugin-paginate-rest@2.21.3':
- resolution: {integrity: sha512-aCZTEf0y2h3OLbrgKkrfFdjRL6eSOo8komneVQJnYecAxIej7Bafor2xhuDJOIFau4pk0i/P28/XgtbyPF0ZHw==}
- peerDependencies:
- '@octokit/core': '>=2'
+ '@parcel/watcher-linux-arm64-musl@2.5.0':
+ resolution: {integrity: sha512-S1qARKOphxfiBEkwLUbHjCY9BWPdWnW9j7f7Hb2jPplu8UZ3nes7zpPOW9bkLbHRvWM0WDTsjdOTUgW0xLBN1Q==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [linux]
+
+ '@parcel/watcher-linux-x64-glibc@2.5.0':
+ resolution: {integrity: sha512-d9AOkusyXARkFD66S6zlGXyzx5RvY+chTP9Jp0ypSTC9d4lzyRs9ovGf/80VCxjKddcUvnsGwCHWuF2EoPgWjw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@parcel/watcher-linux-x64-musl@2.5.0':
+ resolution: {integrity: sha512-iqOC+GoTDoFyk/VYSFHwjHhYrk8bljW6zOhPuhi5t9ulqiYq1togGJB5e3PwYVFFfeVgc6pbz3JdQyDoBszVaA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [linux]
+
+ '@parcel/watcher-win32-arm64@2.5.0':
+ resolution: {integrity: sha512-twtft1d+JRNkM5YbmexfcH/N4znDtjgysFaV9zvZmmJezQsKpkfLYJ+JFV3uygugK6AtIM2oADPkB2AdhBrNig==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [arm64]
+ os: [win32]
+
+ '@parcel/watcher-win32-ia32@2.5.0':
+ resolution: {integrity: sha512-+rgpsNRKwo8A53elqbbHXdOMtY/tAtTzManTWShB5Kk54N8Q9mzNWV7tV+IbGueCbcj826MfWGU3mprWtuf1TA==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [ia32]
+ os: [win32]
+
+ '@parcel/watcher-win32-x64@2.5.0':
+ resolution: {integrity: sha512-lPrxve92zEHdgeff3aiu4gDOIt4u7sJYha6wbdEZDCDUhtjTsOMiaJzG5lMY4GkWH8p0fMmO2Ppq5G5XXG+DQw==}
+ engines: {node: '>= 10.0.0'}
+ cpu: [x64]
+ os: [win32]
+
+ '@parcel/watcher@2.5.0':
+ resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==}
+ engines: {node: '>= 10.0.0'}
+
+ '@pnpm/constants@10.0.0':
+ resolution: {integrity: sha512-dxIXcW1F1dxIGfye2JXE7Q8WVwYB0axVzdBOkvE1WKIVR4xjB8e6k/Dkjo7DpbyfW5Vu2k21p6dyM32YLSAWoQ==}
+ engines: {node: '>=18.12'}
+
+ '@pnpm/error@6.0.3':
+ resolution: {integrity: sha512-OIYhG7HQh4zUFh2s8/6bp7glVRjNxms7bpzXVOLV7pyRa+rSYFmqJ8zDsBC64k58nuaxS85Ip+SCDjFxsFGeOg==}
+ engines: {node: '>=18.12'}
+
+ '@pnpm/find-workspace-dir@7.0.3':
+ resolution: {integrity: sha512-eGjkyHSufkHyZ66WpygWnslcRePB0U1lJg1dF3rgWqTChpregYoDyNGDzK7l9Gk+CHVgGZZS5aWp7uKKVmAAEg==}
+ engines: {node: '>=18.12'}
- '@octokit/plugin-request-log@1.0.4':
- resolution: {integrity: sha512-mLUsMkgP7K/cnFEw07kWqXGF5LKrOkD+lhCrKvPHXWDywAwuDUeDwWBpc69XK3pNX0uKiVt8g5z96PJ6z9xCFA==}
+ '@rollup/plugin-babel@6.0.4':
+ resolution: {integrity: sha512-YF7Y52kFdFT/xVSuVdjkV5ZdX/3YtmX0QulG+x0taQOtJdHYzVU61aSSkAgVJ7NOv6qPkIYiJSgSWWN/DM5sGw==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- '@octokit/core': '>=3'
+ '@babel/core': ^7.0.0
+ '@types/babel__core': ^7.1.9
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ '@types/babel__core':
+ optional: true
+ rollup:
+ optional: true
+
+ '@rollup/pluginutils@4.2.1':
+ resolution: {integrity: sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==}
+ engines: {node: '>= 8.0.0'}
- '@octokit/plugin-rest-endpoint-methods@5.16.2':
- resolution: {integrity: sha512-8QFz29Fg5jDuTPXVtey05BLm7OB+M8fnvE64RNegzX7U+5NUXcOcnpTIK0YfSHBg8gYd0oxIq3IZTe9SfPZiRw==}
+ '@rollup/pluginutils@5.1.4':
+ resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
+ engines: {node: '>=14.0.0'}
peerDependencies:
- '@octokit/core': '>=3'
+ rollup: ^1.20.0||^2.0.0||^3.0.0||^4.0.0
+ peerDependenciesMeta:
+ rollup:
+ optional: true
- '@octokit/request-error@2.1.0':
- resolution: {integrity: sha512-1VIvgXxs9WHSjicsRwq8PlR2LR2x6DwsJAaFgzdi0JfJoGSO8mYI/cHJQ+9FbN21aa+DrgNLnwObmyeSC8Rmpg==}
+ '@rollup/rollup-android-arm-eabi@4.31.0':
+ resolution: {integrity: sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==}
+ cpu: [arm]
+ os: [android]
- '@octokit/request@5.6.3':
- resolution: {integrity: sha512-bFJl0I1KVc9jYTe9tdGGpAMPy32dLBXXo1dS/YwSCTL/2nd9XeHsY616RE3HPXDVk+a+dBuzyz5YdlXwcDTr2A==}
+ '@rollup/rollup-android-arm64@4.31.0':
+ resolution: {integrity: sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==}
+ cpu: [arm64]
+ os: [android]
+
+ '@rollup/rollup-darwin-arm64@4.31.0':
+ resolution: {integrity: sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==}
+ cpu: [arm64]
+ os: [darwin]
- '@octokit/rest@18.12.0':
- resolution: {integrity: sha512-gDPiOHlyGavxr72y0guQEhLsemgVjwRePayJ+FcKc2SJqKUbxbkvf5kAZEWA/MKvsfYlQAMVzNJE3ezQcxMJ2Q==}
+ '@rollup/rollup-darwin-x64@4.31.0':
+ resolution: {integrity: sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==}
+ cpu: [x64]
+ os: [darwin]
- '@octokit/types@6.41.0':
- resolution: {integrity: sha512-eJ2jbzjdijiL3B4PrSQaSjuF2sPEQPVCPzBvTHJD9Nz+9dw2SGH4K4xeQJ77YfTq5bRQ+bD8wT11JbeDPmxmGg==}
+ '@rollup/rollup-freebsd-arm64@4.31.0':
+ resolution: {integrity: sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==}
+ cpu: [arm64]
+ os: [freebsd]
+
+ '@rollup/rollup-freebsd-x64@4.31.0':
+ resolution: {integrity: sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==}
+ cpu: [x64]
+ os: [freebsd]
+
+ '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
+ resolution: {integrity: sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm-musleabihf@4.31.0':
+ resolution: {integrity: sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==}
+ cpu: [arm]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-gnu@4.31.0':
+ resolution: {integrity: sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-arm64-musl@4.31.0':
+ resolution: {integrity: sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
+ resolution: {integrity: sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==}
+ cpu: [loong64]
+ os: [linux]
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
+ resolution: {integrity: sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==}
+ cpu: [ppc64]
+ os: [linux]
+
+ '@rollup/rollup-linux-riscv64-gnu@4.31.0':
+ resolution: {integrity: sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==}
+ cpu: [riscv64]
+ os: [linux]
+
+ '@rollup/rollup-linux-s390x-gnu@4.31.0':
+ resolution: {integrity: sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-gnu@4.31.0':
+ resolution: {integrity: sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-linux-x64-musl@4.31.0':
+ resolution: {integrity: sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==}
+ cpu: [x64]
+ os: [linux]
+
+ '@rollup/rollup-win32-arm64-msvc@4.31.0':
+ resolution: {integrity: sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==}
+ cpu: [arm64]
+ os: [win32]
+
+ '@rollup/rollup-win32-ia32-msvc@4.31.0':
+ resolution: {integrity: sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==}
+ cpu: [ia32]
+ os: [win32]
+
+ '@rollup/rollup-win32-x64-msvc@4.31.0':
+ resolution: {integrity: sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==}
+ cpu: [x64]
+ os: [win32]
+
+ '@rtsao/scc@1.1.0':
+ resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==}
+
+ '@simple-dom/document@1.4.0':
+ resolution: {integrity: sha512-/RUeVH4kuD3rzo5/91+h4Z1meLSLP66eXqpVAw/4aZmYozkeqUkMprq0znL4psX/adEed5cBgiNJcfMz/eKZLg==}
'@simple-dom/interface@1.4.0':
resolution: {integrity: sha512-l5qumKFWU0S+4ZzMaLXFU8tQZsicHEMEyAxI5kDFGhJsRqDwe0a7/iPA/GdxlGyDKseQQAgIz5kzU7eXTrlSpA==}
@@ -1119,6 +1580,10 @@ packages:
resolution: {integrity: sha512-9NET910DNaIPngYnLLPeg+Ogzqsi9uM4mSboU5y6p8S5DzMTVEsJZrawi+BoDNUVBa2DhJqQYUFvMDfgU062LQ==}
engines: {node: '>=6'}
+ '@sindresorhus/merge-streams@2.3.0':
+ resolution: {integrity: sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==}
+ engines: {node: '>=18'}
+
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
@@ -1126,12 +1591,11 @@ packages:
resolution: {integrity: sha512-XIB2XbzHTN6ieIjfIMV9hlVcfPU26s2vafYWQcZHWXHOxiaRZYEDKEwdl129Zyg50+foYV2jCgtrqSA6qNuNSA==}
engines: {node: '>=6'}
- '@tootallnate/once@1.1.2':
- resolution: {integrity: sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==}
- engines: {node: '>= 6'}
+ '@tsconfig/ember@3.0.8':
+ resolution: {integrity: sha512-OVnIsZIt/8q0VEtcdz3rRryNrm6gdJTxXlxefkGIrkZnME0wqslmwHlUEZ7mvh377df9FqBhNKrYNarhCW8zJA==}
- '@types/babel__code-frame@7.0.6':
- resolution: {integrity: sha512-Anitqkl3+KrzcW2k77lRlg/GfLZLWXBuNgbEcIOU6M92yw42vsd3xV/Z/yAHEj8m+KUjL6bWOVOFqX8PFPJ4LA==}
+ '@types/acorn@4.0.6':
+ resolution: {integrity: sha512-veQTnWP+1D/xbxVrPC3zHnCZRjSrKfhbMUlEA43iMZLu7EsnTtkJklIuwrCPbOi8YkvDQAiW05VQQFvvz9oieQ==}
'@types/body-parser@1.19.5':
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
@@ -1139,8 +1603,8 @@ packages:
'@types/chai-as-promised@7.1.8':
resolution: {integrity: sha512-ThlRVIJhr69FLlh6IctTXFkmhtP3NpMZ2QGq69StYLyKZFp/HOp1VdKZj7RvfNWYYcJ1xlbLGLLWj1UvP5u/Gw==}
- '@types/chai@4.3.16':
- resolution: {integrity: sha512-PatH4iOdyh3MyWtmHVFXLWCCIhUbopaltqddG9BzB+gMIzee2MJrvd+jouii9Z3wzQJruGWAm7WOMjgfG8hQlQ==}
+ '@types/chai@4.3.20':
+ resolution: {integrity: sha512-/pC9HAB5I/xMlc5FP77qjCnI16ChlJfW0tGa0IUcFn38VJrTV6DeZ60NU5KZBtaOZqjdpwTWohz5HU1RrhiYxQ==}
'@types/connect@3.4.38':
resolution: {integrity: sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==}
@@ -1151,20 +1615,23 @@ packages:
'@types/cors@2.8.17':
resolution: {integrity: sha512-8CGDvrBj1zgo2qE+oS3pOCyYNqCPryMWY2bGfwA0dcfopWGgxs+78df0Rs3rc9THP4JkOhLsAa+15VdpAqkcUA==}
- '@types/debug@4.1.12':
- resolution: {integrity: sha512-vIChWdVG3LG1SMxEvI/AK+FWJthlrqlTu7fbrlywTkkaONwk/UAGaULXRlf8vkzFBLVm0zkMdCquhL5aOjhXPQ==}
-
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
- '@types/eslint@8.56.10':
- resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
+ '@types/eslint@8.56.12':
+ resolution: {integrity: sha512-03ruubjWyOHlmljCVoxSuNDdmfZDzsrrz0P2LeJsOXr+ZwFQ+0yQIwNCwt/GYhV7Z31fgtXJTAEs+FYlEL851g==}
- '@types/estree@1.0.5':
- resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
+ '@types/eslint@9.6.1':
+ resolution: {integrity: sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==}
- '@types/express-serve-static-core@4.19.1':
- resolution: {integrity: sha512-ej0phymbFLoCB26dbbq5PGScsf2JAJ4IJHjG10LalgUV36XKTmA4GdA+PVllKvRk0sEKt64X8975qFnkSi0hqA==}
+ '@types/eslint__js@8.42.3':
+ resolution: {integrity: sha512-alfG737uhmPdnvkrLdZLcEKJ/B8s9Y4hrZ+YAdzUeoArBlSUERA2E87ROfOaS4jd/C45fzOoZzidLc1IPwLqOw==}
+
+ '@types/estree@1.0.6':
+ resolution: {integrity: sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==}
+
+ '@types/express-serve-static-core@4.19.6':
+ resolution: {integrity: sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==}
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
@@ -1187,12 +1654,12 @@ packages:
'@types/json-schema@7.0.15':
resolution: {integrity: sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==}
+ '@types/json5@0.0.29':
+ resolution: {integrity: sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==}
+
'@types/keyv@3.1.4':
resolution: {integrity: sha512-BQ5aZNSCpj7D6K2ksrRCTmKRLEpnPvWDiLPfoGyhZ++8YtiK9d/3DBKPJgry359X/P1PfruyYwvnvwFjuEiEIg==}
- '@types/mdast@3.0.15':
- resolution: {integrity: sha512-LnwD+mUEfxWMa1QpDraczIn6k0Ee3SMicuYSSzS6ZYl2gKS09EClnJYGd8Du6rfc5r/GZEk5o1mRb8TaTj03sQ==}
-
'@types/mime@1.3.5':
resolution: {integrity: sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==}
@@ -1202,20 +1669,17 @@ packages:
'@types/minimatch@5.1.2':
resolution: {integrity: sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==}
- '@types/ms@0.7.34':
- resolution: {integrity: sha512-nG96G3Wp6acyAgJqGasjODb+acrI7KltPiRxzHPXnP3NgI28bpQDRv53olbqGXbfcgF5aiiHmO3xpwEpS5Ld9g==}
+ '@types/node@22.10.5':
+ resolution: {integrity: sha512-F8Q+SeGimwOo86fiovQh8qiXfFEh2/ocYv7tU5pJ3EXMSSxk1Joj5wefpFK2fHTf/N6HKGSxIDBT9f3gCxXPkQ==}
- '@types/node@20.12.12':
- resolution: {integrity: sha512-eWLDGF/FOSPtAvEqeRAQ4C8LSA7M1I7i0ky1I8U7kD1J5ITyW3AsRhQrKVoWf5pFKZ2kILsEGJhsI9r93PYnOw==}
+ '@types/node@9.6.61':
+ resolution: {integrity: sha512-/aKAdg5c8n468cYLy2eQrcR5k6chlbNwZNGUj3TboyPa2hcO2QAJcfymlqPzMiRj8B6nYKXjzQz36minFE0RwQ==}
- '@types/normalize-package-data@2.4.4':
- resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
+ '@types/qs@6.9.17':
+ resolution: {integrity: sha512-rX4/bPcfmvxHDv0XjfJELTTr+iB+tn032nPILqHm5wbthUUUuVtNGGqzhya9XUxjTP8Fpr0qYgSZZKxGY++svQ==}
- '@types/parse-json@4.0.2':
- resolution: {integrity: sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==}
-
- '@types/qs@6.9.15':
- resolution: {integrity: sha512-uXHQKES6DQKKCLh441Xv/dwxOq1TVS3JPUMlEqoEglvlhR6Mxnlew/Xq/LRVHpLyk7iK3zODe1qYHIMltO7XGg==}
+ '@types/qunit@2.19.12':
+ resolution: {integrity: sha512-II+C1wgzUia0g+tGAH+PBb4XiTm8/C/i6sN23r21NNskBYOYrv+qnW0tFQ/IxZzKVwrK4CTglf8YO3poJUclQA==}
'@types/range-parser@1.2.7':
resolution: {integrity: sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==}
@@ -1226,129 +1690,117 @@ packages:
'@types/rimraf@2.0.5':
resolution: {integrity: sha512-YyP+VfeaqAyFmXoTh3HChxOQMyjByRMsHU7kc5KOJkSlXudhMhQIALbYV7rHh/l8d2lX3VUQzprrcAgWdRuU8g==}
+ '@types/rsvp@4.0.9':
+ resolution: {integrity: sha512-F6vaN5mbxw2MBCu/AD9fSKwrhnto2pE77dyUsi415qz9IP9ni9ZOWXHxnXfsM4NW9UjW+it189jvvqnhv37Z7Q==}
+
'@types/send@0.17.4':
resolution: {integrity: sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==}
'@types/serve-static@1.15.7':
resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
- '@types/source-map@0.5.7':
- resolution: {integrity: sha512-LrnsgZIfJaysFkv9rRJp4/uAyqw87oVed3s1hhF83nwbo9c7MG9g5DqR0seHP+lkX4ldmMrVolPjQSe2ZfD0yA==}
- deprecated: This is a stub types definition for source-map (https://github.com/mozilla/source-map). source-map provides its own type definitions, so you don't need @types/source-map installed!
-
- '@types/supports-color@8.1.3':
- resolution: {integrity: sha512-Hy6UMpxhE3j1tLpl27exp1XqHD7n8chAiNPzWfz16LPZoMMoSc4dzLl6w9qijkEb/r5O1ozdu1CWGA2L83ZeZg==}
-
'@types/symlink-or-copy@1.2.2':
resolution: {integrity: sha512-MQ1AnmTLOncwEf9IVU+B2e4Hchrku5N67NkgcAHW0p3sdzPe0FNMANxEm6OJUzPniEQGkeT3OROLlCwZJLWFZA==}
- '@types/unist@2.0.10':
- resolution: {integrity: sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==}
-
- '@types/yargs-parser@21.0.3':
- resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
-
- '@types/yargs@17.0.32':
- resolution: {integrity: sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==}
-
- '@webassemblyjs/ast@1.12.1':
- resolution: {integrity: sha512-EKfMUOPRRUTy5UII4qJDGPpqfwjOmZ5jeGFwid9mnoqIFK+e0vqoi1qH56JpmZSzEL53jKnNzScdmftJyG5xWg==}
-
- '@webassemblyjs/ast@1.9.0':
- resolution: {integrity: sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==}
-
- '@webassemblyjs/floating-point-hex-parser@1.11.6':
- resolution: {integrity: sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==}
-
- '@webassemblyjs/floating-point-hex-parser@1.9.0':
- resolution: {integrity: sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==}
-
- '@webassemblyjs/helper-api-error@1.11.6':
- resolution: {integrity: sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==}
-
- '@webassemblyjs/helper-api-error@1.9.0':
- resolution: {integrity: sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==}
-
- '@webassemblyjs/helper-buffer@1.12.1':
- resolution: {integrity: sha512-nzJwQw99DNDKr9BVCOZcLuJJUlqkJh+kVzVl6Fmq/tI5ZtEyWT1KZMyOXltXLZJmDtvLCDgwsyrkohEtopTXCw==}
-
- '@webassemblyjs/helper-buffer@1.9.0':
- resolution: {integrity: sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==}
-
- '@webassemblyjs/helper-code-frame@1.9.0':
- resolution: {integrity: sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==}
+ '@typescript-eslint/eslint-plugin@8.21.0':
+ resolution: {integrity: sha512-eTH+UOR4I7WbdQnG4Z48ebIA6Bgi7WO8HvFEneeYBxG8qCOYgTOFPSg6ek9ITIDvGjDQzWHcoWHCDO2biByNzA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ '@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
- '@webassemblyjs/helper-fsm@1.9.0':
- resolution: {integrity: sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==}
+ '@typescript-eslint/parser@8.21.0':
+ resolution: {integrity: sha512-Wy+/sdEH9kI3w9civgACwabHbKl+qIOu0uFZ9IMKzX3Jpv9og0ZBJrZExGrPpFAY7rWsXuxs5e7CPPP17A4eYA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
- '@webassemblyjs/helper-module-context@1.9.0':
- resolution: {integrity: sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==}
+ '@typescript-eslint/scope-manager@8.21.0':
+ resolution: {integrity: sha512-G3IBKz0/0IPfdeGRMbp+4rbjfSSdnGkXsM/pFZA8zM9t9klXDnB/YnKOBQ0GoPmoROa4bCq2NeHgJa5ydsQ4mA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@webassemblyjs/helper-numbers@1.11.6':
- resolution: {integrity: sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==}
+ '@typescript-eslint/type-utils@8.21.0':
+ resolution: {integrity: sha512-95OsL6J2BtzoBxHicoXHxgk3z+9P3BEcQTpBKriqiYzLKnM2DeSqs+sndMKdamU8FosiadQFT3D+BSL9EKnAJQ==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
- '@webassemblyjs/helper-wasm-bytecode@1.11.6':
- resolution: {integrity: sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==}
+ '@typescript-eslint/types@8.21.0':
+ resolution: {integrity: sha512-PAL6LUuQwotLW2a8VsySDBwYMm129vFm4tMVlylzdoTybTHaAi0oBp7Ac6LhSrHHOdLM3efH+nAR6hAWoMF89A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@webassemblyjs/helper-wasm-bytecode@1.9.0':
- resolution: {integrity: sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==}
+ '@typescript-eslint/typescript-estree@8.21.0':
+ resolution: {integrity: sha512-x+aeKh/AjAArSauz0GiQZsjT8ciadNMHdkUSwBB9Z6PrKc/4knM4g3UfHml6oDJmKC88a6//cdxnO/+P2LkMcg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ typescript: '>=4.8.4 <5.8.0'
- '@webassemblyjs/helper-wasm-section@1.12.1':
- resolution: {integrity: sha512-Jif4vfB6FJlUlSbgEMHUyk1j234GTNG9dBJ4XJdOySoj518Xj0oGsNi59cUQF4RRMS9ouBUxDDdyBVfPTypa5g==}
+ '@typescript-eslint/utils@8.21.0':
+ resolution: {integrity: sha512-xcXBfcq0Kaxgj7dwejMbFyq7IOHgpNMtVuDveK7w3ZGwG9owKzhALVwKpTF2yrZmEwl9SWdetf3fxNzJQaVuxw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
- '@webassemblyjs/helper-wasm-section@1.9.0':
- resolution: {integrity: sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==}
+ '@typescript-eslint/visitor-keys@8.21.0':
+ resolution: {integrity: sha512-BkLMNpdV6prozk8LlyK/SOoWLmUFi+ZD+pcqti9ILCbVvHGk1ui1g4jJOc2WDLaeExz2qWwojxlPce5PljcT3w==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
- '@webassemblyjs/ieee754@1.11.6':
- resolution: {integrity: sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==}
+ '@warp-drive/build-config@0.0.0-beta.7':
+ resolution: {integrity: sha512-EHBWwNTv62OA9C24VEEeU04A2JNkMYiJjkA/cXnuQeM0/HSYyki4vtHtCjFXGG397KUpS0bkFBzzfXivHof9yA==}
+ engines: {node: '>= 18.20.4'}
- '@webassemblyjs/ieee754@1.9.0':
- resolution: {integrity: sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==}
+ '@warp-drive/core-types@0.0.0-beta.12':
+ resolution: {integrity: sha512-OLHKHhC2oCOyTBVUNHDNppp9vVBK3FSxDBx7jGWS5nBF13/F8O6IGipQwUsiLa3Pu3Ag8x4YOL0shnDjRIFueg==}
+ engines: {node: '>= 18.20.4'}
- '@webassemblyjs/leb128@1.11.6':
- resolution: {integrity: sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==}
+ '@webassemblyjs/ast@1.14.1':
+ resolution: {integrity: sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==}
- '@webassemblyjs/leb128@1.9.0':
- resolution: {integrity: sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==}
+ '@webassemblyjs/floating-point-hex-parser@1.13.2':
+ resolution: {integrity: sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==}
- '@webassemblyjs/utf8@1.11.6':
- resolution: {integrity: sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==}
+ '@webassemblyjs/helper-api-error@1.13.2':
+ resolution: {integrity: sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==}
- '@webassemblyjs/utf8@1.9.0':
- resolution: {integrity: sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==}
+ '@webassemblyjs/helper-buffer@1.14.1':
+ resolution: {integrity: sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==}
- '@webassemblyjs/wasm-edit@1.12.1':
- resolution: {integrity: sha512-1DuwbVvADvS5mGnXbE+c9NfA8QRcZ6iKquqjjmR10k6o+zzsRVesil54DKexiowcFCPdr/Q0qaMgB01+SQ1u6g==}
+ '@webassemblyjs/helper-numbers@1.13.2':
+ resolution: {integrity: sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==}
- '@webassemblyjs/wasm-edit@1.9.0':
- resolution: {integrity: sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==}
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2':
+ resolution: {integrity: sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==}
- '@webassemblyjs/wasm-gen@1.12.1':
- resolution: {integrity: sha512-TDq4Ojh9fcohAw6OIMXqiIcTq5KUXTGRkVxbSo1hQnSy6lAM5GSdfwWeSxpAo0YzgsgF182E/U0mDNhuA0tW7w==}
+ '@webassemblyjs/helper-wasm-section@1.14.1':
+ resolution: {integrity: sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==}
- '@webassemblyjs/wasm-gen@1.9.0':
- resolution: {integrity: sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==}
+ '@webassemblyjs/ieee754@1.13.2':
+ resolution: {integrity: sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==}
- '@webassemblyjs/wasm-opt@1.12.1':
- resolution: {integrity: sha512-Jg99j/2gG2iaz3hijw857AVYekZe2SAskcqlWIZXjji5WStnOpVoat3gQfT/Q5tb2djnCjBtMocY/Su1GfxPBg==}
+ '@webassemblyjs/leb128@1.13.2':
+ resolution: {integrity: sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==}
- '@webassemblyjs/wasm-opt@1.9.0':
- resolution: {integrity: sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==}
+ '@webassemblyjs/utf8@1.13.2':
+ resolution: {integrity: sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==}
- '@webassemblyjs/wasm-parser@1.12.1':
- resolution: {integrity: sha512-xikIi7c2FHXysxXe3COrVUPSheuBtpcfhbpFj4gmu7KRLYOzANztwUU0IbsqvMqzuNK2+glRGWCEqZo1WCLyAQ==}
+ '@webassemblyjs/wasm-edit@1.14.1':
+ resolution: {integrity: sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==}
- '@webassemblyjs/wasm-parser@1.9.0':
- resolution: {integrity: sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==}
+ '@webassemblyjs/wasm-gen@1.14.1':
+ resolution: {integrity: sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==}
- '@webassemblyjs/wast-parser@1.9.0':
- resolution: {integrity: sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==}
+ '@webassemblyjs/wasm-opt@1.14.1':
+ resolution: {integrity: sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==}
- '@webassemblyjs/wast-printer@1.12.1':
- resolution: {integrity: sha512-+X4WAlOisVWQMikjbcvY2e0rwPsKQ9F688lksZhBcPycBBuii3O7m8FACbDMWDojpAqvjIncrG8J0XHKyQfVeA==}
+ '@webassemblyjs/wasm-parser@1.14.1':
+ resolution: {integrity: sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==}
- '@webassemblyjs/wast-printer@1.9.0':
- resolution: {integrity: sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==}
+ '@webassemblyjs/wast-printer@1.14.1':
+ resolution: {integrity: sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==}
'@xmldom/xmldom@0.8.10':
resolution: {integrity: sha512-2WALfTl4xo2SkGCYRt6rDTFfk9R1czmBvUQy12gK2KuRKIpWEhcbbzy8EZXtz/jkRqHX8bFEc6FC1HjX4TUWYw==}
@@ -1360,77 +1812,41 @@ packages:
'@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
- abab@2.0.6:
- resolution: {integrity: sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==}
- deprecated: Use your platform's native atob() and btoa() methods instead
-
abbrev@1.1.1:
resolution: {integrity: sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==}
+ abortcontroller-polyfill@1.7.8:
+ resolution: {integrity: sha512-9f1iZ2uWh92VcrU9Y8x+LdM4DLj75VE0MJB8zuF1iUnroEptStw+DQ8EQPMUdfe5k+PkB1uUfDQfWbhstH8LrQ==}
+
accepts@1.3.8:
resolution: {integrity: sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==}
engines: {node: '>= 0.6'}
- acorn-globals@6.0.0:
- resolution: {integrity: sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==}
-
- acorn-import-assertions@1.9.0:
- resolution: {integrity: sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==}
- peerDependencies:
- acorn: ^8
+ acorn-dynamic-import@3.0.0:
+ resolution: {integrity: sha512-zVWV8Z8lislJoOKKqdNMOB+s6+XV5WERty8MnKBeFgwA+19XJjJHs2RP5dzM57FftIs+jQnRToLiWazKr6sSWg==}
+ deprecated: This is probably built in to whatever tool you're using. If you still need it... idk
acorn-jsx@5.3.2:
resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==}
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
- acorn-walk@7.2.0:
- resolution: {integrity: sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==}
- engines: {node: '>=0.4.0'}
-
- acorn-walk@8.3.2:
- resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
- engines: {node: '>=0.4.0'}
-
- acorn@6.4.2:
- resolution: {integrity: sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==}
+ acorn@5.7.4:
+ resolution: {integrity: sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==}
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@7.4.1:
- resolution: {integrity: sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==}
+ acorn@8.14.0:
+ resolution: {integrity: sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==}
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.11.3:
- resolution: {integrity: sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
- agent-base@6.0.2:
- resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
- engines: {node: '>= 6.0.0'}
-
- agentkeepalive@4.5.0:
- resolution: {integrity: sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==}
- engines: {node: '>= 8.0.0'}
-
- aggregate-error@3.1.0:
- resolution: {integrity: sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==}
- engines: {node: '>=8'}
-
- ajv-errors@1.0.1:
- resolution: {integrity: sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==}
- peerDependencies:
- ajv: '>=5.0.0'
+ agent-base@7.1.3:
+ resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
+ engines: {node: '>= 14'}
ajv-formats@2.1.1:
resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
- peerDependencies:
- ajv: ^8.0.0
- peerDependenciesMeta:
- ajv:
- optional: true
ajv-keywords@3.5.2:
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
@@ -1445,8 +1861,8 @@ packages:
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
- ajv@8.14.0:
- resolution: {integrity: sha512-oYs1UUtO97ZO2lJ4bwnWeQW8/zvOIQLGKcvPTsWmvc2SYgBb+upuNS5NxoLaMU4h8Ju3Nbj6Cq8mD2LQoqVKFA==}
+ ajv@8.17.1:
+ resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
amd-name-resolver@1.3.1:
resolution: {integrity: sha512-26qTEWqZQ+cxSYygZ4Cf8tsjDBLceJahhtewxtKZA3SRa4PluuqYCuheemDQD+7Mf5B7sr+zhTDWAHDh02a1Dw==}
@@ -1456,13 +1872,6 @@ packages:
resolution: {integrity: sha512-S2Hw0TtNkMJhIabBwIojKL9YHO5T0n5eNqWJ7Lrlel/zDbftQpxpapi8tZs3X1HWa+u+QeydGmzzNU0m09+Rcg==}
engines: {node: '>=0.4.2'}
- ansi-align@3.0.1:
- resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
-
- ansi-colors@4.1.3:
- resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
- engines: {node: '>=6'}
-
ansi-escapes@3.2.0:
resolution: {integrity: sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==}
engines: {node: '>=4'}
@@ -1476,10 +1885,6 @@ packages:
engines: {'0': node >= 0.8.0}
hasBin: true
- ansi-regex@2.1.1:
- resolution: {integrity: sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==}
- engines: {node: '>=0.10.0'}
-
ansi-regex@3.0.1:
resolution: {integrity: sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==}
engines: {node: '>=4'}
@@ -1492,10 +1897,6 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-styles@2.2.1:
- resolution: {integrity: sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==}
- engines: {node: '>=0.10.0'}
-
ansi-styles@3.2.1:
resolution: {integrity: sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==}
engines: {node: '>=4'}
@@ -1504,10 +1905,6 @@ packages:
resolution: {integrity: sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==}
engines: {node: '>=8'}
- ansi-styles@5.2.0:
- resolution: {integrity: sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==}
- engines: {node: '>=10'}
-
ansi-to-html@0.6.15:
resolution: {integrity: sha512-28ijx2aHJGdzbs+O5SNQF65r6rrKYnkuwTYm8lZlChuoJ9P1vVzIpWO20sQTqTPDXYp6NFwk326vApTtLVFXpQ==}
engines: {node: '>=8.0.0'}
@@ -1516,9 +1913,6 @@ packages:
ansicolors@0.2.1:
resolution: {integrity: sha512-tOIuy1/SK/dr94ZA0ckDohKXNeBNqZ4us6PjMVLs5h1w2GBB6uPtOknp2+VF4F/zcy9LI70W+Z+pE2Soajky1w==}
- any-promise@1.3.0:
- resolution: {integrity: sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==}
-
anymatch@2.0.0:
resolution: {integrity: sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==}
@@ -1526,9 +1920,6 @@ packages:
resolution: {integrity: sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==}
engines: {node: '>= 8'}
- aproba@1.2.0:
- resolution: {integrity: sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==}
-
aproba@2.0.0:
resolution: {integrity: sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==}
@@ -1543,8 +1934,9 @@ packages:
argparse@2.0.1:
resolution: {integrity: sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==}
- aria-query@5.3.0:
- resolution: {integrity: sha512-b0P0sZPKtyu8HkeRAfCq0IfURZK+SuwMjY1UXGBU27wpAiTwQAIlq56IbIO+ytk/JjS1fMR14ee5WBBfKi5J6A==}
+ aria-query@5.3.2:
+ resolution: {integrity: sha512-COROpnaoap1E2F000S62r6A60uHZnmlvomhfyT2DlTcrY1OrBKn2UhH7qn5wTC9zMvD0AY7csdPSNwKP+7WiQw==}
+ engines: {node: '>= 0.4'}
arr-diff@4.0.0:
resolution: {integrity: sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==}
@@ -1558,8 +1950,8 @@ packages:
resolution: {integrity: sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==}
engines: {node: '>=0.10.0'}
- array-buffer-byte-length@1.0.1:
- resolution: {integrity: sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==}
+ array-buffer-byte-length@1.0.2:
+ resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
engines: {node: '>= 0.4'}
array-equal@1.0.2:
@@ -1568,11 +1960,9 @@ packages:
array-flatten@1.1.1:
resolution: {integrity: sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==}
- array-to-error@1.1.1:
- resolution: {integrity: sha512-kqcQ8s7uQfg3UViYON3kCMcck3A9exxgq+riVuKy08Mx00VN4EJhK30L2VpjE58LQHKhcE/GRpvbVUhqTvqzGQ==}
-
- array-to-sentence@1.1.0:
- resolution: {integrity: sha512-YkwkMmPA2+GSGvXj1s9NZ6cc2LBtR+uSeWTy2IGi5MR1Wag4DdrcjTxA/YV/Fw+qKlBeXomneZgThEbm/wvZbw==}
+ array-includes@3.1.8:
+ resolution: {integrity: sha512-itaWrbYbqpGXkGhZPGUulwnhVf5Hpy1xiCFsGqyIGglbBxmG5vSjxQen3/WGOjPpNEv1RtBLKxbmVXm8HpJStQ==}
+ engines: {node: '>= 0.4'}
array-union@2.1.0:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
@@ -1582,22 +1972,24 @@ packages:
resolution: {integrity: sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==}
engines: {node: '>=0.10.0'}
- array.prototype.map@1.0.7:
- resolution: {integrity: sha512-XpcFfLoBEAhezrrNw1V+yLXkE7M6uR7xJEsxbG6c/V9v043qurwVJB9r9UTnoSioFDoz1i1VOydpWGmJpfVZbg==}
+ array.prototype.findlastindex@1.2.5:
+ resolution: {integrity: sha512-zfETvRFA8o7EiNn++N5f/kaCw221hrpGsDmcpndVupkPzEc1Wuf3VgC0qby1BbHs7f5DVYjgtEU2LLh5bqeGfQ==}
engines: {node: '>= 0.4'}
- arraybuffer.prototype.slice@1.0.3:
- resolution: {integrity: sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==}
+ array.prototype.flat@1.3.3:
+ resolution: {integrity: sha512-rwG/ja1neyLqCuGZ5YYrznA62D4mZXg0i1cIskIUKSiqF3Cje9/wXAls9B9s1Wa2fomMsIv8czB8jZcPmxCXFg==}
engines: {node: '>= 0.4'}
- asn1.js@4.10.1:
- resolution: {integrity: sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==}
+ array.prototype.flatmap@1.3.3:
+ resolution: {integrity: sha512-Y7Wt51eKJSyi80hFrJCePGGNo5ktJCslFuboqJsbf57CCPcm5zztluPlc4/aD8sWsKvlwatezpV4U1efk8kpjg==}
+ engines: {node: '>= 0.4'}
- assert-never@1.2.1:
- resolution: {integrity: sha512-TaTivMB6pYI1kXwrFlEhLeGfOqoDNdTxjCdwRfFFkEA30Eu+k48W34nlok2EYWJfFFzqaEmichdNM7th6M5HNw==}
+ arraybuffer.prototype.slice@1.0.4:
+ resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
+ engines: {node: '>= 0.4'}
- assert@1.5.1:
- resolution: {integrity: sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==}
+ assert-never@1.4.0:
+ resolution: {integrity: sha512-5oJg84os6NMQNl27T9LnZkvvqzvAnHu03ShCnoj6bsJwS7L8AO4lf+C/XjK/nvzEqQB744moC6V128RucQd1jA==}
assign-symbols@1.0.0:
resolution: {integrity: sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==}
@@ -1607,10 +1999,6 @@ packages:
resolution: {integrity: sha512-XTZ7xGML849LkQP86sWdQzfhwbt3YwIO6MqbX9mUNYY98VKaaVZP7YNNm70IpwecbkkxmfC5IYAzOQ/2p29zRA==}
engines: {node: '>=4'}
- ast-types@0.13.4:
- resolution: {integrity: sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==}
- engines: {node: '>=4'}
-
astral-regex@2.0.0:
resolution: {integrity: sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==}
engines: {node: '>=8'}
@@ -1622,15 +2010,9 @@ packages:
resolution: {integrity: sha512-iH+boep2xivfD9wMaZWkywYIURSmsL96d6MoqrC94BnGSvXE4Quf8hnJiHGFYhw/nLeIa1XyRaf4vvcvkwAefg==}
engines: {node: 8.* || >= 10.*}
- async-each@1.0.6:
- resolution: {integrity: sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==}
-
async-promise-queue@1.0.5:
resolution: {integrity: sha512-xi0aQ1rrjPWYmqbwr18rrSKbSaXIeIwSd1J4KAgVfkq8utNbdZoht7GfvfY6swFUAMJ9obkc4WPJmtGwl+B8dw==}
- async-retry@1.3.3:
- resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
-
async@0.2.10:
resolution: {integrity: sha512-eAkdoKxU6/LkKDBzLpT+t6Ff5EtfSF4wx1WfJiPEEV7WNLnDaRXk0oVysiEPm262roaachGexwUv94WhSgN5TQ==}
@@ -1653,66 +2035,10 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
- babel-code-frame@6.26.0:
- resolution: {integrity: sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==}
-
- babel-core@6.26.3:
- resolution: {integrity: sha512-6jyFLuDmeidKmUEb3NM+/yawG0M2bDZ9Z1qbZP59cyHLz8kYGKYwpJP0UwUKKUiTRNvxfLesJnTedqczP7cTDA==}
-
- babel-eslint@10.1.0:
- resolution: {integrity: sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==}
- engines: {node: '>=6'}
- deprecated: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.
- peerDependencies:
- eslint: '>= 4.12.1'
-
- babel-generator@6.26.1:
- resolution: {integrity: sha512-HyfwY6ApZj7BYTcJURpM5tznulaBvyio7/0d4zFOeMPUmfxkCjHocCuoLa2SAGzBI8AREcH3eP3758F672DppA==}
-
- babel-helper-builder-binary-assignment-operator-visitor@6.24.1:
- resolution: {integrity: sha512-gCtfYORSG1fUMX4kKraymq607FWgMWg+j42IFPc18kFQEsmtaibP4UrqsXt8FlEJle25HUd4tsoDR7H2wDhe9Q==}
-
- babel-helper-call-delegate@6.24.1:
- resolution: {integrity: sha512-RL8n2NiEj+kKztlrVJM9JT1cXzzAdvWFh76xh/H1I4nKwunzE4INBXn8ieCZ+wh4zWszZk7NBS1s/8HR5jDkzQ==}
-
- babel-helper-define-map@6.26.0:
- resolution: {integrity: sha512-bHkmjcC9lM1kmZcVpA5t2om2nzT/xiZpo6TJq7UlZ3wqKfzia4veeXbIhKvJXAMzhhEBd3cR1IElL5AenWEUpA==}
-
- babel-helper-explode-assignable-expression@6.24.1:
- resolution: {integrity: sha512-qe5csbhbvq6ccry9G7tkXbzNtcDiH4r51rrPUbwwoTzZ18AqxWYRZT6AOmxrpxKnQBW0pYlBI/8vh73Z//78nQ==}
-
- babel-helper-function-name@6.24.1:
- resolution: {integrity: sha512-Oo6+e2iX+o9eVvJ9Y5eKL5iryeRdsIkwRYheCuhYdVHsdEQysbc2z2QkqCLIYnNxkT5Ss3ggrHdXiDI7Dhrn4Q==}
-
- babel-helper-get-function-arity@6.24.1:
- resolution: {integrity: sha512-WfgKFX6swFB1jS2vo+DwivRN4NB8XUdM3ij0Y1gnC21y1tdBoe6xjVnd7NSI6alv+gZXCtJqvrTeMW3fR/c0ng==}
-
- babel-helper-hoist-variables@6.24.1:
- resolution: {integrity: sha512-zAYl3tqerLItvG5cKYw7f1SpvIxS9zi7ohyGHaI9cgDUjAT6YcY9jIEH5CstetP5wHIVSceXwNS7Z5BpJg+rOw==}
-
- babel-helper-optimise-call-expression@6.24.1:
- resolution: {integrity: sha512-Op9IhEaxhbRT8MDXx2iNuMgciu2V8lDvYCNQbDGjdBNCjaMvyLf4wl4A3b8IgndCyQF8TwfgsQ8T3VD8aX1/pA==}
-
- babel-helper-regex@6.26.0:
- resolution: {integrity: sha512-VlPiWmqmGJp0x0oK27Out1D+71nVVCTSdlbhIVoaBAj2lUgrNjBCRR9+llO4lTSb2O4r7PJg+RobRkhBrf6ofg==}
-
- babel-helper-remap-async-to-generator@6.24.1:
- resolution: {integrity: sha512-RYqaPD0mQyQIFRu7Ho5wE2yvA/5jxqCIj/Lv4BXNq23mHYu/vxikOy2JueLiBxQknwapwrJeNCesvY0ZcfnlHg==}
-
- babel-helper-replace-supers@6.24.1:
- resolution: {integrity: sha512-sLI+u7sXJh6+ToqDr57Bv973kCepItDhMou0xCP2YPVmR1jkHSCY+p1no8xErbV1Siz5QE8qKT1WIwybSWlqjw==}
-
- babel-helpers@6.24.1:
- resolution: {integrity: sha512-n7pFrqQm44TCYvrCDb0MqabAF+JUBq+ijBvNMUxpkLjJaAu32faIexewMumrH5KLLJ1HDyT0PTEqRyAe/GwwuQ==}
-
babel-import-util@0.2.0:
resolution: {integrity: sha512-CtWYYHU/MgK88rxMrLfkD356dApswtR/kWZ/c6JifG1m10e7tBBrs/366dFzWMAoqYmG5/JSh+94tUSpIwh+ag==}
engines: {node: '>= 12.*'}
- babel-import-util@1.4.1:
- resolution: {integrity: sha512-TNdiTQdPhXlx02pzG//UyVPSKE7SNWjY0n4So/ZnjQpWwaM5LvWBLkWa1JKll5u06HNscHD91XZPuwrMg1kadQ==}
- engines: {node: '>= 12.*'}
-
babel-import-util@2.1.1:
resolution: {integrity: sha512-3qBQWRjzP9NreSH/YrOEU1Lj5F60+pWSLP0kIdCWxjFHH7pX2YPHIxQ67el4gnMNfYoDxSDGcT0zpVlZ+gVtQA==}
engines: {node: '>= 12.*'}
@@ -1721,25 +2047,13 @@ packages:
resolution: {integrity: sha512-4YNPkuVsxAW5lnSTa6cn4Wk49RX6GAB6vX+M6LqEtN0YePqoFczv1/x0EyLK/o+4E1j9jEuYj5Su7IEPab5JHQ==}
engines: {node: '>= 12.*'}
- babel-loader@8.3.0:
- resolution: {integrity: sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==}
+ babel-loader@8.4.1:
+ resolution: {integrity: sha512-nXzRChX+Z1GoE6yWavBQg6jDslyFF3SDjl2paADuoQtQW10JqShJt62R6eJQ5m/pjJFDT8xgKIWSP85OY8eXeA==}
engines: {node: '>= 8.9'}
peerDependencies:
'@babel/core': ^7.0.0
webpack: '>=2'
- babel-messages@6.23.0:
- resolution: {integrity: sha512-Bl3ZiA+LjqaMtNYopA9TYE9HP1tQ+E5dLxE0XrAzcIJeK2UqF0/EaqXwBn9esd4UmTfEab+P+UYQ1GnioFIb/w==}
-
- babel-plugin-check-es2015-constants@6.22.0:
- resolution: {integrity: sha512-B1M5KBP29248dViEo1owyY32lk1ZSH2DaNNrXLGt8lyjjHm7pBqAdQ7VKUPR6EEDO323+OvT3MQXbCin8ooWdA==}
-
- babel-plugin-debug-macros@0.2.0:
- resolution: {integrity: sha512-Wpmw4TbhR3Eq2t3W51eBAQSdKlr+uAyF0GI4GtPfMCD12Y4cIdpKC9l0RjNTH/P9isFypSqqewMPm7//fnZlNA==}
- engines: {node: '>=4'}
- peerDependencies:
- '@babel/core': ^7.0.0-beta.42
-
babel-plugin-debug-macros@0.3.4:
resolution: {integrity: sha512-wfel/vb3pXfwIDZUrkoDrn5FHmlWI96PCJ3UCDv2a86poJ3EQrnArNW5KfHSVJ9IOgxHbo748cQt7sDU+0KCEw==}
engines: {node: '>=6'}
@@ -1754,18 +2068,10 @@ packages:
resolution: {integrity: sha512-pJajN/DkQUnStw0Az8c6khVcMQHgzqWr61lLNtVeu0g61LRW0k9jyK7vaedrHDWGe/Qe8sxG5wpiyW9NsMqFzA==}
engines: {node: 6.* || 8.* || >= 10.*}
- babel-plugin-ember-template-compilation@1.0.2:
- resolution: {integrity: sha512-4HBMksmlYsWEf/C/n3uW5rkBRbUp4FNaspzdQTAHgLbfCJnkLze8R6i6sUSge48y/Wne7mx+vcImI1o6rlUwXQ==}
- engines: {node: '>= 12.*'}
-
- babel-plugin-ember-template-compilation@2.2.5:
- resolution: {integrity: sha512-NQ2DT0DsYyHVrEpFQIy2U8S91JaKSE8NOSZzMd7KZFJVgA6KodJq3Uj852HcH9LsSfvwppnM+dRo1G8bzTnnFw==}
+ babel-plugin-ember-template-compilation@2.3.0:
+ resolution: {integrity: sha512-4ZrKVSqdw5PxEKRbqfOpPhrrNBDG3mFPhyT6N1Oyyem81ZIkCvNo7TPKvlTHeFxqb6HtUvCACP/pzFpZ74J4pg==}
engines: {node: '>= 12.*'}
- babel-plugin-filter-imports@4.0.0:
- resolution: {integrity: sha512-jDLlxI8QnfKd7PtieH6pl4tZJzymzfCDCPGdTq/grgbiYAikwDPp/oL0IlFJn0HQjLpcLkyYhPKkUVneRESw5w==}
- engines: {node: '>=8'}
-
babel-plugin-htmlbars-inline-precompile@5.3.1:
resolution: {integrity: sha512-QWjjFgSKtSRIcsBhJmEwS2laIdrA6na8HAlc/pEAhjHgQsah/gMiBFRZvbQTy//hWxR4BMwV7/Mya7q5H8uHeA==}
engines: {node: 10.* || >= 12.*}
@@ -1774,143 +2080,42 @@ packages:
resolution: {integrity: sha512-tjR0GvSndzPew/Iayf4uICWZqjBwnlMWjSx6brryfQ81F9rxBVqwDJtFCV8oOs0+vJeefK9TmdZtkIFdFe1UnA==}
engines: {node: '>= 6.0.0'}
- babel-plugin-module-resolver@4.1.0:
- resolution: {integrity: sha512-MlX10UDheRr3lb3P0WcaIdtCSRlxdQsB1sBqL7W0raF070bGl1HQQq5K3T2vf2XAYie+ww+5AKC/WrkjRO2knA==}
- engines: {node: '>= 8.0.0'}
+ babel-plugin-module-resolver@5.0.2:
+ resolution: {integrity: sha512-9KtaCazHee2xc0ibfqsDeamwDps6FZNo5S0Q81dUqEuFzVwPhcT4J5jOqIVvgCA3Q/wO9hKYxN/Ds3tIsp5ygg==}
- babel-plugin-polyfill-corejs2@0.4.11:
- resolution: {integrity: sha512-sMEJ27L0gRHShOh5G54uAAPaiCOygY/5ratXuiyb2G46FmlSpc9eFCzYVyDiPxfNbwzA7mYahmjQc5q+CZQ09Q==}
+ babel-plugin-polyfill-corejs2@0.4.12:
+ resolution: {integrity: sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.10.4:
- resolution: {integrity: sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==}
+ babel-plugin-polyfill-corejs3@0.10.6:
+ resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-regenerator@0.6.2:
- resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
+ babel-plugin-polyfill-regenerator@0.6.3:
+ resolution: {integrity: sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-syntax-async-functions@6.13.0:
- resolution: {integrity: sha512-4Zp4unmHgw30A1eWI5EpACji2qMocisdXhAftfhXoSV9j0Tvj6nRFE3tOmRY912E0FMRm/L5xWE7MGVT2FoLnw==}
-
babel-plugin-syntax-dynamic-import@6.18.0:
resolution: {integrity: sha512-MioUE+LfjCEz65Wf7Z/Rm4XCP5k2c+TbMd2Z2JKc7U9uwjBhAfNPE48KC4GTGKhppMeYVepwDBNO/nGY6NYHBA==}
- babel-plugin-syntax-exponentiation-operator@6.13.0:
- resolution: {integrity: sha512-Z/flU+T9ta0aIEKl1tGEmN/pZiI1uXmCiGFRegKacQfEJzp7iNsKloZmyJlQr+75FCJtiFfGIK03SiCvCt9cPQ==}
-
- babel-plugin-syntax-trailing-function-commas@6.22.0:
- resolution: {integrity: sha512-Gx9CH3Q/3GKbhs07Bszw5fPTlU+ygrOGfAhEt7W2JICwufpC4SuO0mG0+4NykPBSYPMJhqvVlDBU17qB1D+hMQ==}
-
- babel-plugin-transform-async-to-generator@6.24.1:
- resolution: {integrity: sha512-7BgYJujNCg0Ti3x0c/DL3tStvnKS6ktIYOmo9wginv/dfZOrbSZ+qG4IRRHMBOzZ5Awb1skTiAsQXg/+IWkZYw==}
-
- babel-plugin-transform-es2015-arrow-functions@6.22.0:
- resolution: {integrity: sha512-PCqwwzODXW7JMrzu+yZIaYbPQSKjDTAsNNlK2l5Gg9g4rz2VzLnZsStvp/3c46GfXpwkyufb3NCyG9+50FF1Vg==}
-
- babel-plugin-transform-es2015-block-scoped-functions@6.22.0:
- resolution: {integrity: sha512-2+ujAT2UMBzYFm7tidUsYh+ZoIutxJ3pN9IYrF1/H6dCKtECfhmB8UkHVpyxDwkj0CYbQG35ykoz925TUnBc3A==}
-
- babel-plugin-transform-es2015-block-scoping@6.26.0:
- resolution: {integrity: sha512-YiN6sFAQ5lML8JjCmr7uerS5Yc/EMbgg9G8ZNmk2E3nYX4ckHR01wrkeeMijEf5WHNK5TW0Sl0Uu3pv3EdOJWw==}
-
- babel-plugin-transform-es2015-classes@6.24.1:
- resolution: {integrity: sha512-5Dy7ZbRinGrNtmWpquZKZ3EGY8sDgIVB4CU8Om8q8tnMLrD/m94cKglVcHps0BCTdZ0TJeeAWOq2TK9MIY6cag==}
-
- babel-plugin-transform-es2015-computed-properties@6.24.1:
- resolution: {integrity: sha512-C/uAv4ktFP/Hmh01gMTvYvICrKze0XVX9f2PdIXuriCSvUmV9j+u+BB9f5fJK3+878yMK6dkdcq+Ymr9mrcLzw==}
-
- babel-plugin-transform-es2015-destructuring@6.23.0:
- resolution: {integrity: sha512-aNv/GDAW0j/f4Uy1OEPZn1mqD+Nfy9viFGBfQ5bZyT35YqOiqx7/tXdyfZkJ1sC21NyEsBdfDY6PYmLHF4r5iA==}
-
- babel-plugin-transform-es2015-duplicate-keys@6.24.1:
- resolution: {integrity: sha512-ossocTuPOssfxO2h+Z3/Ea1Vo1wWx31Uqy9vIiJusOP4TbF7tPs9U0sJ9pX9OJPf4lXRGj5+6Gkl/HHKiAP5ug==}
-
- babel-plugin-transform-es2015-for-of@6.23.0:
- resolution: {integrity: sha512-DLuRwoygCoXx+YfxHLkVx5/NpeSbVwfoTeBykpJK7JhYWlL/O8hgAK/reforUnZDlxasOrVPPJVI/guE3dCwkw==}
-
- babel-plugin-transform-es2015-function-name@6.24.1:
- resolution: {integrity: sha512-iFp5KIcorf11iBqu/y/a7DK3MN5di3pNCzto61FqCNnUX4qeBwcV1SLqe10oXNnCaxBUImX3SckX2/o1nsrTcg==}
-
- babel-plugin-transform-es2015-literals@6.22.0:
- resolution: {integrity: sha512-tjFl0cwMPpDYyoqYA9li1/7mGFit39XiNX5DKC/uCNjBctMxyL1/PT/l4rSlbvBG1pOKI88STRdUsWXB3/Q9hQ==}
-
- babel-plugin-transform-es2015-modules-amd@6.24.1:
- resolution: {integrity: sha512-LnIIdGWIKdw7zwckqx+eGjcS8/cl8D74A3BpJbGjKTFFNJSMrjN4bIh22HY1AlkUbeLG6X6OZj56BDvWD+OeFA==}
-
- babel-plugin-transform-es2015-modules-commonjs@6.26.2:
- resolution: {integrity: sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q==}
-
- babel-plugin-transform-es2015-modules-systemjs@6.24.1:
- resolution: {integrity: sha512-ONFIPsq8y4bls5PPsAWYXH/21Hqv64TBxdje0FvU3MhIV6QM2j5YS7KvAzg/nTIVLot2D2fmFQrFWCbgHlFEjg==}
-
- babel-plugin-transform-es2015-modules-umd@6.24.1:
- resolution: {integrity: sha512-LpVbiT9CLsuAIp3IG0tfbVo81QIhn6pE8xBJ7XSeCtFlMltuar5VuBV6y6Q45tpui9QWcy5i0vLQfCfrnF7Kiw==}
-
- babel-plugin-transform-es2015-object-super@6.24.1:
- resolution: {integrity: sha512-8G5hpZMecb53vpD3mjs64NhI1au24TAmokQ4B+TBFBjN9cVoGoOvotdrMMRmHvVZUEvqGUPWL514woru1ChZMA==}
-
- babel-plugin-transform-es2015-parameters@6.24.1:
- resolution: {integrity: sha512-8HxlW+BB5HqniD+nLkQ4xSAVq3bR/pcYW9IigY+2y0dI+Y7INFeTbfAQr+63T3E4UDsZGjyb+l9txUnABWxlOQ==}
-
- babel-plugin-transform-es2015-shorthand-properties@6.24.1:
- resolution: {integrity: sha512-mDdocSfUVm1/7Jw/FIRNw9vPrBQNePy6wZJlR8HAUBLybNp1w/6lr6zZ2pjMShee65t/ybR5pT8ulkLzD1xwiw==}
-
- babel-plugin-transform-es2015-spread@6.22.0:
- resolution: {integrity: sha512-3Ghhi26r4l3d0Js933E5+IhHwk0A1yiutj9gwvzmFbVV0sPMYk2lekhOufHBswX7NCoSeF4Xrl3sCIuSIa+zOg==}
-
- babel-plugin-transform-es2015-sticky-regex@6.24.1:
- resolution: {integrity: sha512-CYP359ADryTo3pCsH0oxRo/0yn6UsEZLqYohHmvLQdfS9xkf+MbCzE3/Kolw9OYIY4ZMilH25z/5CbQbwDD+lQ==}
-
- babel-plugin-transform-es2015-template-literals@6.22.0:
- resolution: {integrity: sha512-x8b9W0ngnKzDMHimVtTfn5ryimars1ByTqsfBDwAqLibmuuQY6pgBQi5z1ErIsUOWBdw1bW9FSz5RZUojM4apg==}
-
- babel-plugin-transform-es2015-typeof-symbol@6.23.0:
- resolution: {integrity: sha512-fz6J2Sf4gYN6gWgRZaoFXmq93X+Li/8vf+fb0sGDVtdeWvxC9y5/bTD7bvfWMEq6zetGEHpWjtzRGSugt5kNqw==}
-
- babel-plugin-transform-es2015-unicode-regex@6.24.1:
- resolution: {integrity: sha512-v61Dbbihf5XxnYjtBN04B/JBvsScY37R1cZT5r9permN1cp+b70DY3Ib3fIkgn1DI9U3tGgBJZVD8p/mE/4JbQ==}
-
- babel-plugin-transform-exponentiation-operator@6.24.1:
- resolution: {integrity: sha512-LzXDmbMkklvNhprr20//RStKVcT8Cu+SQtX18eMHLhjHf2yFzwtQ0S2f0jQ+89rokoNdmwoSqYzAhq86FxlLSQ==}
-
- babel-plugin-transform-regenerator@6.26.0:
- resolution: {integrity: sha512-LS+dBkUGlNR15/5WHKe/8Neawx663qttS6AGqoOUhICc9d1KciBvtrQSuc0PI+CxQ2Q/S1aKuJ+u64GtLdcEZg==}
-
- babel-plugin-transform-strict-mode@6.24.1:
- resolution: {integrity: sha512-j3KtSpjyLSJxNoCDrhwiJad8kw0gJ9REGj8/CqL0HeRyLnvUNYV9zcqluL6QJSXh3nfsLEmSLvwRfGzrgR96Pw==}
-
- babel-preset-env@1.7.0:
- resolution: {integrity: sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg==}
-
- babel-register@6.26.0:
- resolution: {integrity: sha512-veliHlHX06wjaeY8xNITbveXSiI+ASFnOqvne/LaIJIqOWi2Ogmj91KOugEz/hoh/fwMhXNBJPCv8Xaz5CyM4A==}
-
- babel-runtime@6.26.0:
- resolution: {integrity: sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==}
-
- babel-template@6.26.0:
- resolution: {integrity: sha512-PCOcLFW7/eazGUKIoqH97sO9A2UYMahsn/yRQ7uOk37iutwjq7ODtcTNF+iFDSHNfkctqsLRjLP7URnOx0T1fg==}
-
- babel-traverse@6.26.0:
- resolution: {integrity: sha512-iSxeXx7apsjCHe9c7n8VtRXGzI2Bk1rBSOJgCCjfyXb6v1aCqE1KSEpq/8SXuVN8Ka/Rh1WDTF0MDzkvTA4MIA==}
-
- babel-types@6.26.0:
- resolution: {integrity: sha512-zhe3V/26rCWsEZK8kZN+HaQj5yQ1CilTObixFzKW1UWjqG7618Twz6YEsCnjfg5gBcJh02DrpCkS9h98ZqDY+g==}
-
- babylon@6.18.0:
- resolution: {integrity: sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ==}
- hasBin: true
+ babel-remove-types@1.0.0:
+ resolution: {integrity: sha512-Kg+NZLwfe1E+LoGrkX9I9nFDM1FVBoiIdyW4bjNGGvrqWhvgcdauqijOFn5/WYkdoGXpUEDRWvU4X100ghVx4A==}
backbone@1.6.0:
resolution: {integrity: sha512-13PUjmsgw/49EowNcQvfG4gmczz1ximTMhUktj0Jfrjth0MVaTxehpU+qYYX4MxnuIuhmvBLC6/ayxuAGnOhbA==}
+ backburner.js@2.8.0:
+ resolution: {integrity: sha512-zYXY0KvpD7/CWeOLF576mV8S+bQsaIoj/GNLXXB+Eb8SJcQy5lqSjkRrZ0MZhdKUs9QoqmGNIEIe3NQfGiiscQ==}
+
balanced-match@1.0.2:
resolution: {integrity: sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==}
+ balanced-match@2.0.0:
+ resolution: {integrity: sha512-1ugUSr8BHXRnK23KfuYS+gVMC3LB8QGH9W1iGtDPsNWoQbgtXSExkBu2aDR4epiGWZOjZsj6lDl/N/AqqTC3UA==}
+
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
@@ -1926,30 +2131,17 @@ packages:
resolution: {integrity: sha512-NF+epuEdnUYVlGuhaxbbq+dvJttwLnGY+YixlXlME5KpQ5W3CnXA5cVTneY3SPbPDRkcjMbifrwmFYcClgOZeg==}
engines: {node: '>= 0.8'}
- before-after-hook@2.2.3:
- resolution: {integrity: sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==}
+ better-path-resolve@1.0.0:
+ resolution: {integrity: sha512-pbnl5XzGBdrFU/wT4jqmJVPn2B6UHPBOhzMQkY/SPUPB6QtUXtmBHBIwCbXJol93mOpGMnQyP/+BB19q04xj7g==}
+ engines: {node: '>=4'}
big.js@5.2.2:
resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
- binary-extensions@1.13.1:
- resolution: {integrity: sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==}
- engines: {node: '>=0.10.0'}
-
- binary-extensions@2.3.0:
- resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
- engines: {node: '>=8'}
-
binaryextensions@2.3.0:
resolution: {integrity: sha512-nAihlQsYGyc5Bwq6+EsubvANYGExeJKHDO3RjnvwU042fawQTQfM3Kxn7IHUXQOz4bzfwsGYYHGSvXyW4zOGLg==}
engines: {node: '>=0.8'}
- bind-decorator@1.0.11:
- resolution: {integrity: sha512-yzkH0uog6Vv/vQ9+rhSKxecnqGUZHYncg7qS7voz3Q76+TAi1SGiOKk2mlOvusQnFz9Dc4BC/NMkeXu11YgjJg==}
-
- bindings@1.5.0:
- resolution: {integrity: sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==}
-
bl@4.1.0:
resolution: {integrity: sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==}
@@ -1959,31 +2151,13 @@ packages:
bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
- bn.js@4.12.0:
- resolution: {integrity: sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==}
-
- bn.js@5.2.1:
- resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
-
- body-parser@1.20.2:
- resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
+ body-parser@1.20.3:
+ resolution: {integrity: sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
body@5.1.0:
resolution: {integrity: sha512-chUsBxGRtuElD6fmw1gHLpvnKdVLK302peeFa9ZqAEk8TyzZ3fygLyUEDDPTJvL9+Bor0dIwn6ePOsRM2y0zQQ==}
- bower-config@1.4.3:
- resolution: {integrity: sha512-MVyyUk3d1S7d2cl6YISViwJBc2VXCkxF5AUFykvN0PQj5FsUiMNSgAYTso18oRFfyZ6XEtjrgg9MAaufHbOwNw==}
- engines: {node: '>=0.8.0'}
-
- bower-endpoint-parser@0.2.2:
- resolution: {integrity: sha512-YWZHhWkPdXtIfH3VRu3QIV95sa75O9vrQWBOHjexWCLBCTy5qJvRr36LXTqFwTchSXVlzy5piYJOjzHr7qhsNg==}
- engines: {node: '>=0.8.0'}
-
- boxen@5.1.2:
- resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
- engines: {node: '>=10'}
-
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -1998,10 +2172,6 @@ packages:
resolution: {integrity: sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==}
engines: {node: '>=8'}
- broccoli-amd-funnel@2.0.1:
- resolution: {integrity: sha512-VRE+0PYAN4jQfkIq3GKRj4U/4UV9rVpLan5ll6fVYV4ziVg4OEfR5GUnILEg++QtR4xSaugRxCPU5XJLDy3bNQ==}
- engines: {node: '>=6'}
-
broccoli-asset-rev@3.0.0:
resolution: {integrity: sha512-gAHQZnwvtl74tGevUqGuWoyOdJUdMMv0TjGSMzbdyGImr9fZcnM6xmggDA8bUawrMto9NFi00ZtNUgA4dQiUBw==}
@@ -2012,6 +2182,12 @@ packages:
resolution: {integrity: sha512-6IXBgfRt7HZ61g67ssBc6lBb3Smw3DPZ9dEYirgtvXWpRZ2A9M22nxy6opEwJDgDJzlu/bB7ToppW33OFkA1gA==}
engines: {node: '>= 6'}
+ broccoli-babel-transpiler@8.0.0:
+ resolution: {integrity: sha512-3HEp3flvasUKJGWERcrPgM1SWvHJ0O/fmbEtY9L4kDyMSnqjY6hTYvNvgWCIgbwXAYAUlZP0vjAQsmyLNGLwFw==}
+ engines: {node: 16.* || >= 18}
+ peerDependencies:
+ '@babel/core': ^7.17.9
+
broccoli-builder@0.18.14:
resolution: {integrity: sha512-YoUHeKnPi4xIGZ2XDVN9oHNA9k3xF5f5vlA+1wvrxIIDXqQU97gp2FxVAF503Zxdtt0C5CRB5n+47k2hlkaBzA==}
engines: {node: '>= 0.10.0'}
@@ -2022,9 +2198,6 @@ packages:
broccoli-caching-writer@3.0.3:
resolution: {integrity: sha512-g644Kb5uBPsy+6e2DvO3sOc+/cXZQQNgQt64QQzjA9TSdP0dl5qvetpoNIx4sy/XIjrPYG1smEidq9Z9r61INw==}
- broccoli-clean-css@1.1.0:
- resolution: {integrity: sha512-S7/RWWX+lL42aGc5+fXVLnwDdMtS0QEWUFalDp03gJ9Na7zj1rWa351N2HZ687E2crM9g+eDWXKzD17cbcTepg==}
-
broccoli-concat@4.2.5:
resolution: {integrity: sha512-dFB5ATPwOyV8S2I7a07HxCoutoq23oY//LhM6Mou86cWUTB174rND5aQLR7Fu8FjFFLxoTbkk7y0VPITJ1IQrw==}
engines: {node: 10.* || >= 12.*}
@@ -2114,6 +2287,14 @@ packages:
resolution: {integrity: sha512-a4zUsWtA1uns1K7p9rExYVYG99rdKeGRymW0qOCNkvDPHQxVi3yVyJHhQbM3EZwdt2E0mnhr5e0c/bPpJ7p3Wg==}
engines: {node: 10.* || >= 12.*}
+ broccoli-rollup@2.1.1:
+ resolution: {integrity: sha512-aky/Ovg5DbsrsJEx2QCXxHLA6ZR+9u1TNVTf85soP4gL8CjGGKQ/JU8R3BZ2ntkWzo6/83RCKzX6O+nlNKR5MQ==}
+ engines: {node: '>=4.0'}
+
+ broccoli-sass-source-maps@4.3.0:
+ resolution: {integrity: sha512-t/YEueiFAOboCERQsH6J9RmifEDkqkoFjIB6owIeilpSbhJbNXj0FfzWcXnG/ahKYByHE4g3H7agHr2mtlJdDw==}
+ engines: {node: '>=10.24.1'}
+
broccoli-slow-trees@3.1.0:
resolution: {integrity: sha512-FRI7mRTk2wjIDrdNJd6znS7Kmmne4VkAkl8Ix1R/VoePFMD0g0tEl671xswzFqaRjpT9Qu+CC4hdXDLDJBuzMw==}
@@ -2132,6 +2313,10 @@ packages:
resolution: {integrity: sha512-NXfi+Vas24n3Ivo21GvENTI55qxKu7OwKRnCLWXld8MiLiQKQlWIq28eoARaFj0lTUFwUa4jKZeA7fW9PiWQeg==}
engines: {node: 8.* || >= 10.*}
+ broccoli-templater@2.0.2:
+ resolution: {integrity: sha512-71KpNkc7WmbEokTQpGcbGzZjUIY1NSVa3GB++KFKAfx5SZPUozCOsBlSTwxcv8TLoCAqbBnsX5AQPgg6vJ2l9g==}
+ engines: {node: 6.* || >= 8.*}
+
broccoli-terser-sourcemap@4.1.1:
resolution: {integrity: sha512-8sbpRf0/+XeszBJQM7vph2UNj4Kal0lCI/yubcrBIzb2NvYj5gjTHJABXOdxx5mKNmlCMu2hx2kvOtMpQsxrfg==}
engines: {node: ^10.12.0 || 12.* || >= 14}
@@ -2140,37 +2325,8 @@ packages:
resolution: {integrity: sha512-sWi3b3fTUSVPDsz5KsQ5eCQNVAtLgkIE/HYFkEZXR/07clqmd4E/gFiuwSaqa9b+QTXc1Uemfb7TVWbEIURWDg==}
engines: {node: 8.* || >= 10.*}
- brorand@1.1.0:
- resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
-
- browser-process-hrtime@1.0.0:
- resolution: {integrity: sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==}
-
- browserify-aes@1.2.0:
- resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
-
- browserify-cipher@1.0.1:
- resolution: {integrity: sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==}
-
- browserify-des@1.0.2:
- resolution: {integrity: sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==}
-
- browserify-rsa@4.1.0:
- resolution: {integrity: sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==}
-
- browserify-sign@4.2.3:
- resolution: {integrity: sha512-JWCZW6SKhfhjJxO8Tyiiy+XYB7cqd2S5/+WeYHsKdNKFlCBhKbblba1A/HN/90YwtxKc8tCErjffZl++UNmGiw==}
- engines: {node: '>= 0.12'}
-
- browserify-zlib@0.2.0:
- resolution: {integrity: sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==}
-
- browserslist@3.2.8:
- resolution: {integrity: sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ==}
- hasBin: true
-
- browserslist@4.23.0:
- resolution: {integrity: sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==}
+ browserslist@4.24.3:
+ resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -2180,36 +2336,19 @@ packages:
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
- buffer-xor@1.0.3:
- resolution: {integrity: sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==}
-
- buffer@4.9.2:
- resolution: {integrity: sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==}
-
buffer@5.7.1:
resolution: {integrity: sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==}
- builtin-status-codes@3.0.0:
- resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
+ buffer@6.0.3:
+ resolution: {integrity: sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==}
bytes@1.0.0:
resolution: {integrity: sha512-/x68VkHLeTl3/Ll8IvxdwzhrT+IyKc52e/oyHhA2RwqPqswSnjVbSddfPRwAsJtbilMAPSRWwAlpxdYsSWOTKQ==}
- bytes@3.0.0:
- resolution: {integrity: sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==}
- engines: {node: '>= 0.8'}
-
bytes@3.1.2:
resolution: {integrity: sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==}
engines: {node: '>= 0.8'}
- cacache@12.0.4:
- resolution: {integrity: sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==}
-
- cacache@15.3.0:
- resolution: {integrity: sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==}
- engines: {node: '>= 10'}
-
cache-base@1.0.1:
resolution: {integrity: sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==}
engines: {node: '>=0.10.0'}
@@ -2218,28 +2357,38 @@ packages:
resolution: {integrity: sha512-Oj3cAGPCqOZX7Rz64Uny2GYAZNliQSqfbePrgAQ1wKAihYmCUnraBtJtKcGR4xz7wF+LoJC+ssFZvv5BgF9Igg==}
engines: {node: '>=8'}
+ cacheable@1.8.7:
+ resolution: {integrity: sha512-AbfG7dAuYNjYxFUtL1lAqmlWdxczCJ47w7cFjhGcnGnUdwSo6VgmSojfoW3tUI12HUkgTJ5kqj78yyq6TsFtlg==}
+
calculate-cache-key-for-tree@2.0.0:
resolution: {integrity: sha512-Quw8a6y8CPmRd6eU+mwypktYCwUcf8yVFIRbNZ6tPQEckX9yd+EBVEPC/GSZZrMWH9e7Vz4pT7XhpmyApRByLQ==}
engines: {node: 6.* || 8.* || >= 10.*}
- call-bind@1.0.7:
- resolution: {integrity: sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==}
+ call-bind-apply-helpers@1.0.1:
+ resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
+ engines: {node: '>= 0.4'}
+
+ call-bind@1.0.8:
+ resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ engines: {node: '>= 0.4'}
+
+ call-bound@1.0.3:
+ resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
engines: {node: '>= 0.4'}
callsites@3.1.0:
resolution: {integrity: sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==}
engines: {node: '>=6'}
- camelcase@6.3.0:
- resolution: {integrity: sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==}
- engines: {node: '>=10'}
-
can-symlink@1.0.0:
resolution: {integrity: sha512-RbsNrFyhwkx+6psk/0fK/Q9orOUr9VMxohGd8vTa4djf4TGLfblBgUfqZChrZuW0Q+mz2eBPFLusw9Jfukzmhg==}
hasBin: true
- caniuse-lite@1.0.30001625:
- resolution: {integrity: sha512-4KE9N2gcRH+HQhpeiRZXd+1niLB/XNLAhSy4z7fI8EzcbcPoAqjNInxVHTiTwWfTIV4w096XG8OtCOCQQKPv3w==}
+ caniuse-api@3.0.0:
+ resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
+
+ caniuse-lite@1.0.30001690:
+ resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
capture-exit@2.0.0:
resolution: {integrity: sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==}
@@ -2249,10 +2398,6 @@ packages:
resolution: {integrity: sha512-INsuF4GyiFLk8C91FPokbKTc/rwHqV4JnfatVZ6GPhguP1qmkRWX2dp5tepYboYdPpGWisLVLI+KsXoXFPRSMg==}
hasBin: true
- chalk@1.1.3:
- resolution: {integrity: sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==}
- engines: {node: '>=0.10.0'}
-
chalk@2.4.2:
resolution: {integrity: sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==}
engines: {node: '>=4'}
@@ -2261,8 +2406,9 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
- character-entities@2.0.2:
- resolution: {integrity: sha512-shx7oQ0Awen/BRIdkjkvz54PnEEI/EjwXDSIZp86/KKdbafHh1Df/RYGBhn4hbe2+uKC9FnT5UCEdyPz3ai9hQ==}
+ chalk@5.4.1:
+ resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
+ engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
chardet@0.7.0:
resolution: {integrity: sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==}
@@ -2270,35 +2416,18 @@ packages:
charm@1.0.2:
resolution: {integrity: sha512-wqW3VdPnlSWT4eRiYX+hcs+C6ViBPUWk1qTCd+37qw9kEm/a5n2qcyQDMBWvSYKN/ctqZzeXNQaeBjOetJJUkw==}
- chokidar@2.1.8:
- resolution: {integrity: sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==}
- deprecated: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies
-
- chokidar@3.6.0:
- resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
- engines: {node: '>= 8.10.0'}
-
- chownr@1.1.4:
- resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
+ chokidar@4.0.3:
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
+ engines: {node: '>= 14.16.0'}
- chownr@2.0.0:
- resolution: {integrity: sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==}
- engines: {node: '>=10'}
-
- chrome-trace-event@1.0.3:
- resolution: {integrity: sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==}
+ chrome-trace-event@1.0.4:
+ resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
- ci-info@2.0.0:
- resolution: {integrity: sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==}
-
- ci-info@3.9.0:
- resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
+ ci-info@4.1.0:
+ resolution: {integrity: sha512-HutrvTNsF48wnxkzERIXOe5/mlcfFcbfCmwcg6CJnizbSue78AbDt+1cgl26zwn61WFxhcPykPfZrbqjGmBb4A==}
engines: {node: '>=8'}
- cipher-base@1.0.4:
- resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
-
class-utils@0.3.6:
resolution: {integrity: sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==}
engines: {node: '>=0.10.0'}
@@ -2306,13 +2435,9 @@ packages:
clean-base-url@1.0.0:
resolution: {integrity: sha512-9q6ZvUAhbKOSRFY7A/irCQ/rF0KIpa3uXpx6izm8+fp7b2H4hLeUJ+F1YYk9+gDQ/X8Q0MEyYs+tG3cht//HTg==}
- clean-css-promise@0.1.1:
- resolution: {integrity: sha512-tzWkANXMD70ETa/wAu2TXAAxYWS0ZjVUFM2dVik8RQBoAbGMFJv4iVluz3RpcoEbo++fX4RV/BXfgGoOjp8o3Q==}
-
- clean-css@3.4.28:
- resolution: {integrity: sha512-aTWyttSdI2mYi07kWqHi24NUU9YlELFKGOAgFzZjDN1064DMAOy2FBuoyGmkKRlXkbpXd0EVHmiVkbKhKoirTw==}
- engines: {node: '>=0.10.0'}
- hasBin: true
+ clean-css@5.3.3:
+ resolution: {integrity: sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==}
+ engines: {node: '>= 10.0'}
clean-stack@2.2.0:
resolution: {integrity: sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==}
@@ -2321,10 +2446,6 @@ packages:
clean-up-path@1.0.0:
resolution: {integrity: sha512-PHGlEF0Z6976qQyN6gM7kKH6EH0RdfZcc8V+QhFe36eRxV0SMH5OUBZG7Bxa9YcreNzyNbK63cGiZxdSZgosRw==}
- cli-boxes@2.2.1:
- resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
- engines: {node: '>=6'}
-
cli-cursor@2.1.0:
resolution: {integrity: sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==}
engines: {node: '>=4'}
@@ -2333,11 +2454,6 @@ packages:
resolution: {integrity: sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==}
engines: {node: '>=8'}
- cli-highlight@2.1.11:
- resolution: {integrity: sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==}
- engines: {node: '>=8.0.0', npm: '>=5.0.0'}
- hasBin: true
-
cli-spinners@2.9.2:
resolution: {integrity: sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==}
engines: {node: '>=6'}
@@ -2357,8 +2473,9 @@ packages:
resolution: {integrity: sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==}
engines: {node: '>= 10'}
- cliui@7.0.4:
- resolution: {integrity: sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==}
+ cli-width@4.1.0:
+ resolution: {integrity: sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==}
+ engines: {node: '>= 12'}
cliui@8.0.1:
resolution: {integrity: sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==}
@@ -2396,6 +2513,12 @@ packages:
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
+ colord@2.9.3:
+ resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
+
+ colorette@1.4.0:
+ resolution: {integrity: sha512-Y2oEozpomLn7Q3HFP7dpww7AtMJplbM9lGZP6RDfHqmbeRjiwRg4n6VM6j4KLmRke85uWEI7JqF17f3pqdRA0g==}
+
colors@1.0.3:
resolution: {integrity: sha512-pFGrxThWcWQ2MsAz6RtgeWe4NK2kUE1WfsrvvlctdII745EW9I0yflqhe7++M5LEc7bV2c/9/5zc8sFcpL0Drw==}
engines: {node: '>=0.1.90'}
@@ -2411,10 +2534,6 @@ packages:
commander@2.20.3:
resolution: {integrity: sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==}
- commander@2.8.1:
- resolution: {integrity: sha512-+pJLBFVk+9ZZdlAOB5WuIElVPPth47hILFkmGym57aq8kwxsowvByvB0DHs1vQAhyMZzdcpTtF0VDKGkSDR4ZQ==}
- engines: {node: '>= 0.6.x'}
-
commander@4.1.1:
resolution: {integrity: sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==}
engines: {node: '>= 6'}
@@ -2427,6 +2546,9 @@ packages:
resolution: {integrity: sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==}
engines: {node: '>= 12'}
+ common-ancestor-path@1.0.1:
+ resolution: {integrity: sha512-L3sHRo1pXXEqX8VU28kfgUY+YGsk09hPqZiZmLacNib6XNTCM8ubYeT7ryXQw8asB1sKgcU5lkB7ONug08aB8w==}
+
common-tags@1.8.2:
resolution: {integrity: sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==}
engines: {node: '>=4.0.0'}
@@ -2441,16 +2563,17 @@ packages:
resolution: {integrity: sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==}
engines: {node: '>= 0.6'}
- compression@1.7.4:
- resolution: {integrity: sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==}
+ compression@1.7.5:
+ resolution: {integrity: sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==}
engines: {node: '>= 0.8.0'}
concat-map@0.0.1:
resolution: {integrity: sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==}
- concat-stream@1.6.2:
- resolution: {integrity: sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==}
- engines: {'0': node >= 0.8}
+ concurrently@9.1.2:
+ resolution: {integrity: sha512-H9MWcoPsYddwbOGM6difjVwVZHl63nwMEwDJG/L7VGtuaJhb12h2caPG2tVPWs7emuYix252iGfqOyrz1GczTQ==}
+ engines: {node: '>=18'}
+ hasBin: true
configstore@5.0.1:
resolution: {integrity: sha512-aMKprgk5YhBNyH25hj8wGt2+D52Sw1DRRIzqBwLp2Ya9mFmY8KPvvtvmna8SxVR9JMZ4kzMD68N22vlaRpkeFA==}
@@ -2460,9 +2583,6 @@ packages:
resolution: {integrity: sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==}
engines: {node: '>= 0.10.0'}
- console-browserify@1.2.0:
- resolution: {integrity: sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==}
-
console-control-strings@1.1.0:
resolution: {integrity: sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==}
@@ -2636,13 +2756,16 @@ packages:
whiskers:
optional: true
- constants-browserify@1.0.0:
- resolution: {integrity: sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==}
-
content-disposition@0.5.4:
resolution: {integrity: sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==}
engines: {node: '>= 0.6'}
+ content-tag@2.0.3:
+ resolution: {integrity: sha512-htLIdtfhhKW2fHlFLnZH7GFzHSdSpHhDLrWVswkNiiPMZ5uXq5JfrGboQKFhNQuAAFF8VNB2EYUj3MsdJrKKpg==}
+
+ content-tag@3.1.0:
+ resolution: {integrity: sha512-gSESx+fia81/vKjorui0V6wY7IBpuitd84LcQnaPVF9Xe9ctLAf4saHwbUi3SAhYfi9kxs5ODfAVnm5MmjojCQ==}
+
content-type@1.0.5:
resolution: {integrity: sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==}
engines: {node: '>= 0.6'}
@@ -2650,27 +2773,20 @@ packages:
continuable-cache@0.3.1:
resolution: {integrity: sha512-TF30kpKhTH8AGCG3dut0rdd/19B7Z+qCnrMoBLpyQu/2drZdNrrpcjPEoJeSVsQM+8KmWG5O56oPDjSSUsuTyA==}
- convert-source-map@1.9.0:
- resolution: {integrity: sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==}
-
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
cookie-signature@1.0.6:
resolution: {integrity: sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==}
- cookie@0.4.2:
- resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
+ cookie@0.7.1:
+ resolution: {integrity: sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==}
engines: {node: '>= 0.6'}
- cookie@0.6.0:
- resolution: {integrity: sha512-U71cyTamuh1CRNCfpGY6to28lxvNwPG4Guz/EVjgf3Jmzv0vlDp1atT9eS5dDjMYHucpHbWns6Lwf3BKz6svdw==}
+ cookie@0.7.2:
+ resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
- copy-concurrently@1.0.5:
- resolution: {integrity: sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==}
- deprecated: This package is no longer supported.
-
copy-dereference@1.0.0:
resolution: {integrity: sha512-40TSLuhhbiKeszZhK9LfNdazC67Ue4kq/gGwN5sdxEUWPXTIMmKmGmgD9mPfNKVAeecEW+NfEIpBaZoACCQLLw==}
@@ -2678,8 +2794,8 @@ packages:
resolution: {integrity: sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==}
engines: {node: '>=0.10.0'}
- core-js-compat@3.37.1:
- resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
+ core-js-compat@3.40.0:
+ resolution: {integrity: sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==}
core-js@2.6.12:
resolution: {integrity: sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==}
@@ -2696,46 +2812,39 @@ packages:
resolution: {integrity: sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==}
engines: {node: '>= 0.10'}
- cosmiconfig@7.0.1:
- resolution: {integrity: sha512-a1YWNUV2HwGimB7dU2s1wUMurNKjpx60HxBB6xUM8Re+2s1g1IIfJvFR0/iCF+XHdE0GMTKTuLR32UQff4TEyQ==}
- engines: {node: '>=10'}
-
- create-ecdh@4.0.4:
- resolution: {integrity: sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==}
-
- create-hash@1.2.0:
- resolution: {integrity: sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==}
-
- create-hmac@1.1.7:
- resolution: {integrity: sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==}
+ cosmiconfig@9.0.0:
+ resolution: {integrity: sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ typescript: '>=4.9.5'
+ peerDependenciesMeta:
+ typescript:
+ optional: true
- cross-spawn@6.0.5:
- resolution: {integrity: sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==}
+ cross-spawn@6.0.6:
+ resolution: {integrity: sha512-VqCUuhcd1iB+dsv8gxPttb5iZh/D0iubSP21g36KXdEuf6I5JiioesUVjpCdHV9MZRUfVFlvwtIUyPfxo5trtw==}
engines: {node: '>=4.8'}
- cross-spawn@7.0.3:
- resolution: {integrity: sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==}
+ cross-spawn@7.0.6:
+ resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- crypto-browserify@3.12.0:
- resolution: {integrity: sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==}
-
crypto-random-string@2.0.0:
resolution: {integrity: sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==}
engines: {node: '>=8'}
+ css-functions-list@3.2.3:
+ resolution: {integrity: sha512-IQOkD3hbR5KrN93MtcYuad6YPuTSUhntLHDuLEbFWE+ff2/XSZNdZG+LcbbIW5AXKg/WFIfYItIzVoHngHXZzA==}
+ engines: {node: '>=12 || >=16'}
+
css-loader@5.2.7:
resolution: {integrity: sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==}
engines: {node: '>= 10.13.0'}
peerDependencies:
webpack: ^4.27.0 || ^5.0.0
- css-tree@1.1.3:
- resolution: {integrity: sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==}
- engines: {node: '>=8.0.0'}
-
- css-tree@2.3.1:
- resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
+ css-tree@3.1.0:
+ resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
cssesc@3.0.0:
@@ -2743,49 +2852,35 @@ packages:
engines: {node: '>=4'}
hasBin: true
- csso@4.2.0:
- resolution: {integrity: sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==}
- engines: {node: '>=8.0.0'}
-
- cssom@0.3.8:
- resolution: {integrity: sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==}
-
- cssom@0.4.4:
- resolution: {integrity: sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==}
-
- cssstyle@2.3.0:
- resolution: {integrity: sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==}
- engines: {node: '>=8'}
-
- cyclist@1.0.2:
- resolution: {integrity: sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==}
+ cssstyle@4.1.0:
+ resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==}
+ engines: {node: '>=18'}
dag-map@2.0.2:
resolution: {integrity: sha512-xnsprIzYuDeiyu5zSKwilV/ajRHxnoMlAhEREfyfTgTSViMVY2fGP1ZcHJbtwup26oCkofySU/m6oKJ3HrkW7w==}
- data-uri-to-buffer@3.0.1:
- resolution: {integrity: sha512-WboRycPNsVw3B3TL559F7kuBUM4d8CgMEvk6xEJlOp7OBPjt6G7z8WMWlD2rOFZLk6OYfFIUGsCOWzcQH9K2og==}
- engines: {node: '>= 6'}
-
- data-urls@2.0.0:
- resolution: {integrity: sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==}
- engines: {node: '>=10'}
+ data-urls@5.0.0:
+ resolution: {integrity: sha512-ZYP5VBHshaDAiVZxjbRVcFJpc+4xGgT0bK3vzy1HLN8jTO975HEbuYzZJcHoQEY5K1a0z8YayJkyVETa08eNTg==}
+ engines: {node: '>=18'}
- data-view-buffer@1.0.1:
- resolution: {integrity: sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==}
+ data-view-buffer@1.0.2:
+ resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
engines: {node: '>= 0.4'}
- data-view-byte-length@1.0.1:
- resolution: {integrity: sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==}
+ data-view-byte-length@1.0.2:
+ resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
engines: {node: '>= 0.4'}
- data-view-byte-offset@1.0.0:
- resolution: {integrity: sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==}
+ data-view-byte-offset@1.0.1:
+ resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
- date-fns@2.30.0:
- resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
- engines: {node: '>=0.11'}
+ date-fns@3.6.0:
+ resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
+
+ date-time@2.1.0:
+ resolution: {integrity: sha512-/9+C44X7lot0IeiyfgJmETtRMhBidBYM2QFFIkGa0U1k+hSyY87Nw7PY3eDqpvCBm7I3WCSfPeZskW/YYq6m4g==}
+ engines: {node: '>=4'}
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
@@ -2803,8 +2898,17 @@ packages:
supports-color:
optional: true
- debug@4.3.4:
- resolution: {integrity: sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
+ debug@4.4.0:
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -2815,9 +2919,6 @@ packages:
decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
- decode-named-character-reference@1.0.2:
- resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
-
decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
engines: {node: '>=0.10'}
@@ -2826,6 +2927,9 @@ packages:
resolution: {integrity: sha512-BzRPQuY1ip+qDonAOz42gRm/pg9F768C+npV/4JOsxRC2sq+Rlk+Q4ZCAsOhnIaMrgarILY+RMUIvMmmX1qAEA==}
engines: {node: '>=4'}
+ decorator-transforms@2.3.0:
+ resolution: {integrity: sha512-jo8c1ss9yFPudHuYYcrJ9jpkDZIoi+lOGvt+Uyp9B+dz32i50icRMx9Bfa8hEt7TnX1FyKWKkjV+cUdT/ep2kA==}
+
deep-extend@0.6.0:
resolution: {integrity: sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==}
engines: {node: '>=4.0.0'}
@@ -2859,10 +2963,6 @@ packages:
resolution: {integrity: sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==}
engines: {node: '>=0.10.0'}
- degenerator@3.0.4:
- resolution: {integrity: sha512-Z66uPeBfHZAHVmue3HPfyKu2Q0rC2cRxbTOsvmU/po5fvvcx27W4mIu9n0PUlQih4oUYvcG1BsbtVv8x7KDOSw==}
- engines: {node: '>= 6'}
-
delayed-stream@1.0.0:
resolution: {integrity: sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==}
engines: {node: '>=0.4.0'}
@@ -2878,16 +2978,6 @@ packages:
resolution: {integrity: sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==}
engines: {node: '>= 0.8'}
- deprecation@2.3.1:
- resolution: {integrity: sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==}
-
- dequal@2.0.3:
- resolution: {integrity: sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==}
- engines: {node: '>=6'}
-
- des.js@1.1.0:
- resolution: {integrity: sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==}
-
destroy@1.2.0:
resolution: {integrity: sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
@@ -2896,14 +2986,15 @@ packages:
resolution: {integrity: sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==}
engines: {node: '>=0.10.0'}
- detect-indent@4.0.0:
- resolution: {integrity: sha512-BDKtmHlOzwI7iRuEkhzsnPoi5ypEhWAJB5RvHWe1kMr06js3uK5B3734i3ui5Yd+wOJV1cpE4JnivPD283GU/A==}
- engines: {node: '>=0.10.0'}
-
detect-indent@6.1.0:
resolution: {integrity: sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==}
engines: {node: '>=8'}
+ detect-libc@1.0.3:
+ resolution: {integrity: sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==}
+ engines: {node: '>=0.10'}
+ hasBin: true
+
detect-newline@3.1.0:
resolution: {integrity: sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==}
engines: {node: '>=8'}
@@ -2912,25 +3003,16 @@ packages:
resolution: {integrity: sha512-uIFDxqpRZGZ6ThOk84hEfqWoHx2devRFvpTZcTHur85vImfaxUbTW9Ryh4CpCuDnToOP1CEtXKIgytHBPVff5A==}
engines: {node: '>=0.3.1'}
- diffie-hellman@5.0.3:
- resolution: {integrity: sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==}
-
dir-glob@3.0.1:
resolution: {integrity: sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==}
engines: {node: '>=8'}
- doctrine@3.0.0:
- resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==}
- engines: {node: '>=6.0.0'}
-
- domain-browser@1.2.0:
- resolution: {integrity: sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==}
- engines: {node: '>=0.4', npm: '>=1.2'}
+ doctrine@2.1.0:
+ resolution: {integrity: sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==}
+ engines: {node: '>=0.10.0'}
- domexception@2.0.1:
- resolution: {integrity: sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==}
- engines: {node: '>=8'}
- deprecated: Use your platform's native DOMException instead
+ dom-element-descriptors@0.5.1:
+ resolution: {integrity: sha512-DLayMRQ+yJaziF4JJX1FMjwjdr7wdTr1y9XvZ+NfHELfOMcYDnCHneAYXAS4FT1gLILh4V0juMZohhH1N5FsoQ==}
dot-case@3.0.4:
resolution: {integrity: sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==}
@@ -2939,12 +3021,13 @@ packages:
resolution: {integrity: sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==}
engines: {node: '>=8'}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
duplexer3@0.1.5:
resolution: {integrity: sha512-1A8za6ws41LQgv9HrE/66jyC5yuSjQ3L/KOpFtoBilsAK2iA2wuS5rTt1OCzIvtS2V7nVmedsUU+DGRcjBmOYA==}
- duplexify@3.7.1:
- resolution: {integrity: sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==}
-
editions@1.3.4:
resolution: {integrity: sha512-gzao+mxnYDzIysXKMQi/+M1mjy/rjestjg6OPoYTtI+3Izp23oiGZitsl9lPDPiTGXbcSIk1iJWhliSaglxnUg==}
engines: {node: '>=0.8'}
@@ -2956,20 +3039,19 @@ packages:
ee-first@1.1.1:
resolution: {integrity: sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==}
- electron-to-chromium@1.4.783:
- resolution: {integrity: sha512-bT0jEz/Xz1fahQpbZ1D7LgmPYZ3iHVY39NcWWro1+hA2IvjiPeaXtfSqrQ+nXjApMvQRE2ASt1itSLRrebHMRQ==}
-
- elliptic@6.5.5:
- resolution: {integrity: sha512-7EjbcmUm17NQFu4Pmgmq2olYMj8nwMnpcddByChSUjArp8F5DQWcIcpriwO4ZToLNAJig0yiyjswfyGNje/ixw==}
-
- ember-auto-import@1.12.2:
- resolution: {integrity: sha512-gLqML2k77AuUiXxWNon1FSzuG1DV7PEPpCLCU5aJvf6fdL6rmFfElsZRh+8ELEB/qP9dT+LHjNEunVzd2dYc8A==}
- engines: {node: '>= 10.*'}
+ electron-to-chromium@1.5.78:
+ resolution: {integrity: sha512-UmwIt7HRKN1rsJfddG5UG7rCTCTAKoS9JeOy/R0zSenAyaZ8SU3RuXlwcratxhdxGRNpk03iq8O7BA3W7ibLVw==}
- ember-auto-import@2.7.4:
- resolution: {integrity: sha512-6CdXSegJJc8nwwK7+1lIcBUnMVrJRNd4ZdMgcKbCAwPvcGxMgRVBddSzrX/+q/UuflvTEO26Dk1g7Z6KHMXUhw==}
+ ember-auto-import@2.10.0:
+ resolution: {integrity: sha512-bcBFDYVTFHyqyq8BNvsj6UO3pE6Uqou/cNmee0WaqBgZ+1nQqFz0UE26usrtnFAT+YaFZSkqF2H36QW84k0/cg==}
engines: {node: 12.* || 14.* || >= 16}
+ ember-cli-app-version@7.0.0:
+ resolution: {integrity: sha512-zWIkxvlRrW7w1/vp+bGkmS27QsVum7NKp8N9DgAjhFMWuKewVqGyl/jeYaujMS/I4WSKBzSG9WHwBy2rjbUWxA==}
+ engines: {node: '>= 18'}
+ peerDependencies:
+ ember-source: ^3.28.0 || >= 4.0.0
+
ember-cli-babel-plugin-helpers@1.1.1:
resolution: {integrity: sha512-sKvOiPNHr5F/60NLd7SFzMpYPte/nnGkq/tMIfXejfKHIhaiIkYFqX8Z9UFTKWLLn+V7NOaby6niNPZUdvKCRw==}
engines: {node: 6.* || 8.* || >= 10.*}
@@ -2978,8 +3060,18 @@ packages:
resolution: {integrity: sha512-JJYeYjiz/JTn34q7F5DSOjkkZqy8qwFOOxXfE6pe9yEJqWGu4qErKxlz8I22JoVEQ/aBUO+OcKTpmctvykM9YA==}
engines: {node: 6.* || 8.* || >= 10.*}
- ember-cli-dependency-checker@3.3.2:
- resolution: {integrity: sha512-PwkrW5oYsdPWwt+0Tojufmv/hxVETTjkrEdK7ANQB2VSnqpA5UcYubwpQM9ONuR2J8wyNDMwEHlqIrk/FYtBsQ==}
+ ember-cli-babel@8.2.0:
+ resolution: {integrity: sha512-8H4+jQElCDo6tA7CamksE66NqBXWs7VNpS3a738L9pZCjg2kXIX4zoyHzkORUqCtr0Au7YsCnrlAMi1v2ALo7A==}
+ engines: {node: 16.* || 18.* || >= 20}
+ peerDependencies:
+ '@babel/core': ^7.12.0
+
+ ember-cli-clean-css@3.0.0:
+ resolution: {integrity: sha512-BbveJCyRvzzkaTH1llLW+MpHe/yzA5zpHOpMIg2vp/3JD9mban9zUm7lphaB0TSpPuMuby9rAhTI8pgXq0ifIA==}
+ engines: {node: 16.* || >= 18}
+
+ ember-cli-dependency-checker@3.3.3:
+ resolution: {integrity: sha512-mvp+HrE0M5Zhc2oW8cqs8wdhtqq0CfQXAYzaIstOzHJJn/U01NZEGu3hz7J7zl/+jxZkyygylzcS57QqmPXMuQ==}
engines: {node: '>= 6'}
peerDependencies:
ember-cli: ^3.2.0 || >=4.0.0
@@ -2987,6 +3079,10 @@ packages:
ember-cli-get-component-path-option@1.0.0:
resolution: {integrity: sha512-k47TDwcJ2zPideBCZE8sCiShSxQSpebY2BHcX2DdipMmBox5gsfyVrbKJWIHeSTTKyEUgmBIvQkqTOozEziCZA==}
+ ember-cli-htmlbars@5.7.2:
+ resolution: {integrity: sha512-Uj6R+3TtBV5RZoJY14oZn/sNPnc+UgmC8nb5rI4P3fR/gYoyTFIZSXiIM7zl++IpMoIrocxOrgt+mhonKphgGg==}
+ engines: {node: 10.* || >= 12.*}
+
ember-cli-htmlbars@6.3.0:
resolution: {integrity: sha512-N9Y80oZfcfWLsqickMfRd9YByVcTGyhYRnYQ2XVPVrp6jyUyOeRWmEAPh7ERSXpp8Ws4hr/JB9QVQrn/yZa+Ag==}
engines: {node: 12.* || 14.* || >= 16}
@@ -3008,8 +3104,13 @@ packages:
ember-cli-path-utils@1.0.0:
resolution: {integrity: sha512-Qq0vvquzf4cFHoDZavzkOy3Izc893r/5spspWgyzLCPTaG78fM3HsrjZm7UWEltbXUqwHHYrqZd/R0jS08NqSA==}
- ember-cli-preprocess-registry@3.3.0:
- resolution: {integrity: sha512-60GYpw7VPeB7TvzTLZTuLTlHdOXvayxjAQ+IxM2T04Xkfyu75O2ItbWlftQW7NZVGkaCsXSRAmn22PG03VpLMA==}
+ ember-cli-preprocess-registry@5.0.1:
+ resolution: {integrity: sha512-Jb2zbE5Kfe56Nf4IpdaQ10zZ72p/RyLdgE5j5/lKG3I94QHlq+7AkAd18nPpb5OUeRUT13yQTAYpU+MbjpKTtg==}
+ engines: {node: 16.* || >= 18}
+
+ ember-cli-sass@11.0.1:
+ resolution: {integrity: sha512-RMlFPMK4kaB+67seF/IIoY3EC4rRd+L58q+lyElrxB3FcQTgph/qmGwtqf9Up7m3SDbPiA7cccCOSmgReMgCXA==}
+ engines: {node: '>= 10.*'}
ember-cli-sri@2.1.1:
resolution: {integrity: sha512-YG/lojDxkur9Bnskt7xB6gUOtJ6aPl/+JyGYm9HNDk3GECVHB3SMN3rlGhDKHa1ndS5NK2W2TSLb9bzRbGlMdg==}
@@ -3022,20 +3123,19 @@ packages:
resolution: {integrity: sha512-Ej77K+YhCZImotoi/CU2cfsoZaswoPlGaM5TB3LvjvPDlVPRhxUHO2RsaUVC5lsGeRLRiHCOxVtoJ6GyqexzFA==}
engines: {node: 10.* || 12.* || >= 14}
- ember-cli-test-loader@3.1.0:
- resolution: {integrity: sha512-0aocZV9SIoOHiU3hrH3IuLR6busWhTX6UVXgd490hmJkIymmOXNH2+jJoC7Ebkeo3PiOfAdjqhb765QDlHSJOw==}
- engines: {node: 10.* || >= 12}
+ ember-cli-test-info@1.0.0:
+ resolution: {integrity: sha512-dEVTIpmUfCzweC97NGf6p7L6XKBwV2GmSM4elmzKvkttEp5P7AvGA9uGyN4GqFq+RwhW+2b0I2qlX00w+skm+A==}
ember-cli-typescript-blueprint-polyfill@0.1.0:
resolution: {integrity: sha512-g0weUTOnHmPGqVZzkQTl3Nbk9fzEdFkEXydCs5mT1qBjXh8eQ6VlmjjGD5/998UXKuA0pLSCVVMbSp/linLzGA==}
- ember-cli-typescript@2.0.2:
- resolution: {integrity: sha512-7I5azCTxOgRDN8aSSnJZIKSqr+MGnT+jLTUbBYqF8wu6ojs2DUnTePxUcQMcvNh3Q3B1ySv7Q/uZFSjdU9gSjA==}
- engines: {node: 6.* || 8.* || >= 10.*}
+ ember-cli-typescript@4.2.1:
+ resolution: {integrity: sha512-0iKTZ+/wH6UB/VTWKvGuXlmwiE8HSIGcxHamwNhEC5x1mN3z8RfvsFZdQWYUzIWFN2Tek0gmepGRPTwWdBYl/A==}
+ engines: {node: 10.* || >= 12.*}
- ember-cli-typescript@3.0.0:
- resolution: {integrity: sha512-lo5YArbJzJi5ssvaGqTt6+FnhTALnSvYVuxM7lfyL1UCMudyNJ94ovH5C7n5il7ATd6WsNiAPRUO/v+s5Jq/aA==}
- engines: {node: 8.* || >= 10.*}
+ ember-cli-version-checker@2.2.0:
+ resolution: {integrity: sha512-G+KtYIVlSOWGcNaTFHk76xR4GdzDLzAS4uxZUKdASuFX0KJE43C6DaqL+y3VTpUFLI2FIkAS6HZ4I1YBi+S3hg==}
+ engines: {node: '>= 4'}
ember-cli-version-checker@3.1.3:
resolution: {integrity: sha512-PZNSvpzwWgv68hcXxyjREpj3WWb81A7rtYNQq1lLEgrWIchF8ApKJjWP3NBpHjaatwILkZAV8klair5WFlXAKg==}
@@ -3049,49 +3149,75 @@ packages:
resolution: {integrity: sha512-rk7GY+FmLn/2e22HsZs0Ycrz8HQ1W3Fv+2TFOuEFW9optnDXDgkntPBIl6gact/LHsfBM5RKbM3dHsIIeLgl0Q==}
engines: {node: 10.* || >= 12.*}
- ember-cli@4.12.3:
- resolution: {integrity: sha512-Ilap7fVGx0+sF6y5O1id+xVPYlc2cJ8OAG6faEQPyvbaCCUsCZnAEr7EMA+5qg0kNqjawIIHJTgnQesdbaDwtg==}
- engines: {node: '>= 14'}
+ ember-cli@6.1.0:
+ resolution: {integrity: sha512-LpVtpf/QgHcmmzX3InToSUnn0wX9D8TEKVhxF4KPf2HpCzrTllUcwu+pfCsXDb3VziTjRKUnnh5ZnjER/pVyFQ==}
+ engines: {node: '>= 18'}
hasBin: true
- ember-compatibility-helpers@1.2.7:
- resolution: {integrity: sha512-BtkjulweiXo9c3yVWrtexw2dTmBrvavD/xixNC6TKOBdrixUwU+6nuOO9dufDWsMxoid7MvtmDpzc9+mE8PdaA==}
- engines: {node: 10.* || >= 12.*}
-
- ember-destroyable-polyfill@2.0.3:
- resolution: {integrity: sha512-TovtNqCumzyAiW0/OisSkkVK93xnVF4NRU6+FN0ubpfwEOpRrmM2RqDwXI6YAChCgSHON1cz0DfQStpA1Gjuuw==}
- engines: {node: 10.* || >= 12}
+ ember-data@5.3.9:
+ resolution: {integrity: sha512-fUhvmq3piYapfSFlpFpuQrkGn9SPRzPNj9xfHtFhyUq7UrPSXvjbhsihg+vw46VLxNqlTUwVtU3kLjGuJU6O9Q==}
+ engines: {node: '>= 18.20.4'}
+ peerDependencies:
+ '@ember/test-helpers': ^3.3.0 || ^4.0.4
+ '@ember/test-waiters': ^3.1.0
+ qunit: ^2.18.0
+ peerDependenciesMeta:
+ '@ember/test-helpers':
+ optional: true
+ '@ember/test-waiters':
+ optional: true
+ qunit:
+ optional: true
- ember-disable-prototype-extensions@1.1.3:
- resolution: {integrity: sha512-SB9NcZ27OtoUk+gfalsc3QU17+54OoqR668qHcuvHByk4KAhGxCKlkm9EBlKJcGr7yceOOAJqohTcCEBqfRw9g==}
- engines: {node: '>= 0.10.0'}
+ ember-eslint-parser@0.5.7:
+ resolution: {integrity: sha512-d0nIQxC6TXsMebi7GcpH6meFDVhTUTYZpQ6Yg5n92+eZHqygAEKWZX55lLa49/wucBXS+Wadp2g6okPcN463aA==}
+ engines: {node: '>=16.0.0'}
+ peerDependencies:
+ '@babel/core': ^7.23.6
+ '@typescript-eslint/parser': '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
- ember-export-application-global@2.0.1:
- resolution: {integrity: sha512-B7wiurPgsxsSGzJuPFkpBWnaeuCu2PGpG2BjyrfA1VcL7//o+5RSnZqiCEY326y7qmxb2GoCgo0ft03KBU0rRw==}
- engines: {node: '>= 4'}
+ ember-fetch@8.1.2:
+ resolution: {integrity: sha512-TVx24/jrvDIuPL296DV0hBwp7BWLcSMf0I8464KGz01sPytAB+ZAePbc9ooBTJDkKZEGFgatJa4nj3yF1S9Bpw==}
+ engines: {node: '>= 10'}
- ember-load-initializers@2.1.2:
- resolution: {integrity: sha512-CYR+U/wRxLbrfYN3dh+0Tb6mFaxJKfdyz+wNql6cqTrA0BBi9k6J3AaKXj273TqvEpyyXegQFFkZEiuZdYtgJw==}
- engines: {node: 6.* || 8.* || >= 10.*}
+ ember-load-initializers@3.0.1:
+ resolution: {integrity: sha512-qV3vxJKw5+7TVDdtdLPy8PhVsh58MlK8jwzqh5xeOwJPNP7o0+BlhvwoIlLYTPzGaHdfjEIFCgVSyMRGd74E1g==}
+ engines: {node: '>= 18.*'}
+ peerDependencies:
+ ember-source: '>= 5'
- ember-maybe-import-regenerator@1.0.0:
- resolution: {integrity: sha512-wtjgjEV0Hk4fgiAwFjOfPrGWfmFrbRW3zgNZO4oA3H5FlbMssMvWuR8blQ3QSWYHODVK9r+ThsRAs8lG4kbxqA==}
- engines: {node: '>= 12.*'}
+ ember-modifier@4.2.0:
+ resolution: {integrity: sha512-BJ48eTEGxD8J7+lofwVmee7xDgNDgpr5dd6+MSu4gk+I6xb35099RMNorXY5hjjwMJEyi/IRR6Yn3M7iJMz8Zw==}
+ peerDependencies:
+ ember-source: ^3.24 || >=4.0
+ peerDependenciesMeta:
+ ember-source:
+ optional: true
- ember-page-title@7.0.0:
- resolution: {integrity: sha512-oq6+HYbeVD/BnxIO5AkP4gWlsatdgW2HFO10F8+XQiJZrwa7cC7Wm54JNGqQkavkDQTgNSiy1Fe2NILJ14MmAg==}
- engines: {node: 12.* || 14.* || >= 16}
+ ember-page-title@8.2.3:
+ resolution: {integrity: sha512-9XH4EVPCpSCyXRsLPzdDydU4HgQnaVeJJTrRF0WVh5bZERI9DgxuHv1NPmZU28todHRH91KcBc5nx8kIVJmqUw==}
+ engines: {node: 16.* || >= 18}
+ peerDependencies:
+ ember-source: '>= 3.28.0'
- ember-qunit@5.1.5:
- resolution: {integrity: sha512-2cFA4oMygh43RtVcMaBrr086Tpdhgbn3fVZ2awLkzF/rnSN0D0PSRpd7hAD7OdBPerC/ZYRwzVyGXLoW/Zes4A==}
- engines: {node: 10.* || 12.* || >= 14.*}
+ ember-qunit@9.0.1:
+ resolution: {integrity: sha512-9DgjczFG7ZjINmwWFYDtUF8McbYqQir82hyFp/ZbMOLkpFvHCKPw1mtKcpcdLnLAAYJpwR2/MCyPNiEMkR11aA==}
peerDependencies:
- '@ember/test-helpers': ^2.4.0
+ '@ember/test-helpers': '>=3.0.3'
+ ember-source: '>=4.0.0'
qunit: ^2.13.0
- ember-resolver@8.1.0:
- resolution: {integrity: sha512-MGD7X2ztZVswGqs1mLgzhZJRhG7XiF6Mg4DgC7xJFWRYQQUHyGJpGdNWY9nXyrYnRIsCrQoL1do41zpxbrB/cg==}
- engines: {node: '>= 10.*'}
+ ember-resolver@13.1.0:
+ resolution: {integrity: sha512-t/PjXLCl5tM9EQXGIFoBgHiA41HkLJpfo17Nud5Cy9eyUPGcnsMjWJqQ+O5QHA0E63Sp+zTn4y/RS5Tu2v2ydg==}
+ engines: {node: 14.* || 16.* || >= 18}
+ peerDependencies:
+ ember-source: ^4.12.0 || >= 5.0.0
+ peerDependenciesMeta:
+ ember-source:
+ optional: true
ember-rfc176-data@0.3.18:
resolution: {integrity: sha512-JtuLoYGSjay1W3MQAxt3eINWXNYYQliK90tLwtb8aeCuQK8zKGCRbBodVIrkcTqshULMnRuTOS6t1P7oQk3g6Q==}
@@ -3105,33 +3231,41 @@ packages:
engines: {node: 10.* || 12.* || >= 14}
hasBin: true
- ember-source@4.12.4:
- resolution: {integrity: sha512-HUlNAY+qr/Jm4c/5E11n5w6IvLY7Rr4DxmFv/0LZ3R5LqDSubM1jEmny5zDjOfadMa4pawoCmFFWXVeJEXwppg==}
- engines: {node: '>= 14.*'}
+ ember-source@6.1.0:
+ resolution: {integrity: sha512-7FBMsr5XlSVs080FEw0ssNgbQEAAzQGc3ZHmgBE40LRcz7g+vMXPwaZ7DGsOoWPXHKAVeeDbr5qiMC13WkVj5w==}
+ engines: {node: '>= 18.*'}
peerDependencies:
- '@glimmer/component': ^1.1.2
+ '@glimmer/component': '>= 1.1.2'
ember-template-imports@3.4.2:
resolution: {integrity: sha512-OS8TUVG2kQYYwP3netunLVfeijPoOKIs1SvPQRTNOQX4Pu8xGGBEZmrv0U1YTnQn12Eg+p6w/0UdGbUnITjyzw==}
engines: {node: 12.* || >= 14}
- ember-template-lint@4.18.2:
- resolution: {integrity: sha512-yI8kQ8IQ2x5HVq0tQAISXABOHr0Is5sAg6rwceO6M8CYozq7HMxUPEj0VbdcbyIE70SWw/8d24M1rBI4km544Q==}
- engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ ember-template-imports@4.2.0:
+ resolution: {integrity: sha512-qwf/38E1ut8M2/1tsFJl6kL99799MvxQrx0lN3LAc0HJRQhM/lYHqnHhzS30rkH76g+76TfxcMB5JJZQabWk2A==}
+ engines: {node: 16.* || >= 18}
+
+ ember-template-lint@6.1.0:
+ resolution: {integrity: sha512-UyzLPcyneG3mnbBfewyYIlV7fy6JKHQVAJy5a9+URdJKkZKN+3vQkQzIIlsz6dP/GpoXVB+datns5HlfMfliSA==}
+ engines: {node: ^18.18.0 || >= 20.9.0}
hasBin: true
- ember-template-recast@6.1.4:
- resolution: {integrity: sha512-fCh+rOK6z+/tsdkTbOE+e7f84P6ObnIRQrCCrnu21E4X05hPeradikIkRMhJdxn4NWrxitfZskQDd37TR/lsNQ==}
+ ember-template-recast@6.1.5:
+ resolution: {integrity: sha512-VnRN8FzEHQnw/5rCv6Wnq8MVYXbGQbFY+rEufvWV+FO/IsxMahGEud4MYWtTA2q8iG+qJFrDQefNvQ//7MI7Qw==}
engines: {node: 12.* || 14.* || >= 16.*}
hasBin: true
+ ember-tracked-storage-polyfill@1.0.0:
+ resolution: {integrity: sha512-eL7lZat68E6P/D7b9UoTB5bB5Oh/0aju0Z7PCMi3aTwhaydRaxloE7TGrTRYU+NdJuyNVZXeGyxFxn2frvd3TA==}
+ engines: {node: 12.* || >= 14}
+
ember-try-config@4.0.0:
resolution: {integrity: sha512-jAv7fqYJK7QYYekPc/8Nr7KOqDpv/asqM6F8xcRnbmf9UrD35BkSffY63qUuiD9e0aR5qiMNBIQzH8f65rGDqw==}
engines: {node: 10.* || 12.* || >= 14}
- ember-try@2.0.0:
- resolution: {integrity: sha512-2N7Vic45sbAegA5fhdfDjVbEVS4r+ze+tTQs2/wkY+8fC5yAGHfCM5ocyoTfBN5m7EhznC3AyMsOy4hLPzHFSQ==}
- engines: {node: 10.* || 12.* || >= 14.*}
+ ember-try@3.0.0:
+ resolution: {integrity: sha512-ZYVKYWMnrHSD3vywo7rV76kPCOC9ATIEnGGG/PEKfCcFE0lB26jltRDnOrhORfLKq0JFp62fFxC/4940U+MwRQ==}
+ engines: {node: 16.* || >= 18.*}
emoji-regex@8.0.0:
resolution: {integrity: sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==}
@@ -3144,32 +3278,25 @@ packages:
resolution: {integrity: sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==}
engines: {node: '>= 0.8'}
- encoding@0.1.13:
- resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
+ encodeurl@2.0.0:
+ resolution: {integrity: sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==}
+ engines: {node: '>= 0.8'}
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- engine.io-parser@5.2.2:
- resolution: {integrity: sha512-RcyUFKA93/CXH20l4SoVvzZfrSDMOTUS3bWVpTt2FuFP+XYrL8i8oonHP7WInRyVHXh0n/ORtoeiE1os+8qkSw==}
+ engine.io-parser@5.2.3:
+ resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
engines: {node: '>=10.0.0'}
- engine.io@6.5.4:
- resolution: {integrity: sha512-KdVSDKhVKyOi+r5uEabrDLZw2qXStVvCsEB/LN3mw4WFi6Gx50jTyuxYVCwAAC0U46FdnzP/ScKRBTXb/NiEOg==}
+ engine.io@6.6.2:
+ resolution: {integrity: sha512-gmNvsYi9C8iErnZdVcJnvCpSKbWTt1E8+JZo8b+daLninywUWi5NQ5STSHZ9rFjFO7imNcvb8Pc5pe/wMR5xEw==}
engines: {node: '>=10.2.0'}
- enhanced-resolve@4.5.0:
- resolution: {integrity: sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==}
- engines: {node: '>=6.9.0'}
-
- enhanced-resolve@5.16.1:
- resolution: {integrity: sha512-4U5pNsuDl0EhuZpq46M5xPslstkviJuhrdobaRDBk2Jy2KO37FDAJl4lb2KlNabxT0m4MTK2UHNrsAcphE8nyw==}
+ enhanced-resolve@5.18.0:
+ resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
engines: {node: '>=10.13.0'}
- enquirer@2.4.1:
- resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
- engines: {node: '>=8.6'}
-
ensure-posix-path@1.1.1:
resolution: {integrity: sha512-VWU0/zXzVbeJNXvME/5EmLuEj2TauvoaTz6aFYK1Z92JCBlDlZ3Gu0tuGR42kpW1754ywTs+QB0g5TP0oj9Zaw==}
@@ -3180,64 +3307,58 @@ packages:
resolution: {integrity: sha512-WiyBqoomrwMdFG1e0kqvASYfnlb0lp8M5o5Fw2OFq1hNZxxcNk8Ik0Xm7LxzBhuidnZB/UtBqVCgUz3kBOP51Q==}
engines: {node: '>=0.12'}
- err-code@2.0.3:
- resolution: {integrity: sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==}
+ entities@4.5.0:
+ resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
+ engines: {node: '>=0.12'}
+
+ env-paths@2.2.1:
+ resolution: {integrity: sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==}
+ engines: {node: '>=6'}
errlop@2.2.0:
resolution: {integrity: sha512-e64Qj9+4aZzjzzFpZC7p5kmm/ccCrbLhAJplhsDXQFs87XTsXwOpH4s1Io2s90Tau/8r2j9f4l/thhDevRjzxw==}
engines: {node: '>=0.8'}
- errno@0.1.8:
- resolution: {integrity: sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==}
- hasBin: true
-
error-ex@1.3.2:
resolution: {integrity: sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==}
error@7.2.1:
resolution: {integrity: sha512-fo9HBvWnx3NGUKMvMwB/CBCMMrfEJgbDTVDEkPygA3Bdd3lM1OyCd+rbQ8BwnpF6GdVeOLDNmyL4N5Bg80ZvdA==}
- es-abstract@1.23.3:
- resolution: {integrity: sha512-e+HfNH61Bj1X9/jLc5v1owaLYuHdeHHSQlkhCBiTK8rBvKaULl/beGMxwrMXjpYrv4pz22BlY570vVePA2ho4A==}
+ es-abstract@1.23.9:
+ resolution: {integrity: sha512-py07lI0wjxAC/DcfK1S6G7iANonniZwTISvdPzk9hzeH0IZIshbuuFxLIU96OyF89Yb9hiqWn8M/bY83KY5vzA==}
engines: {node: '>= 0.4'}
- es-array-method-boxes-properly@1.0.0:
- resolution: {integrity: sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==}
-
- es-define-property@1.0.0:
- resolution: {integrity: sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==}
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
es-errors@1.3.0:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-get-iterator@1.1.3:
- resolution: {integrity: sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==}
-
- es-module-lexer@1.5.3:
- resolution: {integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==}
+ es-module-lexer@1.6.0:
+ resolution: {integrity: sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==}
es-object-atoms@1.0.0:
resolution: {integrity: sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==}
engines: {node: '>= 0.4'}
- es-set-tostringtag@2.0.3:
- resolution: {integrity: sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==}
+ es-set-tostringtag@2.1.0:
+ resolution: {integrity: sha512-j6vWzfrGVfyXxge+O0x5sh6cvxAog0a/4Rdd2K36zCMV5eJ+/+tOAngRO8cODMNWbVRdVlmGZQL2YS3yR8bIUA==}
engines: {node: '>= 0.4'}
- es-to-primitive@1.2.1:
- resolution: {integrity: sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==}
+ es-shim-unscopables@1.0.2:
+ resolution: {integrity: sha512-J3yBRXCzDu4ULnQwxyToo/OjdMx6akgVC7K6few0a7F/0wLtmKKN7I73AH5T2836UuXRqN7Qg+IIUw/+YJksRw==}
+
+ es-to-primitive@1.3.0:
+ resolution: {integrity: sha512-w+5mJ3GuFL+NjVtJlvydShqE1eN3h3PbI7/5LAsYJP/2qtuMXjfL2LpHSRqo4b4eSF5K/DH1JXKUAHSB2UW50g==}
engines: {node: '>= 0.4'}
- escalade@3.1.2:
- resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
engines: {node: '>=6'}
- escape-goat@2.1.1:
- resolution: {integrity: sha512-8/uIhbG12Csjy2JEW7D9pHbreaVaS/OpN3ycnyvElTdwM5n6GY6W6e2IPemfvGZeUMqZ9A/3GqIZMgKnBhAw/Q==}
- engines: {node: '>=8'}
-
escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
@@ -3249,62 +3370,92 @@ packages:
resolution: {integrity: sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==}
engines: {node: '>=10'}
- escodegen@1.14.3:
- resolution: {integrity: sha512-qFcX0XJkdg+PB3xjZZG/wKSuT1PnQWx57+TVSjIMmILd2yC/6ByYElPwJnslDsuWuSAp4AwJGumarAAmJch5Kw==}
- engines: {node: '>=4.0'}
- hasBin: true
-
- escodegen@2.1.0:
- resolution: {integrity: sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==}
- engines: {node: '>=6.0'}
- hasBin: true
+ eslint-compat-utils@0.5.1:
+ resolution: {integrity: sha512-3z3vFexKIEnjHE3zCMRo6fn/e44U7T1khUjg+Hp0ZQMCigh28rALD0nPFBcGZuiLC5rLZa2ubQHDRln09JfU2Q==}
+ engines: {node: '>=12'}
+ peerDependencies:
+ eslint: '>=6.0.0'
- eslint-config-prettier@8.10.0:
- resolution: {integrity: sha512-SM8AMJdeQqRYT9O9zguiruQZaN7+z+E4eAP9oiLNGKMtomwaB1E9dcgUD6ZAn/eQAb52USbvezbiljfZUhbJcg==}
+ eslint-config-prettier@10.0.1:
+ resolution: {integrity: sha512-lZBts941cyJyeaooiKxAtzoPHTN+GbQTJFAIdQbRhA4/8whaAraEh47Whw/ZFfrjNSnlAxqfm9i0XVAEkULjCw==}
hasBin: true
peerDependencies:
eslint: '>=7.0.0'
- eslint-plugin-ember@10.6.1:
- resolution: {integrity: sha512-R+TN3jwhYQ2ytZCA1VkfJDZSGgHFOHjsHU1DrBlRXYRepThe56PpuGxywAyDvQ7inhoAz3e6G6M60PzpvjzmNg==}
- engines: {node: 10.* || 12.* || >= 14}
+ eslint-formatter-kakoune@1.0.0:
+ resolution: {integrity: sha512-Uk/TVLt6Nf6Xoz7C1iYuZjOSdJxe5aaauGRke8JhKeJwD66Y61/pY2FjtLP04Ooq9PwV34bzrkKkU2UZ5FtDRA==}
+
+ eslint-import-resolver-node@0.3.9:
+ resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
+
+ eslint-module-utils@2.12.0:
+ resolution: {integrity: sha512-wALZ0HFoytlyh/1+4wuZ9FJCD/leWHQzzrxJ8+rebyReSLk7LApMyd3WJaLVoN+D5+WIdJyDK1c6JnE65V4Zyg==}
+ engines: {node: '>=4'}
peerDependencies:
- eslint: '>= 6'
+ '@typescript-eslint/parser': '*'
+ eslint: '*'
+ eslint-import-resolver-node: '*'
+ eslint-import-resolver-typescript: '*'
+ eslint-import-resolver-webpack: '*'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
+ eslint:
+ optional: true
+ eslint-import-resolver-node:
+ optional: true
+ eslint-import-resolver-typescript:
+ optional: true
+ eslint-import-resolver-webpack:
+ optional: true
- eslint-plugin-es@3.0.1:
- resolution: {integrity: sha512-GUmAsJaN4Fc7Gbtl8uOBlayo2DqhwWvEzykMHSCZHU3XdJ+NSzzZcVhXh3VxX5icqQ+oQdIEawXX8xkR3mIFmQ==}
- engines: {node: '>=8.10.0'}
+ eslint-plugin-ember@12.3.3:
+ resolution: {integrity: sha512-OXf3+XofsSMW/zGnp6B1cB2veC9zLzby8RGmHkxNwRHGLs/fYNVBbpwkmdZhzR8+IMN3wjtLR4iNLvkKOAT5bg==}
+ engines: {node: 18.* || 20.* || >= 21}
peerDependencies:
- eslint: '>=4.19.1'
+ '@typescript-eslint/parser': '*'
+ eslint: '>= 8'
+ peerDependenciesMeta:
+ '@typescript-eslint/parser':
+ optional: true
- eslint-plugin-node@11.1.0:
- resolution: {integrity: sha512-oUwtPJ1W0SKD0Tr+wqu92c5xuCeQqB3hSCHasn/ZgjFdA9iDGNkNf2Zi9ztY7X+hNuMib23LNGRm6+uN+KLE3g==}
- engines: {node: '>=8.10.0'}
+ eslint-plugin-es-x@7.8.0:
+ resolution: {integrity: sha512-7Ds8+wAAoV3T+LAKeu39Y5BzXCrGKrcISfgKEqTS4BDN8SFEDQd0S43jiQ8vIa3wUKD07qitZdfzlenSi8/0qQ==}
+ engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
- eslint: '>=5.16.0'
+ eslint: '>=8'
- eslint-plugin-prettier@4.2.1:
- resolution: {integrity: sha512-f/0rXLXUt0oFYs8ra4w49wYZBG5GKZpAYsJSm6rnYL5uVDjd+zowwMwVZHnAjf4edNrKpCDYfXDgmRE/Ak7QyQ==}
- engines: {node: '>=12.0.0'}
+ eslint-plugin-import@2.31.0:
+ resolution: {integrity: sha512-ixmkI62Rbc2/w8Vfxyh1jQRTdRTF52VxwRVHl/ykPAmqG+Nb7/kNn+byLP0LxPgI7zWA16Jt82SybJInmMia3A==}
+ engines: {node: '>=4'}
peerDependencies:
- eslint: '>=7.28.0'
- eslint-config-prettier: '*'
- prettier: '>=2.0.0'
+ '@typescript-eslint/parser': '*'
+ eslint: ^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8 || ^9
peerDependenciesMeta:
- eslint-config-prettier:
+ '@typescript-eslint/parser':
optional: true
- eslint-scope@4.0.3:
- resolution: {integrity: sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==}
- engines: {node: '>=4.0.0'}
+ eslint-plugin-n@17.15.1:
+ resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: '>=8.23.0'
+
+ eslint-plugin-qunit@8.1.2:
+ resolution: {integrity: sha512-2gDQdHlQW8GVXD7YYkO8vbm9Ldc60JeGMuQN5QlD48OeZ8znBvvoHWZZMeXjvoDPReGaLEvyuWrDtrI8bDbcqw==}
+ engines: {node: ^16.0.0 || ^18.0.0 || >=20.0.0}
eslint-scope@5.1.1:
resolution: {integrity: sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==}
engines: {node: '>=8.0.0'}
- eslint-utils@2.1.0:
- resolution: {integrity: sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==}
- engines: {node: '>=6'}
+ eslint-scope@7.2.2:
+ resolution: {integrity: sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint-scope@8.2.0:
+ resolution: {integrity: sha512-PHlWUfG6lvPc3yvP5A4PNyBL1W8fkDUccmI21JUu/+GKZBoH/W5u6usENXUrWFRsyoW5ACUjFGgAFQp5gUlb/A==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
eslint-utils@3.0.0:
resolution: {integrity: sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==}
@@ -3312,26 +3463,35 @@ packages:
peerDependencies:
eslint: '>=5'
- eslint-visitor-keys@1.3.0:
- resolution: {integrity: sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==}
- engines: {node: '>=4'}
-
eslint-visitor-keys@2.1.0:
resolution: {integrity: sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==}
engines: {node: '>=10'}
- eslint@7.32.0:
- resolution: {integrity: sha512-VHZ8gX+EDfz+97jGcgyGCyRia/dPOd6Xh9yPv8Bl1+SoaIwD+a/vlrOmGRUyOYu7MwUhc7CxqeaDZU13S4+EpA==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ eslint-visitor-keys@3.4.3:
+ resolution: {integrity: sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+
+ eslint-visitor-keys@4.2.0:
+ resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+
+ eslint@9.18.0:
+ resolution: {integrity: sha512-+waTfRWQlSbpt3KWE+CjrPPYnbq9kfZIYUqapc0uBXyjTp8aYXZDsUH16m39Ryq3NjAVP4tjuF7KaukeqoCoaA==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
hasBin: true
+ peerDependencies:
+ jiti: '*'
+ peerDependenciesMeta:
+ jiti:
+ optional: true
esm@3.2.25:
resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
engines: {node: '>=6'}
- espree@7.3.1:
- resolution: {integrity: sha512-v3JCNCE64umkFpmkFGqzVKsOT0tN1Zr+ueqLZfpV1Ob8e+CEgPWa+OxCoGH3tnhimMKIaBm4m/vaRpJ/krRz2g==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ espree@10.3.0:
+ resolution: {integrity: sha512-0QYC8b24HWY8zjRnDTL6RiHfDbAWn63qb4LMj1Z4b076A4une81+z03Kg7l7mn/48PUTqoLptSXez8oknU8Clg==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
esprima@3.0.0:
resolution: {integrity: sha512-xoBq/MIShSydNZOkjkoCEjqod963yHNXTLC40ypBhop6yPqflPz/vTinmCfSrGcywVLnSftRf6a0kJLdFdzemw==}
@@ -3343,8 +3503,8 @@ packages:
engines: {node: '>=4'}
hasBin: true
- esquery@1.5.0:
- resolution: {integrity: sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==}
+ esquery@1.6.0:
+ resolution: {integrity: sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==}
engines: {node: '>=0.10'}
esrecurse@4.3.0:
@@ -3359,6 +3519,12 @@ packages:
resolution: {integrity: sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==}
engines: {node: '>=4.0'}
+ estree-walker@0.6.1:
+ resolution: {integrity: sha512-SqmZANLWS0mnatqbSfRP5g8OXZC12Fgg1IwNtLsyHDzJizORW4khDfjPqJZsemPWBB2uqykUah5YpQ6epsqC/w==}
+
+ estree-walker@2.0.2:
+ resolution: {integrity: sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==}
+
esutils@2.0.3:
resolution: {integrity: sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==}
engines: {node: '>=0.10.0'}
@@ -3377,9 +3543,6 @@ packages:
resolution: {integrity: sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==}
engines: {node: '>=0.8.x'}
- evp_bytestokey@1.0.3:
- resolution: {integrity: sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==}
-
exec-sh@0.3.6:
resolution: {integrity: sha512-nQn+hI3yp+oD0huYhKwvYI32+JFeq+XkNcD1GAo3Y/MjxsfVGmrrzrnzjWiNY6f+pUCP440fThsFh5gZrRAU/w==}
@@ -3387,10 +3550,6 @@ packages:
resolution: {integrity: sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==}
engines: {node: '>=6'}
- execa@2.1.0:
- resolution: {integrity: sha512-Y/URAVapfbYy2Xp/gb6A0E7iR8xeqOCXsuuaoMn7A5PzrXUK84E1gyiEfq0wQd/GHA6GsoHWwhNq8anb0mleIw==}
- engines: {node: ^8.12.0 || >=9.7.0}
-
execa@4.1.0:
resolution: {integrity: sha512-j5W0//W7f8UxAn8hXVnwG8tLwdiUy4FJLcSupCg6maBYZDpyBvTApK7KyuI4bKj8KOh1r2YH+6ucuYtJv1bTZA==}
engines: {node: '>=10'}
@@ -3411,8 +3570,8 @@ packages:
resolution: {integrity: sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==}
engines: {node: '>=0.10.0'}
- express@4.19.2:
- resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
+ express@4.21.2:
+ resolution: {integrity: sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==}
engines: {node: '>= 0.10.0'}
extend-shallow@2.0.1:
@@ -3438,11 +3597,8 @@ packages:
fast-deep-equal@3.1.3:
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
- fast-diff@1.3.0:
- resolution: {integrity: sha512-VxPP4NqbUjj6MaAOafWeUn2cXWLcCtljklUtZf0Ind4XQ+QPtmA0b18zZy0jIQx+ExRVCR/ZQpBmik5lXshNsw==}
-
- fast-glob@3.3.2:
- resolution: {integrity: sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==}
+ fast-glob@3.3.3:
+ resolution: {integrity: sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==}
engines: {node: '>=8.6.0'}
fast-json-stable-stringify@2.1.0:
@@ -3454,16 +3610,19 @@ packages:
fast-ordered-set@1.0.3:
resolution: {integrity: sha512-MxBW4URybFszOx1YlACEoK52P6lE3xiFcPaGCUZ7QQOZ6uJXKo++Se8wa31SjcZ+NC/fdAWX7UtKEfaGgHS2Vg==}
- fast-sourcemap-concat@1.4.0:
- resolution: {integrity: sha512-x90Wlx/2C83lfyg7h4oguTZN4MyaVfaiUSJQNpU+YEA0Odf9u659Opo44b0LfoVg9G/bOE++GdID/dkyja+XcA==}
- engines: {node: '>= 4'}
-
fast-sourcemap-concat@2.1.1:
resolution: {integrity: sha512-7h9/x25c6AQwdU3mA8MZDUMR3UCy50f237egBrBkuwjnUZSmfu4ptCf91PZSKzON2Uh5VvIHozYKWcPPgcjxIw==}
engines: {node: 10.* || >= 12.*}
- fastq@1.17.1:
- resolution: {integrity: sha512-sRVD3lWVIXWg6By68ZN7vho9a1pQcN/WBFaAAsDDFzlJjvoGx0P8z7V1t72grFJfJhu3YPZBuu25f7Kaw2jN1w==}
+ fast-uri@3.0.5:
+ resolution: {integrity: sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==}
+
+ fastest-levenshtein@1.0.16:
+ resolution: {integrity: sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==}
+ engines: {node: '>= 4.9.1'}
+
+ fastq@1.18.0:
+ resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
faye-websocket@0.11.4:
resolution: {integrity: sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==}
@@ -3472,10 +3631,6 @@ packages:
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
- figgy-pudding@3.5.2:
- resolution: {integrity: sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==}
- deprecated: This module is no longer supported.
-
figures@2.0.0:
resolution: {integrity: sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==}
engines: {node: '>=4'}
@@ -3484,25 +3639,17 @@ packages:
resolution: {integrity: sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==}
engines: {node: '>=8'}
- file-entry-cache@6.0.1:
- resolution: {integrity: sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==}
- engines: {node: ^10.12.0 || >=12.0.0}
-
- file-uri-to-path@1.0.0:
- resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
+ file-entry-cache@10.0.5:
+ resolution: {integrity: sha512-umpQsJrBNsdMDgreSryMEXvJh66XeLtZUwA8Gj7rHGearGufUFv6rB/bcXRFsiGWw/VeSUgUofF4Rf2UKEOrTA==}
- file-uri-to-path@2.0.0:
- resolution: {integrity: sha512-hjPFI8oE/2iQPVe4gbrJ73Pp+Xfub2+WI2LlXDbsaJBwT5wuMh35WNWVYYTpnz895shtwfyutMFLFywpQAFdLg==}
- engines: {node: '>= 6'}
+ file-entry-cache@8.0.0:
+ resolution: {integrity: sha512-XXTUwCvisa5oacNGRP9SfNtYBNAMi+RPwBFmblZEF7N7swHYQS6/Zfk7SRwx4D5j3CH211YNRco1DEMNVfZCnQ==}
+ engines: {node: '>=16.0.0'}
- filesize@10.1.2:
- resolution: {integrity: sha512-Dx770ai81ohflojxhU+oG+Z2QGvKdYxgEr9OSA8UVrqhwNHjfH9A8f5NKfg83fEH8ZFA5N5llJo5T3PIoZ4CRA==}
+ filesize@10.1.6:
+ resolution: {integrity: sha512-sJslQKU2uM33qH5nqewAwVB2QgR6w1aMNsYUp3aN5rMRyXEwJGmZvaWzeJFNTOXWlHQyBFCWrdj3fV/fsTOX8w==}
engines: {node: '>= 10.4.0'}
- filesize@5.0.3:
- resolution: {integrity: sha512-RM123v6KPqgZJmVCh4rLvCo8tLKr4sgD92DeZ+AuoUE8teGZJHKs1cTORwETcpIJSlGsz2WYdwKDQUXby5hNqQ==}
- engines: {node: '>= 0.4.0'}
-
fill-range@4.0.0:
resolution: {integrity: sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==}
engines: {node: '>=0.10.0'}
@@ -3511,25 +3658,20 @@ packages:
resolution: {integrity: sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==}
engines: {node: '>=8'}
- filter-obj@1.1.0:
- resolution: {integrity: sha512-8rXg1ZnX7xzy2NGDVkBVaAy+lSlPNwad13BtgSlLuxfIslyt5Vg64U7tFcCt4WS1R0hvtnQybT/IyCkGZ3DpXQ==}
- engines: {node: '>=0.10.0'}
-
finalhandler@1.1.2:
resolution: {integrity: sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==}
engines: {node: '>= 0.8'}
- finalhandler@1.2.0:
- resolution: {integrity: sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==}
+ finalhandler@1.3.1:
+ resolution: {integrity: sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==}
engines: {node: '>= 0.8'}
find-babel-config@1.2.2:
resolution: {integrity: sha512-oK59njMyw2y3yxto1BCfVK7MQp/OYf4FleHu0RgosH3riFJ1aOuo/7naLDLAObfrgn3ueFhw5sAT/cp0QuJI3Q==}
engines: {node: '>=4.0.0'}
- find-cache-dir@2.1.0:
- resolution: {integrity: sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==}
- engines: {node: '>=6'}
+ find-babel-config@2.1.2:
+ resolution: {integrity: sha512-ZfZp1rQyp4gyuxqt1ZqjFGVeVBvmpURMqdIWXbPRfB97Bf6BzdK/xSIbylEINzQ0kB5tlDQfn9HkNXXWsqTqLg==}
find-cache-dir@3.3.2:
resolution: {integrity: sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==}
@@ -3554,12 +3696,9 @@ packages:
resolution: {integrity: sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==}
engines: {node: '>=10'}
- find-up@6.3.0:
- resolution: {integrity: sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
-
- find-yarn-workspace-root@1.2.1:
- resolution: {integrity: sha512-dVtfb0WuQG+8Ag2uWkbG79hOUzEsRrhBzgfn86g2sJPkzmcpGdghbNTfUKGTxymFrY/tLIodDzLoW9nOJ4FY8Q==}
+ find-up@7.0.0:
+ resolution: {integrity: sha512-YyZM99iHrqLKjmt4LJDj58KI+fYyufRLBSYcqycxf//KpBk9FoewoGX0450m9nB44qrZnovzC2oeP5hUibxc/g==}
+ engines: {node: '>=18'}
find-yarn-workspace-root@2.0.0:
resolution: {integrity: sha512-1IMnbjt4KzsQfnhnzNd8wUEgXZ44IzZaZmnLYx7D5FZlaHt2gW20Cri8Q+E/t5tIj4+epTBub+2Zxu/vNILzqQ==}
@@ -3586,18 +3725,18 @@ packages:
resolution: {integrity: sha512-SRgwIMXlxkb6AUgaVjIX+jCEqdhyXu9hah7mcK+lWynjKtX73Ux1TDv71B7XyaQ+LJxkYRHl5yCL8IycAvQRUw==}
engines: {node: 10.* || >= 12.*}
- flat-cache@3.2.0:
- resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
- engines: {node: ^10.12.0 || >=12.0.0}
+ flat-cache@4.0.1:
+ resolution: {integrity: sha512-f7ccFPK3SXFHpx15UIGyRJ/FJQctuKZ0zVuN3frBo4HnK3cay9VEW0R6yPYFHC0AgqhukPzKjq22t5DmAyqGyw==}
+ engines: {node: '>=16'}
- flatted@3.3.1:
- resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
+ flat-cache@6.1.5:
+ resolution: {integrity: sha512-QR+2kN38f8nMfiIQ1LHYjuDEmZNZVjxuxY+HufbS3BW0EX01Q5OnH7iduOYRutmgiXb797HAKcXUeXrvRjjgSQ==}
- flush-write-stream@1.1.1:
- resolution: {integrity: sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==}
+ flatted@3.3.2:
+ resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
- follow-redirects@1.15.6:
- resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
+ follow-redirects@1.15.9:
+ resolution: {integrity: sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==}
engines: {node: '>=4.0'}
peerDependencies:
debug: '*'
@@ -3612,12 +3751,8 @@ packages:
resolution: {integrity: sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==}
engines: {node: '>=0.10.0'}
- form-data@3.0.1:
- resolution: {integrity: sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==}
- engines: {node: '>= 6'}
-
- form-data@4.0.0:
- resolution: {integrity: sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==}
+ form-data@4.0.1:
+ resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
engines: {node: '>= 6'}
forwarded@0.2.0:
@@ -3632,9 +3767,6 @@ packages:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
- from2@2.3.0:
- resolution: {integrity: sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==}
-
fs-extra@0.24.0:
resolution: {integrity: sha512-w1RvhdLZdU9V3vQdL+RooGlo6b9R9WVoBanOfoJvosWlqSKvrjFlci2oVhwvLwZXBtM7khyPvZ8r3fwsim3o0A==}
@@ -3670,10 +3802,6 @@ packages:
fs-merger@3.2.1:
resolution: {integrity: sha512-AN6sX12liy0JE7C2evclwoo0aCG3PFulLjrTLsJpWh/2mM+DinhpSGqYLbHBBbIW1PLRNcFhJG8Axtz8mQW3ug==}
- fs-minipass@2.1.0:
- resolution: {integrity: sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==}
- engines: {node: '>= 8'}
-
fs-tree-diff@0.5.9:
resolution: {integrity: sha512-872G8ax0kHh01m9n/2KDzgYwouKza0Ad9iFltBpNykvROvf2AGtoOzPJgGx125aolGPER3JuC7uZFrQ7bG1AZw==}
@@ -3685,43 +3813,26 @@ packages:
resolution: {integrity: sha512-0pJX4mJF/qLsNEwTct8CdnnRdagfb+LmjRPJ8sO+nCnAZLW0cTmz4rTgU25n+RvTuWSITiLKrGVJceJPBIPlKg==}
engines: {node: '>=6.0.0'}
- fs-write-stream-atomic@1.0.10:
- resolution: {integrity: sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==}
- deprecated: This package is no longer supported.
-
fs.realpath@1.0.0:
resolution: {integrity: sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==}
- fsevents@1.2.13:
- resolution: {integrity: sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==}
- engines: {node: '>= 4.0'}
- os: [darwin]
- deprecated: The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2
-
fsevents@2.3.3:
resolution: {integrity: sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==}
engines: {node: ^8.16.0 || ^10.6.0 || >=11.0.0}
os: [darwin]
- ftp@0.3.10:
- resolution: {integrity: sha512-faFVML1aBx2UoDStmLwv2Wptt4vw5x03xxX172nhA5Y5HBshW5JweqQ2W4xL4dezQTG8inJsuYcpPHHU3X5OTQ==}
- engines: {node: '>=0.8.0'}
-
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
- function.prototype.name@1.1.6:
- resolution: {integrity: sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==}
+ function.prototype.name@1.1.8:
+ resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
engines: {node: '>= 0.4'}
- functional-red-black-tree@1.0.1:
- resolution: {integrity: sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==}
-
functions-have-names@1.2.3:
resolution: {integrity: sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==}
- fuse.js@6.6.2:
- resolution: {integrity: sha512-cJaJkxCCxC8qIIcPBF9yGxY0W/tVZS3uEISDxhYIdtk8OL93pe+6Zj7LjCqVV4dzbqcriOZ+kQ/NE4RXZHsIGA==}
+ fuse.js@7.0.0:
+ resolution: {integrity: sha512-14F4hBIxqKvD4Zz/XjDc3y94mNZN6pRv3U13Udo0lNLCWRBUsrMv2xwcF/y/Z5sV6+FQW+/ow68cHpm4sunt8Q==}
engines: {node: '>=10'}
gauge@4.0.4:
@@ -3737,13 +3848,13 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
- get-intrinsic@1.2.4:
- resolution: {integrity: sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==}
+ get-intrinsic@1.2.7:
+ resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
engines: {node: '>= 0.4'}
- get-stdin@4.0.1:
- resolution: {integrity: sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==}
- engines: {node: '>=0.10.0'}
+ get-proto@1.0.1:
+ resolution: {integrity: sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==}
+ engines: {node: '>= 0.4'}
get-stdin@9.0.0:
resolution: {integrity: sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==}
@@ -3761,13 +3872,12 @@ packages:
resolution: {integrity: sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==}
engines: {node: '>=10'}
- get-symbol-description@1.0.2:
- resolution: {integrity: sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==}
+ get-symbol-description@1.1.0:
+ resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
- get-uri@3.0.2:
- resolution: {integrity: sha512-+5s0SJbGoyiJTZZ2JTpFPLMPSch72KEqGOTvQsBqg0RBWvwhWUSYZFAtz3TPW0GXJuLBJPts1E241iHg+VRfhg==}
- engines: {node: '>= 6'}
+ get-tsconfig@4.8.1:
+ resolution: {integrity: sha512-k9PN+cFBmaLWtVz29SkUoqU5O0slLuHJXt/2P+tMVFT+phsSGXGkp9t3rQIqdz0e+06EHNGs3oM6ZX1s2zHxRg==}
get-value@2.0.6:
resolution: {integrity: sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==}
@@ -3780,19 +3890,14 @@ packages:
resolution: {integrity: sha512-8aCohiDo4jwjOwma4FmYFd3i97urZulL8XL24nIPxuE+GZnfsAyy/g2Shqx6OjUiFKUXZM+Yy+KHnOmmA3FVcg==}
engines: {node: '>= 4.0'}
- git-up@4.0.5:
- resolution: {integrity: sha512-YUvVDg/vX3d0syBsk/CKUTib0srcQME0JyHkL5BaYdwLsiCslPWmDSi8PUMo9pXYjrryMcmsCoCgsTpSCJEQaA==}
-
- git-url-parse@11.6.0:
- resolution: {integrity: sha512-WWUxvJs5HsyHL6L08wOusa/IXYtMuCAhrMmnTjQPpBU0TTHyDhnOATNH3xNQz7YOQUsqIIPTGr4xiVti1Hsk5g==}
-
- glob-parent@3.1.0:
- resolution: {integrity: sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==}
-
glob-parent@5.1.2:
resolution: {integrity: sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==}
engines: {node: '>= 6'}
+ glob-parent@6.0.2:
+ resolution: {integrity: sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==}
+ engines: {node: '>=10.13.0'}
+
glob-to-regexp@0.4.1:
resolution: {integrity: sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==}
@@ -3809,29 +3914,37 @@ packages:
engines: {node: '>=12'}
deprecated: Glob versions prior to v9 are no longer supported
- global-dirs@3.0.1:
- resolution: {integrity: sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==}
- engines: {node: '>=10'}
+ glob@9.3.5:
+ resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
+ engines: {node: '>=16 || 14 >=14.17'}
global-modules@1.0.0:
resolution: {integrity: sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==}
engines: {node: '>=0.10.0'}
+ global-modules@2.0.0:
+ resolution: {integrity: sha512-NGbfmJBp9x8IxyJSd1P+otYK8vonoJactOogrVfFRIAEY1ukil8RSKDz2Yo7wh1oihl51l/r6W4epkeKJHqL8A==}
+ engines: {node: '>=6'}
+
global-prefix@1.0.2:
resolution: {integrity: sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==}
engines: {node: '>=0.10.0'}
+ global-prefix@3.0.0:
+ resolution: {integrity: sha512-awConJSVCHVGND6x3tmMaKcQvwXLhjdkmomy2W+Goaui8YPgYgXJZewhg3fWC+DlfqqQuWg8AwqjGTD2nAPVWg==}
+ engines: {node: '>=6'}
+
globals@11.12.0:
resolution: {integrity: sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==}
engines: {node: '>=4'}
- globals@13.24.0:
- resolution: {integrity: sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==}
- engines: {node: '>=8'}
+ globals@14.0.0:
+ resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
+ engines: {node: '>=18'}
- globals@9.18.0:
- resolution: {integrity: sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ==}
- engines: {node: '>=0.10.0'}
+ globals@15.14.0:
+ resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
+ engines: {node: '>=18'}
globalthis@1.0.4:
resolution: {integrity: sha512-DpLKbNU4WylpxJykQujfCcwYWiV/Jhm50Goo0wrVILAv5jOr9d+H+UR3PhSCD2rCCEIg0uc+G+muBTwD54JhDQ==}
@@ -3844,23 +3957,27 @@ packages:
resolution: {integrity: sha512-3LifW9M4joGZasyYPz2A1U74zbC/45fvpXUvO/9KbSa+VV0aGZarWkfdgKyR9sExNP0t0x0ss/UMJpNpcaTspw==}
engines: {node: '>=8'}
- globby@11.0.4:
- resolution: {integrity: sha512-9O4MVG9ioZJ08ffbcyVYyLOJLk5JQ688pJ4eMGLpdWLHq/Wr1D9BlriLQyL0E+jbkuePVZXYFj47QM/v093wHg==}
- engines: {node: '>=10'}
+ globby@10.0.1:
+ resolution: {integrity: sha512-sSs4inE1FB2YQiymcmTv6NWENryABjUNPeWhOvmn4SjtKybglsyPZxFB3U1/+L1bYi0rNZDqCLlHyLYDl1Pq5A==}
+ engines: {node: '>=8'}
globby@11.1.0:
resolution: {integrity: sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==}
engines: {node: '>=10'}
- globby@13.2.2:
- resolution: {integrity: sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==}
- engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ globby@14.0.2:
+ resolution: {integrity: sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==}
+ engines: {node: '>=18'}
+
+ globjoin@0.1.4:
+ resolution: {integrity: sha512-xYfnw62CKG8nLkZBfWbhWwDw02CHty86jfPcc2cr3ZfeuK9ysoVPPEUxf21bAD/rWAgk52SuBrLJlefNy8mvFg==}
globrex@0.1.2:
resolution: {integrity: sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==}
- gopd@1.0.1:
- resolution: {integrity: sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==}
+ gopd@1.2.0:
+ resolution: {integrity: sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==}
+ engines: {node: '>= 0.4'}
got@9.6.0:
resolution: {integrity: sha512-R7eWptXuGYxwijs0eV+v3o6+XH1IqVK8dJOEecQfTmkncw9AV4dcw/Dhxi8MdlqPthxxpZyizMzyg8RTmEsG+Q==}
@@ -3869,8 +3986,8 @@ packages:
graceful-fs@4.2.11:
resolution: {integrity: sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==}
- graceful-readlink@1.0.1:
- resolution: {integrity: sha512-8tLu60LgxF6XpdbK8OW3FA+IfTNBn1ZHGHKF4KQbEeSkajYw5PlYJcKluntgegDPTg8UkHjpet1T82vk6TQ68w==}
+ graphemer@1.4.0:
+ resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
growly@1.3.0:
resolution: {integrity: sha512-+xGQY0YyAWCnqy7Cd++hc2JqMYzlm0dG30Jd0beaA64sROr8C4nt8Yc9V5Ro3avlSUDTN0ulqP/VBKi1/lLygw==}
@@ -3880,16 +3997,13 @@ packages:
engines: {node: '>=0.4.7'}
hasBin: true
- has-ansi@2.0.0:
- resolution: {integrity: sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==}
- engines: {node: '>=0.10.0'}
-
has-ansi@3.0.0:
resolution: {integrity: sha512-5JRDTvNq6mVkaMHQVXrGnaCXHD6JfqxwCy8LA/DQSqLLqePR9uaJVm2u3Ek/UziJFQz+d1ul99RtfIhE2aorkQ==}
engines: {node: '>=4'}
- has-bigints@1.0.2:
- resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
+ has-bigints@1.1.0:
+ resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
+ engines: {node: '>= 0.4'}
has-flag@3.0.0:
resolution: {integrity: sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==}
@@ -3902,12 +4016,12 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
- has-proto@1.0.3:
- resolution: {integrity: sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==}
+ has-proto@1.2.0:
+ resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
engines: {node: '>= 0.4'}
- has-symbols@1.0.3:
- resolution: {integrity: sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==}
+ has-symbols@1.1.0:
+ resolution: {integrity: sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==}
engines: {node: '>= 0.4'}
has-tostringtag@1.0.2:
@@ -3933,24 +4047,9 @@ packages:
resolution: {integrity: sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==}
engines: {node: '>=0.10.0'}
- has-yarn@2.1.0:
- resolution: {integrity: sha512-UqBRqi4ju7T+TqGNdqAO0PaSVGsDGJUBQvk9eUWNGRY1CFGDzYhLWoM7JQEemnlvVcv/YEmc2wNW8BC24EnUsw==}
- engines: {node: '>=8'}
-
- hash-base@3.0.4:
- resolution: {integrity: sha512-EeeoJKjTyt868liAlVmcv2ZsUfGHlE3Q+BICOXcZiwN3osr5Q/zFGYmTJpoIzuaSTAwndFy+GqhEwlU4L3j4Ow==}
- engines: {node: '>=4'}
-
- hash-base@3.1.0:
- resolution: {integrity: sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==}
- engines: {node: '>=4'}
-
hash-for-dep@1.5.1:
resolution: {integrity: sha512-/dQ/A2cl7FBPI2pO0CANkvuuVi/IFS5oTyJ0PsOb6jW6WbVW1js5qJXMJTNbWHXBIPdFTWFbabjB+mE0d+gelw==}
- hash.js@1.1.7:
- resolution: {integrity: sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==}
-
hasown@2.0.2:
resolution: {integrity: sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==}
engines: {node: '>= 0.4'}
@@ -3968,34 +4067,24 @@ packages:
heimdalljs@0.2.6:
resolution: {integrity: sha512-o9bd30+5vLBvBtzCPwwGqpry2+n0Hi6H1+qwt6y+0kwRHGGF8TFIhJPmnuM0xO97zaKrDZMwO/V56fAnn8m/tA==}
- highlight.js@10.7.3:
- resolution: {integrity: sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==}
-
- hmac-drbg@1.0.1:
- resolution: {integrity: sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==}
-
- home-or-tmp@2.0.0:
- resolution: {integrity: sha512-ycURW7oUxE2sNiPVw1HVEFsW+ecOpJ5zaj7eC0RlwhibhRBod20muUN8qu/gzx956YrLolVvs1MTXwKgC2rVEg==}
- engines: {node: '>=0.10.0'}
-
homedir-polyfill@1.0.3:
resolution: {integrity: sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==}
engines: {node: '>=0.10.0'}
- hosted-git-info@2.8.9:
- resolution: {integrity: sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==}
+ hookified@1.7.0:
+ resolution: {integrity: sha512-XQdMjqC1AyeOzfs+17cnIk7Wdfu1hh2JtcyNfBf5u9jHrT3iZUlGHxLTntFBuk5lwkqJ6l3+daeQdHK5yByHVA==}
- hosted-git-info@4.1.0:
- resolution: {integrity: sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==}
- engines: {node: '>=10'}
+ hosted-git-info@8.0.2:
+ resolution: {integrity: sha512-sYKnA7eGln5ov8T8gnYlkSOxFJvywzEx9BueN6xo/GKO8PGiI6uK6xx+DIGe45T3bdVjLAQDQW1aicT8z8JwQg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
- hosted-git-info@6.1.1:
- resolution: {integrity: sha512-r0EI+HBMcXadMrugk0GCQ+6BQV39PiWAZVfq7oIckeGiN7sjRGyQxPdft3nQekFTCQbYxLBH+/axZMeH8UX6+w==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ html-encoding-sniffer@4.0.0:
+ resolution: {integrity: sha512-Y22oTqIU4uuPgEemfz7NDJz6OeKf12Lsu+QC+s3BVpda64lTiMYCyGwg5ki4vFxkMwQdeZDl2adZoqUgdFuTgQ==}
+ engines: {node: '>=18'}
- html-encoding-sniffer@2.0.1:
- resolution: {integrity: sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==}
- engines: {node: '>=10'}
+ html-tags@3.3.1:
+ resolution: {integrity: sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==}
+ engines: {node: '>=8'}
http-cache-semantics@4.1.1:
resolution: {integrity: sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==}
@@ -4011,20 +4100,17 @@ packages:
http-parser-js@0.5.8:
resolution: {integrity: sha512-SGeBX54F94Wgu5RH3X5jsDtf4eHyRogWX1XGT3b4HuW3tQPM4AaBzoUji/4AAJNXCEOWZ5O0DgZmJw1947gD5Q==}
- http-proxy-agent@4.0.1:
- resolution: {integrity: sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==}
- engines: {node: '>= 6'}
+ http-proxy-agent@7.0.2:
+ resolution: {integrity: sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==}
+ engines: {node: '>= 14'}
http-proxy@1.18.1:
resolution: {integrity: sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==}
engines: {node: '>=8.0.0'}
- https-browserify@1.0.0:
- resolution: {integrity: sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==}
-
- https-proxy-agent@5.0.1:
- resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
- engines: {node: '>= 6'}
+ https-proxy-agent@7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
+ engines: {node: '>= 14'}
https@1.0.0:
resolution: {integrity: sha512-4EC57ddXrkaF0x83Oj8sM6SLQHAWXw90Skqu2M4AEWENZ3F02dFJE/GARA8igO79tcgYqGrD7ae4f5L3um2lgg==}
@@ -4037,9 +4123,6 @@ packages:
resolution: {integrity: sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==}
engines: {node: '>=10.17.0'}
- humanize-ms@1.2.1:
- resolution: {integrity: sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==}
-
iconv-lite@0.4.24:
resolution: {integrity: sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==}
engines: {node: '>=0.10.0'}
@@ -4057,52 +4140,36 @@ packages:
ieee754@1.2.1:
resolution: {integrity: sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==}
- iferr@0.1.5:
- resolution: {integrity: sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==}
-
- ignore@4.0.6:
- resolution: {integrity: sha512-cyFDKrqc/YdcWFniJhzI42+AzS+gNwmUzOSFcRCQYwySuBBBy/KjuxWLZ/FHEH6Moq1NizMOBWyTcv8O4OZIMg==}
+ ignore@5.3.2:
+ resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
- ignore@5.3.1:
- resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
+ ignore@7.0.3:
+ resolution: {integrity: sha512-bAH5jbK/F3T3Jls4I0SO1hmPR0dKU0a7+SY6n1yzRtG54FLO8d6w/nxLFX2Nb7dBu6cCWXPaAME6cYqFUMmuCA==}
engines: {node: '>= 4'}
- import-cwd@3.0.0:
- resolution: {integrity: sha512-4pnzH16plW+hgvRECbDWpQl3cqtvSofHWh44met7ESfZ8UZOWWddm8hEyDTqREJ9RbYHY8gi8DqmaelApoOGMg==}
- engines: {node: '>=8'}
+ immutable@5.0.3:
+ resolution: {integrity: sha512-P8IdPQHq3lA1xVeBRi5VPqUm5HDgKnx0Ru51wZz5mjxHr5n3RWhjIpOFU7ybkUxfB+5IToy+OLaHYDBIWsv+uw==}
import-fresh@3.3.0:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
- import-from@3.0.0:
- resolution: {integrity: sha512-CiuXOFFSzkU5x/CR0+z7T91Iht4CXgfCxVOFRhh2Zyhg5wOpWvvDLQUsWl+gcN+QscYBjez8hDCt85O7RLDttQ==}
- engines: {node: '>=8'}
-
- import-lazy@2.1.0:
- resolution: {integrity: sha512-m7ZEHgtw69qOGw+jwxXkHlrlIPdTGkyh66zXZ1ajZbxkDBNjSY/LGbmjc7h0s2ELsUDTAhFr55TrPSSqJGPG0A==}
- engines: {node: '>=4'}
-
imurmurhash@0.1.4:
resolution: {integrity: sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==}
engines: {node: '>=0.8.19'}
- indent-string@4.0.0:
- resolution: {integrity: sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==}
- engines: {node: '>=8'}
-
- infer-owner@1.0.4:
- resolution: {integrity: sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==}
-
- inflection@1.13.4:
- resolution: {integrity: sha512-6I/HUDeYFfuNCVS3td055BaXBwKYuzw7K3ExVMStBowKo9oOAMJIXIHvdyR3iboTCp1b+1i5DSkIZTcwIktuDw==}
- engines: {'0': node >= 0.4.0}
+ include-path-searcher@0.1.0:
+ resolution: {integrity: sha512-KlpXnsZOrBGo4PPKqPFi3Ft6dcRyh8fTaqgzqDRi8jKAsngJEWWOxeFIWC8EfZtXKaZqlsNf9XRwcQ49DVgl/g==}
inflection@2.0.1:
resolution: {integrity: sha512-wzkZHqpb4eGrOKBl34xy3umnYHx8Si5R1U4fwmdxLo5gdH6mEK8gclckTj/qWqy4Je0bsDYe/qazZYuO7xe3XQ==}
engines: {node: '>=14.0.0'}
+ inflection@3.0.2:
+ resolution: {integrity: sha512-+Bg3+kg+J6JUWn8J6bzFmOWkTQ6L/NHfDRSYU+EVvuKHDxUDHAXgqixHfVlzuBQaPOTac8hn43aPhMNk6rMe3g==}
+ engines: {node: '>=18.0.0'}
+
inflight@1.0.6:
resolution: {integrity: sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==}
deprecated: This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.
@@ -4116,14 +4183,6 @@ packages:
ini@1.3.8:
resolution: {integrity: sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==}
- ini@2.0.0:
- resolution: {integrity: sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==}
- engines: {node: '>=10'}
-
- inline-source-map-comment@1.0.5:
- resolution: {integrity: sha512-a3/m6XgooVCXkZCduOb7pkuvUtNKt4DaqaggKKJrMQHQsqt6JcJXEreExeZiiK4vWL/cM/uF6+chH05pz2/TdQ==}
- hasBin: true
-
inquirer@6.5.2:
resolution: {integrity: sha512-cntlB5ghuB0iuO65Ovoi8ogLHiWGs/5yNrtUcKjFhSSiVeAIVpD7koaSU9RM8mpXw5YDi9RdYXGQMaOURB7ycQ==}
engines: {node: '>=6.0.0'}
@@ -4132,36 +4191,18 @@ packages:
resolution: {integrity: sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==}
engines: {node: '>=8.0.0'}
- inquirer@8.2.0:
- resolution: {integrity: sha512-0crLweprevJ02tTuA6ThpoAERAGyVILC4sS74uib58Xf/zSr1/ZWtmm7D5CI+bSQEaA04f0K7idaHpQbSWgiVQ==}
- engines: {node: '>=8.0.0'}
-
- inquirer@8.2.6:
- resolution: {integrity: sha512-M1WuAmb7pn9zdFRtQYk26ZBoY043Sse0wVDdk4Bppr+JOXyQYybdtvK+l9wUibhtjdjvtoiNy8tk+EgsYIUqKg==}
- engines: {node: '>=12.0.0'}
+ inquirer@9.3.7:
+ resolution: {integrity: sha512-LJKFHCSeIRq9hanN14IlOtPSTe3lNES7TYDTE2xxdAy1LS5rYphajK1qtwvj3YmQXvvk0U2Vbmcni8P9EIQW9w==}
+ engines: {node: '>=18'}
- internal-slot@1.0.7:
- resolution: {integrity: sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==}
+ internal-slot@1.1.0:
+ resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
- interpret@1.4.0:
- resolution: {integrity: sha512-agE4QfB2Lkp9uICn7BAqoscw4SZP9kTE2hxiFI3jBPmXJfdqiahTbUuKGsMoN2GtqL9AxhYioAcVvgsb1HvRbA==}
- engines: {node: '>= 0.10'}
-
- invariant@2.2.4:
- resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
-
invert-kv@3.0.1:
resolution: {integrity: sha512-CYdFeFexxhv/Bcny+Q0BfOV+ltRlJcd4BBZBYFX/O0u4npJrgZtIcjokegtiSMAvlMTJ+Koq0GBCc//3bueQxw==}
engines: {node: '>=8'}
- ip-address@9.0.5:
- resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
- engines: {node: '>= 12'}
-
- ip@1.1.9:
- resolution: {integrity: sha512-cyRxvOEpNHNtchU3Ln9KC/auJgup87llfQpQ+t5ghoC/UhL16SWzbueiCsdTnWmqAWl7LadfuwhlqmtOaqMHdQ==}
-
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
@@ -4170,30 +4211,23 @@ packages:
resolution: {integrity: sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==}
engines: {node: '>= 0.10'}
- is-arguments@1.1.1:
- resolution: {integrity: sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==}
- engines: {node: '>= 0.4'}
-
- is-array-buffer@3.0.4:
- resolution: {integrity: sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==}
+ is-array-buffer@3.0.5:
+ resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
- is-bigint@1.0.4:
- resolution: {integrity: sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==}
-
- is-binary-path@1.0.1:
- resolution: {integrity: sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==}
- engines: {node: '>=0.10.0'}
+ is-async-function@2.1.0:
+ resolution: {integrity: sha512-GExz9MtyhlZyXYLxzlJRj5WUCE661zhDa1Yna52CN57AJsymh+DvXXjyveSioqSRdxvUrdKdvqB1b5cVKsNpWQ==}
+ engines: {node: '>= 0.4'}
- is-binary-path@2.1.0:
- resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
- engines: {node: '>=8'}
+ is-bigint@1.1.0:
+ resolution: {integrity: sha512-n4ZT37wG78iz03xPRKJrHTdZbe3IicyucEtdRsV5yglwc3GyUfbAfpSeD0FJ41NbUNSt5wbhqfp1fS+BgnvDFQ==}
+ engines: {node: '>= 0.4'}
- is-boolean-object@1.1.2:
- resolution: {integrity: sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==}
+ is-boolean-object@1.2.1:
+ resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
engines: {node: '>= 0.4'}
is-buffer@1.1.6:
@@ -4203,27 +4237,20 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
- is-ci@2.0.0:
- resolution: {integrity: sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==}
- hasBin: true
-
- is-ci@3.0.1:
- resolution: {integrity: sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==}
- hasBin: true
-
- is-core-module@2.13.1:
- resolution: {integrity: sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
+ engines: {node: '>= 0.4'}
is-data-descriptor@1.0.1:
resolution: {integrity: sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==}
engines: {node: '>= 0.4'}
- is-data-view@1.0.1:
- resolution: {integrity: sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==}
+ is-data-view@1.0.2:
+ resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
engines: {node: '>= 0.4'}
- is-date-object@1.0.5:
- resolution: {integrity: sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==}
+ is-date-object@1.1.0:
+ resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
is-descriptor@0.1.7:
@@ -4251,9 +4278,9 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
- is-finite@1.1.0:
- resolution: {integrity: sha512-cdyMtqX/BOqqNBBiKlIVkytNHm49MtMlYyn1zxzvJKWmFMlGzm+ry5BBfYyeY9YmNKbRSo/o7OX9w9ale0wg3w==}
- engines: {node: '>=0.10.0'}
+ is-finalizationregistry@1.1.1:
+ resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
+ engines: {node: '>= 0.4'}
is-fullwidth-code-point@2.0.0:
resolution: {integrity: sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==}
@@ -4263,29 +4290,22 @@ packages:
resolution: {integrity: sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==}
engines: {node: '>=8'}
+ is-generator-function@1.1.0:
+ resolution: {integrity: sha512-nPUB5km40q9e8UfN/Zc24eLlzdSf9OfKByBw9CIdw4H1giPMeA0OIJvbchsCu4npfI2QcMVBsGEBHKZ7wLTWmQ==}
+ engines: {node: '>= 0.4'}
+
is-git-url@1.0.0:
resolution: {integrity: sha512-UCFta9F9rWFSavp9H3zHEHrARUfZbdJvmHKeEpds4BK3v7W2LdXoNypMtXXi5w5YBDEBCTYmbI+vsSwI8LYJaQ==}
engines: {node: '>=0.8'}
- is-glob@3.1.0:
- resolution: {integrity: sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==}
- engines: {node: '>=0.10.0'}
-
is-glob@4.0.3:
resolution: {integrity: sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==}
engines: {node: '>=0.10.0'}
- is-installed-globally@0.4.0:
- resolution: {integrity: sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==}
- engines: {node: '>=10'}
-
is-interactive@1.0.0:
resolution: {integrity: sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==}
engines: {node: '>=8'}
- is-lambda@1.0.1:
- resolution: {integrity: sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==}
-
is-language-code@3.1.0:
resolution: {integrity: sha512-zJdQ3QTeLye+iphMeK3wks+vXSRFKh68/Pnlw7aOfApFSEIOhYa8P9vwwa6QrImNNBMJTiL1PpYF0f4BxDuEgA==}
@@ -4293,16 +4313,8 @@ packages:
resolution: {integrity: sha512-1Qed0/Hr2m+YqxnM09CjA2d/i6YZNfF6R2oRAOj36eUdS6qIV/huPJNSEpKbupewFs+ZsJlxsjjPbc0/afW6Lw==}
engines: {node: '>= 0.4'}
- is-negative-zero@2.0.3:
- resolution: {integrity: sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==}
- engines: {node: '>= 0.4'}
-
- is-npm@5.0.0:
- resolution: {integrity: sha512-WW/rQLOazUq+ST/bCAVBp/2oMERWLsR7OrKyt052dNDk4DHcDE0/7QSXITlmi+VBcV13DfIbysG3tZJm5RfdBA==}
- engines: {node: '>=10'}
-
- is-number-object@1.0.7:
- resolution: {integrity: sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==}
+ is-number-object@1.1.1:
+ resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
engines: {node: '>= 0.4'}
is-number@3.0.0:
@@ -4317,10 +4329,6 @@ packages:
resolution: {integrity: sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==}
engines: {node: '>=8'}
- is-path-inside@3.0.3:
- resolution: {integrity: sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==}
- engines: {node: '>=8'}
-
is-plain-obj@2.1.0:
resolution: {integrity: sha512-YWnfyRwxL/+SsrWYfOpUtz5b3YD+nyfkHvjbcanzk8zgyO4ASD67uVMRt8k5bM4lLMDnXfriRhOpemw+NfT1eA==}
engines: {node: '>=8'}
@@ -4329,6 +4337,10 @@ packages:
resolution: {integrity: sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==}
engines: {node: '>=0.10.0'}
+ is-plain-object@3.0.1:
+ resolution: {integrity: sha512-Xnpx182SBMrr/aBik8y+GuR4U1L9FqMSojwDQwPMmxyC6bvEqly9UBCxhauBF5vNh2gwWJNX6oDV7O+OM4z34g==}
+ engines: {node: '>=0.10.0'}
+
is-plain-object@5.0.0:
resolution: {integrity: sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==}
engines: {node: '>=0.10.0'}
@@ -4336,21 +4348,21 @@ packages:
is-potential-custom-element-name@1.0.1:
resolution: {integrity: sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==}
- is-regex@1.1.4:
- resolution: {integrity: sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==}
+ is-reference@1.2.1:
+ resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
+
+ is-regex@1.2.1:
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
is-set@2.0.3:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
- is-shared-array-buffer@1.0.3:
- resolution: {integrity: sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==}
+ is-shared-array-buffer@1.0.4:
+ resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
engines: {node: '>= 0.4'}
- is-ssh@1.4.0:
- resolution: {integrity: sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==}
-
is-stream@1.1.0:
resolution: {integrity: sha512-uQPm8kcs47jx38atAcWTVxyltQYoPT68y9aWYdV6yWXSyW8mzSat0TL6CiWdZeCdF3KrAvpVtnHbTv4RN+rqdQ==}
engines: {node: '>=0.10.0'}
@@ -4359,19 +4371,23 @@ packages:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
- is-string@1.0.7:
- resolution: {integrity: sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==}
+ is-string@1.1.1:
+ resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
- is-symbol@1.0.4:
- resolution: {integrity: sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==}
+ is-subdir@1.2.0:
+ resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
+ engines: {node: '>=4'}
+
+ is-symbol@1.1.1:
+ resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
is-type@0.0.1:
resolution: {integrity: sha512-YwJh/zBVrcJ90aAnPBM0CbHvm7lG9ao7lIFeqTZ1UQj4iFLpM5CikdaU+dGGesrMJwxLqPGmjjrUrQ6Kn3Zh+w==}
- is-typed-array@1.1.13:
- resolution: {integrity: sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==}
+ is-typed-array@1.1.15:
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
is-typedarray@1.0.0:
@@ -4381,24 +4397,26 @@ packages:
resolution: {integrity: sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==}
engines: {node: '>=10'}
- is-weakref@1.0.2:
- resolution: {integrity: sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==}
+ is-weakmap@2.0.2:
+ resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
+ engines: {node: '>= 0.4'}
+
+ is-weakref@1.1.0:
+ resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
+ engines: {node: '>= 0.4'}
+
+ is-weakset@2.0.4:
+ resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
+ engines: {node: '>= 0.4'}
is-windows@1.0.2:
resolution: {integrity: sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==}
engines: {node: '>=0.10.0'}
- is-wsl@1.1.0:
- resolution: {integrity: sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==}
- engines: {node: '>=4'}
-
is-wsl@2.2.0:
resolution: {integrity: sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==}
engines: {node: '>=8'}
- is-yarn-global@0.3.0:
- resolution: {integrity: sha512-VjSeb/lHmkoyd8ryPVIKvOCn4D1koMqY+vqyjjUfc3xyKtP4dYOxM44sZrnqQSzSds3xyOrUTLTC9LVCVgLngw==}
-
isarray@0.0.1:
resolution: {integrity: sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==}
@@ -4408,8 +4426,8 @@ packages:
isarray@2.0.5:
resolution: {integrity: sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==}
- isbinaryfile@5.0.2:
- resolution: {integrity: sha512-GvcjojwonMjWbTkfMpnVHVqXW/wKMYDfEpY94/8zy8HFMOqb/VL6oeONq9v87q4ttVlaTLnGXnJD4B5B1OTGIg==}
+ isbinaryfile@5.0.4:
+ resolution: {integrity: sha512-YKBKVkKhty7s8rxddb40oOkuP0NbaeXrQvLin6QMHL7Ypiy2RW9LwOVrVgZRyOrhQlayMd9t+D8yDy8MKFTSDQ==}
engines: {node: '>= 18.0.0'}
isexe@2.0.0:
@@ -4431,12 +4449,6 @@ packages:
resolution: {integrity: sha512-+XRlFseT8B3L9KyjxxLjfXSLMuErKDsd8DBNrsaxoViABMEZlOSCstwmw0qpoFX3+U6yWU1yhLudAe6/lETGGA==}
engines: {node: '>=0.12'}
- iterate-iterator@1.0.2:
- resolution: {integrity: sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==}
-
- iterate-value@1.0.2:
- resolution: {integrity: sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==}
-
jest-worker@27.5.1:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
@@ -4445,9 +4457,6 @@ packages:
resolution: {integrity: sha512-Smw4xcfIQ5LVjAOuJCvN/zIodzA/BBSsluuoSykP+lUvScIi4U6RJLfwHet5cxFnCswUjISV8oAXaqaJDY3chg==}
engines: {node: '>= 0.8'}
- js-tokens@3.0.2:
- resolution: {integrity: sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==}
-
js-tokens@4.0.0:
resolution: {integrity: sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==}
@@ -4459,33 +4468,23 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
- jsbn@1.1.0:
- resolution: {integrity: sha512-4bYVV3aAMtDTTu4+xsDYa6sy9GyJ69/amsu9sYF2zqjiEoZA5xJi3BrfX3uY+/IekIu7MwdObdbDWpoZdBv3/A==}
-
- jsdom@16.7.0:
- resolution: {integrity: sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==}
- engines: {node: '>=10'}
+ jsdom@25.0.1:
+ resolution: {integrity: sha512-8i7LzZj7BF8uplX+ZyOlIz86V6TAsSs+np6m1kpW9u0JWi4z/1t+FzcK1aek+ybTnAC4KhBL4uXCNT0wcUIeCw==}
+ engines: {node: '>=18'}
peerDependencies:
- canvas: ^2.5.0
+ canvas: ^2.11.2
peerDependenciesMeta:
canvas:
optional: true
- jsesc@0.3.0:
- resolution: {integrity: sha512-UHQmAeTXV+iwEk0aHheJRqo6Or90eDxI6KIYpHSjKLXKuKlPt1CQ7tGBerFcFA8uKU5mYxiPMlckmFptd5XZzA==}
- hasBin: true
-
- jsesc@0.5.0:
- resolution: {integrity: sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==}
- hasBin: true
-
- jsesc@1.3.0:
- resolution: {integrity: sha512-Mke0DA0QjUWuJlhsE0ZPPhYiJkRap642SmI/4ztCFaUs6V2AiH1sfecc+57NgaryfAA2VR3v6O+CSjC1jZJKOA==}
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
hasBin: true
- jsesc@2.5.2:
- resolution: {integrity: sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==}
- engines: {node: '>=4'}
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
hasBin: true
json-buffer@3.0.0:
@@ -4494,9 +4493,6 @@ packages:
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
- json-parse-better-errors@1.0.2:
- resolution: {integrity: sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==}
-
json-parse-even-better-errors@2.3.1:
resolution: {integrity: sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==}
@@ -4509,14 +4505,10 @@ packages:
json-stable-stringify-without-jsonify@1.0.1:
resolution: {integrity: sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==}
- json-stable-stringify@1.1.1:
- resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==}
+ json-stable-stringify@1.2.1:
+ resolution: {integrity: sha512-Lp6HbbBgosLmJbjx0pBLbgvx68FaFU1sdkmBuckmhhJ88kL13OA51CDtR2yJB50eCNMH9wRqtQNNiAqQH4YXnA==}
engines: {node: '>= 0.4'}
- json5@0.5.1:
- resolution: {integrity: sha512-4xrs1aW+6N5DalkqSVA8fxh458CXvR99WU8WLKmq4v8eWAL86Xo3BVqyd3SkA9wEVjCMqyvvRRkshAdOnBp5rw==}
- hasBin: true
-
json5@1.0.2:
resolution: {integrity: sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==}
hasBin: true
@@ -4544,6 +4536,9 @@ packages:
keyv@4.5.4:
resolution: {integrity: sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==}
+ keyv@5.2.3:
+ resolution: {integrity: sha512-AGKecUfzrowabUv0bH1RIR5Vf7w+l4S3xtQAypKaUpTdIR1EbrAcTxHCrpo9Q+IWeUlFE2palRtgIQcgm+PQJw==}
+
kind-of@3.2.2:
resolution: {integrity: sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==}
engines: {node: '>=0.10.0'}
@@ -4556,9 +4551,8 @@ packages:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- kleur@4.1.5:
- resolution: {integrity: sha512-o+NO+8WrRiQEE4/7nwRJhN1HWpVmJm511pBHUxPLtp0BUISzlBplORYSmTclCnJvQq2tKu/sgl3xVpkc7ZWuQQ==}
- engines: {node: '>=6'}
+ known-css-properties@0.35.0:
+ resolution: {integrity: sha512-a/RAk2BfKk+WFGhhOCAYqSiFLc34k8Mt/6NWRI4joER0EYUzXIcFivjjnoD3+XU1DggLn/tZc3DOAgke7l8a4A==}
language-subtag-registry@0.3.23:
resolution: {integrity: sha512-0K65Lea881pHotoGEa5gDlMxt3pctLi2RplBb7Ezh4rRdLEOtgi7n4EwK9lamnUCkKBqaeKRVebTq6BAxSkpXQ==}
@@ -4567,26 +4561,10 @@ packages:
resolution: {integrity: sha512-MbjN408fEndfiQXbFQ1vnd+1NoLDsnQW41410oQBXiyXDMYH5z505juWa4KUE1LqxRC7DgOgZDbKLxHIwm27hA==}
engines: {node: '>=0.10'}
- latest-version@5.1.0:
- resolution: {integrity: sha512-weT+r0kTkRQdCdYCNtkMwWXQTMEswKrFBkm4ckQOMVhhqhIMI1UT2hMj+1iigIhgSZm5gTmrRXBNoGUgaTY1xA==}
- engines: {node: '>=8'}
-
lcid@3.1.1:
resolution: {integrity: sha512-M6T051+5QCGLBQb8id3hdvIW8+zeFV2FyBGFS9IEK5H9Wt4MueD4bW1eWikpHgZp+5xR3l5c8pZUkQsIA0BFZg==}
engines: {node: '>=8'}
- leek@0.0.24:
- resolution: {integrity: sha512-6PVFIYXxlYF0o6hrAsHtGpTmi06otkwNrMcmQ0K96SeSRHPREPa9J3nJZ1frliVH7XT0XFswoJFQoXsDukzGNQ==}
-
- lerna-changelog@2.2.0:
- resolution: {integrity: sha512-yjYNAHrbnw8xYFKmYWJEP52Tk4xSdlNmzpYr26+3glbSGDmpe8UMo8f9DlEntjGufL+opup421oVTXcLshwAaQ==}
- engines: {node: 12.* || 14.* || >= 16}
- hasBin: true
-
- levn@0.3.0:
- resolution: {integrity: sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==}
- engines: {node: '>= 0.8.0'}
-
levn@0.4.1:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
@@ -4603,22 +4581,10 @@ packages:
livereload-js@3.4.1:
resolution: {integrity: sha512-5MP0uUeVCec89ZbNOT/i97Mc+q3SxXmiUGhRFOTmhrGPn//uWVQdCvcLJDy64MSBR5MidFdOR7B9viumoavy6g==}
- load-json-file@4.0.0:
- resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
- engines: {node: '>=4'}
-
- loader-runner@2.4.0:
- resolution: {integrity: sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==}
- engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
-
loader-runner@4.3.0:
resolution: {integrity: sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==}
engines: {node: '>=6.11.5'}
- loader-utils@1.4.2:
- resolution: {integrity: sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==}
- engines: {node: '>=4.0.0'}
-
loader-utils@2.0.4:
resolution: {integrity: sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==}
engines: {node: '>=8.9.0'}
@@ -4626,6 +4592,9 @@ packages:
loader.js@4.7.0:
resolution: {integrity: sha512-9M2KvGT6duzGMgkOcTkWb+PR/Q2Oe54df/tLgHGVmFpAmtqJ553xJh6N63iFYI2yjo2PeJXbS5skHi/QpJq4vA==}
+ locate-character@2.0.5:
+ resolution: {integrity: sha512-n2GmejDXtOPBAZdIiEFy5dJ5N38xBCXLNOtw2WpB9kGh6pnrEuKlwYI+Tkpofc4wDtVXHtoAOJaMRlYG/oYaxg==}
+
locate-path@2.0.0:
resolution: {integrity: sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==}
engines: {node: '>=4'}
@@ -4646,21 +4615,9 @@ packages:
resolution: {integrity: sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- lodash._baseassign@3.2.0:
- resolution: {integrity: sha512-t3N26QR2IdSN+gqSy9Ds9pBu/J1EAFEshKlUHpJG3rvyJOYgcELIxcIeKKfZk7sjOz11cFfzJRsyFry/JyabJQ==}
-
- lodash._basecopy@3.0.1:
- resolution: {integrity: sha512-rFR6Vpm4HeCK1WPGvjZSJ+7yik8d8PVUdCJx5rT2pogG4Ve/2ZS7kfmO5l5T2o5V2mqlNIfSF5MZlr1+xOoYQQ==}
-
lodash._baseflatten@3.1.4:
resolution: {integrity: sha512-fESngZd+X4k+GbTxdMutf8ohQa0s3sJEHIcwtu4/LsIQ2JTDzdRxDCMQjW+ezzwRitLmHnacVVmosCbxifefbw==}
- lodash._bindcallback@3.0.1:
- resolution: {integrity: sha512-2wlI0JRAGX8WEf4Gm1p/mv/SZ+jLijpj0jyaE/AXeuQphzCgD8ZQW4oSpoN8JAopujOFGU3KMuq7qfHBWlGpjQ==}
-
- lodash._createassigner@3.1.1:
- resolution: {integrity: sha512-LziVL7IDnJjQeeV95Wvhw6G28Z8Q6da87LWKOPWmzBLv4u6FAT/x5v00pyGW0u38UoogNF2JnD3bGgZZDaNEBw==}
-
lodash._getnative@3.9.1:
resolution: {integrity: sha512-RrL9VxMEPyDMHOd9uFbvMe8X55X16/cGM5IgOKgRElQZutpX89iS6vwl64duTV1/16w5JY7tuFNXqoekmh1EmA==}
@@ -4670,17 +4627,8 @@ packages:
lodash._reinterpolate@3.0.0:
resolution: {integrity: sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==}
- lodash.assign@3.2.0:
- resolution: {integrity: sha512-/VVxzgGBmbphasTg51FrztxQJ/VgAUpol6zmJuSVSGcNg4g7FA4z7rQV8Ovr9V3vFBNWZhvKWHfpAytjTVUfFA==}
-
- lodash.assignin@4.2.0:
- resolution: {integrity: sha512-yX/rx6d/UTVh7sSVWVSIMjfnz95evAgDFdb1ZozC35I9mSFCkmzptOzevxjgbQUsc78NR44LVHWjsoMQXy9FDg==}
-
- lodash.castarray@4.4.0:
- resolution: {integrity: sha512-aVx8ztPv7/2ULbArGJ2Y42bG1mEQ5mGjpdvrbJcJFU3TbYybe+QlLS4pst9zV52ymy2in1KpFPiZnAOATxD4+Q==}
-
- lodash.clonedeep@4.5.0:
- resolution: {integrity: sha512-H5ZhCF25riFd9uB5UCkVKo61m3S/xZk1x4wA6yp/L3RFP6Z/eHH1ymQcGLo7J3GMPfm0V/7m1tryHuGVxpqEBQ==}
+ lodash.camelcase@4.3.0:
+ resolution: {integrity: sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==}
lodash.debounce@3.1.1:
resolution: {integrity: sha512-lcmJwMpdPAtChA4hfiwxTtgFeNAaow701wWUgVUqeD0XJF7vMXIN+bu/2FJSGxT0NUbZy9g9VFrlOFfPjl+0Ew==}
@@ -4691,15 +4639,9 @@ packages:
lodash.defaultsdeep@4.6.1:
resolution: {integrity: sha512-3j8wdDzYuWO3lM3Reg03MuQR957t287Rpcxp1njpEa8oDrikb+FwGdW3n+FELh/A6qib6yPit0j/pv9G/yeAqA==}
- lodash.find@4.6.0:
- resolution: {integrity: sha512-yaRZoAV3Xq28F1iafWN1+a0rflOej93l1DQUejs3SZ41h2O9UJBoS9aueGjPDgAl4B6tPC0NuuchLKaDQQ3Isg==}
-
lodash.flatten@3.0.2:
resolution: {integrity: sha512-jCXLoNcqQRbnT/KWZq2fIREHWeczrzpTR0vsycm96l/pu5hGeAntVBG0t7GuM/2wFqmnZs3d1eGptnAH2E8+xQ==}
- lodash.foreach@4.5.0:
- resolution: {integrity: sha512-aEXTF4d+m05rVOAUG3z4vZZ4xVexLKZGF0lIxuHZ1Hplpk/3B6Z1+/ICICYRLm7c41Z2xiejbkCkJoTlypoXhQ==}
-
lodash.isarguments@3.1.0:
resolution: {integrity: sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==}
@@ -4709,8 +4651,8 @@ packages:
lodash.kebabcase@4.1.1:
resolution: {integrity: sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==}
- lodash.keys@3.1.2:
- resolution: {integrity: sha512-CuBsapFjcubOGMn3VD+24HOAPxM79tH+V6ivJL3CHYjtrawauDJHUk//Yew9Hvc6e9rbCrURGk8z6PC+8WJBfQ==}
+ lodash.memoize@4.1.2:
+ resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
lodash.merge@4.6.2:
resolution: {integrity: sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==}
@@ -4718,9 +4660,6 @@ packages:
lodash.omit@4.5.0:
resolution: {integrity: sha512-XeqSp49hNGmlkj2EJlfrQFIzQ6lXdNro9sddtQzcJY8QaoC2GO0DT7xaIokHeyM+mIT0mPMlPvkYzg2xCuHdZg==}
- lodash.restparam@3.6.1:
- resolution: {integrity: sha512-L4/arjjuq4noiUJpt3yS6KIKDtJwNe2fIYgMqyYYKoeIfV1iEqvPwhCx23o+R9dzouGihDAPN1dTIRWa7zk8tw==}
-
lodash.template@4.5.0:
resolution: {integrity: sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==}
@@ -4733,9 +4672,6 @@ packages:
lodash.uniq@4.5.0:
resolution: {integrity: sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==}
- lodash.uniqby@4.7.0:
- resolution: {integrity: sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==}
-
lodash@4.17.21:
resolution: {integrity: sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==}
@@ -4747,10 +4683,6 @@ packages:
resolution: {integrity: sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==}
engines: {node: '>=10'}
- loose-envify@1.4.0:
- resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
- hasBin: true
-
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -4762,40 +4694,22 @@ packages:
resolution: {integrity: sha512-tqNXrS78oMOE73NMxK4EMLQsQowWf8jKooH9g7xPavRT706R6bkQJ6DY2Te7QukaZsulxa30wQ7bk0pm4XiHmA==}
engines: {node: '>=8'}
+ lru-cache@10.4.3:
+ resolution: {integrity: sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==}
+
lru-cache@5.1.1:
resolution: {integrity: sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==}
- lru-cache@6.0.0:
- resolution: {integrity: sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==}
- engines: {node: '>=10'}
-
- lru-cache@7.18.3:
- resolution: {integrity: sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==}
- engines: {node: '>=12'}
-
- macos-release@2.5.1:
- resolution: {integrity: sha512-DXqXhEM7gW59OjZO8NIjBCz9AQ1BEMrfiOAl4AYByHCtVHRF4KoGNO8mqQeM8lRCtQe/UnJ4imO/d2HdkKsd+A==}
- engines: {node: '>=6'}
+ magic-string@0.24.1:
+ resolution: {integrity: sha512-YBfNxbJiixMzxW40XqJEIldzHyh5f7CZKalo1uZffevyrPEX8Qgo9s0dmcORLHdV47UyvJg8/zD+6hQG3qvJrA==}
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
- magic-string@0.26.7:
- resolution: {integrity: sha512-hX9XH3ziStPoPhJxLq1syWuZMxbDvGNbVchfrdCtanC7D13888bMFow61x8axrx+GfHLtVeAx2kxL7tTGRl+Ow==}
- engines: {node: '>=12'}
-
- make-dir@2.1.0:
- resolution: {integrity: sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==}
- engines: {node: '>=6'}
-
make-dir@3.1.0:
resolution: {integrity: sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==}
engines: {node: '>=8'}
- make-fetch-happen@9.1.0:
- resolution: {integrity: sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==}
- engines: {node: '>= 10'}
-
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
@@ -4827,20 +4741,18 @@ packages:
resolution: {integrity: sha512-daE62nS2ZQsDg9raM0IlZzLmI2u+7ZapXBwdoeBUKAYERPDDIc0qNqA8E0Rp2D+gspKR7BgIFP52GeujaGXWeQ==}
engines: {node: 6.* || 8.* || >= 10.*}
- md5.js@1.3.5:
- resolution: {integrity: sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==}
-
- mdast-util-from-markdown@1.3.1:
- resolution: {integrity: sha512-4xTO/M8c82qBcnQc1tgpNtubGUW/Y1tBQ1B0i5CtSoelOLKFYlElIr3bvgREYYO5iRqbMY1YuqZng0GVOI8Qww==}
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
- mdast-util-to-string@3.2.0:
- resolution: {integrity: sha512-V4Zn/ncyN1QNSqSBxTrMOLpjr+IKdHl2v3KVLoWmDPscP4r9GcCi71gjgvUV1SFSKh92AjAG4peFuBl2/YgCJg==}
+ mathml-tag-names@2.1.3:
+ resolution: {integrity: sha512-APMBEanjybaPzUrfqU0IMU5I0AswKMH7k8OTLs0vvV4KZpExkTkY87nR/zpbuTPj+gARop7aGUbl11pnDfW6xg==}
- mdn-data@2.0.14:
- resolution: {integrity: sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==}
+ mdn-data@2.12.2:
+ resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
- mdn-data@2.0.30:
- resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+ mdn-data@2.15.0:
+ resolution: {integrity: sha512-KIrS0lFPOqA4DgeO16vI5fkAsy8p++WBlbXtB5P1EQs8ubBgguAInNd1DnrCeTRfGchY0kgThgDOOIPyOLH2dQ==}
mdurl@1.0.1:
resolution: {integrity: sha512-/sKlQJCBYVY9Ers9hqzKou4H6V5UWc/M59TH2dvkt+84itfnq7uFOMLpOiOS4ujvHP4etln18fmIxA5R5fll0g==}
@@ -4853,22 +4765,15 @@ packages:
resolution: {integrity: sha512-qvwipnozMohxLXG1pOqoLiZKNkC4r4qqRucSoDwXowsNGDSULiqFTRUF05vcZWnwJSG22qTsynQhxbaMtnX9gw==}
engines: {node: '>=8'}
- memory-fs@0.4.1:
- resolution: {integrity: sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==}
-
- memory-fs@0.5.0:
- resolution: {integrity: sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==}
- engines: {node: '>=4.3.0 <5.0.0 || >=5.10'}
-
memory-streams@0.1.3:
resolution: {integrity: sha512-qVQ/CjkMyMInPaaRMrwWNDvf6boRZXaT/DbQeMYcCWuXPEBf1v8qChOc9OlEVQp2uOvRXa1Qu30fLmKhY6NipA==}
- memorystream@0.3.1:
- resolution: {integrity: sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==}
- engines: {node: '>= 0.10.0'}
+ meow@13.2.0:
+ resolution: {integrity: sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==}
+ engines: {node: '>=18'}
- merge-descriptors@1.0.1:
- resolution: {integrity: sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==}
+ merge-descriptors@1.0.3:
+ resolution: {integrity: sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==}
merge-stream@2.0.0:
resolution: {integrity: sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==}
@@ -4884,85 +4789,22 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
- micromark-core-commonmark@1.1.0:
- resolution: {integrity: sha512-BgHO1aRbolh2hcrzL2d1La37V0Aoz73ymF8rAcKnohLy93titmv62E0gP8Hrx9PKcKrqCZ1BbLGbP3bEhoXYlw==}
-
- micromark-factory-destination@1.1.0:
- resolution: {integrity: sha512-XaNDROBgx9SgSChd69pjiGKbV+nfHGDPVYFs5dOoDd7ZnMAE+Cuu91BCpsY8RT2NP9vo/B8pds2VQNCLiu0zhg==}
-
- micromark-factory-label@1.1.0:
- resolution: {integrity: sha512-OLtyez4vZo/1NjxGhcpDSbHQ+m0IIGnT8BoPamh+7jVlzLJBH98zzuCoUeMxvM6WsNeh8wx8cKvqLiPHEACn0w==}
-
- micromark-factory-space@1.1.0:
- resolution: {integrity: sha512-cRzEj7c0OL4Mw2v6nwzttyOZe8XY/Z8G0rzmWQZTBi/jjwyw/U4uqKtUORXQrR5bAZZnbTI/feRV/R7hc4jQYQ==}
-
- micromark-factory-title@1.1.0:
- resolution: {integrity: sha512-J7n9R3vMmgjDOCY8NPw55jiyaQnH5kBdV2/UXCtZIpnHH3P6nHUKaH7XXEYuWwx/xUJcawa8plLBEjMPU24HzQ==}
-
- micromark-factory-whitespace@1.1.0:
- resolution: {integrity: sha512-v2WlmiymVSp5oMg+1Q0N1Lxmt6pMhIHD457whWM7/GUlEks1hI9xj5w3zbc4uuMKXGisksZk8DzP2UyGbGqNsQ==}
-
- micromark-util-character@1.2.0:
- resolution: {integrity: sha512-lXraTwcX3yH/vMDaFWCQJP1uIszLVebzUa3ZHdrgxr7KEU/9mL4mVgCpGbyhvNLNlauROiNUq7WN5u7ndbY6xg==}
-
- micromark-util-chunked@1.1.0:
- resolution: {integrity: sha512-Ye01HXpkZPNcV6FiyoW2fGZDUw4Yc7vT0E9Sad83+bEDiCJ1uXu0S3mr8WLpsz3HaG3x2q0HM6CTuPdcZcluFQ==}
-
- micromark-util-classify-character@1.1.0:
- resolution: {integrity: sha512-SL0wLxtKSnklKSUplok1WQFoGhUdWYKggKUiqhX+Swala+BtptGCu5iPRc+xvzJ4PXE/hwM3FNXsfEVgoZsWbw==}
-
- micromark-util-combine-extensions@1.1.0:
- resolution: {integrity: sha512-Q20sp4mfNf9yEqDL50WwuWZHUrCO4fEyeDCnMGmG5Pr0Cz15Uo7KBs6jq+dq0EgX4DPwwrh9m0X+zPV1ypFvUA==}
-
- micromark-util-decode-numeric-character-reference@1.1.0:
- resolution: {integrity: sha512-m9V0ExGv0jB1OT21mrWcuf4QhP46pH1KkfWy9ZEezqHKAxkj4mPCy3nIH1rkbdMlChLHX531eOrymlwyZIf2iw==}
-
- micromark-util-decode-string@1.1.0:
- resolution: {integrity: sha512-YphLGCK8gM1tG1bd54azwyrQRjCFcmgj2S2GoJDNnh4vYtnL38JS8M4gpxzOPNyHdNEpheyWXCTnnTDY3N+NVQ==}
-
- micromark-util-encode@1.1.0:
- resolution: {integrity: sha512-EuEzTWSTAj9PA5GOAs992GzNh2dGQO52UvAbtSOMvXTxv3Criqb6IOzJUBCmEqrrXSblJIJBbFFv6zPxpreiJw==}
-
- micromark-util-html-tag-name@1.2.0:
- resolution: {integrity: sha512-VTQzcuQgFUD7yYztuQFKXT49KghjtETQ+Wv/zUjGSGBioZnkA4P1XXZPT1FHeJA6RwRXSF47yvJ1tsJdoxwO+Q==}
-
- micromark-util-normalize-identifier@1.1.0:
- resolution: {integrity: sha512-N+w5vhqrBihhjdpM8+5Xsxy71QWqGn7HYNUvch71iV2PM7+E3uWGox1Qp90loa1ephtCxG2ftRV/Conitc6P2Q==}
-
- micromark-util-resolve-all@1.1.0:
- resolution: {integrity: sha512-b/G6BTMSg+bX+xVCshPTPyAu2tmA0E4X98NSR7eIbeC6ycCqCeE7wjfDIgzEbkzdEVJXRtOG4FbEm/uGbCRouA==}
-
- micromark-util-sanitize-uri@1.2.0:
- resolution: {integrity: sha512-QO4GXv0XZfWey4pYFndLUKEAktKkG5kZTdUNaTAkzbuJxn2tNBOr+QtxR2XpWaMhbImT2dPzyLrPXLlPhph34A==}
-
- micromark-util-subtokenize@1.1.0:
- resolution: {integrity: sha512-kUQHyzRoxvZO2PuLzMt2P/dwVsTiivCK8icYTeR+3WgbuPqfHgPPy7nFKbeqRivBvn/3N3GBiNC+JRTMSxEC7A==}
-
- micromark-util-symbol@1.1.0:
- resolution: {integrity: sha512-uEjpEYY6KMs1g7QfJ2eX1SQEV+ZT4rUD3UcF6l57acZvLNK7PBZL+ty82Z1qhK1/yXIY4bdx04FKMgR0g4IAag==}
-
- micromark-util-types@1.1.0:
- resolution: {integrity: sha512-ukRBgie8TIAcacscVHSiddHjO4k/q3pnedmzMQ4iwDcK0FtFCohKOlFbaOL/mPgfnPsL3C1ZyxJa4sbWrBl3jg==}
-
- micromark@3.2.0:
- resolution: {integrity: sha512-uD66tJj54JLYq0De10AhWycZWGQNUvDI55xPgk2sQM5kn1JYlhbCMTtEeT27+vAhW2FBQxLlOmS3pmA7/2z4aA==}
-
micromatch@3.1.10:
resolution: {integrity: sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==}
engines: {node: '>=0.10.0'}
- micromatch@4.0.7:
- resolution: {integrity: sha512-LPP/3KorzCwBxfeUuZmaR6bG2kdeHSbe0P2tY3FLRU4vYrjYz5hI4QZwV0njUx3jeuKe67YukQ1LSPZBKDqO/Q==}
+ micromatch@4.0.8:
+ resolution: {integrity: sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==}
engines: {node: '>=8.6'}
- miller-rabin@4.0.1:
- resolution: {integrity: sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==}
- hasBin: true
-
mime-db@1.52.0:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
+ mime-db@1.53.0:
+ resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
+ engines: {node: '>= 0.6'}
+
mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
@@ -4984,18 +4826,12 @@ packages:
resolution: {integrity: sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==}
engines: {node: '>=4'}
- mini-css-extract-plugin@2.9.0:
- resolution: {integrity: sha512-Zs1YsZVfemekSZG+44vBsYTLQORkPMwnlv+aehcxK/NLKC+EGhDB39/YePYYqx/sTk6NnYpuqikhSn7+JIevTA==}
+ mini-css-extract-plugin@2.9.2:
+ resolution: {integrity: sha512-GJuACcS//jtq4kCtd5ii/M0SZf7OZRH+BxdqXZHaJfb8TJiVl+NgQRPwiYt2EuqeSkNydn/7vP+bcE27C5mb9w==}
engines: {node: '>= 12.13.0'}
peerDependencies:
webpack: ^5.0.0
- minimalistic-assert@1.0.1:
- resolution: {integrity: sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==}
-
- minimalistic-crypto-utils@1.0.1:
- resolution: {integrity: sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==}
-
minimatch@3.1.2:
resolution: {integrity: sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==}
@@ -5007,50 +4843,27 @@ packages:
resolution: {integrity: sha512-sBz8G/YjVniEz6lKPNpKxXwazJe4c19fEfV2GDMX6AjFz+MX9uDWIZW8XreVhkFW3fkIdTv/gxWr/Kks5FFAVw==}
engines: {node: '>=10'}
- minimist@0.2.4:
- resolution: {integrity: sha512-Pkrrm8NjyQ8yVt8Am9M+yUt74zE3iokhzbG1bFVNjLB92vwM71hf40RkEsryg98BujhVOncKm/C1xROxZ030LQ==}
+ minimatch@8.0.4:
+ resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
+ engines: {node: '>=16 || 14 >=14.17'}
+
+ minimatch@9.0.5:
+ resolution: {integrity: sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==}
+ engines: {node: '>=16 || 14 >=14.17'}
minimist@1.2.8:
resolution: {integrity: sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==}
- minipass-collect@1.0.2:
- resolution: {integrity: sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==}
- engines: {node: '>= 8'}
-
- minipass-fetch@1.4.1:
- resolution: {integrity: sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==}
- engines: {node: '>=8'}
-
- minipass-flush@1.0.5:
- resolution: {integrity: sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==}
- engines: {node: '>= 8'}
-
- minipass-pipeline@1.2.4:
- resolution: {integrity: sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==}
- engines: {node: '>=8'}
-
- minipass-sized@1.0.3:
- resolution: {integrity: sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==}
- engines: {node: '>=8'}
-
minipass@2.9.0:
resolution: {integrity: sha512-wxfUjg9WebH+CUDX/CdbRlh5SmfZiy/hpkxaRI16Y9W56Pa75sWgd/rvFilSgrauD9NyFymP/+JFV3KwzIsJeg==}
- minipass@3.3.6:
- resolution: {integrity: sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==}
- engines: {node: '>=8'}
-
- minipass@5.0.0:
- resolution: {integrity: sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==}
+ minipass@4.2.8:
+ resolution: {integrity: sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==}
engines: {node: '>=8'}
- minizlib@2.1.2:
- resolution: {integrity: sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==}
- engines: {node: '>= 8'}
-
- mississippi@3.0.0:
- resolution: {integrity: sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==}
- engines: {node: '>=4.0.0'}
+ minipass@7.1.2:
+ resolution: {integrity: sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==}
+ engines: {node: '>=16 || 14 >=14.17'}
mixin-deep@1.3.2:
resolution: {integrity: sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==}
@@ -5078,23 +4891,9 @@ packages:
resolution: {integrity: sha512-AbegBVI4sh6El+1gNwvD5YIck7nSA36weD7xvIxG4in80j/UoK8AEGaWnnz8v1GxonMCltmlNs5ZKbGvl9b1XQ==}
engines: {node: '>= 0.8.0'}
- mout@1.2.4:
- resolution: {integrity: sha512-mZb9uOruMWgn/fw28DG4/yE3Kehfk1zKCLhuDU2O3vlKdnBBr4XaOCqVTflJ5aODavGUPqFHZgrFX3NJVuxGhQ==}
-
- move-concurrently@1.0.1:
- resolution: {integrity: sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==}
- deprecated: This package is no longer supported.
-
- mri@1.2.0:
- resolution: {integrity: sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==}
- engines: {node: '>=4'}
-
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
- ms@2.1.2:
- resolution: {integrity: sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==}
-
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
@@ -5108,14 +4907,12 @@ packages:
mute-stream@0.0.8:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
- mz@2.7.0:
- resolution: {integrity: sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==}
-
- nan@2.19.0:
- resolution: {integrity: sha512-nO1xXxfh/RWNxfd/XPfbIfFk5vgLsAxUR9y5O0cHMJu/AW9U95JLXqthYHjEp+8gQ5p96K9jUp8nbVOxCdRbtw==}
+ mute-stream@1.0.0:
+ resolution: {integrity: sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
- nanoid@3.3.7:
- resolution: {integrity: sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==}
+ nanoid@3.3.8:
+ resolution: {integrity: sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==}
engines: {node: ^10 || ^12 || ^13.7 || ^14 || >=15.0.1}
hasBin: true
@@ -5130,23 +4927,22 @@ packages:
resolution: {integrity: sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==}
engines: {node: '>= 0.6'}
+ negotiator@0.6.4:
+ resolution: {integrity: sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==}
+ engines: {node: '>= 0.6'}
+
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
- netmask@2.0.2:
- resolution: {integrity: sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==}
- engines: {node: '>= 0.4.0'}
-
- new-github-release-url@1.0.0:
- resolution: {integrity: sha512-dle7yf655IMjyFUqn6Nxkb18r4AOAkzRcgcZv6WZ0IqrOH4QCEZ8Sm6I7XX21zvHdBeeMeTkhR9qT2Z0EJDx6A==}
- engines: {node: '>=10'}
-
nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
+ node-addon-api@7.1.1:
+ resolution: {integrity: sha512-5m3bsyrjFWE1xf7nz7YXdN4udnVtXK6/Yfgn5qnahL6bCkf2yKt4k3nuTKAtT4r3IG8JNR2ncsIMdZuAzJjHQQ==}
+
node-fetch@2.7.0:
resolution: {integrity: sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==}
engines: {node: 4.x || >=6.0.0}
@@ -5159,17 +4955,14 @@ packages:
node-int64@0.4.0:
resolution: {integrity: sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==}
- node-libs-browser@2.2.1:
- resolution: {integrity: sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==}
-
node-modules-path@1.0.2:
resolution: {integrity: sha512-6Gbjq+d7uhkO7epaKi5DNgUJn7H0gEyA4Jg0Mo1uQOi3Rk50G83LtmhhFyw0LxnAFhtlspkiiw52ISP13qzcBg==}
node-notifier@10.0.1:
resolution: {integrity: sha512-YX7TSyDukOZ0g+gmzjB6abKu+hTGvO8+8+gIFDsRCU2t8fLV/P2unmt+LGFaIa4y64aX98Qksa97rgz4vMNeLQ==}
- node-releases@2.0.14:
- resolution: {integrity: sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==}
+ node-releases@2.0.19:
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
node-watch@0.7.3:
resolution: {integrity: sha512-3l4E8uMPY1HdMMryPRUAl+oIHtXtyiTlIiESNSVSNxcPfzAFzeTbXFQkZfAwBbo0B1qMSG8nUABx+Gd+YrbKrQ==}
@@ -5179,9 +4972,6 @@ packages:
resolution: {integrity: sha512-4GUt3kSEYmk4ITxzB/b9vaIDfUVWN/Ml1Fwl11IlnIG2iaJ9O6WXZ9SrYM9NLI8OCBieN2Y8SWC2oJV0RQ7qYg==}
hasBin: true
- normalize-package-data@2.5.0:
- resolution: {integrity: sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==}
-
normalize-path@2.1.1:
resolution: {integrity: sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==}
engines: {node: '>=0.10.0'}
@@ -5194,32 +4984,14 @@ packages:
resolution: {integrity: sha512-9UZCFRHQdNrfTpGg8+1INIg93B6zE0aXMVFkw1WFwvO4SlZywU6aLg5Of0Ap/PgcbSw4LNxvMWXMeugwMCX0AA==}
engines: {node: '>=8'}
- normalize-url@6.1.0:
- resolution: {integrity: sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==}
- engines: {node: '>=10'}
-
- npm-package-arg@10.1.0:
- resolution: {integrity: sha512-uFyyCEmgBfZTtrKk/5xDfHp6+MdrqGotX/VoOyEEl3mBwiEE5FlBaePanazJSVMPT7vKepcjYBY2ztg9A3yPIA==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- npm-run-all2@5.0.2:
- resolution: {integrity: sha512-S2G6FWZ3pNWAAKm2PFSOtEAG/N+XO/kz3+9l6V91IY+Y3XFSt7Lp7DV92KCgEboEW0hRTu0vFaMe4zXDZYaOyA==}
- engines: {node: '>= 10'}
- hasBin: true
-
- npm-run-all@4.1.5:
- resolution: {integrity: sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==}
- engines: {node: '>= 4'}
- hasBin: true
+ npm-package-arg@12.0.1:
+ resolution: {integrity: sha512-aDxjFfPV3Liw0WOBWlyZLMBqtbgbg03rmGvHDJa2Ttv7tIz+1oB5qWec4psCDFZcZi9b5XdGkPdQiJxOPzvQRQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
npm-run-path@2.0.2:
resolution: {integrity: sha512-lJxZYlT4DW/bRUtFh1MQIWqmLwQfAxnqWG4HhEdjMlkrJYnJn0Jrr2u3mgxqaWsdiBc76TYkTG/mhrnYTuzfHw==}
engines: {node: '>=4'}
- npm-run-path@3.1.0:
- resolution: {integrity: sha512-Dbl4A/VfiVGLgQv29URL9xshU8XDY1GeLy+fsaZ1AA8JDSfjvr5P5+pzRbWqRSBxk6/DW7MIh8lTM/PaGnP2kg==}
- engines: {node: '>=8'}
-
npm-run-path@4.0.1:
resolution: {integrity: sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==}
engines: {node: '>=8'}
@@ -5229,8 +5001,8 @@ packages:
engines: {node: ^12.13.0 || ^14.15.0 || >=16.0.0}
deprecated: This package is no longer supported.
- nwsapi@2.2.10:
- resolution: {integrity: sha512-QK0sRs7MKv0tKe1+5uZIQk/C8XGza4DAnztJG8iD+TpJIORARrCxczA738awHrZoHeTjSSoHqao2teO0dC/gFQ==}
+ nwsapi@2.2.16:
+ resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==}
object-assign@4.1.1:
resolution: {integrity: sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==}
@@ -5244,8 +5016,9 @@ packages:
resolution: {integrity: sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==}
engines: {node: '>= 0.10.0'}
- object-inspect@1.13.1:
- resolution: {integrity: sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==}
+ object-inspect@1.13.3:
+ resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ engines: {node: '>= 0.4'}
object-keys@1.1.1:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
@@ -5255,14 +5028,26 @@ packages:
resolution: {integrity: sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==}
engines: {node: '>=0.10.0'}
- object.assign@4.1.5:
- resolution: {integrity: sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==}
+ object.assign@4.1.7:
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
+ engines: {node: '>= 0.4'}
+
+ object.fromentries@2.0.8:
+ resolution: {integrity: sha512-k6E21FzySsSK5a21KRADBd/NGneRegFO5pLHfdQLpRDETUNJueLXs3WCzyQ3tFRDYgbq3KHGXfTbi2bs8WQ6rQ==}
+ engines: {node: '>= 0.4'}
+
+ object.groupby@1.0.3:
+ resolution: {integrity: sha512-+Lhy3TQTuzXI5hevh8sBGqbmurHbbIjAi0Z4S63nthVLmLxfbj4T54a4CfZrXIrt9iP4mVAPYMo/v99taj3wjQ==}
engines: {node: '>= 0.4'}
object.pick@1.3.0:
resolution: {integrity: sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==}
engines: {node: '>=0.10.0'}
+ object.values@1.2.1:
+ resolution: {integrity: sha512-gXah6aZrcUxjWg2zR2MwouP2eHlCBzdV4pygudehaKXSGW4v2AsRQUK+lwwXhii6KFZcunEnmSUoYp5CXibxtA==}
+ engines: {node: '>= 0.4'}
+
on-finished@2.3.0:
resolution: {integrity: sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==}
engines: {node: '>= 0.8'}
@@ -5286,14 +5071,6 @@ packages:
resolution: {integrity: sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==}
engines: {node: '>=6'}
- open@7.4.2:
- resolution: {integrity: sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==}
- engines: {node: '>=8'}
-
- optionator@0.8.3:
- resolution: {integrity: sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==}
- engines: {node: '>= 0.8.0'}
-
optionator@0.9.4:
resolution: {integrity: sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==}
engines: {node: '>= 0.8.0'}
@@ -5306,28 +5083,17 @@ packages:
resolution: {integrity: sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==}
engines: {node: '>=10'}
- os-browserify@0.3.0:
- resolution: {integrity: sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==}
-
- os-homedir@1.0.2:
- resolution: {integrity: sha512-B5JU3cabzk8c67mRRd3ECmROafjYMXbuzlwtqdM8IbS8ktlTix8aFGb2bAGKrSRIlnfKwovGUUr72JUPyOb6kQ==}
- engines: {node: '>=0.10.0'}
-
os-locale@5.0.0:
resolution: {integrity: sha512-tqZcNEDAIZKBEPnHPlVDvKrp7NzgLi7jRmhKiUoa2NUmhl13FtkAGLUVR+ZsYvApBQdBfYm43A4tXXQ4IrYLBA==}
engines: {node: '>=10'}
- os-name@4.0.1:
- resolution: {integrity: sha512-xl9MAoU97MH1Xt5K9ERft2YfCAoaO6msy1OBA0ozxEC0x0TmIoE6K3QvgJMMZA9yKGLmHXNY/YZoDbiGDj4zYw==}
- engines: {node: '>=10'}
-
os-tmpdir@1.0.2:
resolution: {integrity: sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==}
engines: {node: '>=0.10.0'}
- osenv@0.1.5:
- resolution: {integrity: sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==}
- deprecated: This package is no longer supported.
+ own-keys@1.0.1:
+ resolution: {integrity: sha512-qFOyK5PjiWZd+QQIh+1jhdb9LpxTF0qs7Pm8o5QHYZ0M3vKqSqzsZaEB6oWlxZ+q2sJBMI/Ktgd2N5ZwQoRHfg==}
+ engines: {node: '>= 0.4'}
p-cancelable@1.1.0:
resolution: {integrity: sha512-s73XxOZ4zpt1edZYZzvhqFa6uvQc1vwUa0K0BdtIZgQMAJj9IbebH+JkgKZc9h+B05PKHLOTl4ajG1BmNrVZlw==}
@@ -5345,10 +5111,6 @@ packages:
resolution: {integrity: sha512-LICb2p9CB7FS+0eR1oqWnHhp0FljGLZCWBE9aix0Uye9W8LTQPwMTYVGWQWIw9RdQiDg4+epXQODwIYJtSJaow==}
engines: {node: '>=4'}
- p-finally@2.0.1:
- resolution: {integrity: sha512-vpm09aKwq6H9phqRQzecoDpD8TmVyGw70qmWlyq5onxY7tqyTTFVvxMykxQSQKILBSFlbXpypIw2T1Ml7+DDtw==}
- engines: {node: '>=8'}
-
p-is-promise@2.1.0:
resolution: {integrity: sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==}
engines: {node: '>=6'}
@@ -5389,14 +5151,6 @@ packages:
resolution: {integrity: sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- p-map@3.0.0:
- resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
- engines: {node: '>=8'}
-
- p-map@4.0.0:
- resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
- engines: {node: '>=10'}
-
p-try@1.0.0:
resolution: {integrity: sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==}
engines: {node: '>=4'}
@@ -5405,62 +5159,35 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- pac-proxy-agent@5.0.0:
- resolution: {integrity: sha512-CcFG3ZtnxO8McDigozwE3AqAw15zDvGH+OjXO4kzf7IkEKkQ4gxQ+3sdF50WmhQ4P/bVusXcqNE2S3XrNURwzQ==}
- engines: {node: '>= 8'}
-
- pac-resolver@5.0.1:
- resolution: {integrity: sha512-cy7u00ko2KVgBAjuhevqpPeHIkCIqPe1v24cydhWjmeuzaBfmUWFCZJ1iAh5TuVzVZoUzXIW7K8sMYOZ84uZ9Q==}
- engines: {node: '>= 8'}
-
package-json@6.5.0:
resolution: {integrity: sha512-k3bdm2n25tkyxcjSKzB5x8kfVxlMdgsbPr0GkZcwHsLpba6cBjqCt1KlcChKEvxHIcTB1FVMuwoijZ26xex5MQ==}
engines: {node: '>=8'}
- pako@1.0.11:
- resolution: {integrity: sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==}
-
- parallel-transform@1.2.0:
- resolution: {integrity: sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==}
-
parent-module@1.0.1:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
- parse-asn1@5.1.7:
- resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==}
- engines: {node: '>= 0.10'}
-
- parse-json@4.0.0:
- resolution: {integrity: sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==}
- engines: {node: '>=4'}
-
parse-json@5.2.0:
resolution: {integrity: sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==}
engines: {node: '>=8'}
+ parse-ms@1.0.1:
+ resolution: {integrity: sha512-LpH1Cf5EYuVjkBvCDBYvkUPh+iv2bk3FHflxHkpCYT0/FZ1d3N3uJaLiHr4yGuMcFUhv6eAivitTvWZI4B/chg==}
+ engines: {node: '>=0.10.0'}
+
parse-passwd@1.0.0:
resolution: {integrity: sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==}
engines: {node: '>=0.10.0'}
- parse-path@4.0.4:
- resolution: {integrity: sha512-Z2lWUis7jlmXC1jeOG9giRO2+FsuyNipeQ43HAjqAZjwSe3SEf+q/84FGPHoso3kyntbxa4c4i77t3m6fGf8cw==}
-
parse-static-imports@1.1.0:
resolution: {integrity: sha512-HlxrZcISCblEV0lzXmAHheH/8qEkKgmqkdxyHTPbSqsTUV8GzqmN1L+SSti+VbNPfbBO3bYLPHDiUs2avbAdbA==}
- parse-url@6.0.5:
- resolution: {integrity: sha512-e35AeLTSIlkw/5GFq70IN7po8fmDUjpDPY1rIK+VubRfsUvBonjQ+PBZG+vWMACnQSmNlvl524IucoDmcioMxA==}
-
- parse5-htmlparser2-tree-adapter@6.0.1:
- resolution: {integrity: sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==}
-
- parse5@5.1.1:
- resolution: {integrity: sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==}
-
parse5@6.0.1:
resolution: {integrity: sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==}
+ parse5@7.2.1:
+ resolution: {integrity: sha512-BuBYQYlv1ckiPdQi/ohiivi9Sagc9JG+Ozs0r7b/0iK3sKmrb0b9FdWdBbOdx6hBCM/F9Ir82ofnBhtZOjCRPQ==}
+
parseurl@1.3.3:
resolution: {integrity: sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==}
engines: {node: '>= 0.8'}
@@ -5469,12 +5196,6 @@ packages:
resolution: {integrity: sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==}
engines: {node: '>=0.10.0'}
- path-browserify@0.0.1:
- resolution: {integrity: sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==}
-
- path-dirname@1.0.2:
- resolution: {integrity: sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==}
-
path-exists@3.0.0:
resolution: {integrity: sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==}
engines: {node: '>=4'}
@@ -5513,62 +5234,39 @@ packages:
resolution: {integrity: sha512-QLcPegTHF11axjfojBIoDygmS2E3Lf+8+jI6wOVmNVenrKSo3mFdSGiIgdSHenczw3wPtlVMQaFVwGmM7BJdtg==}
engines: {node: '>=0.10.0'}
- path-to-regexp@0.1.7:
- resolution: {integrity: sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==}
+ path-scurry@1.11.1:
+ resolution: {integrity: sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==}
+ engines: {node: '>=16 || 14 >=14.18'}
- path-type@3.0.0:
- resolution: {integrity: sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==}
- engines: {node: '>=4'}
+ path-to-regexp@0.1.12:
+ resolution: {integrity: sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==}
path-type@4.0.0:
resolution: {integrity: sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==}
engines: {node: '>=8'}
- pbkdf2@3.1.2:
- resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
- engines: {node: '>=0.12'}
+ path-type@5.0.0:
+ resolution: {integrity: sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==}
+ engines: {node: '>=12'}
- picocolors@1.0.1:
- resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
- pidtree@0.3.1:
- resolution: {integrity: sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==}
- engines: {node: '>=0.10'}
- hasBin: true
-
- pidtree@0.5.0:
- resolution: {integrity: sha512-9nxspIM7OpZuhBxPg73Zvyq7j1QMPMPsGKTqRc2XOaFQauDvoNz9fM1Wdkjmeo7l9GXOZiRs97sPkuayl39wjA==}
- engines: {node: '>=0.10'}
- hasBin: true
-
- pify@3.0.0:
- resolution: {integrity: sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==}
- engines: {node: '>=4'}
-
- pify@4.0.1:
- resolution: {integrity: sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==}
- engines: {node: '>=6'}
-
- pinkie-promise@2.0.1:
- resolution: {integrity: sha512-0Gni6D4UcLTbv9c57DfxDGdr41XfgUjqWZu492f0cIGr16zDU06BWP/RAEvOuo7CQ0CNjHaLlM59YJJFm3NWlw==}
- engines: {node: '>=0.10.0'}
-
- pinkie@2.0.4:
- resolution: {integrity: sha512-MnUuEycAemtSaeFSjXKW/aroV7akBbY+Sv+RkyqFjgAe73F+MR0TBWKBRDkmfWq/HiFmdavfZ1G7h4SPZXaCSg==}
- engines: {node: '>=0.10.0'}
-
- pkg-dir@3.0.0:
- resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
- engines: {node: '>=6'}
+ picomatch@4.0.2:
+ resolution: {integrity: sha512-M7BAV6Rlcy5u+m6oPhAPFgJTzAioX/6B0DxyvDlo9l8+T3nLKbrczg2WLUyzd45L8RqfUMyGPzekbMvX2Ldkwg==}
+ engines: {node: '>=12'}
pkg-dir@4.2.0:
resolution: {integrity: sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==}
engines: {node: '>=8'}
+ pkg-entry-points@1.1.1:
+ resolution: {integrity: sha512-BhZa7iaPmB4b3vKIACoppyUoYn8/sFs17VJJtzrzPZvEnN2nqrgg911tdL65lA2m1ml6UI3iPeYbZQ4VXpn1mA==}
+
pkg-up@2.0.0:
resolution: {integrity: sha512-fjAPuiws93rm7mPUu21RdBnkeZNrbfCFCwfAhPWY+rR3zG0ubpe5cEReHOw5fIbfmsxEV/g2kSxGTATY3Bpnwg==}
engines: {node: '>=4'}
@@ -5589,20 +5287,23 @@ packages:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
+ postcss-media-query-parser@0.2.3:
+ resolution: {integrity: sha512-3sOlxmbKcSHMjlUXQZKQ06jOswE7oVkXPxmZdoB1r5l0q6gTFTQSHxNxOrCccElbW7dxNytifNEo8qidX2Vsig==}
+
postcss-modules-extract-imports@3.1.0:
resolution: {integrity: sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-local-by-default@4.0.5:
- resolution: {integrity: sha512-6MieY7sIfTK0hYfafw1OMEG+2bg8Q1ocHCpoWLqOKj3JXlKu4G7btkmM/B7lFubYkYWmRSPLZi5chid63ZaZYw==}
+ postcss-modules-local-by-default@4.2.0:
+ resolution: {integrity: sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
- postcss-modules-scope@3.2.0:
- resolution: {integrity: sha512-oq+g1ssrsZOsx9M96c5w8laRmvEu9C3adDSjI8oTcbfkrTE8hx/zfyobUoWIxaKPO8bt6S62kxpw5GqypEw1QQ==}
+ postcss-modules-scope@3.2.1:
+ resolution: {integrity: sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==}
engines: {node: ^10 || ^12 || >= 14}
peerDependencies:
postcss: ^8.1.0
@@ -5613,21 +5314,32 @@ packages:
peerDependencies:
postcss: ^8.1.0
- postcss-selector-parser@6.1.0:
- resolution: {integrity: sha512-UMz42UD0UY0EApS0ZL9o1XnLhSTtvvvLe5Dc2H2O56fvRZi+KulDyf5ctDhhtYJBGKStV2FL1fy6253cmLgqVQ==}
+ postcss-resolve-nested-selector@0.1.6:
+ resolution: {integrity: sha512-0sglIs9Wmkzbr8lQwEyIzlDOOC9bGmfVKcJTaxv3vMmd3uo4o4DerC3En0bnmgceeql9BfC8hRkp7cg0fjdVqw==}
+
+ postcss-safe-parser@7.0.1:
+ resolution: {integrity: sha512-0AioNCJZ2DPYz5ABT6bddIqlhgwhpHZ/l65YAYo0BCIn0xiDpsnTHz0gnoTGk0OXZW0JRs+cDwL8u/teRdz+8A==}
+ engines: {node: '>=18.0'}
+ peerDependencies:
+ postcss: ^8.4.31
+
+ postcss-scss@4.0.9:
+ resolution: {integrity: sha512-AjKOeiwAitL/MXxQW2DliT28EKukvvbEWx3LBmJIRN8KfBGZbRTxNYW0kSqi1COiTZ57nZ9NW06S6ux//N1c9A==}
+ engines: {node: '>=12.0'}
+ peerDependencies:
+ postcss: ^8.4.29
+
+ postcss-selector-parser@7.0.0:
+ resolution: {integrity: sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==}
engines: {node: '>=4'}
postcss-value-parser@4.2.0:
resolution: {integrity: sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==}
- postcss@8.4.38:
- resolution: {integrity: sha512-Wglpdk03BSfXkHoQa3b/oulrotAkwrlLDRSOb9D0bN86FdRyE9lppSp33aHNPgBa0JKCoB+drFLZkQoRRYae5A==}
+ postcss@8.5.1:
+ resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
engines: {node: ^10 || ^12 || >=14}
- prelude-ls@1.1.2:
- resolution: {integrity: sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==}
- engines: {node: '>= 0.8.0'}
-
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -5636,15 +5348,26 @@ packages:
resolution: {integrity: sha512-ravE6m9Atw9Z/jjttRUZ+clIXogdghyZAuWJ3qEzjT+jI/dL1ifAqhZeC5VHzQp1MSt1+jxKkFNemj/iO7tVUA==}
engines: {node: '>=4'}
- prettier-linter-helpers@1.0.0:
- resolution: {integrity: sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==}
- engines: {node: '>=6.0.0'}
+ prettier-plugin-ember-template-tag@2.0.4:
+ resolution: {integrity: sha512-Ude3MJyPBMr/Er5aSS9Y0dsnHWX3prpJB+Jj/BKKUT/EvG2ftnIMBsZXmRu68RJA62JJB8MdKBloYmCu2pTRNg==}
+ engines: {node: 18.* || >= 20}
+ peerDependencies:
+ prettier: '>= 3.0.0'
prettier@2.8.8:
resolution: {integrity: sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==}
engines: {node: '>=10.13.0'}
hasBin: true
+ prettier@3.4.2:
+ resolution: {integrity: sha512-e9MewbtFo+Fevyuxn/4rrcDAaq0IYxPGLvObpQjiZBMAzB9IGmzlnG9RZy3FFas+eBMu2vA0CszMeduow5dIuQ==}
+ engines: {node: '>=14'}
+ hasBin: true
+
+ pretty-ms@3.2.0:
+ resolution: {integrity: sha512-ZypexbfVUGTFxb0v+m1bUyy92DHe5SyYlnyY0msyms5zd3RwyvNgyxZZsXXgoyzlxjx5MiqtXUdhUfvQbe0A2Q==}
+ engines: {node: '>=4'}
+
printf@0.6.1:
resolution: {integrity: sha512-is0ctgGdPJ5951KulgfzvHGwJtZ5ck8l042vRkV6jrkpBzTmb/lueTqguWHy2JfVA+RY6gFVlaZgUS0j7S/dsw==}
engines: {node: '>= 0.9.0'}
@@ -5653,31 +5376,9 @@ packages:
resolution: {integrity: sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==}
engines: {node: '>= 0.6'}
- proc-log@3.0.0:
- resolution: {integrity: sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
-
- process-nextick-args@2.0.1:
- resolution: {integrity: sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==}
-
- process-relative-require@1.0.0:
- resolution: {integrity: sha512-r8G5WJPozMJAiv8sDdVWKgJ4In/zBXqwJdMCGAXQt2Kd3HdbAuJVzWYM4JW150hWoaI9DjhtbjcsCCHIMxm8RA==}
-
- process@0.11.10:
- resolution: {integrity: sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==}
- engines: {node: '>= 0.6.0'}
-
- progress@2.0.3:
- resolution: {integrity: sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==}
- engines: {node: '>=0.4.0'}
-
- promise-inflight@1.0.1:
- resolution: {integrity: sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==}
- peerDependencies:
- bluebird: '*'
- peerDependenciesMeta:
- bluebird:
- optional: true
+ proc-log@5.0.0:
+ resolution: {integrity: sha512-Azwzvl90HaF0aCz1JrDdXQykFakSSNPaPoiZ9fm5qJIMHioDZEi7OAdRwSm6rSoPtY3Qutnm3L7ogmg3dc+wbQ==}
+ engines: {node: ^18.17.0 || >=20.5.0}
promise-map-series@0.2.3:
resolution: {integrity: sha512-wx9Chrutvqu1N/NHzTayZjE1BgIwt6SJykQoCOic4IZ9yUDjKyVYrpLa/4YCNsV61eRENfs29hrEquVuB13Zlw==}
@@ -5686,14 +5387,6 @@ packages:
resolution: {integrity: sha512-3npG2NGhTc8BWBolLLf8l/92OxMGaRLbqvIh9wjCHhDXNvk4zsxaTaCpiCunW09qWPrN2zeNSNwRLVBrQQtutA==}
engines: {node: 10.* || >= 12.*}
- promise-retry@2.0.1:
- resolution: {integrity: sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==}
- engines: {node: '>=10'}
-
- promise.allsettled@1.0.5:
- resolution: {integrity: sha512-tVDqeZPoBC0SlzJHzWGZ2NKAguVq2oiYj7gbggbiTvH2itHohijTp7njOUA0aQ/nl+0lr/r6egmhoYu63UZ/pQ==}
- engines: {node: '>= 0.4'}
-
promise.hash.helper@1.0.8:
resolution: {integrity: sha512-KYcnXctWUWyVD3W3Ye0ZDuA1N8Szrh85cVCxpG6xYrOk/0CttRtYCmU30nWsUch0NuExQQ63QXvzRE6FLimZmg==}
engines: {node: 10.* || >= 12.*}
@@ -5701,92 +5394,45 @@ packages:
proper-lockfile@4.1.2:
resolution: {integrity: sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==}
- protocols@1.4.8:
- resolution: {integrity: sha512-IgjKyaUSjsROSO8/D49Ab7hP8mJgTYcqApOqdPhLoPxAplXmkp+zRvsrSQjFn5by0rhm4VH0GAUELIPpx7B1yg==}
-
- protocols@2.0.1:
- resolution: {integrity: sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==}
-
proxy-addr@2.0.7:
resolution: {integrity: sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==}
engines: {node: '>= 0.10'}
- proxy-agent@5.0.0:
- resolution: {integrity: sha512-gkH7BkvLVkSfX9Dk27W6TyNOWWZWRilRfk1XxGNWOYJ2TuedAv1yFpCaU9QSBmBe716XOTNpYNOzhysyw8xn7g==}
- engines: {node: '>= 8'}
-
- proxy-from-env@1.1.0:
- resolution: {integrity: sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==}
-
- prr@1.0.1:
- resolution: {integrity: sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==}
-
- psl@1.9.0:
- resolution: {integrity: sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag==}
-
- public-encrypt@4.0.3:
- resolution: {integrity: sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==}
-
- pump@2.0.1:
- resolution: {integrity: sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==}
-
- pump@3.0.0:
- resolution: {integrity: sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==}
-
- pumpify@1.5.1:
- resolution: {integrity: sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==}
-
- punycode@1.4.1:
- resolution: {integrity: sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==}
+ pump@3.0.2:
+ resolution: {integrity: sha512-tUPXtzlGM8FE3P0ZL6DVs/3P58k9nk8/jZeQCurTJylQA8qFYzHFfhBJkuqyE0FifOsQ0uKWekiZ5g8wtr28cw==}
punycode@2.3.1:
resolution: {integrity: sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==}
engines: {node: '>=6'}
- pupa@2.1.1:
- resolution: {integrity: sha512-l1jNAspIBSFqbT+y+5FosojNpVpF94nlI+wDUpqP9enwOTfHx9f0gh5nB96vl+6yTpsJsypeNrwfzPrKuHB41A==}
- engines: {node: '>=8'}
-
- qs@6.11.0:
- resolution: {integrity: sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==}
+ qs@6.13.0:
+ resolution: {integrity: sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==}
engines: {node: '>=0.6'}
- qs@6.12.1:
- resolution: {integrity: sha512-zWmv4RSuB9r2mYQw3zxQuHWeU+42aKi1wWig/j4ele4ygELZ7PEO6MM7rim9oAQH2A5MWfsAVf/jPvTPgCbvUQ==}
+ qs@6.13.1:
+ resolution: {integrity: sha512-EJPeIn0CYrGu+hli1xilKAPXODtJ12T0sP63Ijx2/khC2JtuaN3JyNIpvmnkmaEtha9ocbG4A4cMcr+TvqvwQg==}
engines: {node: '>=0.6'}
- query-string@6.14.1:
- resolution: {integrity: sha512-XDxAeVmpfu1/6IjyT/gXHOl+S0vQ9owggJ30hhWKdHAsNPOcasn5o9BW0eejZqL2e4vMjhAxoW3jVHcD6mbcYw==}
- engines: {node: '>=6'}
-
- querystring-es3@0.2.1:
- resolution: {integrity: sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==}
- engines: {node: '>=0.4.x'}
-
- querystringify@2.2.0:
- resolution: {integrity: sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ==}
-
queue-microtask@1.2.3:
resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==}
quick-temp@0.1.8:
resolution: {integrity: sha512-YsmIFfD9j2zaFwJkzI6eMG7y0lQP7YeWzgtFgNl38pGWZBSXJooZbOWwkcRot7Vt0Fg9L23pX0tqWU3VvLDsiA==}
- qunit-dom@2.0.0:
- resolution: {integrity: sha512-mElzLN99wYPOGekahqRA+mq7NcThXY9c+/tDkgJmT7W5LeZAFNyITr2rFKNnCbWLIhuLdFw88kCBMrJSfyBYpA==}
- engines: {node: 12.* || 14.* || >= 16.*}
+ qunit-dom@3.4.0:
+ resolution: {integrity: sha512-N5PYbJ20RD3JZN4whINdl7dDfxScUy7eNuO8IwUtBWC7d6SH+BqtBqVZdRn9evxLQVzuask6OGvMy4gdpiCceg==}
+
+ qunit-theme-ember@1.0.0:
+ resolution: {integrity: sha512-vdMVVo6ecdCkWttMTKeyq1ZTLGHcA6zdze2zhguNuc3ritlJMhOXY5RDseqazOwqZVfCg3rtlmL3fMUyIzUyFQ==}
- qunit@2.20.1:
- resolution: {integrity: sha512-scZfyhX8mmP3u/CN2y3CutQb+ppalbpqmm7g/X62M2yOt8ofzsxrRaC+MPmYm/tXxpzs9HGrVeCxZwLoP0tuAA==}
+ qunit@2.24.0:
+ resolution: {integrity: sha512-i+rJThg6YxrIAywbcS0Qr/KEO6bBH92LOeuTNC0dfFR2FbdtonVm6LQHDGwz/BB1fOuFSaE4+FEmNbxnxl+OFg==}
engines: {node: '>=10'}
hasBin: true
randombytes@2.1.0:
resolution: {integrity: sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==}
- randomfill@1.0.4:
- resolution: {integrity: sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==}
-
range-parser@1.2.1:
resolution: {integrity: sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==}
engines: {node: '>= 0.6'}
@@ -5803,65 +5449,41 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- read-pkg@3.0.0:
- resolution: {integrity: sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==}
- engines: {node: '>=4'}
-
- read-pkg@5.2.0:
- resolution: {integrity: sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==}
- engines: {node: '>=8'}
-
readable-stream@1.0.34:
resolution: {integrity: sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==}
- readable-stream@1.1.14:
- resolution: {integrity: sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==}
-
- readable-stream@2.3.8:
- resolution: {integrity: sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==}
-
readable-stream@3.6.2:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
- readdirp@2.2.1:
- resolution: {integrity: sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==}
- engines: {node: '>=0.10'}
-
- readdirp@3.6.0:
- resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
- engines: {node: '>=8.10.0'}
+ readdirp@4.1.1:
+ resolution: {integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==}
+ engines: {node: '>= 14.18.0'}
recast@0.18.10:
resolution: {integrity: sha512-XNvYvkfdAN9QewbrxeTOjgINkdY/odTgTS56ZNEWL9Ml0weT4T3sFtvnTuF+Gxyu46ANcRm1ntrF6F5LAJPAaQ==}
engines: {node: '>= 4'}
- rechoir@0.6.2:
- resolution: {integrity: sha512-HFM8rkZ+i3zrV+4LQjwQ0W+ez98pApMGM3HUrN04j3CqzPOzl9nmP15Y8YXNm8QHGv/eacOVEjqhmWpkRV0NAw==}
- engines: {node: '>= 0.10'}
-
redeyed@1.0.1:
resolution: {integrity: sha512-8eEWsNCkV2rvwKLS1Cvp5agNjMhwRe2um+y32B2+3LqOzg4C9BBPs6vzAfV16Ivb8B9HPNKIqd8OrdBws8kNlQ==}
- regenerate-unicode-properties@10.1.1:
- resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
+ reflect.getprototypeof@1.0.10:
+ resolution: {integrity: sha512-00o4I+DVrefhv+nX0ulyi3biSHCPDe+yLv5o/p6d/UVlirijB8E16FtfwSAi4g3tcqrQ4lRAqQSoFEZJehYEcw==}
+ engines: {node: '>= 0.4'}
+
+ regenerate-unicode-properties@10.2.0:
+ resolution: {integrity: sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==}
engines: {node: '>=4'}
regenerate@1.4.2:
resolution: {integrity: sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==}
- regenerator-runtime@0.11.1:
- resolution: {integrity: sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==}
-
regenerator-runtime@0.13.11:
resolution: {integrity: sha512-kY1AZVr2Ra+t+piVaJ4gxaFaReZVH40AKNo7UCX6W+dEwBo/2oZJzqfuN1qLq1oL45o56cPaTXELwrTh8Fpggg==}
regenerator-runtime@0.14.1:
resolution: {integrity: sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==}
- regenerator-transform@0.10.1:
- resolution: {integrity: sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q==}
-
regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
@@ -5869,19 +5491,12 @@ packages:
resolution: {integrity: sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==}
engines: {node: '>=0.10.0'}
- regexp.prototype.flags@1.5.2:
- resolution: {integrity: sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==}
+ regexp.prototype.flags@1.5.4:
+ resolution: {integrity: sha512-dYqgNSZbDwkaJ2ceRd9ojCGjBq+mOm9LmtXnAnEGyHhN/5R7iDW2TRw3h+o/jCFxus3P2LfWIIiwowAjANm7IA==}
engines: {node: '>= 0.4'}
- regexpp@3.2.0:
- resolution: {integrity: sha512-pq2bWo9mVD43nbts2wGv17XLiNLya+GklZ8kaDLV2Z08gDCsGpnKn9BFMepvWuHCbyVvY7J5o5+BVvoQbmlJLg==}
- engines: {node: '>=8'}
-
- regexpu-core@2.0.0:
- resolution: {integrity: sha512-tJ9+S4oKjxY8IZ9jmjnp/mtytu1u3iyIQAfmI51IKWH6bFf7XR1ybtaO6j7INhZKXOTYADk7V5qxaqLkmNxiZQ==}
-
- regexpu-core@5.3.2:
- resolution: {integrity: sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==}
+ regexpu-core@6.2.0:
+ resolution: {integrity: sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==}
engines: {node: '>=4'}
registry-auth-token@4.2.2:
@@ -5892,27 +5507,11 @@ packages:
resolution: {integrity: sha512-8acYXXTI0AkQv6RAOjE3vOaIXZkT9wo4LOFbBKYQEEnnMNBpKqdUrI6S4NT0KPIo/WVvJ5tE/X5LF/TQUf0ekw==}
engines: {node: '>=8'}
- regjsgen@0.2.0:
- resolution: {integrity: sha512-x+Y3yA24uF68m5GA+tBjbGYo64xXVJpbToBaWCoSNSc1hdk6dfctaRWrNFTVJZIIhL5GxW8zwjoixbnifnK59g==}
+ regjsgen@0.8.0:
+ resolution: {integrity: sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==}
- regjsparser@0.1.5:
- resolution: {integrity: sha512-jlQ9gYLfk2p3V5Ag5fYhA7fv7OHzd1KUH0PRP46xc3TgwjwgROIW572AfYg/X9kaNq/LJnu6oJcFRXlIrGoTRw==}
- hasBin: true
-
- regjsparser@0.9.1:
- resolution: {integrity: sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==}
- hasBin: true
-
- release-it-lerna-changelog@4.0.1:
- resolution: {integrity: sha512-PBE72pVfWLyUp3JN/qyAglhKIiDOPO2zdupT8JQrJmW+wi3ZERtr0IFSGNmczFcMnMnTFnzpuJGpTPAoqQToVg==}
- engines: {node: ^12.20.0 || ^14.13.1 || >= 16}
- deprecated: This package has been renamed to @release-it-plugins/lerna-changelog
- peerDependencies:
- release-it: ^14.0.0
-
- release-it@14.14.3:
- resolution: {integrity: sha512-CU3ySDOzkcdpaJmzKG7QXhimWVOkh9dVqVMr5tBWXhAd5oWvUdH8Lo4Tq37eYOhcVLxoukRR2vrY8mt7wSULSw==}
- engines: {node: '>=10'}
+ regjsparser@0.12.0:
+ resolution: {integrity: sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==}
hasBin: true
remote-git-tags@3.0.0:
@@ -5933,10 +5532,6 @@ packages:
resolution: {integrity: sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==}
engines: {node: '>=0.10'}
- repeating@2.0.1:
- resolution: {integrity: sha512-ZqtSMuVybkISo2OWvqvm7iHSWngvdaW3IpsT9/uP8v4gMi591LY6h35wdOfvQdWCKFWZWm2Y1Opp4kV7vQKT6A==}
- engines: {node: '>=0.10.0'}
-
require-directory@2.1.1:
resolution: {integrity: sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==}
engines: {node: '>=0.10.0'}
@@ -5945,6 +5540,9 @@ packages:
resolution: {integrity: sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==}
engines: {node: '>=0.10.0'}
+ require-relative@0.8.7:
+ resolution: {integrity: sha512-AKGr4qvHiryxRb19m3PsLRGuKVAbJLUD7E6eOaHkfKhwc+vSgVOCY5xNvm9EkolBKTOf0GrQAZKLimOCz81Khg==}
+
requireindex@1.2.0:
resolution: {integrity: sha512-L9jEkOi3ASd9PYit2cwRfyppc9NoABujTP8/5gFcbERmo5jUoAKovIC3fsF17pkTnGsrByysqX+Kxd2OTNI1ww==}
engines: {node: '>=0.10.5'}
@@ -5989,12 +5587,16 @@ packages:
resolution: {integrity: sha512-i1xevIst/Qa+nA9olDxLWnLk8YZbi8R/7JPbCMcgyWaFR6bKWaexgJgEB5oc2PKMjYdrHynyz0NY+if+H98t1w==}
engines: {node: '>= 0.8'}
+ resolve-pkg-maps@1.0.0:
+ resolution: {integrity: sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==}
+
resolve-url@0.2.1:
resolution: {integrity: sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==}
deprecated: https://github.com/lydell/resolve-url#deprecated
- resolve@1.22.8:
- resolution: {integrity: sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==}
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
hasBin: true
responselike@1.0.2:
@@ -6016,10 +5618,6 @@ packages:
resolution: {integrity: sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==}
engines: {node: '>= 4'}
- retry@0.13.1:
- resolution: {integrity: sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==}
- engines: {node: '>= 4'}
-
reusify@1.0.4:
resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
@@ -6039,8 +5637,39 @@ packages:
deprecated: Rimraf versions prior to v4 are no longer supported
hasBin: true
- ripemd160@2.0.2:
- resolution: {integrity: sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==}
+ rollup-plugin-copy-assets@2.0.3:
+ resolution: {integrity: sha512-ETShhQGb9SoiwcNrvb3BhUNSGR89Jao0+XxxfzzLW1YsUzx8+rMO4z9oqWWmo6OHUmfNQRvqRj0cAyPkS9lN9w==}
+ peerDependencies:
+ rollup: '>=1.1.2'
+
+ rollup-plugin-copy@3.5.0:
+ resolution: {integrity: sha512-wI8D5dvYovRMx/YYKtUNt3Yxaw4ORC9xo6Gt9t22kveWz1enG9QrhVlagzwrxSC455xD1dHMKhIJkbsQ7d48BA==}
+ engines: {node: '>=8.3'}
+
+ rollup-pluginutils@2.8.2:
+ resolution: {integrity: sha512-EEp9NhnUkwY8aif6bxgovPHMoMoNr2FulJziTndpt5H9RdwC47GSGuII9XxpSdzVGM0GWrNPHV6ie1LTNJPaLQ==}
+
+ rollup@0.57.1:
+ resolution: {integrity: sha512-I18GBqP0qJoJC1K1osYjreqA8VAKovxuI3I81RSk0Dmr4TgloI0tAULjZaox8OsJ+n7XRrhH6i0G2By/pj1LCA==}
+ hasBin: true
+
+ rollup@4.31.0:
+ resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==}
+ engines: {node: '>=18.0.0', npm: '>=8.0.0'}
+ hasBin: true
+
+ route-recognizer@0.3.4:
+ resolution: {integrity: sha512-2+MhsfPhvauN1O8KaXpXAOfR/fwe8dnUXVM+xw7yt40lJRfPVQxV6yryZm0cgRvAj5fMF/mdRZbL2ptwbs5i2g==}
+
+ router_js@8.0.6:
+ resolution: {integrity: sha512-AjGxRDIpTGoAG8admFmvP/cxn1AlwwuosCclMU4R5oGHGt7ER0XtB3l9O04ToBDdPe4ivM/YcLopgBEpJssJ/Q==}
+ engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ peerDependencies:
+ route-recognizer: ^0.3.4
+ rsvp: ^4.8.5
+
+ rrweb-cssom@0.7.1:
+ resolution: {integrity: sha512-TrEMa7JGdVm0UThDJSx7ddw5nVm3UJS9o9CCIZ72B1vSyEZoziDqBYP3XIoi/12lKrJR8rE3jeFHMok2F/Mnsg==}
rsvp@3.2.1:
resolution: {integrity: sha512-Rf4YVNYpKjZ6ASAmibcwTNciQ5Co5Ztq6iZPEykHpkoflnD/K5ryE/rHehFsTm4NJj8nKDhbi3eKBWGogmNnkg==}
@@ -6057,12 +5686,13 @@ packages:
resolution: {integrity: sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==}
engines: {node: '>=0.12.0'}
+ run-async@3.0.0:
+ resolution: {integrity: sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==}
+ engines: {node: '>=0.12.0'}
+
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- run-queue@1.0.3:
- resolution: {integrity: sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==}
-
rxjs@6.6.7:
resolution: {integrity: sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==}
engines: {npm: '>=2.0.0'}
@@ -6070,12 +5700,8 @@ packages:
rxjs@7.8.1:
resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
- sade@1.8.1:
- resolution: {integrity: sha512-xal3CZX1Xlo/k4ApwCFrHVACi9fBqJ7V+mwhBsuf/1IOKbBy098Fex+Wa/5QMubw09pSZ/u8EY8PWgevJsXp1A==}
- engines: {node: '>=6'}
-
- safe-array-concat@1.1.2:
- resolution: {integrity: sha512-vj6RsCsWBCf19jIeHEfkRMw8DPiBb+DMXklQ/1SGDHOMlHdPUkZXFQ2YdplS23zESTijAcurb1aSgJA3AgMu1Q==}
+ safe-array-concat@1.1.3:
+ resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
engines: {node: '>=0.4'}
safe-buffer@5.1.2:
@@ -6087,15 +5713,19 @@ packages:
safe-json-parse@1.0.1:
resolution: {integrity: sha512-o0JmTu17WGUaUOHa1l0FPGXKBfijbxK6qoHzlkihsDXxzBHvJcA7zgviKR92Xs841rX9pK16unfphLq0/KqX7A==}
- safe-regex-test@1.0.3:
- resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
+ safe-push-apply@1.0.0:
+ resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
+ engines: {node: '>= 0.4'}
+
+ safe-regex-test@1.1.0:
+ resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
engines: {node: '>= 0.4'}
safe-regex@1.1.0:
resolution: {integrity: sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==}
- safe-stable-stringify@2.4.3:
- resolution: {integrity: sha512-e2bDA2WJT0wxseVd4lsDP4+3ONX6HpMXQa1ZhFQ7SU+GjvORCmShbCMltrtIDfkYhVHrOcPtj+KhmDBdPdZD1g==}
+ safe-stable-stringify@2.5.0:
+ resolution: {integrity: sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==}
engines: {node: '>=10'}
safer-buffer@2.1.2:
@@ -6112,13 +5742,14 @@ packages:
engines: {node: 10.* || >= 12.*}
hasBin: true
- saxes@5.0.1:
- resolution: {integrity: sha512-5LBh1Tls8c9xgGjw3QrMwETmTMVk0oFgvrFSvWx62llR2hcEInrKNZ2GZCCuuy2lvWrdl5jhbpeqc5hRYKFOcw==}
- engines: {node: '>=10'}
+ sass@1.83.4:
+ resolution: {integrity: sha512-B1bozCeNQiOgDcLd33e2Cs2U60wZwjUUXzh900ZyQF5qUasvMdDZYbQ566LJu7cqR+sAHlAfO6RMkaID5s6qpA==}
+ engines: {node: '>=14.0.0'}
+ hasBin: true
- schema-utils@1.0.0:
- resolution: {integrity: sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==}
- engines: {node: '>= 4'}
+ saxes@6.0.0:
+ resolution: {integrity: sha512-xAg7SOnEhrm5zI3puOOKyy1OMcMlIJZYNJY7xLBwSze0UjhPLnWfj2GF2EpT0jmzaJKIWKHLsaSSajf35bcYnA==}
+ engines: {node: '>=v12.22.7'}
schema-utils@2.7.1:
resolution: {integrity: sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==}
@@ -6128,13 +5759,9 @@ packages:
resolution: {integrity: sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==}
engines: {node: '>= 10.13.0'}
- schema-utils@4.2.0:
- resolution: {integrity: sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==}
- engines: {node: '>= 12.13.0'}
-
- semver-diff@3.1.1:
- resolution: {integrity: sha512-GX0Ix/CJcHyB8c4ykpHGIAvLyOwOobtM/8d+TQkAd81/bEjgPHrfba41Vpesr7jX/t8Uh+R3EX9eAS5be+jQYg==}
- engines: {node: '>=8'}
+ schema-utils@4.3.0:
+ resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
+ engines: {node: '>= 10.13.0'}
semver@5.7.2:
resolution: {integrity: sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==}
@@ -6144,28 +5771,20 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.3.5:
- resolution: {integrity: sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==}
- engines: {node: '>=10'}
- hasBin: true
-
- semver@7.6.2:
- resolution: {integrity: sha512-FNAIBWCx9qcRhoHcgcJ0gvU7SN1lYU2ZXuSfl04bSC5OpvDHFyJCjdNHomPXxjQlCBU67YW64PzY7/VIEH7F2w==}
+ semver@7.6.3:
+ resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
engines: {node: '>=10'}
hasBin: true
- send@0.18.0:
- resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
+ send@0.19.0:
+ resolution: {integrity: sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==}
engines: {node: '>= 0.8.0'}
- serialize-javascript@4.0.0:
- resolution: {integrity: sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==}
-
serialize-javascript@6.0.2:
resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
- serve-static@1.15.0:
- resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
+ serve-static@1.16.2:
+ resolution: {integrity: sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==}
engines: {node: '>= 0.8.0'}
set-blocking@2.0.0:
@@ -6179,23 +5798,20 @@ packages:
resolution: {integrity: sha512-7PGFlmtwsEADb0WYyvCMa1t+yke6daIG4Wirafur5kcf+MhUnPms1UeR0CKQdTZD81yESwMHbtn+TR+dMviakQ==}
engines: {node: '>= 0.4'}
+ set-proto@1.0.0:
+ resolution: {integrity: sha512-RJRdvCo6IAnPdsvP/7m6bsQqNnn1FCBX5ZNtFL98MmFF/4xAIJTIg1YbHW5DC2W5SKZanrC6i4HsJqlajw/dZw==}
+ engines: {node: '>= 0.4'}
+
set-value@2.0.1:
resolution: {integrity: sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==}
engines: {node: '>=0.10.0'}
- setimmediate@1.0.5:
- resolution: {integrity: sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==}
-
setprototypeof@1.1.0:
resolution: {integrity: sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==}
setprototypeof@1.2.0:
resolution: {integrity: sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==}
- sha.js@2.4.11:
- resolution: {integrity: sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==}
- hasBin: true
-
shebang-command@1.2.0:
resolution: {integrity: sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==}
engines: {node: '>=0.10.0'}
@@ -6212,50 +5828,54 @@ packages:
resolution: {integrity: sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==}
engines: {node: '>=8'}
- shell-quote@1.8.1:
- resolution: {integrity: sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==}
-
- shelljs@0.8.5:
- resolution: {integrity: sha512-TiwcRcrkhHvbrZbnRcFYMLl30Dfov3HKqzp5tO5b4pt6G/SezKcYhmDg15zXVBswHmctSAQKznqNW2LO5tTDow==}
- engines: {node: '>=4'}
- hasBin: true
+ shell-quote@1.8.2:
+ resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
+ engines: {node: '>= 0.4'}
shellwords@0.1.1:
resolution: {integrity: sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==}
- side-channel@1.0.6:
- resolution: {integrity: sha512-fDW/EZ6Q9RiO8eFG8Hj+7u/oW+XrPTIChwCOM2+th2A6OblDtYYIpve9m+KvI9Z4C9qSEXlaGR6bTEYHReuglA==}
+ side-channel-list@1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
+
+ side-channel@1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
engines: {node: '>= 0.4'}
signal-exit@3.0.7:
resolution: {integrity: sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==}
+ signal-exit@4.1.0:
+ resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
+ engines: {node: '>=14'}
+
silent-error@1.1.1:
resolution: {integrity: sha512-n4iEKyNcg4v6/jpb3c0/iyH2G1nzUNl7Gpqtn/mHIJK9S/q/7MCfoO4rwVOoO59qPFIc0hVHvMbiOJ0NdtxKKw==}
simple-html-tokenizer@0.5.11:
resolution: {integrity: sha512-C2WEK/Z3HoSFbYq8tI7ni3eOo/NneSPRoPpcM7WdLjFOArFuyXEjAoCdOC3DgMfRyziZQ1hCNR4mrNdWEvD0og==}
- slash@1.0.0:
- resolution: {integrity: sha512-3TYDR7xWt4dIqV2JauJr+EJeW356RXijHeUlO+8djJ+uBXPn8/2dpzBc8yQhh583sVvc9CvFAeQVgijsH+PNNg==}
- engines: {node: '>=0.10.0'}
-
slash@3.0.0:
resolution: {integrity: sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==}
engines: {node: '>=8'}
- slash@4.0.0:
- resolution: {integrity: sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==}
- engines: {node: '>=12'}
+ slash@5.1.0:
+ resolution: {integrity: sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==}
+ engines: {node: '>=14.16'}
slice-ansi@4.0.0:
resolution: {integrity: sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==}
engines: {node: '>=10'}
- smart-buffer@4.2.0:
- resolution: {integrity: sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==}
- engines: {node: '>= 6.0.0', npm: '>= 3.0.0'}
-
snake-case@3.0.4:
resolution: {integrity: sha512-LAOh4z89bGQvl9pFfNF8V146i7o7/CqFPbqzYgP+yYzDIDeS9HaNFtXABamRW+AQzEVODcvE79ljJ+8a9YSdMg==}
@@ -6271,29 +5891,17 @@ packages:
resolution: {integrity: sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==}
engines: {node: '>=0.10.0'}
- socket.io-adapter@2.5.4:
- resolution: {integrity: sha512-wDNHGXGewWAjQPt3pyeYBtpWSq9cLE5UW1ZUPL/2eGK9jtse/FpXib7epSTsz0Q0m+6sg6Y4KtcFTlah1bdOVg==}
+ socket.io-adapter@2.5.5:
+ resolution: {integrity: sha512-eLDQas5dzPgOWCk9GuuJC2lBqItuhKI4uxGgo9aIV7MYbk2h9Q6uULEh8WBzThoI7l+qU9Ast9fVUmkqPP9wYg==}
socket.io-parser@4.2.4:
resolution: {integrity: sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==}
engines: {node: '>=10.0.0'}
- socket.io@4.7.5:
- resolution: {integrity: sha512-DmeAkF6cwM9jSfmp6Dr/5/mfMwb5Z5qRrSXLpo3Fq5SqyU8CMF15jIN4ZhfSwu35ksM1qmHZDQ/DK5XTccSTvA==}
+ socket.io@4.8.1:
+ resolution: {integrity: sha512-oZ7iUCxph8WYRHHcjBEc9unw3adt5CmSNlppj/5Q4k2RIrhl8Z5yY2Xr4j9zj0+wzVZ0bxmYoGSzKJnRl6A4yg==}
engines: {node: '>=10.2.0'}
- socks-proxy-agent@5.0.1:
- resolution: {integrity: sha512-vZdmnjb9a2Tz6WEQVIurybSwElwPxMZaIc7PzqbJTrezcKNznv6giT7J7tZDZ1BojVaa1jvO/UiUdhDVB0ACoQ==}
- engines: {node: '>= 6'}
-
- socks-proxy-agent@6.2.1:
- resolution: {integrity: sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==}
- engines: {node: '>= 10'}
-
- socks@2.8.3:
- resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
- engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
-
sort-object-keys@1.1.3:
resolution: {integrity: sha512-855pvK+VkU7PaKYPc+Jjnmt4EzejQHyhhF33q31qG8x7maDzkeFhAAThdCYay11CISO+qAMwjOBP+fPZe0IPyg==}
@@ -6301,20 +5909,14 @@ packages:
resolution: {integrity: sha512-FYsjYn2dHTRb41wqnv+uEqCUvBpK3jZcTp9rbz2qDTmel7Pmdtf+i2rLaaPMRZeSVM60V3Se31GyWFpmKs4Q5Q==}
hasBin: true
- source-list-map@2.0.1:
- resolution: {integrity: sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==}
-
- source-map-js@1.2.0:
- resolution: {integrity: sha512-itJW8lvSA0TXEphiRoawsCksnlf8SyvmFzIhltqAHluXd88pkCd+cXJVHTDwdCr0IzwptSm035IHQktUu1QUMg==}
+ source-map-js@1.2.1:
+ resolution: {integrity: sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==}
engines: {node: '>=0.10.0'}
source-map-resolve@0.5.3:
resolution: {integrity: sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==}
deprecated: See https://github.com/lydell/source-map-resolve#deprecated
- source-map-support@0.4.18:
- resolution: {integrity: sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==}
-
source-map-support@0.5.21:
resolution: {integrity: sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==}
@@ -6326,10 +5928,6 @@ packages:
resolution: {integrity: sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==}
deprecated: See https://github.com/lydell/source-map-url#deprecated
- source-map@0.1.43:
- resolution: {integrity: sha512-VtCvB9SIQhk3aF6h+N85EaqIaBFIAfZ9Cu+NJHHVvc8BbEcnvDcFw6sqQ2dQrT6SlOrZq3tIvyD9+EGq/lJryQ==}
- engines: {node: '>=0.8.0'}
-
source-map@0.4.4:
resolution: {integrity: sha512-Y8nIfcb1s/7DcobUz1yOO1GSp7gyL+D9zLHDehT7iRESqGSxjJ448Sg7rvfgsRJCnKLdSl11uGf0s9X80cH0/A==}
engines: {node: '>=0.8.0'}
@@ -6342,37 +5940,13 @@ packages:
resolution: {integrity: sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==}
engines: {node: '>=0.10.0'}
- source-map@0.7.4:
- resolution: {integrity: sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==}
- engines: {node: '>= 8'}
-
sourcemap-codec@1.4.8:
resolution: {integrity: sha512-9NykojV5Uih4lgo5So5dtw+f0JgJX30KCNI8gwhz2J9A15wD0Ml6tjHKwf6fTSa6fAdVBdZeNOs9eJ71qCk8vA==}
deprecated: Please use @jridgewell/sourcemap-codec instead
- sourcemap-validator@1.1.1:
- resolution: {integrity: sha512-pq6y03Vs6HUaKo9bE0aLoksAcpeOo9HZd7I8pI6O480W/zxNZ9U32GfzgtPP0Pgc/K1JHna569nAbOk3X8/Qtw==}
- engines: {node: ^0.10 || ^4.5 || 6.* || >= 7.*}
-
spawn-args@0.2.0:
resolution: {integrity: sha512-73BoniQDcRWgnLAf/suKH6V5H54gd1KLzwYN9FB6J/evqTV33htH9xwV/4BHek+++jzxpVlZQKKZkqstPQPmQg==}
- spdx-correct@3.2.0:
- resolution: {integrity: sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==}
-
- spdx-exceptions@2.5.0:
- resolution: {integrity: sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==}
-
- spdx-expression-parse@3.0.1:
- resolution: {integrity: sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==}
-
- spdx-license-ids@3.0.18:
- resolution: {integrity: sha512-xxRs31BqRYHwiMzudOrpSiHtZ8i/GeionCBDSilhYRj+9gIcI8wCZTlXZKu9vZIVqViP3dcp9qE5G6AlIaD+TQ==}
-
- split-on-first@1.1.0:
- resolution: {integrity: sha512-43ZssAJaMusuKWL8sKUBQXHWOpq8d6CfN/u1p4gUzfJkM05C8rxTmYrkIPTXapZpORA6LkkzcUulJ8FqA7Uudw==}
- engines: {node: '>=6'}
-
split-string@3.1.0:
resolution: {integrity: sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==}
engines: {node: '>=0.10.0'}
@@ -6387,13 +5961,6 @@ packages:
resolution: {integrity: sha512-DQIMWCAr/M7phwo+d3bEfXwSBEwuaJL+SJx9cuqt1Ty7K96ZFoHpYnSbhrQZEr0+0/GtmpKECP8X/R4RyeTAfw==}
engines: {node: '>= 0.10.4'}
- ssri@6.0.2:
- resolution: {integrity: sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==}
-
- ssri@8.0.1:
- resolution: {integrity: sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==}
- engines: {node: '>= 8'}
-
stagehand@1.0.1:
resolution: {integrity: sha512-GqXBq2SPWv9hTXDFKS8WrKK1aISB0aKGHZzH+uD4ShAgs+Fz20ZfoerLOm8U+f62iRWLrw6nimOY/uYuTcVhvg==}
engines: {node: 6.* || 8.* || >= 10.*}
@@ -6410,26 +5977,6 @@ packages:
resolution: {integrity: sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==}
engines: {node: '>= 0.8'}
- stop-iteration-iterator@1.0.0:
- resolution: {integrity: sha512-iCGQj+0l0HOdZ2AEeBADlsRC+vsnDsZsbdSiH1yNSjcfKM7fdpCMfqAL/dwF5BLiw/XhRft/Wax6zQbhq2BcjQ==}
- engines: {node: '>= 0.4'}
-
- stream-browserify@2.0.2:
- resolution: {integrity: sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==}
-
- stream-each@1.2.3:
- resolution: {integrity: sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==}
-
- stream-http@2.8.3:
- resolution: {integrity: sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==}
-
- stream-shift@1.0.3:
- resolution: {integrity: sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==}
-
- strict-uri-encode@2.0.0:
- resolution: {integrity: sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==}
- engines: {node: '>=4'}
-
string-template@0.2.1:
resolution: {integrity: sha512-Yptehjogou2xm4UJbxJ4CxgZx12HBfeystp0y3x7s4Dj32ltVVG1Gg8YhKjHZkHicuKpZX/ffilA8505VbUbpw==}
@@ -6441,21 +5988,18 @@ packages:
resolution: {integrity: sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==}
engines: {node: '>=8'}
- string.prototype.matchall@4.0.11:
- resolution: {integrity: sha512-NUdh0aDavY2og7IbBPenWqR9exH+E26Sv8e0/eTe1tltDGZL+GtBkDAnnyBtmekfK6/Dq3MkcGtzXFEd1LQrtg==}
+ string.prototype.matchall@4.0.12:
+ resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
engines: {node: '>= 0.4'}
- string.prototype.padend@3.1.6:
- resolution: {integrity: sha512-XZpspuSB7vJWhvJc9DLSlrXl1mcA2BdoY5jjnS135ydXqLoqhs96JjDtCkjJEQHvfqZIp9hBuBMgI589peyx9Q==}
+ string.prototype.trim@1.2.10:
+ resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
engines: {node: '>= 0.4'}
- string.prototype.trim@1.2.9:
- resolution: {integrity: sha512-klHuCNxiMZ8MlsOihJhJEBJAiMVqU3Z2nEXWfWnIqjN0gEFS9J9+IxKozWWtQGcgoa1WUZzLjKPTr4ZHNFTFxw==}
+ string.prototype.trimend@1.0.9:
+ resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
engines: {node: '>= 0.4'}
- string.prototype.trimend@1.0.8:
- resolution: {integrity: sha512-p73uL5VCHCO2BZZ6krwwQE3kCzM7NKmis8S//xEC6fQonchbum4eP6kR4DLEjQFO3Wnj3Fuo8NM0kOSjVdHjZQ==}
-
string.prototype.trimstart@1.0.8:
resolution: {integrity: sha512-UXSH262CSZY1tfu3G3Secr6uGLCFVPMhIqHjlgCUtCCcgihYc/xKs9djMTMUOb2j1mVSeU8EU6NWc/iQKU6Gfg==}
engines: {node: '>= 0.4'}
@@ -6463,16 +6007,9 @@ packages:
string_decoder@0.10.31:
resolution: {integrity: sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==}
- string_decoder@1.1.1:
- resolution: {integrity: sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==}
-
string_decoder@1.3.0:
resolution: {integrity: sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==}
- strip-ansi@3.0.1:
- resolution: {integrity: sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==}
- engines: {node: '>=0.10.0'}
-
strip-ansi@4.0.0:
resolution: {integrity: sha512-4XaJ2zQdCzROZDivEVIDPkcQn8LMFSa8kj8Gxb/Lnwzv9A8VctNZ+lfivC/sV3ivW8ElJTERXZoPBRrZKkNKow==}
engines: {node: '>=4'}
@@ -6518,12 +6055,60 @@ packages:
styled_string@0.0.1:
resolution: {integrity: sha512-DU2KZiB6VbPkO2tGSqQ9n96ZstUPjW7X4sGO6V2m1myIQluX0p1Ol8BrA/l6/EesqhMqXOIXs3cJNOy1UuU2BA==}
- sum-up@1.0.3:
- resolution: {integrity: sha512-zw5P8gnhiqokJUWRdR6F4kIIIke0+ubQSGyYUY506GCbJWtV7F6Xuy0j6S125eSX2oF+a8KdivsZ8PlVEH0Mcw==}
+ stylelint-config-recommended-scss@14.1.0:
+ resolution: {integrity: sha512-bhaMhh1u5dQqSsf6ri2GVWWQW5iUjBYgcHkh7SgDDn92ijoItC/cfO/W+fpXshgTQWhwFkP1rVcewcv4jaftRg==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ postcss: ^8.3.3
+ stylelint: ^16.6.1
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+
+ stylelint-config-recommended@14.0.1:
+ resolution: {integrity: sha512-bLvc1WOz/14aPImu/cufKAZYfXs/A/owZfSMZ4N+16WGXLoX5lOir53M6odBxvhgmgdxCVnNySJmZKx73T93cg==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ stylelint: ^16.1.0
- supports-color@2.0.0:
- resolution: {integrity: sha512-KKNVtd6pCYgPIKU4cp2733HWYCpplQhddZLBUryaAHou723x+FRzQ5Df824Fj+IyyuiQTRoub4SnIFfIcrp70g==}
- engines: {node: '>=0.8.0'}
+ stylelint-config-recommended@15.0.0:
+ resolution: {integrity: sha512-9LejMFsat7L+NXttdHdTq94byn25TD+82bzGRiV1Pgasl99pWnwipXS5DguTpp3nP1XjvLXVnEJIuYBfsRjRkA==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ stylelint: ^16.13.0
+
+ stylelint-config-standard-scss@13.1.0:
+ resolution: {integrity: sha512-Eo5w7/XvwGHWkeGLtdm2FZLOMYoZl1omP2/jgFCXyl2x5yNz7/8vv4Tj6slHvMSSUNTaGoam/GAZ0ZhukvalfA==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ postcss: ^8.3.3
+ stylelint: ^16.3.1
+ peerDependenciesMeta:
+ postcss:
+ optional: true
+
+ stylelint-config-standard@36.0.1:
+ resolution: {integrity: sha512-8aX8mTzJ6cuO8mmD5yon61CWuIM4UD8Q5aBcWKGSf6kg+EC3uhB+iOywpTK4ca6ZL7B49en8yanOFtUW0qNzyw==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ stylelint: ^16.1.0
+
+ stylelint-config-standard@37.0.0:
+ resolution: {integrity: sha512-+6eBlbSTrOn/il2RlV0zYGQwRTkr+WtzuVSs1reaWGObxnxLpbcspCUYajVQHonVfxVw2U+h42azGhrBvcg8OA==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ stylelint: ^16.13.0
+
+ stylelint-scss@6.10.1:
+ resolution: {integrity: sha512-CBqs0jecftIyhic6xba+4OvZUp4B0wNbX19w6Rq1fPo+lBDmTevk+olo8H7u/WQpTSDCDbBN4f3oocQurvXLTQ==}
+ engines: {node: '>=18.12.0'}
+ peerDependencies:
+ stylelint: ^16.0.2
+
+ stylelint@16.13.2:
+ resolution: {integrity: sha512-wDlgh0mRO9RtSa3TdidqHd0nOG8MmUyVKl+dxA6C1j8aZRzpNeEgdhFmU5y4sZx4Fc6r46p0fI7p1vR5O2DZqA==}
+ engines: {node: '>=18.12.0'}
+ hasBin: true
supports-color@5.5.0:
resolution: {integrity: sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==}
@@ -6537,10 +6122,17 @@ packages:
resolution: {integrity: sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==}
engines: {node: '>=10'}
+ supports-hyperlinks@3.1.0:
+ resolution: {integrity: sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==}
+ engines: {node: '>=14.18'}
+
supports-preserve-symlinks-flag@1.0.0:
resolution: {integrity: sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==}
engines: {node: '>= 0.4'}
+ svg-tags@1.0.0:
+ resolution: {integrity: sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==}
+
symbol-tree@3.2.4:
resolution: {integrity: sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==}
@@ -6554,38 +6146,24 @@ packages:
resolution: {integrity: sha512-vngT2JmkSapgq0z7uIoYtB9kWOOzMihAAYq/D3Pjm/ODOGMgS4r++B+OZ09U4hWR6EaOdy9eqQ7/8ygbH3wehA==}
engines: {node: 8.* || >= 10.*}
- table@6.8.2:
- resolution: {integrity: sha512-w2sfv80nrAh2VCbqR5AK27wswXhqcck2AhfnNW76beQXskGZ1V12GwS//yYVa3d3fcvAip2OUnbDAjW2k3v9fA==}
+ table@6.9.0:
+ resolution: {integrity: sha512-9kY+CygyYM6j02t5YFHbNz2FN5QmYGv9zAjVp4lCDjlCw7amdckXlEt/bjMhUIfj4ThGRE4gCUH5+yGnNuPo5A==}
engines: {node: '>=10.0.0'}
tap-parser@7.0.0:
resolution: {integrity: sha512-05G8/LrzqOOFvZhhAk32wsGiPZ1lfUrl+iV7+OkKgfofZxiceZWMHkKmow71YsyVQ8IvGBP2EjcIjE5gL4l5lA==}
hasBin: true
- tapable@1.1.3:
- resolution: {integrity: sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==}
- engines: {node: '>=6'}
-
tapable@2.2.1:
resolution: {integrity: sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==}
engines: {node: '>=6'}
- tar@6.2.1:
- resolution: {integrity: sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==}
- engines: {node: '>=10'}
-
temp@0.9.4:
resolution: {integrity: sha512-yYrrsWnrXMcdsnu/7YMYAofM1ktpL5By7vZhf15CrXijWWrEYZks5AXBudalfSWJLlnen/QUJUB5aoB0kqZUGA==}
engines: {node: '>=6.0.0'}
- terser-webpack-plugin@1.4.5:
- resolution: {integrity: sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==}
- engines: {node: '>= 6.9.0'}
- peerDependencies:
- webpack: ^4.0.0
-
- terser-webpack-plugin@5.3.10:
- resolution: {integrity: sha512-BKFPWlPDndPs+NGGCr1U59t0XScL5317Y0UReNrHaw9/FwhPENlq6bfgs+4yPfyP51vqC1bQ4rp1EfXW5ZSH9w==}
+ terser-webpack-plugin@5.3.11:
+ resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==}
engines: {node: '>= 10.13.0'}
peerDependencies:
'@swc/core': '*'
@@ -6600,53 +6178,29 @@ packages:
uglify-js:
optional: true
- terser@4.8.1:
- resolution: {integrity: sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==}
- engines: {node: '>=6.0.0'}
- hasBin: true
-
- terser@5.31.0:
- resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
+ terser@5.37.0:
+ resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==}
engines: {node: '>=10'}
hasBin: true
- testem@3.13.0:
- resolution: {integrity: sha512-b4hdlkH2TR1TQJCOgBNbD7nz4TjeYF35MgUlzum3yfDaaR+lJDjmJNMgi72MKgg+SjkGZ1U3BCBOqLC85MsMmQ==}
+ testem@3.15.2:
+ resolution: {integrity: sha512-mRzqZktqTCWi/rUP/RQOKXvMtuvY3lxuzBVb1xGXPnRNGMEj/1DaLGn6X447yOsz6SlWxSsZfcNuiE7fT1MOKg==}
engines: {node: '>= 7.*'}
hasBin: true
- text-table@0.2.0:
- resolution: {integrity: sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==}
-
textextensions@2.6.0:
resolution: {integrity: sha512-49WtAWS+tcsy93dRt6P0P3AMD2m5PvXRhuEA0kaXos5ZLlujtYmpmFsB+QvWUSxE1ZsstmYXfQ7L40+EcQgpAQ==}
engines: {node: '>=0.8'}
- thenify-all@1.6.0:
- resolution: {integrity: sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==}
- engines: {node: '>=0.8'}
-
- thenify@3.3.1:
- resolution: {integrity: sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==}
-
- thread-loader@3.0.4:
- resolution: {integrity: sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==}
- engines: {node: '>= 10.13.0'}
- peerDependencies:
- webpack: ^4.27.0 || ^5.0.0
-
- through2@2.0.5:
- resolution: {integrity: sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==}
-
through2@3.0.2:
resolution: {integrity: sha512-enaDQ4MUyP2W6ZyT6EsMzqBPZaM/avg8iuo+l2d3QCs0J+6RaqkHV/2/lOwDTueBHeJ/2LG9lrLW3d5rWPucuQ==}
through@2.3.8:
resolution: {integrity: sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==}
- timers-browserify@2.0.12:
- resolution: {integrity: sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==}
- engines: {node: '>=0.6.0'}
+ time-zone@1.0.0:
+ resolution: {integrity: sha512-TIsDdtKo6+XrPtiTm1ssmMngN1sAhyKnTO2kunQWqNPWIVvCm15Wmw4SWInwTVgJ5u/Tr04+8Ei9TNcw4x4ONA==}
+ engines: {node: '>=4'}
tiny-glob@0.2.9:
resolution: {integrity: sha512-g/55ssRPUjShh+xkfx9UPDXqhckHEsHr4Vd9zX55oSdGZc/MD0m3sferOkwWtp98bv+kcVfEHtRJgBVJzelrzg==}
@@ -6654,6 +6208,13 @@ packages:
tiny-lr@2.0.0:
resolution: {integrity: sha512-f6nh0VMRvhGx4KCeK1lQ/jaL0Zdb5WdR+Jk8q9OSUQnaSDxAEGH1fgqLZ+cMl5EW3F2MGnCsalBO1IsnnogW1Q==}
+ tldts-core@6.1.71:
+ resolution: {integrity: sha512-LRbChn2YRpic1KxY+ldL1pGXN/oVvKfCVufwfVzEQdFYNo39uF7AJa/WXdo+gYO7PTvdfkCPCed6Hkvz/kR7jg==}
+
+ tldts@6.1.71:
+ resolution: {integrity: sha512-LQIHmHnuzfZgZWAf2HzL83TIIrD8NhhI0DVxqo9/FdOd4ilec+NTNZOlDZf7EwrTNoutccbsHjvWHYXLAtvxjw==}
+ hasBin: true
+
tmp@0.0.28:
resolution: {integrity: sha512-c2mmfiBmND6SOVxzogm1oda0OJ1HZVIk/5n26N59dDTh80MUeavpiCls4PGAdkX1PFkKokLpcf7prSjCeXLsJg==}
engines: {node: '>=0.4.0'}
@@ -6673,17 +6234,6 @@ packages:
tmpl@1.0.5:
resolution: {integrity: sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==}
- to-arraybuffer@1.0.1:
- resolution: {integrity: sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==}
-
- to-fast-properties@1.0.3:
- resolution: {integrity: sha512-lxrWP8ejsq+7E3nNjwYmUBMAgjMTZoTI+sdBOpvNyijeDLa29LUn9QaoXAHv4+Z578hbmHHJKZknzxVtvo77og==}
- engines: {node: '>=0.10.0'}
-
- to-fast-properties@2.0.0:
- resolution: {integrity: sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==}
- engines: {node: '>=4'}
-
to-object-path@0.3.0:
resolution: {integrity: sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==}
engines: {node: '>=0.10.0'}
@@ -6708,16 +6258,23 @@ packages:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
- tough-cookie@4.1.4:
- resolution: {integrity: sha512-Loo5UUvLD9ScZ6jh8beX1T6sO1w2/MpCRpEP7V280GKMVUQ0Jzar2U3UJPsrdbziLEMMhu3Ujnq//rhiFuIeag==}
- engines: {node: '>=6'}
+ tough-cookie@5.0.0:
+ resolution: {integrity: sha512-FRKsF7cz96xIIeMZ82ehjC3xW2E+O2+v11udrDYewUbszngYhsGa8z6YUMMzO9QJZzzyd0nGGXnML/TReX6W8Q==}
+ engines: {node: '>=16'}
tr46@0.0.3:
resolution: {integrity: sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==}
- tr46@2.1.0:
- resolution: {integrity: sha512-15Ih7phfcdP5YxqiB+iDtLoaTz4Nd35+IiAv0kQ5FNKHzXgdWqPoTIqEDDJmXceQt4JZk6lVPT8lnDlPpGDppw==}
- engines: {node: '>=8'}
+ tr46@5.0.0:
+ resolution: {integrity: sha512-tk2G5R2KRwBd+ZN0zaEXpmzdKyOYksXwywulIX95MBODjSzMIuQnQ3m8JxgbhnL1LeVo7lqQKsYa1O3Htl7K5g==}
+ engines: {node: '>=18'}
+
+ tracked-built-ins@4.0.0:
+ resolution: {integrity: sha512-0Jl43A1SDZd+yYCJvXfgDSn4Wk/zcawkyFTBPqOETU5UJRngnVEnQ8oOjawqPRg6qja3sKjIQ8z6X9xJzcUTUA==}
+
+ tree-kill@1.2.2:
+ resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
+ hasBin: true
tree-sync@1.4.0:
resolution: {integrity: sha512-YvYllqh3qrR5TAYZZTXdspnIhlKAYezPYw11ntmweoceu4VK+keN356phHRIIo1d+RDmLpHZrUlmxga2gc9kSQ==}
@@ -6726,22 +6283,20 @@ packages:
resolution: {integrity: sha512-OLWW+Nd99NOM53aZ8ilT/YpEiOo6mXD3F4/wLbARqybSZ3Jb8IxHK5UGVbZaae0wtXAyQshVV+SeqVBik+Fbmw==}
engines: {node: '>=8'}
- trim-right@1.0.1:
- resolution: {integrity: sha512-WZGXGstmCWgeevgTL54hrCuw1dyMQIzWy7ZfqRJfSmJZBwklI15egmQytFP6bPidmw3M8d5yEowl1niq4vmqZw==}
- engines: {node: '>=0.10.0'}
+ ts-api-utils@2.0.0:
+ resolution: {integrity: sha512-xCt/TOAc+EOHS1XPnijD3/yzpH6qg2xppZO1YDqGoVsNXfQfzHpOdNuXwrwOU8u4ITXJyDCTyt8w5g1sZv9ynQ==}
+ engines: {node: '>=18.12'}
+ peerDependencies:
+ typescript: '>=4.8.4'
+
+ tsconfig-paths@3.15.0:
+ resolution: {integrity: sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==}
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
- tslib@2.6.2:
- resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
-
- tty-browserify@0.0.0:
- resolution: {integrity: sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==}
-
- type-check@0.3.2:
- resolution: {integrity: sha512-ZCmOJdvOWDBYJlzAoFkC+Q0+bUyEOS1ltgp1MGU03fqHG+dbi9tBFU2Rd9QKiDZFAYrhPh2JUf7rZRIuHRKtOg==}
- engines: {node: '>= 0.8.0'}
+ tslib@2.8.1:
+ resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
type-check@0.4.0:
resolution: {integrity: sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==}
@@ -6751,115 +6306,101 @@ packages:
resolution: {integrity: sha512-OdjXJxnCN1AvyLSzeKIgXTXxV+99ZuXl3Hpo9XpJAv9MBcHrrJOQ5kV7ypXOuQie+AmWG25hLbiKdwYTifzcfQ==}
engines: {node: '>=8'}
- type-fest@0.20.2:
- resolution: {integrity: sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==}
- engines: {node: '>=10'}
-
type-fest@0.21.3:
resolution: {integrity: sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==}
engines: {node: '>=10'}
- type-fest@0.4.1:
- resolution: {integrity: sha512-IwzA/LSfD2vC1/YDYMv/zHP4rDF1usCwllsDpbolT3D4fUepIO7f9K70jjmUewU/LmGUKJcwcVtDCpnKk4BPMw==}
- engines: {node: '>=6'}
-
- type-fest@0.6.0:
- resolution: {integrity: sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==}
- engines: {node: '>=8'}
-
type-is@1.6.18:
resolution: {integrity: sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==}
engines: {node: '>= 0.6'}
- typed-array-buffer@1.0.2:
- resolution: {integrity: sha512-gEymJYKZtKXzzBzM4jqa9w6Q1Jjm7x2d+sh19AdsD4wqnMPDYyvwpsIc2Q/835kHuo3BEQ7CjelGhfTsoBb2MQ==}
+ typed-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
- typed-array-byte-length@1.0.1:
- resolution: {integrity: sha512-3iMJ9q0ao7WE9tWcaYKIptkNBuOIcZCCT0d4MRvuuH88fEoEH62IuQe0OtraD3ebQEoTRk8XCBoknUNc1Y67pw==}
+ typed-array-byte-length@1.0.3:
+ resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
engines: {node: '>= 0.4'}
- typed-array-byte-offset@1.0.2:
- resolution: {integrity: sha512-Ous0vodHa56FviZucS2E63zkgtgrACj7omjwd/8lTEMEPFFyjfixMZ1ZXenpgCFBBt4EC1J2XsyVS2gkG0eTFA==}
+ typed-array-byte-offset@1.0.4:
+ resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
engines: {node: '>= 0.4'}
- typed-array-length@1.0.6:
- resolution: {integrity: sha512-/OxDN6OtAk5KBpGb28T+HZc2M+ADtvRxXrKKbUwtsLgdoxgX13hyy7ek6bFRl5+aBs2yZzB0c4CnQfAtVypW/g==}
+ typed-array-length@1.0.7:
+ resolution: {integrity: sha512-3KS2b+kL7fsuk/eJZ7EQdnEmQoaho/r6KUef7hxvltNA5DR8NAUM+8wJMbJyZ4G9/7i3v5zPBIMN5aybAh2/Jg==}
engines: {node: '>= 0.4'}
typedarray-to-buffer@3.1.5:
resolution: {integrity: sha512-zdu8XMNEDepKKR+XYOXAVPtWui0ly0NtohUscw+UmaHiAWT8hrV1rr//H6V+0DvJ3OQ19S979M0laLfX8rm82Q==}
- typedarray@0.0.6:
- resolution: {integrity: sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==}
+ typescript-eslint@8.21.0:
+ resolution: {integrity: sha512-txEKYY4XMKwPXxNkN8+AxAdX6iIJAPiJbHE/FpQccs/sxw8Lf26kqwC3cn0xkHlW8kEbLhkhCsjWuMveaY9Rxw==}
+ engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ peerDependencies:
+ eslint: ^8.57.0 || ^9.0.0
+ typescript: '>=4.8.4 <5.8.0'
typescript-memoize@1.1.1:
resolution: {integrity: sha512-GQ90TcKpIH4XxYTI2F98yEQYZgjNMOGPpOgdjIBhaLaWji5HPWlRnZ4AeA1hfBxtY7bCGDJsqDDHk/KaHOl5bA==}
+ typescript@5.7.3:
+ resolution: {integrity: sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==}
+ engines: {node: '>=14.17'}
+ hasBin: true
+
uc.micro@1.0.6:
resolution: {integrity: sha512-8Y75pvTYkLJW2hWQHXxoqRgV7qb9B+9vFEtidML+7koHUFapnVJAZ6cKs+Qjz5Aw3aZWHMC6u0wJE3At+nSGwA==}
- uglify-js@3.17.4:
- resolution: {integrity: sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==}
+ uglify-js@3.19.3:
+ resolution: {integrity: sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==}
engines: {node: '>=0.8.0'}
hasBin: true
- unbox-primitive@1.0.2:
- resolution: {integrity: sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==}
+ unbox-primitive@1.1.0:
+ resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
+ engines: {node: '>= 0.4'}
underscore.string@3.3.6:
resolution: {integrity: sha512-VoC83HWXmCrF6rgkyxS9GHv8W9Q5nhMKho+OadDJGzL2oDYbYEppBaCMH6pFlwLeqj2QS+hhkw2kpXkSdD1JxQ==}
- underscore@1.13.6:
- resolution: {integrity: sha512-+A5Sja4HP1M08MaXya7p5LvjuM7K6q/2EaC0+iovj/wOcMsTzMvDFbasi/oSapiwOlt252IqsKqPjCl7huKS0A==}
+ underscore@1.13.7:
+ resolution: {integrity: sha512-GMXzWtsc57XAtguZgaQViUOzs0KTkk8ojr3/xAxXLITqf/3EMwxC0inyETfDFjH/Krbhuep0HNbbjI9i/q3F3g==}
- undici-types@5.26.5:
- resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+ undici-types@6.20.0:
+ resolution: {integrity: sha512-Ny6QZ2Nju20vw1SRHe3d9jVu6gJ+4e3+MMpqu7pqE5HT6WsTSlce++GQmK5UXS8mzV8DSYHrQH+Xrf2jVcuKNg==}
- unicode-canonical-property-names-ecmascript@2.0.0:
- resolution: {integrity: sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==}
+ unicode-canonical-property-names-ecmascript@2.0.1:
+ resolution: {integrity: sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==}
engines: {node: '>=4'}
unicode-match-property-ecmascript@2.0.0:
resolution: {integrity: sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==}
engines: {node: '>=4'}
- unicode-match-property-value-ecmascript@2.1.0:
- resolution: {integrity: sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==}
+ unicode-match-property-value-ecmascript@2.2.0:
+ resolution: {integrity: sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==}
engines: {node: '>=4'}
unicode-property-aliases-ecmascript@2.1.0:
resolution: {integrity: sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==}
engines: {node: '>=4'}
+ unicorn-magic@0.1.0:
+ resolution: {integrity: sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==}
+ engines: {node: '>=18'}
+
union-value@1.0.1:
resolution: {integrity: sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==}
engines: {node: '>=0.10.0'}
- unique-filename@1.1.1:
- resolution: {integrity: sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==}
-
- unique-slug@2.0.2:
- resolution: {integrity: sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==}
-
unique-string@2.0.0:
resolution: {integrity: sha512-uNaeirEPvpZWSgzwsPGtU2zVSTrn/8L5q/IexZmH0eH6SA73CmAA5U4GwORTxQAZs95TAXLNqeLoPPNO5gZfWg==}
engines: {node: '>=8'}
- unist-util-stringify-position@3.0.3:
- resolution: {integrity: sha512-k5GzIBZ/QatR8N5X2y+drfpWG8IDBzdnVj6OInRNWm1oXrzydiaAT2OQiA8DPRRZyAKb9b6I2a6PxYklZD0gKg==}
-
- universal-user-agent@6.0.1:
- resolution: {integrity: sha512-yCzhz6FN2wU1NiiQRogkTQszlQSlpWaw8SvVegAc+bDxbzHgh1vX8uIe8OYyMH6DwH+sdTJsgMl36+mSMdRJIQ==}
-
universalify@0.1.2:
resolution: {integrity: sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==}
engines: {node: '>= 4.0.0'}
- universalify@0.2.0:
- resolution: {integrity: sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg==}
- engines: {node: '>= 4.0.0'}
-
universalify@2.0.1:
resolution: {integrity: sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==}
engines: {node: '>= 10.0.0'}
@@ -6872,28 +6413,16 @@ packages:
resolution: {integrity: sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==}
engines: {node: '>=0.10.0'}
- untildify@2.1.0:
- resolution: {integrity: sha512-sJjbDp2GodvkB0FZZcn7k6afVisqX5BZD7Yq3xp4nN2O15BBK0cLm3Vwn2vQaF7UDS0UUsrQMkkplmDI5fskig==}
- engines: {node: '>=0.10.0'}
-
- upath@1.2.0:
- resolution: {integrity: sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==}
- engines: {node: '>=4'}
-
upath@2.0.1:
resolution: {integrity: sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==}
engines: {node: '>=4'}
- update-browserslist-db@1.0.16:
- resolution: {integrity: sha512-KVbTxlBYlckhF5wgfyZXTWnMn7MMZjMu9XG8bPlliUOP9ThaF4QnhP8qrjrH7DRzHfSk0oQv1wToW+iA5GajEQ==}
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
- update-notifier@5.1.0:
- resolution: {integrity: sha512-ItnICHbeMh9GqUy31hFPrD1kcuZ3rpxDZbf4KUDavXwS0bW5m7SLbDQpGX3UYr072cbrF5hFUs3r5tUsPwjfHw==}
- engines: {node: '>=10'}
-
uri-js@4.4.1:
resolution: {integrity: sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==}
@@ -6901,19 +6430,10 @@ packages:
resolution: {integrity: sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==}
deprecated: Please see https://github.com/lydell/urix#deprecated
- url-join@4.0.1:
- resolution: {integrity: sha512-jk1+QP6ZJqyOiuEI9AEWQfju/nB2Pw466kbA0LEZljHwKeMgd9WrAEgEGxjPDD2+TNbbb37rTyhEfrCXfuKXnA==}
-
url-parse-lax@3.0.0:
resolution: {integrity: sha512-NjFKA0DidqPa5ciFcSrXnAltTtzz84ogy+NebPvfEgAck0+TNg4UJ4IN+fB7zRZfbgUf0syOo9MDxFkDSMuFaQ==}
engines: {node: '>=4'}
- url-parse@1.5.10:
- resolution: {integrity: sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ==}
-
- url@0.11.3:
- resolution: {integrity: sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==}
-
use@3.1.1:
resolution: {integrity: sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==}
engines: {node: '>=0.10.0'}
@@ -6924,12 +6444,6 @@ packages:
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
- util@0.10.4:
- resolution: {integrity: sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==}
-
- util@0.11.1:
- resolution: {integrity: sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==}
-
utils-merge@1.0.1:
resolution: {integrity: sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==}
engines: {node: '>= 0.4.0'}
@@ -6938,52 +6452,43 @@ packages:
resolution: {integrity: sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==}
hasBin: true
- uuid@9.0.1:
- resolution: {integrity: sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==}
- hasBin: true
-
- uvu@0.5.6:
- resolution: {integrity: sha512-+g8ENReyr8YsOc6fv/NVJs2vFdHBnBNdfE49rshrTzDWOlUx4Gq7KOS2GD8eqhy2j+Ejq29+SbKH8yjkAqXqoA==}
- engines: {node: '>=8'}
- hasBin: true
-
v8-compile-cache@2.4.0:
resolution: {integrity: sha512-ocyWc3bAHBB/guyqJQVI5o4BZkPhznPYUG2ea80Gond/BgNWpap8TOmLSeeQG7bnh2KMISxskdADG59j7zruhw==}
- validate-npm-package-license@3.0.4:
- resolution: {integrity: sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==}
-
- validate-npm-package-name@5.0.1:
- resolution: {integrity: sha512-OljLrQ9SQdOUqTaQxqL5dEfZWrXExyyWsozYlAWFawPVNuD83igl7uJD2RTkNMbniIYgt8l81eCJGIdQF7avLQ==}
- engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ validate-npm-package-name@6.0.0:
+ resolution: {integrity: sha512-d7KLgL1LD3U3fgnvWEY1cQXoO/q6EQ1BSz48Sa149V/5zVTAbgmZIpyI8TRi6U9/JNyeYLlTKsEMPtLC27RFUg==}
+ engines: {node: ^18.17.0 || >=20.5.0}
validate-peer-dependencies@1.2.0:
resolution: {integrity: sha512-nd2HUpKc6RWblPZQ2GDuI65sxJ2n/UqZwSBVtj64xlWjMx0m7ZB2m9b2JS3v1f+n9VWH/dd1CMhkHfP6pIdckA==}
- validate-peer-dependencies@2.2.0:
- resolution: {integrity: sha512-8X1OWlERjiUY6P6tdeU9E0EwO8RA3bahoOVG7ulOZT5MqgNDUO/BQoVjYiHPcNe+v8glsboZRIw9iToMAA2zAA==}
- engines: {node: '>= 12'}
-
vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
- vm-browserify@1.1.2:
- resolution: {integrity: sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==}
+ vscode-jsonrpc@8.1.0:
+ resolution: {integrity: sha512-6TDy/abTQk+zDGYazgbIPc+4JoXdwC8NHU9Pbn4UJP1fehUyZmM4RHp5IthX7A6L5KS30PRui+j+tbbMMMafdw==}
+ engines: {node: '>=14.0.0'}
+
+ vscode-languageserver-protocol@3.17.3:
+ resolution: {integrity: sha512-924/h0AqsMtA5yK22GgMtCYiMdCOtWTSGgUOkgEDX+wk2b0x4sAfLiO4NxBxqbiVtz7K7/1/RgVrVI0NClZwqA==}
- vm2@3.9.19:
- resolution: {integrity: sha512-J637XF0DHDMV57R6JyVsTak7nIL8gy5KH4r1HiwWLf/4GBbb5MKL5y7LpmF4A8E2nR6XmzpmMFQ7V7ppPTmUQg==}
- engines: {node: '>=6.0'}
- deprecated: The library contains critical security issues and should not be used for production! The maintenance of the project has been discontinued. Consider migrating your code to isolated-vm.
+ vscode-languageserver-textdocument@1.0.12:
+ resolution: {integrity: sha512-cxWNPesCnQCcMPeenjKKsOCKQZ/L6Tv19DTRIGuLWe32lyzWhihGVJ/rcckZXJxfdKCFvRLS3fpBIsV/ZGX4zA==}
+
+ vscode-languageserver-types@3.17.3:
+ resolution: {integrity: sha512-SYU4z1dL0PyIMd4Vj8YOqFvHu7Hz/enbWtpfnVbJHU4Nd1YNYx8u0ennumc6h48GQNeOLxmwySmnADouT/AuZA==}
+
+ vscode-languageserver@8.1.0:
+ resolution: {integrity: sha512-eUt8f1z2N2IEUDBsKaNapkz7jl5QpskN2Y0G01T/ItMxBxw1fJwvtySGB9QMecatne8jFIWJGWI61dWjyTLQsw==}
hasBin: true
- w3c-hr-time@1.0.2:
- resolution: {integrity: sha512-z8P5DvDNjKDoFIHK7q8r8lackT6l+jo/Ye3HOle7l9nICP9lf1Ci25fy9vHd0JOWewkIFzXIEig3TdKT7JQ5fQ==}
- deprecated: Use your platform's native performance.now() and performance.timeOrigin.
+ vscode-uri@3.0.8:
+ resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
- w3c-xmlserializer@2.0.0:
- resolution: {integrity: sha512-4tzD0mF8iSiMiNs30BiLO3EpfGLZUT2MSX/G+o7ZywDzliWQ3OPtTZ0PTC3B3ca1UAf4cJMHB+2Bf56EriJuRA==}
- engines: {node: '>=10'}
+ w3c-xmlserializer@5.0.0:
+ resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
+ engines: {node: '>=18'}
walk-sync@0.2.7:
resolution: {integrity: sha512-OH8GdRMowEFr0XSHQeX5fGweO6zSVHo7bG/0yJQx6LAj9Oukz0C8heI3/FYectT66gY0IPGe89kOvU410/UNpg==}
@@ -7009,14 +6514,8 @@ packages:
resolution: {integrity: sha512-MrJK9z7kD5Gl3jHBnnBVHvr1saVGAfmkyyrvuNzV/oe0Gr1nwZTy5VSA0Gw2j2Or0Mu8HcjUa44qlBvC2Ofnpg==}
engines: {node: '>= 8'}
- watchpack-chokidar2@2.0.1:
- resolution: {integrity: sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==}
-
- watchpack@1.7.5:
- resolution: {integrity: sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==}
-
- watchpack@2.4.1:
- resolution: {integrity: sha512-8wrBCMtVhqcXP2Sup1ctSkga6uc2Bx0IIvKyT7yTFier5AXHooSI+QyQQAtTb7+E0IUCCKyTFmXqdqgum2XWGg==}
+ watchpack@2.4.2:
+ resolution: {integrity: sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==}
engines: {node: '>=10.13.0'}
wcwidth@1.0.1:
@@ -7025,36 +6524,16 @@ packages:
webidl-conversions@3.0.1:
resolution: {integrity: sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==}
- webidl-conversions@5.0.0:
- resolution: {integrity: sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==}
- engines: {node: '>=8'}
-
- webidl-conversions@6.1.0:
- resolution: {integrity: sha512-qBIvFLGiBpLjfwmYAaHPXsn+ho5xZnGvyGvsarywGNc8VyQJUMHJ8OBKGGrPER0okBeMDaan4mNBlgBROxuI8w==}
- engines: {node: '>=10.4'}
-
- webpack-sources@1.4.3:
- resolution: {integrity: sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==}
+ webidl-conversions@7.0.0:
+ resolution: {integrity: sha512-VwddBukDzu71offAQR975unBIGqfKZpM+8ZX6ySk8nYhVoo5CYaZyzt3YBvYtRtO+aoGlqxPg/B87NGVZ/fu6g==}
+ engines: {node: '>=12'}
webpack-sources@3.2.3:
resolution: {integrity: sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==}
engines: {node: '>=10.13.0'}
- webpack@4.47.0:
- resolution: {integrity: sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==}
- engines: {node: '>=6.11.5'}
- hasBin: true
- peerDependencies:
- webpack-cli: '*'
- webpack-command: '*'
- peerDependenciesMeta:
- webpack-cli:
- optional: true
- webpack-command:
- optional: true
-
- webpack@5.91.0:
- resolution: {integrity: sha512-rzVwlLeBWHJbmgTC/8TvAcu5vpJNII+MelQpylD4jNERPwpBJOE2lEcko1zJX3QJeLjTTAnQxn/OJ8bjDzVQaw==}
+ webpack@5.97.1:
+ resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -7071,24 +6550,38 @@ packages:
resolution: {integrity: sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==}
engines: {node: '>=0.8.0'}
- whatwg-encoding@1.0.5:
- resolution: {integrity: sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==}
+ whatwg-encoding@3.1.1:
+ resolution: {integrity: sha512-6qN4hJdMwfYBtE3YBTTHhoeuUrDBPZmbQaxWAqSALV/MeEnR5z1xd8UKud2RAkFoPkmB+hli1TZSnyi84xz1vQ==}
+ engines: {node: '>=18'}
- whatwg-mimetype@2.3.0:
- resolution: {integrity: sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==}
+ whatwg-fetch@3.6.20:
+ resolution: {integrity: sha512-EqhiFU6daOA8kpjOWTL0olhVOF3i7OrFzSYiGsEMB8GcXS+RrzauAERX65xMeNWVqxA6HXH2m69Z9LaKKdisfg==}
+
+ whatwg-mimetype@4.0.0:
+ resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
+ engines: {node: '>=18'}
+
+ whatwg-url@14.1.0:
+ resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==}
+ engines: {node: '>=18'}
whatwg-url@5.0.0:
resolution: {integrity: sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==}
- whatwg-url@8.7.0:
- resolution: {integrity: sha512-gAojqb/m9Q8a5IV96E3fHJM70AzCkgt4uXYX2O7EmuyOnLrViCQlsEBmF9UQIu3/aeAIp2U17rtbpZWNntQqdg==}
- engines: {node: '>=10'}
+ which-boxed-primitive@1.1.1:
+ resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
+ engines: {node: '>= 0.4'}
- which-boxed-primitive@1.0.2:
- resolution: {integrity: sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==}
+ which-builtin-type@1.2.1:
+ resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
+ engines: {node: '>= 0.4'}
+
+ which-collection@1.0.2:
+ resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
+ engines: {node: '>= 0.4'}
- which-typed-array@1.1.15:
- resolution: {integrity: sha512-oV0jmFtUky6CXfkqehVvBP/LSWJ2sy4vWMioiENyJLePrBO/yKyV9OyJySfAKosh+RYkIl5zJCNZ8/4JncrpdA==}
+ which-typed-array@1.1.18:
+ resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
engines: {node: '>= 0.4'}
which@1.3.1:
@@ -7103,31 +6596,13 @@ packages:
wide-align@1.1.5:
resolution: {integrity: sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==}
- widest-line@3.1.0:
- resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
- engines: {node: '>=8'}
-
- wildcard-match@5.1.2:
- resolution: {integrity: sha512-qNXwI591Z88c8bWxp+yjV60Ch4F8Riawe3iGxbzquhy8Xs9m+0+SLFBGb/0yCTIDElawtaImC37fYZ+dr32KqQ==}
-
- windows-release@4.0.0:
- resolution: {integrity: sha512-OxmV4wzDKB1x7AZaZgXMVsdJ1qER1ed83ZrTYd5Bwq2HfJVg3DJS8nqlAG4sMoJ7mu8cuRmLEYyU13BKwctRAg==}
- engines: {node: '>=10'}
-
word-wrap@1.2.5:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- wordwrap@0.0.3:
- resolution: {integrity: sha512-1tMA907+V4QmxV7dbRvb4/8MaRALK6q9Abid3ndMYnbyo8piisCmeONVqVSXqQA3KaP4SLt5b7ud6E2sqP8TFw==}
- engines: {node: '>=0.4.0'}
-
wordwrap@1.0.0:
resolution: {integrity: sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==}
- worker-farm@1.7.0:
- resolution: {integrity: sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==}
-
workerpool@3.1.2:
resolution: {integrity: sha512-WJFA0dGqIK7qj7xPTqciWBH5DlJQzoPjsANvc3Y4hNB0SScT+Emjvt0jPPkDBUjBNngX1q9hHgt1Gfwytu6pug==}
@@ -7142,33 +6617,34 @@ packages:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
engines: {node: '>=10'}
- wrap-legacy-hbs-plugin-if-needed@1.0.1:
- resolution: {integrity: sha512-aJjXe5WwrY0u0dcUgKW3m2SGnxosJ66LLm/QaG0YMHqgA6+J2xwAFZfhSLsQ2BmO5x8PTH+OIxoAXuGz3qBA7A==}
-
wrappy@1.0.2:
resolution: {integrity: sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==}
write-file-atomic@3.0.3:
resolution: {integrity: sha512-AvHcyZ5JnSfq3ioSyjrBkH9yW4m7Ayk8/9My/DD9onKeu/94fwrMocemO2QAJFAlnnDN+ZDS+ZjAR5ua1/PV/Q==}
- ws@7.5.9:
- resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
- engines: {node: '>=8.3.0'}
+ write-file-atomic@5.0.1:
+ resolution: {integrity: sha512-+QU2zd6OTD8XWIJCbffaiQeH9U73qIqafo1x6V1snCWYGJf6cVE0cDR4D8xRzcEnfI21IFrUPzPGtcPf8AC+Rw==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+
+ ws@8.17.1:
+ resolution: {integrity: sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==}
+ engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
utf-8-validate:
optional: true
- ws@8.11.0:
- resolution: {integrity: sha512-HPG3wQd9sNQoT9xHyNCXoDUa+Xw/VevmY9FoHyQ+g+rrMn4j6FB4np7Z0OhdTgjx6MgQLK7jwSy1YecU1+4Asg==}
+ ws@8.18.0:
+ resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
engines: {node: '>=10.0.0'}
peerDependencies:
bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
+ utf-8-validate: '>=5.0.2'
peerDependenciesMeta:
bufferutil:
optional: true
@@ -7179,22 +6655,13 @@ packages:
resolution: {integrity: sha512-PSNhEJDejZYV7h50BohL09Er9VaIefr2LMAf3OEmpCkjOi34eYyQYAXUTjEQtZJTKcF0E2UKTh+osDLsgNim9Q==}
engines: {node: '>=8'}
- xml-name-validator@3.0.0:
- resolution: {integrity: sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==}
+ xml-name-validator@5.0.0:
+ resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
+ engines: {node: '>=18'}
xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
- xregexp@2.0.0:
- resolution: {integrity: sha512-xl/50/Cf32VsGq/1R8jJE5ajH1yMCQkpmoS10QbFZWl2Oor4H0Me64Pu2yxvsRWK3m6soJbmGfzSR7BYmDcWAA==}
-
- xtend@4.0.2:
- resolution: {integrity: sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==}
- engines: {node: '>=0.4'}
-
- y18n@4.0.3:
- resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
-
y18n@5.0.8:
resolution: {integrity: sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==}
engines: {node: '>=10'}
@@ -7202,29 +6669,14 @@ packages:
yallist@3.1.1:
resolution: {integrity: sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==}
- yallist@4.0.0:
- resolution: {integrity: sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==}
-
yam@1.0.0:
resolution: {integrity: sha512-Hv9xxHtsJ9228wNhk03xnlDReUuWVvHwM4rIbjdAXYvHLs17xjuyF50N6XXFMN6N0omBaqgOok/MCK3At9fTAg==}
engines: {node: ^4.5 || 6.* || >= 7.*}
- yaml@1.10.2:
- resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
- engines: {node: '>= 6'}
-
- yargs-parser@20.2.9:
- resolution: {integrity: sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==}
- engines: {node: '>=10'}
-
yargs-parser@21.1.1:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
- yargs@16.2.0:
- resolution: {integrity: sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==}
- engines: {node: '>=10'}
-
yargs@17.7.2:
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
engines: {node: '>=12'}
@@ -7233,886 +6685,926 @@ packages:
resolution: {integrity: sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==}
engines: {node: '>=10'}
- yocto-queue@1.0.0:
- resolution: {integrity: sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==}
+ yocto-queue@1.1.1:
+ resolution: {integrity: sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==}
engines: {node: '>=12.20'}
+ yoctocolors-cjs@2.1.2:
+ resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
+ engines: {node: '>=18'}
+
snapshots:
'@ampproject/remapping@2.3.0':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@babel/code-frame@7.12.11':
- dependencies:
- '@babel/highlight': 7.24.6
-
- '@babel/code-frame@7.24.6':
+ '@babel/code-frame@7.26.2':
dependencies:
- '@babel/highlight': 7.24.6
- picocolors: 1.0.1
+ '@babel/helper-validator-identifier': 7.25.9
+ js-tokens: 4.0.0
+ picocolors: 1.1.1
- '@babel/compat-data@7.24.6': {}
+ '@babel/compat-data@7.26.3': {}
- '@babel/core@7.24.6':
+ '@babel/core@7.26.0':
dependencies:
'@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.6
- '@babel/generator': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helpers': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/template': 7.24.6
- '@babel/traverse': 7.24.6(supports-color@8.1.1)
- '@babel/types': 7.24.6
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helpers': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
convert-source-map: 2.0.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/core@7.24.6(supports-color@8.1.1)':
+ '@babel/eslint-parser@7.26.5(@babel/core@7.26.0)(eslint@9.18.0)':
dependencies:
- '@ampproject/remapping': 2.3.0
- '@babel/code-frame': 7.24.6
- '@babel/generator': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6(supports-color@8.1.1))
- '@babel/helpers': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/template': 7.24.6
- '@babel/traverse': 7.24.6(supports-color@8.1.1)
- '@babel/types': 7.24.6
- convert-source-map: 2.0.0
- debug: 4.3.4(supports-color@8.1.1)
- gensync: 1.0.0-beta.2
- json5: 2.2.3
+ '@babel/core': 7.26.0
+ '@nicolo-ribaudo/eslint-scope-5-internals': 5.1.1-v1
+ eslint: 9.18.0
+ eslint-visitor-keys: 2.1.0
semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
- '@babel/generator@7.24.6':
+ '@babel/generator@7.26.3':
dependencies:
- '@babel/types': 7.24.6
- '@jridgewell/gen-mapping': 0.3.5
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
-
- '@babel/helper-annotate-as-pure@7.24.6':
- dependencies:
- '@babel/types': 7.24.6
+ jsesc: 3.1.0
- '@babel/helper-builder-binary-assignment-operator-visitor@7.24.6':
+ '@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/types': 7.26.3
- '@babel/helper-compilation-targets@7.24.6':
+ '@babel/helper-compilation-targets@7.25.9':
dependencies:
- '@babel/compat-data': 7.24.6
- '@babel/helper-validator-option': 7.24.6
- browserslist: 4.23.0
+ '@babel/compat-data': 7.26.3
+ '@babel/helper-validator-option': 7.25.9
+ browserslist: 4.24.3
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-function-name': 7.24.6
- '@babel/helper-member-expression-to-functions': 7.24.6
- '@babel/helper-optimise-call-expression': 7.24.6
- '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/traverse': 7.26.4
semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- regexpu-core: 5.3.2
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)':
+ '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- debug: 4.3.4(supports-color@8.1.1)
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ debug: 4.4.0
lodash.debounce: 4.0.8
- resolve: 1.22.8
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- '@babel/helper-environment-visitor@7.24.6': {}
-
- '@babel/helper-function-name@7.24.6':
- dependencies:
- '@babel/template': 7.24.6
- '@babel/types': 7.24.6
-
- '@babel/helper-hoist-variables@7.24.6':
- dependencies:
- '@babel/types': 7.24.6
-
- '@babel/helper-member-expression-to-functions@7.24.6':
- dependencies:
- '@babel/types': 7.24.6
-
- '@babel/helper-module-imports@7.24.6':
- dependencies:
- '@babel/types': 7.24.6
-
- '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6(supports-color@8.1.1))':
+ '@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/core': 7.24.6(supports-color@8.1.1)
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-module-imports': 7.24.6
- '@babel/helper-simple-access': 7.24.6
- '@babel/helper-split-export-declaration': 7.24.6
- '@babel/helper-validator-identifier': 7.24.6
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-module-transforms@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-module-imports@7.25.9':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-module-imports': 7.24.6
- '@babel/helper-simple-access': 7.24.6
- '@babel/helper-split-export-declaration': 7.24.6
- '@babel/helper-validator-identifier': 7.24.6
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-optimise-call-expression@7.24.6':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.24.6
-
- '@babel/helper-plugin-utils@7.24.6': {}
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)':
+ '@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-wrap-function': 7.24.6
+ '@babel/types': 7.26.3
- '@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-member-expression-to-functions': 7.24.6
- '@babel/helper-optimise-call-expression': 7.24.6
+ '@babel/helper-plugin-utils@7.26.5': {}
- '@babel/helper-simple-access@7.24.6':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-wrap-function': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-skip-transparent-expression-wrappers@7.24.6':
+ '@babel/helper-replace-supers@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-member-expression-to-functions': 7.25.9
+ '@babel/helper-optimise-call-expression': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-split-export-declaration@7.24.6':
+ '@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/types': 7.24.6
-
- '@babel/helper-string-parser@7.24.6': {}
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ transitivePeerDependencies:
+ - supports-color
- '@babel/helper-validator-identifier@7.24.6': {}
+ '@babel/helper-string-parser@7.25.9': {}
- '@babel/helper-validator-option@7.24.6': {}
+ '@babel/helper-validator-identifier@7.25.9': {}
- '@babel/helper-wrap-function@7.24.6':
- dependencies:
- '@babel/helper-function-name': 7.24.6
- '@babel/template': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/helper-validator-option@7.25.9': {}
- '@babel/helpers@7.24.6':
+ '@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.24.6
- '@babel/types': 7.24.6
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.26.4
+ '@babel/types': 7.26.3
+ transitivePeerDependencies:
+ - supports-color
- '@babel/highlight@7.24.6':
+ '@babel/helpers@7.26.0':
dependencies:
- '@babel/helper-validator-identifier': 7.24.6
- chalk: 2.4.2
- js-tokens: 4.0.0
- picocolors: 1.0.1
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
- '@babel/parser@7.24.6':
+ '@babel/parser@7.26.3':
dependencies:
- '@babel/types': 7.24.6
+ '@babel/types': 7.26.3
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-class-static-block@7.21.0(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-decorators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-decorators@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-decorators': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.6(supports-color@8.1.1))':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6(supports-color@8.1.1)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6(supports-color@8.1.1))
+ '@babel/core': 7.26.0
- '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.6(supports-color@8.1.1))':
+ '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6(supports-color@8.1.1)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6(supports-color@8.1.1))
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-proposal-private-methods@7.18.6(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-decorators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-proposal-private-property-in-object@7.21.11(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-async-generators@7.8.4(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-class-properties@7.12.13(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-class-static-block@7.14.5(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-decorators@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-dynamic-import@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-block-scoped-functions@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-attributes@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-meta@7.10.4(@babel/core@7.24.6)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-json-strings@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ '@babel/traverse': 7.26.4
+ globals: 11.12.0
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6(supports-color@8.1.1))':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6(supports-color@8.1.1)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/template': 7.25.9
- '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-object-rest-spread@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-optional-catch-binding@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6(supports-color@8.1.1))':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6(supports-color@8.1.1)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.24.6)':
+ '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-top-level-await@7.14.5(@babel/core@7.24.6)':
+ '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-arrow-functions@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-async-to-generator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-imports': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-block-scoping@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-validator-identifier': 7.25.9
+ '@babel/traverse': 7.26.4
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-class-static-block@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-classes@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-function-name': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-split-export-declaration': 7.24.6
- globals: 11.12.0
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/template': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-keys@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-dynamic-import@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-exponentiation-operator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-builder-binary-assignment-operator-visitor': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-export-namespace-from@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-function-name@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-function-name': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-literals@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ regenerator-transform: 0.15.2
- '@babel/plugin-transform-member-expression-literals@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-amd@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-runtime@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-simple-access': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-hoist-variables': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-identifier': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-nullish-coalescing-operator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-numeric-separator@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-typescript@7.26.5(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-annotate-as-pure': 7.25.9
+ '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-skip-transparent-expression-wrappers': 7.25.9
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-object-rest-spread@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-super@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-replace-supers': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-optional-catch-binding@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-optional-chaining@7.24.6(@babel/core@7.24.6)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters@7.24.6(@babel/core@7.24.6)':
+ '@babel/polyfill@7.12.1':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ core-js: 2.6.12
+ regenerator-runtime: 0.13.11
- '@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ dependencies:
+ '@babel/compat-data': 7.26.3
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/helper-validator-option': 7.25.9
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoped-functions': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
+ babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.40.0
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
- '@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-plugin-utils': 7.26.5
+ '@babel/types': 7.26.3
+ esutils: 2.0.3
- '@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6)':
+ '@babel/runtime@7.12.18':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ regenerator-runtime: 0.13.11
- '@babel/plugin-transform-regenerator@7.24.6(@babel/core@7.24.6)':
+ '@babel/runtime@7.26.0':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- regenerator-transform: 0.15.2
+ regenerator-runtime: 0.14.1
- '@babel/plugin-transform-reserved-words@7.24.6(@babel/core@7.24.6)':
+ '@babel/template@7.25.9':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/code-frame': 7.26.2
+ '@babel/parser': 7.26.3
+ '@babel/types': 7.26.3
- '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6)':
+ '@babel/traverse@7.26.4':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-imports': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6)
- semver: 6.3.1
+ '@babel/code-frame': 7.26.2
+ '@babel/generator': 7.26.3
+ '@babel/parser': 7.26.3
+ '@babel/template': 7.25.9
+ '@babel/types': 7.26.3
+ debug: 4.4.0
+ globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-shorthand-properties@7.24.6(@babel/core@7.24.6)':
+ '@babel/types@7.26.3':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-string-parser': 7.25.9
+ '@babel/helper-validator-identifier': 7.25.9
- '@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)':
+ '@cnakazawa/watch@1.0.4':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ exec-sh: 0.3.6
+ minimist: 1.2.8
- '@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@colors/colors@1.5.0':
+ optional: true
- '@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6)':
+ '@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@csstools/css-tokenizer': 3.0.3
- '@babel/plugin-transform-typeof-symbol@7.24.6(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@csstools/css-tokenizer@3.0.3': {}
- '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.24.6)':
+ '@csstools/media-query-list-parser@4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
+ '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-tokenizer': 3.0.3
- '@babel/plugin-transform-typescript@7.4.5(@babel/core@7.24.6)':
+ '@csstools/selector-specificity@5.0.0(postcss-selector-parser@7.0.0)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
+ postcss-selector-parser: 7.0.0
- '@babel/plugin-transform-typescript@7.5.5(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
+ '@dual-bundle/import-meta-resolve@4.1.0': {}
- '@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6)':
+ '@ember-data/adapter@5.3.9(@ember-data/legacy-compat@5.3.9(0dff902161185f8952f7bfca3b08fb11))(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
+ '@ember-data/legacy-compat': 5.3.9(0dff902161185f8952f7bfca3b08fb11)
+ '@ember-data/request-utils': 5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/store': 5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember/edition-utils': 1.2.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ ember-cli-path-utils: 1.0.0
+ ember-cli-string-utils: 1.1.0
+ ember-cli-test-info: 1.0.0
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@babel/plugin-transform-unicode-property-regex@7.24.6(@babel/core@7.24.6)':
+ '@ember-data/debug@5.3.9(@ember-data/model@5.3.9(8a06c2d1cb5a95dbfdba33b9b9950acb))(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@ember-data/model': 5.3.9(8a06c2d1cb5a95dbfdba33b9b9950acb)
+ '@ember-data/request-utils': 5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/store': 5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember/edition-utils': 1.2.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@babel/plugin-transform-unicode-regex@7.24.6(@babel/core@7.24.6)':
+ '@ember-data/graph@5.3.9(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@ember-data/store': 5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6)':
+ '@ember-data/json-api@5.3.9(35d9821000f742e797b5eb11d50d4884)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.6
+ '@ember-data/graph': 5.3.9(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/request-utils': 5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/store': 5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@babel/polyfill@7.12.1':
+ '@ember-data/legacy-compat@5.3.9(0dff902161185f8952f7bfca3b08fb11)':
dependencies:
- core-js: 2.6.12
- regenerator-runtime: 0.13.11
-
- '@babel/preset-env@7.24.6(@babel/core@7.24.6)':
- dependencies:
- '@babel/compat-data': 7.24.6
- '@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-option': 7.24.6
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)
- '@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-class-properties': 7.12.13(@babel/core@7.24.6)
- '@babel/plugin-syntax-class-static-block': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-assertions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-attributes': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-syntax-import-meta': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-json-strings': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
- '@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-top-level-await': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-async-generator-functions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoped-functions': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-class-properties': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-dotall-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-duplicate-keys': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-dynamic-import': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-exponentiation-operator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-export-namespace-from': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-for-of': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-json-strings': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-logical-assignment-operators': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-member-expression-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-systemjs': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-umd': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-new-target': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-numeric-separator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-object-rest-spread': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-object-super': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-optional-catch-binding': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-optional-chaining': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-property-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-regenerator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-reserved-words': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-template-literals': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-typeof-symbol': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-escapes': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-property-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-sets-regex': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6)
- babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6)
- core-js-compat: 3.37.1
- semver: 6.3.1
+ '@ember-data/request': 5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/request-utils': 5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/store': 5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember/test-waiters': 3.1.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ optionalDependencies:
+ '@ember-data/graph': 5.3.9(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/json-api': 5.3.9(35d9821000f742e797b5eb11d50d4884)
transitivePeerDependencies:
+ - '@glint/template'
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6)':
+ '@ember-data/model@5.3.9(8a06c2d1cb5a95dbfdba33b9b9950acb)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.6
- '@babel/types': 7.24.6
- esutils: 2.0.3
-
- '@babel/regjsgen@0.8.0': {}
+ '@ember-data/legacy-compat': 5.3.9(0dff902161185f8952f7bfca3b08fb11)
+ '@ember-data/request-utils': 5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/store': 5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/tracking': 5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
+ '@ember/edition-utils': 1.2.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ ember-cli-string-utils: 1.1.0
+ ember-cli-test-info: 1.0.0
+ inflection: 3.0.2
+ optionalDependencies:
+ '@ember-data/graph': 5.3.9(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/json-api': 5.3.9(35d9821000f742e797b5eb11d50d4884)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@babel/runtime@7.12.18':
+ '@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))':
dependencies:
- regenerator-runtime: 0.13.11
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ optionalDependencies:
+ '@ember/string': 4.0.0
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@babel/runtime@7.24.6':
+ '@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))':
dependencies:
- regenerator-runtime: 0.14.1
+ '@ember/test-waiters': 3.1.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@babel/template@7.24.6':
- dependencies:
- '@babel/code-frame': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/types': 7.24.6
+ '@ember-data/rfc395-data@0.0.4': {}
- '@babel/traverse@7.24.6(supports-color@8.1.1)':
+ '@ember-data/serializer@5.3.9(@ember-data/legacy-compat@5.3.9(0dff902161185f8952f7bfca3b08fb11))(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))':
dependencies:
- '@babel/code-frame': 7.24.6
- '@babel/generator': 7.24.6
- '@babel/helper-environment-visitor': 7.24.6
- '@babel/helper-function-name': 7.24.6
- '@babel/helper-hoist-variables': 7.24.6
- '@babel/helper-split-export-declaration': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/types': 7.24.6
- debug: 4.3.4(supports-color@8.1.1)
- globals: 11.12.0
+ '@ember-data/legacy-compat': 5.3.9(0dff902161185f8952f7bfca3b08fb11)
+ '@ember-data/request-utils': 5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/store': 5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember/edition-utils': 1.2.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ ember-cli-path-utils: 1.0.0
+ ember-cli-string-utils: 1.1.0
+ ember-cli-test-info: 1.0.0
transitivePeerDependencies:
+ - '@glint/template'
- supports-color
- '@babel/types@7.24.6':
+ '@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))':
dependencies:
- '@babel/helper-string-parser': 7.24.6
- '@babel/helper-validator-identifier': 7.24.6
- to-fast-properties: 2.0.0
+ '@ember-data/request': 5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/request-utils': 5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/tracking': 5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@cnakazawa/watch@1.0.4':
+ '@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))':
dependencies:
- exec-sh: 0.3.6
- minimist: 1.2.8
-
- '@colors/colors@1.5.0':
- optional: true
-
- '@ember-data/rfc395-data@0.0.4': {}
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ ember-source: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
'@ember/edition-utils@1.2.0': {}
- '@ember/optional-features@2.1.0':
+ '@ember/optional-features@2.2.0':
dependencies:
chalk: 4.1.2
ember-cli-version-checker: 5.1.2
@@ -8125,20 +7617,17 @@ snapshots:
'@ember/string@4.0.0': {}
- '@ember/test-helpers@2.9.4(@babel/core@7.24.6)(ember-source@4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0))':
+ '@ember/test-helpers@5.0.0(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))':
dependencies:
'@ember/test-waiters': 3.1.0
- '@embroider/macros': 1.16.2
- '@embroider/util': 1.13.1(ember-source@4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0))
- broccoli-debug: 0.6.5
- broccoli-funnel: 3.0.8
- ember-cli-babel: 7.26.11
- ember-cli-htmlbars: 6.3.0
- ember-destroyable-polyfill: 2.0.3(@babel/core@7.24.6)
- ember-source: 4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0)
+ '@embroider/addon-shim': 1.9.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@simple-dom/interface': 1.4.0
+ decorator-transforms: 2.3.0(@babel/core@7.26.0)
+ dom-element-descriptors: 0.5.1
+ ember-source: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
transitivePeerDependencies:
- '@babel/core'
- - '@glint/environment-ember-loose'
- '@glint/template'
- supports-color
@@ -8147,250 +7636,186 @@ snapshots:
calculate-cache-key-for-tree: 2.0.0
ember-cli-babel: 7.26.11
ember-cli-version-checker: 5.1.2
- semver: 7.6.2
+ semver: 7.6.3
transitivePeerDependencies:
- supports-color
- '@embroider/babel-loader-8@1.9.0(@embroider/core@1.9.0)(supports-color@8.1.1)(webpack@5.91.0)':
+ '@embroider/addon-dev@7.1.1(@glint/template@1.5.1)(rollup@4.31.0)':
dependencies:
- '@babel/core': 7.24.6(supports-color@8.1.1)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6(supports-color@8.1.1))
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6(supports-color@8.1.1))
- '@embroider/core': 1.9.0
- babel-loader: 8.3.0(@babel/core@7.24.6(supports-color@8.1.1))(webpack@5.91.0)
- transitivePeerDependencies:
- - supports-color
- - webpack
-
- '@embroider/compat@1.9.0(@embroider/core@1.9.0)':
- dependencies:
- '@babel/code-frame': 7.24.6
- '@babel/core': 7.24.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
- '@babel/preset-env': 7.24.6(@babel/core@7.24.6)
- '@babel/traverse': 7.24.6(supports-color@8.1.1)
- '@embroider/core': 1.9.0
- '@embroider/macros': 1.9.0
- '@embroider/shared-internals': 1.8.3
- '@types/babel__code-frame': 7.0.6
- '@types/yargs': 17.0.32
- assert-never: 1.2.1
- babel-plugin-syntax-dynamic-import: 6.18.0
- babylon: 6.18.0
- bind-decorator: 1.0.11
- broccoli: 3.5.2
- broccoli-concat: 4.2.5
- broccoli-file-creator: 2.1.1
- broccoli-funnel: 3.0.8
- broccoli-merge-trees: 4.2.0
- broccoli-persistent-filter: 3.1.3
- broccoli-plugin: 4.0.7
- broccoli-source: 3.0.1
- chalk: 4.1.2
- debug: 4.3.4(supports-color@8.1.1)
- fs-extra: 9.1.0
- fs-tree-diff: 2.0.1
- jsdom: 16.7.0(supports-color@8.1.1)
- lodash: 4.17.21
- pkg-up: 3.1.0
- resolve: 1.22.8
- resolve-package-path: 4.0.3
- semver: 7.6.2
- symlink-or-copy: 1.3.1
- tree-sync: 2.1.0
- typescript-memoize: 1.1.1
+ '@embroider/core': 3.5.0(@glint/template@1.5.1)
+ '@rollup/pluginutils': 4.2.1
+ content-tag: 3.1.0
+ execa: 5.1.1
+ fs-extra: 10.1.0
+ minimatch: 3.1.2
+ rollup-plugin-copy-assets: 2.0.3(rollup@4.31.0)
walk-sync: 3.0.0
yargs: 17.7.2
+ optionalDependencies:
+ rollup: 4.31.0
transitivePeerDependencies:
+ - '@glint/template'
- bufferutil
- canvas
- supports-color
- utf-8-validate
- '@embroider/core@1.9.0':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6)
- '@babel/runtime': 7.24.6
- '@babel/traverse': 7.24.6(supports-color@8.1.1)
- '@embroider/macros': 1.9.0
- '@embroider/shared-internals': 1.8.3
- assert-never: 1.2.1
- babel-import-util: 1.4.1
- babel-plugin-ember-template-compilation: 1.0.2
+ '@embroider/addon-shim@1.9.0':
+ dependencies:
+ '@embroider/shared-internals': 2.8.1
+ broccoli-funnel: 3.0.8
+ common-ancestor-path: 1.0.1
+ semver: 7.6.3
+ transitivePeerDependencies:
+ - supports-color
+
+ '@embroider/core@3.5.0(@glint/template@1.5.1)':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/parser': 7.26.3
+ '@babel/traverse': 7.26.4
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@embroider/shared-internals': 2.8.1
+ assert-never: 1.4.0
+ babel-plugin-ember-template-compilation: 2.3.0
broccoli-node-api: 1.7.0
broccoli-persistent-filter: 3.1.3
broccoli-plugin: 4.0.7
broccoli-source: 3.0.1
- debug: 4.3.4(supports-color@8.1.1)
- escape-string-regexp: 4.0.0
- fast-sourcemap-concat: 1.4.0
- filesize: 5.0.3
+ debug: 4.4.0
+ fast-sourcemap-concat: 2.1.1
+ filesize: 10.1.6
fs-extra: 9.1.0
fs-tree-diff: 2.0.1
handlebars: 4.7.8
js-string-escape: 1.0.1
- jsdom: 16.7.0(supports-color@8.1.1)
+ jsdom: 25.0.1
lodash: 4.17.21
- resolve: 1.22.8
+ resolve: 1.22.10
resolve-package-path: 4.0.3
- strip-bom: 4.0.0
+ semver: 7.6.3
typescript-memoize: 1.1.1
walk-sync: 3.0.0
- wrap-legacy-hbs-plugin-if-needed: 1.0.1
transitivePeerDependencies:
+ - '@glint/template'
- bufferutil
- canvas
- supports-color
- utf-8-validate
- '@embroider/hbs-loader@1.9.0(@embroider/core@1.9.0)(webpack@5.91.0)':
- dependencies:
- '@embroider/core': 1.9.0
- webpack: 5.91.0
-
- '@embroider/macros@1.16.2':
+ '@embroider/macros@1.16.10(@glint/template@1.5.1)':
dependencies:
- '@embroider/shared-internals': 2.6.1
- assert-never: 1.2.1
+ '@embroider/shared-internals': 2.8.1
+ assert-never: 1.4.0
babel-import-util: 2.1.1
ember-cli-babel: 7.26.11
find-up: 5.0.0
lodash: 4.17.21
- resolve: 1.22.8
- semver: 7.6.2
+ resolve: 1.22.10
+ semver: 7.6.3
+ optionalDependencies:
+ '@glint/template': 1.5.1
transitivePeerDependencies:
- supports-color
- '@embroider/macros@1.9.0':
- dependencies:
- '@embroider/shared-internals': 1.8.3
- assert-never: 1.2.1
- babel-import-util: 1.4.1
- ember-cli-babel: 7.26.11
- find-up: 5.0.0
- lodash: 4.17.21
- resolve: 1.22.8
- semver: 7.6.2
- transitivePeerDependencies:
- - supports-color
-
- '@embroider/shared-internals@1.8.3':
- dependencies:
- babel-import-util: 1.4.1
- ember-rfc176-data: 0.3.18
- fs-extra: 9.1.0
- js-string-escape: 1.0.1
- lodash: 4.17.21
- resolve-package-path: 4.0.3
- semver: 7.6.2
- typescript-memoize: 1.1.1
-
- '@embroider/shared-internals@2.6.1':
+ '@embroider/shared-internals@2.8.1':
dependencies:
babel-import-util: 2.1.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
ember-rfc176-data: 0.3.18
fs-extra: 9.1.0
+ is-subdir: 1.2.0
js-string-escape: 1.0.1
lodash: 4.17.21
minimatch: 3.1.2
+ pkg-entry-points: 1.1.1
resolve-package-path: 4.0.3
- semver: 7.6.2
+ semver: 7.6.3
typescript-memoize: 1.1.1
transitivePeerDependencies:
- supports-color
- '@embroider/test-setup@1.8.3':
+ '@embroider/test-setup@4.0.0(@embroider/core@3.5.0(@glint/template@1.5.1))':
dependencies:
lodash: 4.17.21
- resolve: 1.22.8
+ resolve: 1.22.10
+ optionalDependencies:
+ '@embroider/core': 3.5.0(@glint/template@1.5.1)
- '@embroider/util@1.13.1(ember-source@4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0))':
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.18.0)':
dependencies:
- '@embroider/macros': 1.16.2
- broccoli-funnel: 3.0.8
- ember-cli-babel: 7.26.11
- ember-source: 4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0)
+ eslint: 9.18.0
+ eslint-visitor-keys: 3.4.3
+
+ '@eslint-community/regexpp@4.12.1': {}
+
+ '@eslint/config-array@0.19.1':
+ dependencies:
+ '@eslint/object-schema': 2.1.5
+ debug: 4.4.0
+ minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
- '@embroider/webpack@1.9.0(@embroider/core@1.9.0)(webpack@5.91.0)':
- dependencies:
- '@babel/core': 7.24.6(supports-color@8.1.1)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6(supports-color@8.1.1))
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6(supports-color@8.1.1))
- '@embroider/babel-loader-8': 1.9.0(@embroider/core@1.9.0)(supports-color@8.1.1)(webpack@5.91.0)
- '@embroider/core': 1.9.0
- '@embroider/hbs-loader': 1.9.0(@embroider/core@1.9.0)(webpack@5.91.0)
- '@embroider/shared-internals': 1.8.3
- '@types/source-map': 0.5.7
- '@types/supports-color': 8.1.3
- babel-loader: 8.3.0(@babel/core@7.24.6(supports-color@8.1.1))(webpack@5.91.0)
- babel-preset-env: 1.7.0(supports-color@8.1.1)
- css-loader: 5.2.7(webpack@5.91.0)
- csso: 4.2.0
- debug: 4.3.4(supports-color@8.1.1)
- fs-extra: 9.1.0
- jsdom: 16.7.0(supports-color@8.1.1)
- lodash: 4.17.21
- mini-css-extract-plugin: 2.9.0(webpack@5.91.0)
- semver: 7.6.2
- source-map-url: 0.4.1
- style-loader: 2.0.0(webpack@5.91.0)
- supports-color: 8.1.1
- terser: 5.31.0
- thread-loader: 3.0.4(webpack@5.91.0)
- webpack: 5.91.0
- transitivePeerDependencies:
- - bufferutil
- - canvas
- - utf-8-validate
+ '@eslint/core@0.10.0':
+ dependencies:
+ '@types/json-schema': 7.0.15
- '@eslint/eslintrc@0.4.3':
+ '@eslint/eslintrc@3.2.0':
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@8.1.1)
- espree: 7.3.1
- globals: 13.24.0
- ignore: 4.0.6
+ debug: 4.4.0
+ espree: 10.3.0
+ globals: 14.0.0
+ ignore: 5.3.2
import-fresh: 3.3.0
- js-yaml: 3.14.1
+ js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
transitivePeerDependencies:
- supports-color
- '@gar/promisify@1.1.3': {}
+ '@eslint/js@9.18.0': {}
+
+ '@eslint/object-schema@2.1.5': {}
- '@glimmer/component@1.1.2(@babel/core@7.24.6)':
+ '@eslint/plugin-kit@0.2.5':
dependencies:
- '@glimmer/di': 0.1.11
+ '@eslint/core': 0.10.0
+ levn: 0.4.1
+
+ '@glimmer/compiler@0.92.4':
+ dependencies:
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/syntax': 0.92.3
+ '@glimmer/util': 0.92.3
+ '@glimmer/vm': 0.92.3
+ '@glimmer/wire-format': 0.92.3
+
+ '@glimmer/component@2.0.0':
+ dependencies:
+ '@embroider/addon-shim': 1.9.0
'@glimmer/env': 0.1.7
- '@glimmer/util': 0.44.0
- broccoli-file-creator: 2.1.1
- broccoli-merge-trees: 3.0.2
- ember-cli-babel: 7.26.11
- ember-cli-get-component-path-option: 1.0.0
- ember-cli-is-package-missing: 1.0.0
- ember-cli-normalize-entity-name: 1.0.0
- ember-cli-path-utils: 1.0.0
- ember-cli-string-utils: 1.1.0
- ember-cli-typescript: 3.0.0(@babel/core@7.24.6)
- ember-cli-version-checker: 3.1.3
- ember-compatibility-helpers: 1.2.7(@babel/core@7.24.6)
transitivePeerDependencies:
- - '@babel/core'
- supports-color
- '@glimmer/di@0.1.11': {}
+ '@glimmer/debug@0.92.4':
+ dependencies:
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/util': 0.92.3
+ '@glimmer/vm': 0.92.3
+
+ '@glimmer/destroyable@0.92.3':
+ dependencies:
+ '@glimmer/env': 0.1.7
+ '@glimmer/global-context': 0.92.3
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/util': 0.92.3
- '@glimmer/encoder@0.42.2':
+ '@glimmer/encoder@0.92.3':
dependencies:
- '@glimmer/interfaces': 0.42.2
- '@glimmer/vm': 0.42.2
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/vm': 0.92.3
'@glimmer/env@0.1.7': {}
@@ -8398,23 +7823,62 @@ snapshots:
dependencies:
'@glimmer/env': 0.1.7
- '@glimmer/interfaces@0.42.2': {}
+ '@glimmer/global-context@0.92.3': {}
'@glimmer/interfaces@0.84.3':
dependencies:
'@simple-dom/interface': 1.4.0
- '@glimmer/low-level@0.42.2': {}
+ '@glimmer/interfaces@0.92.3':
+ dependencies:
+ '@simple-dom/interface': 1.4.0
- '@glimmer/program@0.42.2':
+ '@glimmer/manager@0.92.4':
dependencies:
- '@glimmer/encoder': 0.42.2
- '@glimmer/interfaces': 0.42.2
- '@glimmer/util': 0.42.2
+ '@glimmer/debug': 0.92.4
+ '@glimmer/destroyable': 0.92.3
+ '@glimmer/env': 0.1.7
+ '@glimmer/global-context': 0.92.3
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/reference': 0.92.3
+ '@glimmer/util': 0.92.3
+ '@glimmer/validator': 0.92.3
+ '@glimmer/vm': 0.92.3
- '@glimmer/reference@0.42.2':
+ '@glimmer/node@0.92.4':
dependencies:
- '@glimmer/util': 0.42.2
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/runtime': 0.92.4
+ '@glimmer/util': 0.92.3
+ '@simple-dom/document': 1.4.0
+
+ '@glimmer/opcode-compiler@0.92.4':
+ dependencies:
+ '@glimmer/debug': 0.92.4
+ '@glimmer/encoder': 0.92.3
+ '@glimmer/env': 0.1.7
+ '@glimmer/global-context': 0.92.3
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/manager': 0.92.4
+ '@glimmer/reference': 0.92.3
+ '@glimmer/util': 0.92.3
+ '@glimmer/vm': 0.92.3
+ '@glimmer/wire-format': 0.92.3
+
+ '@glimmer/owner@0.92.3':
+ dependencies:
+ '@glimmer/util': 0.92.3
+
+ '@glimmer/program@0.92.4':
+ dependencies:
+ '@glimmer/encoder': 0.92.3
+ '@glimmer/env': 0.1.7
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/manager': 0.92.4
+ '@glimmer/opcode-compiler': 0.92.4
+ '@glimmer/util': 0.92.3
+ '@glimmer/vm': 0.92.3
+ '@glimmer/wire-format': 0.92.3
'@glimmer/reference@0.84.3':
dependencies:
@@ -8424,22 +7888,28 @@ snapshots:
'@glimmer/util': 0.84.3
'@glimmer/validator': 0.84.3
- '@glimmer/runtime@0.42.2':
+ '@glimmer/reference@0.92.3':
dependencies:
- '@glimmer/interfaces': 0.42.2
- '@glimmer/low-level': 0.42.2
- '@glimmer/program': 0.42.2
- '@glimmer/reference': 0.42.2
- '@glimmer/util': 0.42.2
- '@glimmer/vm': 0.42.2
- '@glimmer/wire-format': 0.42.2
+ '@glimmer/env': 0.1.7
+ '@glimmer/global-context': 0.92.3
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/util': 0.92.3
+ '@glimmer/validator': 0.92.3
- '@glimmer/syntax@0.42.2':
+ '@glimmer/runtime@0.92.4':
dependencies:
- '@glimmer/interfaces': 0.42.2
- '@glimmer/util': 0.42.2
- handlebars: 4.7.8
- simple-html-tokenizer: 0.5.11
+ '@glimmer/destroyable': 0.92.3
+ '@glimmer/env': 0.1.7
+ '@glimmer/global-context': 0.92.3
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/manager': 0.92.4
+ '@glimmer/owner': 0.92.3
+ '@glimmer/program': 0.92.4
+ '@glimmer/reference': 0.92.3
+ '@glimmer/util': 0.92.3
+ '@glimmer/validator': 0.92.3
+ '@glimmer/vm': 0.92.3
+ '@glimmer/wire-format': 0.92.3
'@glimmer/syntax@0.84.3':
dependencies:
@@ -8448,21 +7918,30 @@ snapshots:
'@handlebars/parser': 2.0.0
simple-html-tokenizer: 0.5.11
+ '@glimmer/syntax@0.92.3':
+ dependencies:
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/util': 0.92.3
+ '@glimmer/wire-format': 0.92.3
+ '@handlebars/parser': 2.0.0
+ simple-html-tokenizer: 0.5.11
+
'@glimmer/tracking@1.1.2':
dependencies:
'@glimmer/env': 0.1.7
'@glimmer/validator': 0.44.0
- '@glimmer/util@0.42.2': {}
-
- '@glimmer/util@0.44.0': {}
-
'@glimmer/util@0.84.3':
dependencies:
'@glimmer/env': 0.1.7
'@glimmer/interfaces': 0.84.3
'@simple-dom/interface': 1.4.0
+ '@glimmer/util@0.92.3':
+ dependencies:
+ '@glimmer/env': 0.1.7
+ '@glimmer/interfaces': 0.92.3
+
'@glimmer/validator@0.44.0': {}
'@glimmer/validator@0.84.3':
@@ -8470,40 +7949,81 @@ snapshots:
'@glimmer/env': 0.1.7
'@glimmer/global-context': 0.84.3
- '@glimmer/vm-babel-plugins@0.84.2(@babel/core@7.24.6)':
+ '@glimmer/validator@0.92.3':
+ dependencies:
+ '@glimmer/env': 0.1.7
+ '@glimmer/global-context': 0.92.3
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/util': 0.92.3
+
+ '@glimmer/vm-babel-plugins@0.92.3(@babel/core@7.26.0)':
dependencies:
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.24.6)
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.26.0)
transitivePeerDependencies:
- '@babel/core'
- '@glimmer/vm@0.42.2':
+ '@glimmer/vm@0.92.3':
dependencies:
- '@glimmer/interfaces': 0.42.2
- '@glimmer/util': 0.42.2
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/util': 0.92.3
- '@glimmer/wire-format@0.42.2':
+ '@glimmer/wire-format@0.92.3':
dependencies:
- '@glimmer/interfaces': 0.42.2
- '@glimmer/util': 0.42.2
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/util': 0.92.3
- '@handlebars/parser@2.0.0': {}
-
- '@humanwhocodes/config-array@0.5.0':
+ '@glint/core@1.5.1(typescript@5.7.3)':
dependencies:
- '@humanwhocodes/object-schema': 1.2.1
- debug: 4.3.4(supports-color@8.1.1)
- minimatch: 3.1.2
+ '@glimmer/syntax': 0.84.3
+ escape-string-regexp: 4.0.0
+ semver: 7.6.3
+ silent-error: 1.1.1
+ typescript: 5.7.3
+ uuid: 8.3.2
+ vscode-languageserver: 8.1.0
+ vscode-languageserver-textdocument: 1.0.12
+ vscode-uri: 3.0.8
+ yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- '@humanwhocodes/object-schema@1.2.1': {}
+ '@glint/environment-ember-loose@1.5.1(@glimmer/component@2.0.0)(@glint/template@1.5.1)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))':
+ dependencies:
+ '@glimmer/component': 2.0.0
+ '@glint/template': 1.5.1
+ optionalDependencies:
+ ember-cli-htmlbars: 6.3.0
+ ember-modifier: 4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
- '@iarna/toml@2.2.5': {}
+ '@glint/environment-ember-template-imports@1.5.1(@glint/environment-ember-loose@1.5.1(@glimmer/component@2.0.0)(@glint/template@1.5.1)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))))(@glint/template@1.5.1)':
+ dependencies:
+ '@glint/environment-ember-loose': 1.5.1(@glimmer/component@2.0.0)(@glint/template@1.5.1)(ember-cli-htmlbars@6.3.0)(ember-modifier@4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))
+ '@glint/template': 1.5.1
+ content-tag: 2.0.3
+
+ '@glint/template@1.5.1': {}
+
+ '@handlebars/parser@2.0.0': {}
- '@jridgewell/gen-mapping@0.3.5':
+ '@humanfs/core@0.19.1': {}
+
+ '@humanfs/node@0.16.6':
+ dependencies:
+ '@humanfs/core': 0.19.1
+ '@humanwhocodes/retry': 0.3.1
+
+ '@humanwhocodes/module-importer@1.0.1': {}
+
+ '@humanwhocodes/retry@0.3.1': {}
+
+ '@humanwhocodes/retry@0.4.1': {}
+
+ '@inquirer/figures@1.0.9': {}
+
+ '@jridgewell/gen-mapping@0.3.8':
dependencies:
'@jridgewell/set-array': 1.2.1
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
'@jridgewell/trace-mapping': 0.3.25
'@jridgewell/resolve-uri@3.1.2': {}
@@ -8512,26 +8032,34 @@ snapshots:
'@jridgewell/source-map@0.3.6':
dependencies:
- '@jridgewell/gen-mapping': 0.3.5
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
- '@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/sourcemap-codec@1.5.0': {}
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
- '@jridgewell/sourcemap-codec': 1.4.15
+ '@jridgewell/sourcemap-codec': 1.5.0
+
+ '@keyv/serialize@1.0.2':
+ dependencies:
+ buffer: 6.0.3
'@lint-todo/utils@13.1.1':
dependencies:
- '@types/eslint': 8.56.10
+ '@types/eslint': 8.56.12
find-up: 5.0.0
fs-extra: 9.1.0
proper-lockfile: 4.1.2
slash: 3.0.0
- tslib: 2.6.2
+ tslib: 2.8.1
upath: 2.0.1
+ '@nicolo-ribaudo/eslint-scope-5-internals@5.1.1-v1':
+ dependencies:
+ eslint-scope: 5.1.1
+
'@nodelib/fs.scandir@2.1.5':
dependencies:
'@nodelib/fs.stat': 2.0.5
@@ -8542,189 +8070,267 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.17.1
+ fastq: 1.18.0
+
+ '@parcel/watcher-android-arm64@2.5.0':
+ optional: true
+
+ '@parcel/watcher-darwin-arm64@2.5.0':
+ optional: true
+
+ '@parcel/watcher-darwin-x64@2.5.0':
+ optional: true
+
+ '@parcel/watcher-freebsd-x64@2.5.0':
+ optional: true
+
+ '@parcel/watcher-linux-arm-glibc@2.5.0':
+ optional: true
+
+ '@parcel/watcher-linux-arm-musl@2.5.0':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-glibc@2.5.0':
+ optional: true
+
+ '@parcel/watcher-linux-arm64-musl@2.5.0':
+ optional: true
+
+ '@parcel/watcher-linux-x64-glibc@2.5.0':
+ optional: true
- '@npmcli/fs@1.1.1':
+ '@parcel/watcher-linux-x64-musl@2.5.0':
+ optional: true
+
+ '@parcel/watcher-win32-arm64@2.5.0':
+ optional: true
+
+ '@parcel/watcher-win32-ia32@2.5.0':
+ optional: true
+
+ '@parcel/watcher-win32-x64@2.5.0':
+ optional: true
+
+ '@parcel/watcher@2.5.0':
dependencies:
- '@gar/promisify': 1.1.3
- semver: 7.6.2
+ detect-libc: 1.0.3
+ is-glob: 4.0.3
+ micromatch: 4.0.8
+ node-addon-api: 7.1.1
+ optionalDependencies:
+ '@parcel/watcher-android-arm64': 2.5.0
+ '@parcel/watcher-darwin-arm64': 2.5.0
+ '@parcel/watcher-darwin-x64': 2.5.0
+ '@parcel/watcher-freebsd-x64': 2.5.0
+ '@parcel/watcher-linux-arm-glibc': 2.5.0
+ '@parcel/watcher-linux-arm-musl': 2.5.0
+ '@parcel/watcher-linux-arm64-glibc': 2.5.0
+ '@parcel/watcher-linux-arm64-musl': 2.5.0
+ '@parcel/watcher-linux-x64-glibc': 2.5.0
+ '@parcel/watcher-linux-x64-musl': 2.5.0
+ '@parcel/watcher-win32-arm64': 2.5.0
+ '@parcel/watcher-win32-ia32': 2.5.0
+ '@parcel/watcher-win32-x64': 2.5.0
+ optional: true
+
+ '@pnpm/constants@10.0.0': {}
- '@npmcli/move-file@1.1.2':
+ '@pnpm/error@6.0.3':
dependencies:
- mkdirp: 1.0.4
- rimraf: 3.0.2
+ '@pnpm/constants': 10.0.0
- '@octokit/auth-token@2.5.0':
+ '@pnpm/find-workspace-dir@7.0.3':
dependencies:
- '@octokit/types': 6.41.0
+ '@pnpm/error': 6.0.3
+ find-up: 5.0.0
- '@octokit/core@3.6.0(encoding@0.1.13)':
+ '@rollup/plugin-babel@6.0.4(@babel/core@7.26.0)(rollup@4.31.0)':
dependencies:
- '@octokit/auth-token': 2.5.0
- '@octokit/graphql': 4.8.0(encoding@0.1.13)
- '@octokit/request': 5.6.3(encoding@0.1.13)
- '@octokit/request-error': 2.1.0
- '@octokit/types': 6.41.0
- before-after-hook: 2.2.3
- universal-user-agent: 6.0.1
+ '@babel/core': 7.26.0
+ '@babel/helper-module-imports': 7.25.9
+ '@rollup/pluginutils': 5.1.4(rollup@4.31.0)
+ optionalDependencies:
+ rollup: 4.31.0
transitivePeerDependencies:
- - encoding
+ - supports-color
- '@octokit/endpoint@6.0.12':
+ '@rollup/pluginutils@4.2.1':
dependencies:
- '@octokit/types': 6.41.0
- is-plain-object: 5.0.0
- universal-user-agent: 6.0.1
+ estree-walker: 2.0.2
+ picomatch: 2.3.1
- '@octokit/graphql@4.8.0(encoding@0.1.13)':
+ '@rollup/pluginutils@5.1.4(rollup@4.31.0)':
dependencies:
- '@octokit/request': 5.6.3(encoding@0.1.13)
- '@octokit/types': 6.41.0
- universal-user-agent: 6.0.1
- transitivePeerDependencies:
- - encoding
+ '@types/estree': 1.0.6
+ estree-walker: 2.0.2
+ picomatch: 4.0.2
+ optionalDependencies:
+ rollup: 4.31.0
- '@octokit/openapi-types@12.11.0': {}
+ '@rollup/rollup-android-arm-eabi@4.31.0':
+ optional: true
- '@octokit/plugin-paginate-rest@2.21.3(@octokit/core@3.6.0(encoding@0.1.13))':
- dependencies:
- '@octokit/core': 3.6.0(encoding@0.1.13)
- '@octokit/types': 6.41.0
+ '@rollup/rollup-android-arm64@4.31.0':
+ optional: true
- '@octokit/plugin-request-log@1.0.4(@octokit/core@3.6.0(encoding@0.1.13))':
- dependencies:
- '@octokit/core': 3.6.0(encoding@0.1.13)
+ '@rollup/rollup-darwin-arm64@4.31.0':
+ optional: true
- '@octokit/plugin-rest-endpoint-methods@5.16.2(@octokit/core@3.6.0(encoding@0.1.13))':
- dependencies:
- '@octokit/core': 3.6.0(encoding@0.1.13)
- '@octokit/types': 6.41.0
- deprecation: 2.3.1
+ '@rollup/rollup-darwin-x64@4.31.0':
+ optional: true
- '@octokit/request-error@2.1.0':
- dependencies:
- '@octokit/types': 6.41.0
- deprecation: 2.3.1
- once: 1.4.0
+ '@rollup/rollup-freebsd-arm64@4.31.0':
+ optional: true
- '@octokit/request@5.6.3(encoding@0.1.13)':
- dependencies:
- '@octokit/endpoint': 6.0.12
- '@octokit/request-error': 2.1.0
- '@octokit/types': 6.41.0
- is-plain-object: 5.0.0
- node-fetch: 2.7.0(encoding@0.1.13)
- universal-user-agent: 6.0.1
- transitivePeerDependencies:
- - encoding
+ '@rollup/rollup-freebsd-x64@4.31.0':
+ optional: true
- '@octokit/rest@18.12.0(encoding@0.1.13)':
- dependencies:
- '@octokit/core': 3.6.0(encoding@0.1.13)
- '@octokit/plugin-paginate-rest': 2.21.3(@octokit/core@3.6.0(encoding@0.1.13))
- '@octokit/plugin-request-log': 1.0.4(@octokit/core@3.6.0(encoding@0.1.13))
- '@octokit/plugin-rest-endpoint-methods': 5.16.2(@octokit/core@3.6.0(encoding@0.1.13))
- transitivePeerDependencies:
- - encoding
+ '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-arm-musleabihf@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-gnu@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-arm64-musl@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-riscv64-gnu@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-s390x-gnu@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-x64-gnu@4.31.0':
+ optional: true
+
+ '@rollup/rollup-linux-x64-musl@4.31.0':
+ optional: true
+
+ '@rollup/rollup-win32-arm64-msvc@4.31.0':
+ optional: true
+
+ '@rollup/rollup-win32-ia32-msvc@4.31.0':
+ optional: true
+
+ '@rollup/rollup-win32-x64-msvc@4.31.0':
+ optional: true
+
+ '@rtsao/scc@1.1.0': {}
- '@octokit/types@6.41.0':
+ '@simple-dom/document@1.4.0':
dependencies:
- '@octokit/openapi-types': 12.11.0
+ '@simple-dom/interface': 1.4.0
'@simple-dom/interface@1.4.0': {}
'@sindresorhus/is@0.14.0': {}
+ '@sindresorhus/merge-streams@2.3.0': {}
+
'@socket.io/component-emitter@3.1.2': {}
'@szmarczak/http-timer@1.1.2':
dependencies:
defer-to-connect: 1.1.3
- '@tootallnate/once@1.1.2': {}
+ '@tsconfig/ember@3.0.8': {}
- '@types/babel__code-frame@7.0.6': {}
+ '@types/acorn@4.0.6':
+ dependencies:
+ '@types/estree': 1.0.6
'@types/body-parser@1.19.5':
dependencies:
'@types/connect': 3.4.38
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/chai-as-promised@7.1.8':
dependencies:
- '@types/chai': 4.3.16
+ '@types/chai': 4.3.20
- '@types/chai@4.3.16': {}
+ '@types/chai@4.3.20': {}
'@types/connect@3.4.38':
dependencies:
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/cookie@0.4.1': {}
'@types/cors@2.8.17':
dependencies:
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
- '@types/debug@4.1.12':
+ '@types/eslint-scope@3.7.7':
dependencies:
- '@types/ms': 0.7.34
+ '@types/eslint': 9.6.1
+ '@types/estree': 1.0.6
- '@types/eslint-scope@3.7.7':
+ '@types/eslint@8.56.12':
dependencies:
- '@types/eslint': 8.56.10
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
- '@types/eslint@8.56.10':
+ '@types/eslint@9.6.1':
dependencies:
- '@types/estree': 1.0.5
+ '@types/estree': 1.0.6
'@types/json-schema': 7.0.15
- '@types/estree@1.0.5': {}
+ '@types/eslint__js@8.42.3':
+ dependencies:
+ '@types/eslint': 9.6.1
+
+ '@types/estree@1.0.6': {}
- '@types/express-serve-static-core@4.19.1':
+ '@types/express-serve-static-core@4.19.6':
dependencies:
- '@types/node': 20.12.12
- '@types/qs': 6.9.15
+ '@types/node': 22.10.5
+ '@types/qs': 6.9.17
'@types/range-parser': 1.2.7
'@types/send': 0.17.4
'@types/express@4.17.21':
dependencies:
'@types/body-parser': 1.19.5
- '@types/express-serve-static-core': 4.19.1
- '@types/qs': 6.9.15
+ '@types/express-serve-static-core': 4.19.6
+ '@types/qs': 6.9.17
'@types/serve-static': 1.15.7
'@types/fs-extra@5.1.0':
dependencies:
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/fs-extra@8.1.5':
dependencies:
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/glob@7.2.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/glob@8.1.0':
dependencies:
'@types/minimatch': 5.1.2
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/http-errors@2.0.4': {}
'@types/json-schema@7.0.15': {}
- '@types/keyv@3.1.4':
- dependencies:
- '@types/node': 20.12.12
+ '@types/json5@0.0.29': {}
- '@types/mdast@3.0.15':
+ '@types/keyv@3.1.4':
dependencies:
- '@types/unist': 2.0.10
+ '@types/node': 22.10.5
'@types/mime@1.3.5': {}
@@ -8732,221 +8338,212 @@ snapshots:
'@types/minimatch@5.1.2': {}
- '@types/ms@0.7.34': {}
-
- '@types/node@20.12.12':
+ '@types/node@22.10.5':
dependencies:
- undici-types: 5.26.5
+ undici-types: 6.20.0
- '@types/normalize-package-data@2.4.4': {}
+ '@types/node@9.6.61': {}
- '@types/parse-json@4.0.2': {}
+ '@types/qs@6.9.17': {}
- '@types/qs@6.9.15': {}
+ '@types/qunit@2.19.12': {}
'@types/range-parser@1.2.7': {}
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/rimraf@2.0.5':
dependencies:
'@types/glob': 8.1.0
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
+
+ '@types/rsvp@4.0.9': {}
'@types/send@0.17.4':
dependencies:
'@types/mime': 1.3.5
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
'@types/send': 0.17.4
- '@types/source-map@0.5.7':
- dependencies:
- source-map: 0.7.4
-
- '@types/supports-color@8.1.3': {}
-
'@types/symlink-or-copy@1.2.2': {}
- '@types/unist@2.0.10': {}
-
- '@types/yargs-parser@21.0.3': {}
+ '@typescript-eslint/eslint-plugin@8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3)':
+ dependencies:
+ '@eslint-community/regexpp': 4.12.1
+ '@typescript-eslint/parser': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ '@typescript-eslint/scope-manager': 8.21.0
+ '@typescript-eslint/type-utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ '@typescript-eslint/visitor-keys': 8.21.0
+ eslint: 9.18.0
+ graphemer: 1.4.0
+ ignore: 5.3.2
+ natural-compare: 1.4.0
+ ts-api-utils: 2.0.0(typescript@5.7.3)
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - supports-color
- '@types/yargs@17.0.32':
+ '@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3)':
dependencies:
- '@types/yargs-parser': 21.0.3
+ '@typescript-eslint/scope-manager': 8.21.0
+ '@typescript-eslint/types': 8.21.0
+ '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3)
+ '@typescript-eslint/visitor-keys': 8.21.0
+ debug: 4.4.0
+ eslint: 9.18.0
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - supports-color
- '@webassemblyjs/ast@1.12.1':
+ '@typescript-eslint/scope-manager@8.21.0':
dependencies:
- '@webassemblyjs/helper-numbers': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
+ '@typescript-eslint/types': 8.21.0
+ '@typescript-eslint/visitor-keys': 8.21.0
- '@webassemblyjs/ast@1.9.0':
+ '@typescript-eslint/type-utils@8.21.0(eslint@9.18.0)(typescript@5.7.3)':
dependencies:
- '@webassemblyjs/helper-module-context': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/wast-parser': 1.9.0
-
- '@webassemblyjs/floating-point-hex-parser@1.11.6': {}
-
- '@webassemblyjs/floating-point-hex-parser@1.9.0': {}
-
- '@webassemblyjs/helper-api-error@1.11.6': {}
-
- '@webassemblyjs/helper-api-error@1.9.0': {}
-
- '@webassemblyjs/helper-buffer@1.12.1': {}
-
- '@webassemblyjs/helper-buffer@1.9.0': {}
-
- '@webassemblyjs/helper-code-frame@1.9.0':
- dependencies:
- '@webassemblyjs/wast-printer': 1.9.0
+ '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ debug: 4.4.0
+ eslint: 9.18.0
+ ts-api-utils: 2.0.0(typescript@5.7.3)
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - supports-color
- '@webassemblyjs/helper-fsm@1.9.0': {}
+ '@typescript-eslint/types@8.21.0': {}
- '@webassemblyjs/helper-module-context@1.9.0':
+ '@typescript-eslint/typescript-estree@8.21.0(typescript@5.7.3)':
dependencies:
- '@webassemblyjs/ast': 1.9.0
-
- '@webassemblyjs/helper-numbers@1.11.6':
- dependencies:
- '@webassemblyjs/floating-point-hex-parser': 1.11.6
- '@webassemblyjs/helper-api-error': 1.11.6
- '@xtuc/long': 4.2.2
-
- '@webassemblyjs/helper-wasm-bytecode@1.11.6': {}
-
- '@webassemblyjs/helper-wasm-bytecode@1.9.0': {}
+ '@typescript-eslint/types': 8.21.0
+ '@typescript-eslint/visitor-keys': 8.21.0
+ debug: 4.4.0
+ fast-glob: 3.3.3
+ is-glob: 4.0.3
+ minimatch: 9.0.5
+ semver: 7.6.3
+ ts-api-utils: 2.0.0(typescript@5.7.3)
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - supports-color
- '@webassemblyjs/helper-wasm-section@1.12.1':
+ '@typescript-eslint/utils@8.21.0(eslint@9.18.0)(typescript@5.7.3)':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/wasm-gen': 1.12.1
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0)
+ '@typescript-eslint/scope-manager': 8.21.0
+ '@typescript-eslint/types': 8.21.0
+ '@typescript-eslint/typescript-estree': 8.21.0(typescript@5.7.3)
+ eslint: 9.18.0
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - supports-color
- '@webassemblyjs/helper-wasm-section@1.9.0':
+ '@typescript-eslint/visitor-keys@8.21.0':
dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-buffer': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/wasm-gen': 1.9.0
+ '@typescript-eslint/types': 8.21.0
+ eslint-visitor-keys: 4.2.0
- '@webassemblyjs/ieee754@1.11.6':
+ '@warp-drive/build-config@0.0.0-beta.7(@glint/template@1.5.1)':
dependencies:
- '@xtuc/ieee754': 1.2.0
+ '@embroider/addon-shim': 1.9.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ babel-import-util: 2.1.1
+ broccoli-funnel: 3.0.8
+ semver: 7.6.3
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@webassemblyjs/ieee754@1.9.0':
+ '@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)':
dependencies:
- '@xtuc/ieee754': 1.2.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ transitivePeerDependencies:
+ - '@glint/template'
+ - supports-color
- '@webassemblyjs/leb128@1.11.6':
+ '@webassemblyjs/ast@1.14.1':
dependencies:
- '@xtuc/long': 4.2.2
+ '@webassemblyjs/helper-numbers': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
- '@webassemblyjs/leb128@1.9.0':
- dependencies:
- '@xtuc/long': 4.2.2
+ '@webassemblyjs/floating-point-hex-parser@1.13.2': {}
- '@webassemblyjs/utf8@1.11.6': {}
+ '@webassemblyjs/helper-api-error@1.13.2': {}
- '@webassemblyjs/utf8@1.9.0': {}
+ '@webassemblyjs/helper-buffer@1.14.1': {}
- '@webassemblyjs/wasm-edit@1.12.1':
+ '@webassemblyjs/helper-numbers@1.13.2':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/helper-wasm-section': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-opt': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- '@webassemblyjs/wast-printer': 1.12.1
+ '@webassemblyjs/floating-point-hex-parser': 1.13.2
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@xtuc/long': 4.2.2
- '@webassemblyjs/wasm-edit@1.9.0':
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-buffer': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/helper-wasm-section': 1.9.0
- '@webassemblyjs/wasm-gen': 1.9.0
- '@webassemblyjs/wasm-opt': 1.9.0
- '@webassemblyjs/wasm-parser': 1.9.0
- '@webassemblyjs/wast-printer': 1.9.0
+ '@webassemblyjs/helper-wasm-bytecode@1.13.2': {}
- '@webassemblyjs/wasm-gen@1.12.1':
+ '@webassemblyjs/helper-wasm-section@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/wasm-gen': 1.14.1
- '@webassemblyjs/wasm-gen@1.9.0':
+ '@webassemblyjs/ieee754@1.13.2':
dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/ieee754': 1.9.0
- '@webassemblyjs/leb128': 1.9.0
- '@webassemblyjs/utf8': 1.9.0
+ '@xtuc/ieee754': 1.2.0
- '@webassemblyjs/wasm-opt@1.12.1':
+ '@webassemblyjs/leb128@1.13.2':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-buffer': 1.12.1
- '@webassemblyjs/wasm-gen': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
+ '@xtuc/long': 4.2.2
- '@webassemblyjs/wasm-opt@1.9.0':
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-buffer': 1.9.0
- '@webassemblyjs/wasm-gen': 1.9.0
- '@webassemblyjs/wasm-parser': 1.9.0
+ '@webassemblyjs/utf8@1.13.2': {}
- '@webassemblyjs/wasm-parser@1.12.1':
+ '@webassemblyjs/wasm-edit@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/helper-api-error': 1.11.6
- '@webassemblyjs/helper-wasm-bytecode': 1.11.6
- '@webassemblyjs/ieee754': 1.11.6
- '@webassemblyjs/leb128': 1.11.6
- '@webassemblyjs/utf8': 1.11.6
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/helper-wasm-section': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-opt': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ '@webassemblyjs/wast-printer': 1.14.1
- '@webassemblyjs/wasm-parser@1.9.0':
+ '@webassemblyjs/wasm-gen@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-api-error': 1.9.0
- '@webassemblyjs/helper-wasm-bytecode': 1.9.0
- '@webassemblyjs/ieee754': 1.9.0
- '@webassemblyjs/leb128': 1.9.0
- '@webassemblyjs/utf8': 1.9.0
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wast-parser@1.9.0':
+ '@webassemblyjs/wasm-opt@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/floating-point-hex-parser': 1.9.0
- '@webassemblyjs/helper-api-error': 1.9.0
- '@webassemblyjs/helper-code-frame': 1.9.0
- '@webassemblyjs/helper-fsm': 1.9.0
- '@xtuc/long': 4.2.2
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-buffer': 1.14.1
+ '@webassemblyjs/wasm-gen': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
- '@webassemblyjs/wast-printer@1.12.1':
+ '@webassemblyjs/wasm-parser@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.12.1
- '@xtuc/long': 4.2.2
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/helper-api-error': 1.13.2
+ '@webassemblyjs/helper-wasm-bytecode': 1.13.2
+ '@webassemblyjs/ieee754': 1.13.2
+ '@webassemblyjs/leb128': 1.13.2
+ '@webassemblyjs/utf8': 1.13.2
- '@webassemblyjs/wast-printer@1.9.0':
+ '@webassemblyjs/wast-printer@1.14.1':
dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/wast-parser': 1.9.0
+ '@webassemblyjs/ast': 1.14.1
'@xtuc/long': 4.2.2
'@xmldom/xmldom@0.8.10': {}
@@ -8955,68 +8552,40 @@ snapshots:
'@xtuc/long@4.2.2': {}
- abab@2.0.6: {}
-
abbrev@1.1.1: {}
+ abortcontroller-polyfill@1.7.8: {}
+
accepts@1.3.8:
dependencies:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-globals@6.0.0:
- dependencies:
- acorn: 7.4.1
- acorn-walk: 7.2.0
-
- acorn-import-assertions@1.9.0(acorn@8.11.3):
+ acorn-dynamic-import@3.0.0:
dependencies:
- acorn: 8.11.3
+ acorn: 5.7.4
- acorn-jsx@5.3.2(acorn@7.4.1):
+ acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
- acorn: 7.4.1
-
- acorn-walk@7.2.0: {}
+ acorn: 8.14.0
- acorn-walk@8.3.2: {}
+ acorn@5.7.4: {}
- acorn@6.4.2: {}
+ acorn@8.14.0: {}
- acorn@7.4.1: {}
+ agent-base@7.1.3: {}
- acorn@8.11.3: {}
-
- agent-base@6.0.2(supports-color@8.1.1):
- dependencies:
- debug: 4.3.4(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
-
- agentkeepalive@4.5.0:
- dependencies:
- humanize-ms: 1.2.1
-
- aggregate-error@3.1.0:
- dependencies:
- clean-stack: 2.2.0
- indent-string: 4.0.0
-
- ajv-errors@1.0.1(ajv@6.12.6):
+ ajv-formats@2.1.1:
dependencies:
- ajv: 6.12.6
-
- ajv-formats@2.1.1(ajv@8.14.0):
- optionalDependencies:
- ajv: 8.14.0
+ ajv: 8.17.1
ajv-keywords@3.5.2(ajv@6.12.6):
dependencies:
ajv: 6.12.6
- ajv-keywords@5.1.0(ajv@8.14.0):
+ ajv-keywords@5.1.0(ajv@8.17.1):
dependencies:
- ajv: 8.14.0
+ ajv: 8.17.1
fast-deep-equal: 3.1.3
ajv@6.12.6:
@@ -9026,12 +8595,12 @@ snapshots:
json-schema-traverse: 0.4.1
uri-js: 4.4.1
- ajv@8.14.0:
+ ajv@8.17.1:
dependencies:
fast-deep-equal: 3.1.3
+ fast-uri: 3.0.5
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- uri-js: 4.4.1
amd-name-resolver@1.3.1:
dependencies:
@@ -9040,12 +8609,6 @@ snapshots:
amdefine@1.0.1: {}
- ansi-align@3.0.1:
- dependencies:
- string-width: 4.2.3
-
- ansi-colors@4.1.3: {}
-
ansi-escapes@3.2.0: {}
ansi-escapes@4.3.2:
@@ -9054,16 +8617,12 @@ snapshots:
ansi-html@0.0.7: {}
- ansi-regex@2.1.1: {}
-
ansi-regex@3.0.1: {}
ansi-regex@4.1.1: {}
ansi-regex@5.0.1: {}
- ansi-styles@2.2.1: {}
-
ansi-styles@3.2.1:
dependencies:
color-convert: 1.9.3
@@ -9072,16 +8631,12 @@ snapshots:
dependencies:
color-convert: 2.0.1
- ansi-styles@5.2.0: {}
-
ansi-to-html@0.6.15:
dependencies:
entities: 2.2.0
ansicolors@0.2.1: {}
- any-promise@1.3.0: {}
-
anymatch@2.0.0:
dependencies:
micromatch: 3.1.10
@@ -9094,8 +8649,6 @@ snapshots:
normalize-path: 3.0.0
picomatch: 2.3.1
- aproba@1.2.0: {}
-
aproba@2.0.0: {}
are-we-there-yet@3.0.1:
@@ -9109,9 +8662,7 @@ snapshots:
argparse@2.0.1: {}
- aria-query@5.3.0:
- dependencies:
- dequal: 2.0.3
+ aria-query@5.3.2: {}
arr-diff@4.0.0: {}
@@ -9119,71 +8670,72 @@ snapshots:
arr-union@3.1.0: {}
- array-buffer-byte-length@1.0.1:
+ array-buffer-byte-length@1.0.2:
dependencies:
- call-bind: 1.0.7
- is-array-buffer: 3.0.4
+ call-bound: 1.0.3
+ is-array-buffer: 3.0.5
array-equal@1.0.2: {}
array-flatten@1.1.1: {}
- array-to-error@1.1.1:
+ array-includes@3.1.8:
dependencies:
- array-to-sentence: 1.1.0
-
- array-to-sentence@1.1.0: {}
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.7
+ is-string: 1.1.1
array-union@2.1.0: {}
array-unique@0.3.2: {}
- array.prototype.map@1.0.7:
+ array.prototype.findlastindex@1.2.5:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-array-method-boxes-properly: 1.0.0
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
es-object-atoms: 1.0.0
- is-string: 1.0.7
+ es-shim-unscopables: 1.0.2
- arraybuffer.prototype.slice@1.0.3:
+ array.prototype.flat@1.3.3:
dependencies:
- array-buffer-byte-length: 1.0.1
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.3
- es-errors: 1.3.0
- get-intrinsic: 1.2.4
- is-array-buffer: 3.0.4
- is-shared-array-buffer: 1.0.3
+ es-abstract: 1.23.9
+ es-shim-unscopables: 1.0.2
- asn1.js@4.10.1:
+ array.prototype.flatmap@1.3.3:
dependencies:
- bn.js: 4.12.0
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
-
- assert-never@1.2.1: {}
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-shim-unscopables: 1.0.2
- assert@1.5.1:
+ arraybuffer.prototype.slice@1.0.4:
dependencies:
- object.assign: 4.1.5
- util: 0.10.4
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.7
+ is-array-buffer: 3.0.5
+
+ assert-never@1.4.0: {}
assign-symbols@1.0.0: {}
ast-types@0.13.3: {}
- ast-types@0.13.4:
- dependencies:
- tslib: 2.6.2
-
astral-regex@2.0.0: {}
async-disk-cache@1.3.5:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
heimdalljs: 0.2.6
istextorbinary: 2.1.0
mkdirp: 0.5.6
@@ -9195,7 +8747,7 @@ snapshots:
async-disk-cache@2.1.0:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
heimdalljs: 0.2.6
istextorbinary: 2.6.0
mkdirp: 0.5.6
@@ -9205,576 +8757,131 @@ snapshots:
transitivePeerDependencies:
- supports-color
- async-each@1.0.6:
- optional: true
-
- async-promise-queue@1.0.5:
- dependencies:
- async: 2.6.4
- debug: 2.6.9(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
-
- async-retry@1.3.3:
- dependencies:
- retry: 0.13.1
-
- async@0.2.10: {}
-
- async@2.6.4:
- dependencies:
- lodash: 4.17.21
-
- asynckit@0.4.0: {}
-
- at-least-node@1.0.0: {}
-
- atob@2.1.2: {}
-
- available-typed-arrays@1.0.7:
- dependencies:
- possible-typed-array-names: 1.0.0
-
- babel-code-frame@6.26.0:
- dependencies:
- chalk: 1.1.3
- esutils: 2.0.3
- js-tokens: 3.0.2
-
- babel-core@6.26.3:
- dependencies:
- babel-code-frame: 6.26.0
- babel-generator: 6.26.1
- babel-helpers: 6.24.1
- babel-messages: 6.23.0
- babel-register: 6.26.0
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- babylon: 6.18.0
- convert-source-map: 1.9.0
- debug: 2.6.9(supports-color@8.1.1)
- json5: 0.5.1
- lodash: 4.17.21
- minimatch: 3.1.2
- path-is-absolute: 1.0.1
- private: 0.1.8
- slash: 1.0.0
- source-map: 0.5.7
- transitivePeerDependencies:
- - supports-color
-
- babel-eslint@10.1.0(eslint@7.32.0):
- dependencies:
- '@babel/code-frame': 7.24.6
- '@babel/parser': 7.24.6
- '@babel/traverse': 7.24.6(supports-color@8.1.1)
- '@babel/types': 7.24.6
- eslint: 7.32.0
- eslint-visitor-keys: 1.3.0
- resolve: 1.22.8
- transitivePeerDependencies:
- - supports-color
-
- babel-generator@6.26.1:
- dependencies:
- babel-messages: 6.23.0
- babel-runtime: 6.26.0
- babel-types: 6.26.0
- detect-indent: 4.0.0
- jsesc: 1.3.0
- lodash: 4.17.21
- source-map: 0.5.7
- trim-right: 1.0.1
-
- babel-helper-builder-binary-assignment-operator-visitor@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-explode-assignable-expression: 6.24.1(supports-color@8.1.1)
- babel-runtime: 6.26.0
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-helper-call-delegate@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-hoist-variables: 6.24.1
- babel-runtime: 6.26.0
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-helper-define-map@6.26.0(supports-color@8.1.1):
- dependencies:
- babel-helper-function-name: 6.24.1(supports-color@8.1.1)
- babel-runtime: 6.26.0
- babel-types: 6.26.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - supports-color
-
- babel-helper-explode-assignable-expression@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-runtime: 6.26.0
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-helper-function-name@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-get-function-arity: 6.24.1
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-helper-get-function-arity@6.24.1:
- dependencies:
- babel-runtime: 6.26.0
- babel-types: 6.26.0
-
- babel-helper-hoist-variables@6.24.1:
- dependencies:
- babel-runtime: 6.26.0
- babel-types: 6.26.0
-
- babel-helper-optimise-call-expression@6.24.1:
- dependencies:
- babel-runtime: 6.26.0
- babel-types: 6.26.0
-
- babel-helper-regex@6.26.0:
- dependencies:
- babel-runtime: 6.26.0
- babel-types: 6.26.0
- lodash: 4.17.21
-
- babel-helper-remap-async-to-generator@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-function-name: 6.24.1(supports-color@8.1.1)
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-helper-replace-supers@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-optimise-call-expression: 6.24.1
- babel-messages: 6.23.0
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-helpers@6.24.1:
- dependencies:
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
-
- babel-import-util@0.2.0: {}
-
- babel-import-util@1.4.1: {}
-
- babel-import-util@2.1.1: {}
-
- babel-import-util@3.0.0: {}
-
- babel-loader@8.3.0(@babel/core@7.24.6(supports-color@8.1.1))(webpack@5.91.0):
- dependencies:
- '@babel/core': 7.24.6(supports-color@8.1.1)
- find-cache-dir: 3.3.2
- loader-utils: 2.0.4
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.91.0
-
- babel-loader@8.3.0(@babel/core@7.24.6)(webpack@4.47.0):
- dependencies:
- '@babel/core': 7.24.6
- find-cache-dir: 3.3.2
- loader-utils: 2.0.4
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 4.47.0
-
- babel-loader@8.3.0(@babel/core@7.24.6)(webpack@5.91.0):
- dependencies:
- '@babel/core': 7.24.6
- find-cache-dir: 3.3.2
- loader-utils: 2.0.4
- make-dir: 3.1.0
- schema-utils: 2.7.1
- webpack: 5.91.0
-
- babel-messages@6.23.0:
- dependencies:
- babel-runtime: 6.26.0
-
- babel-plugin-check-es2015-constants@6.22.0:
- dependencies:
- babel-runtime: 6.26.0
-
- babel-plugin-debug-macros@0.2.0(@babel/core@7.24.6):
- dependencies:
- '@babel/core': 7.24.6
- semver: 5.7.2
-
- babel-plugin-debug-macros@0.3.4(@babel/core@7.24.6):
- dependencies:
- '@babel/core': 7.24.6
- semver: 5.7.2
-
- babel-plugin-ember-data-packages-polyfill@0.1.2:
- dependencies:
- '@ember-data/rfc395-data': 0.0.4
-
- babel-plugin-ember-modules-api-polyfill@3.5.0:
- dependencies:
- ember-rfc176-data: 0.3.18
-
- babel-plugin-ember-template-compilation@1.0.2:
- dependencies:
- babel-import-util: 1.4.1
- line-column: 1.0.2
- magic-string: 0.26.7
- string.prototype.matchall: 4.0.11
-
- babel-plugin-ember-template-compilation@2.2.5:
- dependencies:
- '@glimmer/syntax': 0.84.3
- babel-import-util: 3.0.0
-
- babel-plugin-filter-imports@4.0.0:
- dependencies:
- '@babel/types': 7.24.6
- lodash: 4.17.21
-
- babel-plugin-htmlbars-inline-precompile@5.3.1:
- dependencies:
- babel-plugin-ember-modules-api-polyfill: 3.5.0
- line-column: 1.0.2
- magic-string: 0.25.9
- parse-static-imports: 1.1.0
- string.prototype.matchall: 4.0.11
-
- babel-plugin-module-resolver@3.2.0:
- dependencies:
- find-babel-config: 1.2.2
- glob: 7.2.3
- pkg-up: 2.0.0
- reselect: 3.0.1
- resolve: 1.22.8
-
- babel-plugin-module-resolver@4.1.0:
- dependencies:
- find-babel-config: 1.2.2
- glob: 7.2.3
- pkg-up: 3.1.0
- reselect: 4.1.8
- resolve: 1.22.8
-
- babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6):
- dependencies:
- '@babel/compat-data': 7.24.6
- '@babel/core': 7.24.6
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
- semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-corejs3@0.10.4(@babel/core@7.24.6):
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
- core-js-compat: 3.37.1
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6):
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-syntax-async-functions@6.13.0: {}
-
- babel-plugin-syntax-dynamic-import@6.18.0: {}
-
- babel-plugin-syntax-exponentiation-operator@6.13.0: {}
-
- babel-plugin-syntax-trailing-function-commas@6.22.0: {}
-
- babel-plugin-transform-async-to-generator@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-remap-async-to-generator: 6.24.1(supports-color@8.1.1)
- babel-plugin-syntax-async-functions: 6.13.0
- babel-runtime: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-transform-es2015-arrow-functions@6.22.0:
- dependencies:
- babel-runtime: 6.26.0
-
- babel-plugin-transform-es2015-block-scoped-functions@6.22.0:
- dependencies:
- babel-runtime: 6.26.0
-
- babel-plugin-transform-es2015-block-scoping@6.26.0(supports-color@8.1.1):
- dependencies:
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- lodash: 4.17.21
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-transform-es2015-classes@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-define-map: 6.26.0(supports-color@8.1.1)
- babel-helper-function-name: 6.24.1(supports-color@8.1.1)
- babel-helper-optimise-call-expression: 6.24.1
- babel-helper-replace-supers: 6.24.1(supports-color@8.1.1)
- babel-messages: 6.23.0
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-transform-es2015-computed-properties@6.24.1(supports-color@8.1.1):
+ async-promise-queue@1.0.5:
dependencies:
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
+ async: 2.6.4
+ debug: 2.6.9
transitivePeerDependencies:
- supports-color
- babel-plugin-transform-es2015-destructuring@6.23.0:
- dependencies:
- babel-runtime: 6.26.0
+ async@0.2.10: {}
- babel-plugin-transform-es2015-duplicate-keys@6.24.1:
+ async@2.6.4:
dependencies:
- babel-runtime: 6.26.0
- babel-types: 6.26.0
+ lodash: 4.17.21
- babel-plugin-transform-es2015-for-of@6.23.0:
- dependencies:
- babel-runtime: 6.26.0
+ asynckit@0.4.0: {}
- babel-plugin-transform-es2015-function-name@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-function-name: 6.24.1(supports-color@8.1.1)
- babel-runtime: 6.26.0
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
+ at-least-node@1.0.0: {}
- babel-plugin-transform-es2015-literals@6.22.0:
- dependencies:
- babel-runtime: 6.26.0
+ atob@2.1.2: {}
- babel-plugin-transform-es2015-modules-amd@6.24.1(supports-color@8.1.1):
+ available-typed-arrays@1.0.7:
dependencies:
- babel-plugin-transform-es2015-modules-commonjs: 6.26.2(supports-color@8.1.1)
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
+ possible-typed-array-names: 1.0.0
- babel-plugin-transform-es2015-modules-commonjs@6.26.2(supports-color@8.1.1):
- dependencies:
- babel-plugin-transform-strict-mode: 6.24.1
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
+ babel-import-util@0.2.0: {}
- babel-plugin-transform-es2015-modules-systemjs@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-helper-hoist-variables: 6.24.1
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
+ babel-import-util@2.1.1: {}
- babel-plugin-transform-es2015-modules-umd@6.24.1(supports-color@8.1.1):
- dependencies:
- babel-plugin-transform-es2015-modules-amd: 6.24.1(supports-color@8.1.1)
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- transitivePeerDependencies:
- - supports-color
+ babel-import-util@3.0.0: {}
- babel-plugin-transform-es2015-object-super@6.24.1(supports-color@8.1.1):
+ babel-loader@8.4.1(@babel/core@7.26.0)(webpack@5.97.1):
dependencies:
- babel-helper-replace-supers: 6.24.1(supports-color@8.1.1)
- babel-runtime: 6.26.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ find-cache-dir: 3.3.2
+ loader-utils: 2.0.4
+ make-dir: 3.1.0
+ schema-utils: 2.7.1
+ webpack: 5.97.1
- babel-plugin-transform-es2015-parameters@6.24.1(supports-color@8.1.1):
+ babel-plugin-debug-macros@0.3.4(@babel/core@7.26.0):
dependencies:
- babel-helper-call-delegate: 6.24.1(supports-color@8.1.1)
- babel-helper-get-function-arity: 6.24.1
- babel-runtime: 6.26.0
- babel-template: 6.26.0(supports-color@8.1.1)
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.26.0
+ semver: 5.7.2
- babel-plugin-transform-es2015-shorthand-properties@6.24.1:
+ babel-plugin-ember-data-packages-polyfill@0.1.2:
dependencies:
- babel-runtime: 6.26.0
- babel-types: 6.26.0
+ '@ember-data/rfc395-data': 0.0.4
- babel-plugin-transform-es2015-spread@6.22.0:
+ babel-plugin-ember-modules-api-polyfill@3.5.0:
dependencies:
- babel-runtime: 6.26.0
+ ember-rfc176-data: 0.3.18
- babel-plugin-transform-es2015-sticky-regex@6.24.1:
+ babel-plugin-ember-template-compilation@2.3.0:
dependencies:
- babel-helper-regex: 6.26.0
- babel-runtime: 6.26.0
- babel-types: 6.26.0
+ '@glimmer/syntax': 0.84.3
+ babel-import-util: 3.0.0
- babel-plugin-transform-es2015-template-literals@6.22.0:
+ babel-plugin-htmlbars-inline-precompile@5.3.1:
dependencies:
- babel-runtime: 6.26.0
+ babel-plugin-ember-modules-api-polyfill: 3.5.0
+ line-column: 1.0.2
+ magic-string: 0.25.9
+ parse-static-imports: 1.1.0
+ string.prototype.matchall: 4.0.12
- babel-plugin-transform-es2015-typeof-symbol@6.23.0:
+ babel-plugin-module-resolver@3.2.0:
dependencies:
- babel-runtime: 6.26.0
+ find-babel-config: 1.2.2
+ glob: 7.2.3
+ pkg-up: 2.0.0
+ reselect: 3.0.1
+ resolve: 1.22.10
- babel-plugin-transform-es2015-unicode-regex@6.24.1:
+ babel-plugin-module-resolver@5.0.2:
dependencies:
- babel-helper-regex: 6.26.0
- babel-runtime: 6.26.0
- regexpu-core: 2.0.0
+ find-babel-config: 2.1.2
+ glob: 9.3.5
+ pkg-up: 3.1.0
+ reselect: 4.1.8
+ resolve: 1.22.10
- babel-plugin-transform-exponentiation-operator@6.24.1(supports-color@8.1.1):
+ babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
dependencies:
- babel-helper-builder-binary-assignment-operator-visitor: 6.24.1(supports-color@8.1.1)
- babel-plugin-syntax-exponentiation-operator: 6.13.0
- babel-runtime: 6.26.0
- transitivePeerDependencies:
- - supports-color
-
- babel-plugin-transform-regenerator@6.26.0:
- dependencies:
- regenerator-transform: 0.10.1
-
- babel-plugin-transform-strict-mode@6.24.1:
- dependencies:
- babel-runtime: 6.26.0
- babel-types: 6.26.0
-
- babel-preset-env@1.7.0(supports-color@8.1.1):
- dependencies:
- babel-plugin-check-es2015-constants: 6.22.0
- babel-plugin-syntax-trailing-function-commas: 6.22.0
- babel-plugin-transform-async-to-generator: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-arrow-functions: 6.22.0
- babel-plugin-transform-es2015-block-scoped-functions: 6.22.0
- babel-plugin-transform-es2015-block-scoping: 6.26.0(supports-color@8.1.1)
- babel-plugin-transform-es2015-classes: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-computed-properties: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-destructuring: 6.23.0
- babel-plugin-transform-es2015-duplicate-keys: 6.24.1
- babel-plugin-transform-es2015-for-of: 6.23.0
- babel-plugin-transform-es2015-function-name: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-literals: 6.22.0
- babel-plugin-transform-es2015-modules-amd: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-modules-commonjs: 6.26.2(supports-color@8.1.1)
- babel-plugin-transform-es2015-modules-systemjs: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-modules-umd: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-object-super: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-parameters: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-es2015-shorthand-properties: 6.24.1
- babel-plugin-transform-es2015-spread: 6.22.0
- babel-plugin-transform-es2015-sticky-regex: 6.24.1
- babel-plugin-transform-es2015-template-literals: 6.22.0
- babel-plugin-transform-es2015-typeof-symbol: 6.23.0
- babel-plugin-transform-es2015-unicode-regex: 6.24.1
- babel-plugin-transform-exponentiation-operator: 6.24.1(supports-color@8.1.1)
- babel-plugin-transform-regenerator: 6.26.0
- browserslist: 3.2.8
- invariant: 2.2.4
- semver: 5.7.2
+ '@babel/compat-data': 7.26.3
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-register@6.26.0:
+ babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
dependencies:
- babel-core: 6.26.3
- babel-runtime: 6.26.0
- core-js: 2.6.12
- home-or-tmp: 2.0.0
- lodash: 4.17.21
- mkdirp: 0.5.6
- source-map-support: 0.4.18
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ core-js-compat: 3.40.0
transitivePeerDependencies:
- supports-color
- babel-runtime@6.26.0:
- dependencies:
- core-js: 2.6.12
- regenerator-runtime: 0.11.1
-
- babel-template@6.26.0(supports-color@8.1.1):
+ babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0):
dependencies:
- babel-runtime: 6.26.0
- babel-traverse: 6.26.0(supports-color@8.1.1)
- babel-types: 6.26.0
- babylon: 6.18.0
- lodash: 4.17.21
+ '@babel/core': 7.26.0
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
transitivePeerDependencies:
- supports-color
- babel-traverse@6.26.0(supports-color@8.1.1):
+ babel-plugin-syntax-dynamic-import@6.18.0: {}
+
+ babel-remove-types@1.0.0:
dependencies:
- babel-code-frame: 6.26.0
- babel-messages: 6.23.0
- babel-runtime: 6.26.0
- babel-types: 6.26.0
- babylon: 6.18.0
- debug: 2.6.9(supports-color@8.1.1)
- globals: 9.18.0
- invariant: 2.2.4
- lodash: 4.17.21
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.5(@babel/core@7.26.0)
+ prettier: 2.8.8
transitivePeerDependencies:
- supports-color
- babel-types@6.26.0:
- dependencies:
- babel-runtime: 6.26.0
- esutils: 2.0.3
- lodash: 4.17.21
- to-fast-properties: 1.0.3
-
- babylon@6.18.0: {}
-
backbone@1.6.0:
dependencies:
- underscore: 1.13.6
+ underscore: 1.13.7
+
+ backburner.js@2.8.0: {}
balanced-match@1.0.2: {}
+ balanced-match@2.0.0: {}
+
base64-js@1.5.1: {}
base64id@2.0.0: {}
@@ -9793,25 +8900,14 @@ snapshots:
dependencies:
safe-buffer: 5.1.2
- before-after-hook@2.2.3: {}
+ better-path-resolve@1.0.0:
+ dependencies:
+ is-windows: 1.0.2
big.js@5.2.2: {}
- binary-extensions@1.13.1:
- optional: true
-
- binary-extensions@2.3.0:
- optional: true
-
binaryextensions@2.3.0: {}
- bind-decorator@1.0.11: {}
-
- bindings@1.5.0:
- dependencies:
- file-uri-to-path: 1.0.0
- optional: true
-
bl@4.1.0:
dependencies:
buffer: 5.7.1
@@ -9822,21 +8918,17 @@ snapshots:
bluebird@3.7.2: {}
- bn.js@4.12.0: {}
-
- bn.js@5.2.1: {}
-
- body-parser@1.20.2:
+ body-parser@1.20.3:
dependencies:
bytes: 3.1.2
content-type: 1.0.5
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
depd: 2.0.0
destroy: 1.2.0
http-errors: 2.0.0
iconv-lite: 0.4.24
on-finished: 2.4.1
- qs: 6.11.0
+ qs: 6.13.0
raw-body: 2.5.2
type-is: 1.6.18
unpipe: 1.0.0
@@ -9850,28 +8942,6 @@ snapshots:
raw-body: 1.1.7
safe-json-parse: 1.0.1
- bower-config@1.4.3:
- dependencies:
- graceful-fs: 4.2.11
- minimist: 0.2.4
- mout: 1.2.4
- osenv: 0.1.5
- untildify: 2.1.0
- wordwrap: 0.0.3
-
- bower-endpoint-parser@0.2.2: {}
-
- boxen@5.1.2:
- dependencies:
- ansi-align: 3.0.1
- camelcase: 6.3.0
- chalk: 4.1.2
- cli-boxes: 2.2.1
- string-width: 4.2.3
- type-fest: 0.20.2
- widest-line: 3.1.0
- wrap-ansi: 7.0.0
-
brace-expansion@1.1.11:
dependencies:
balanced-match: 1.0.2
@@ -9900,17 +8970,12 @@ snapshots:
dependencies:
fill-range: 7.1.1
- broccoli-amd-funnel@2.0.1:
- dependencies:
- broccoli-plugin: 1.3.1
- symlink-or-copy: 1.3.1
-
broccoli-asset-rev@3.0.0:
dependencies:
broccoli-asset-rewrite: 2.0.0
broccoli-filter: 1.3.0
broccoli-persistent-filter: 1.4.6
- json-stable-stringify: 1.1.1
+ json-stable-stringify: 1.2.1
minimatch: 3.1.2
rsvp: 3.6.2
transitivePeerDependencies:
@@ -9924,7 +8989,7 @@ snapshots:
broccoli-babel-transpiler@7.8.1:
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.26.0
'@babel/polyfill': 7.12.1
broccoli-funnel: 2.0.2
broccoli-merge-trees: 3.0.2
@@ -9933,12 +8998,26 @@ snapshots:
hash-for-dep: 1.5.1
heimdalljs: 0.2.6
heimdalljs-logger: 0.1.10
- json-stable-stringify: 1.1.1
+ json-stable-stringify: 1.2.1
rsvp: 4.8.5
workerpool: 3.1.2
transitivePeerDependencies:
- supports-color
+ broccoli-babel-transpiler@8.0.0(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ broccoli-persistent-filter: 3.1.3
+ clone: 2.1.2
+ hash-for-dep: 1.5.1
+ heimdalljs: 0.2.6
+ heimdalljs-logger: 0.1.10
+ json-stable-stringify: 1.2.1
+ rsvp: 4.8.5
+ workerpool: 6.5.1
+ transitivePeerDependencies:
+ - supports-color
+
broccoli-builder@0.18.14:
dependencies:
broccoli-node-info: 1.1.0
@@ -9955,7 +9034,7 @@ snapshots:
dependencies:
broccoli-kitchen-sink-helpers: 0.2.9
broccoli-plugin: 1.1.0
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
rimraf: 2.7.1
rsvp: 3.6.2
walk-sync: 0.2.7
@@ -9966,22 +9045,13 @@ snapshots:
dependencies:
broccoli-kitchen-sink-helpers: 0.3.1
broccoli-plugin: 1.3.1
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
rimraf: 2.7.1
rsvp: 3.6.2
walk-sync: 0.3.4
transitivePeerDependencies:
- supports-color
- broccoli-clean-css@1.1.0:
- dependencies:
- broccoli-persistent-filter: 1.4.6
- clean-css-promise: 0.1.1
- inline-source-map-comment: 1.0.5
- json-stable-stringify: 1.1.1
- transitivePeerDependencies:
- - supports-color
-
broccoli-concat@4.2.5:
dependencies:
broccoli-debug: 0.6.5
@@ -10008,7 +9078,7 @@ snapshots:
dependencies:
broccoli-kitchen-sink-helpers: 0.3.1
broccoli-plugin: 1.3.1
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
fs-extra: 0.24.0
transitivePeerDependencies:
- supports-color
@@ -10034,7 +9104,7 @@ snapshots:
broccoli-kitchen-sink-helpers: 0.3.1
broccoli-plugin: 1.3.1
copy-dereference: 1.0.0
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
mkdirp: 0.5.6
promise-map-series: 0.2.3
rsvp: 3.6.2
@@ -10050,7 +9120,7 @@ snapshots:
array-equal: 1.0.2
blank-object: 1.0.2
broccoli-plugin: 1.3.1
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
fast-ordered-set: 1.0.3
fs-tree-diff: 0.5.9
heimdalljs: 0.2.6
@@ -10067,7 +9137,7 @@ snapshots:
dependencies:
array-equal: 1.0.2
broccoli-plugin: 4.0.7
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
fs-tree-diff: 2.0.1
heimdalljs: 0.2.6
minimatch: 3.1.2
@@ -10206,6 +9276,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ broccoli-rollup@2.1.1:
+ dependencies:
+ '@types/node': 9.6.61
+ amd-name-resolver: 1.3.1
+ broccoli-plugin: 1.3.1
+ fs-tree-diff: 0.5.9
+ heimdalljs: 0.2.6
+ heimdalljs-logger: 0.1.10
+ magic-string: 0.24.1
+ node-modules-path: 1.0.2
+ rollup: 0.57.1
+ symlink-or-copy: 1.3.1
+ walk-sync: 0.3.4
+ transitivePeerDependencies:
+ - supports-color
+
+ broccoli-sass-source-maps@4.3.0:
+ dependencies:
+ broccoli-caching-writer: 3.0.3
+ include-path-searcher: 0.1.0
+ rsvp: 4.8.5
+ transitivePeerDependencies:
+ - supports-color
+
broccoli-slow-trees@3.1.0:
dependencies:
heimdalljs: 0.2.6
@@ -10234,27 +9328,37 @@ snapshots:
broccoli-persistent-filter: 2.3.1
broccoli-plugin: 2.1.0
chalk: 2.4.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
ensure-posix-path: 1.1.1
fs-extra: 8.1.0
minimatch: 3.1.2
- resolve: 1.22.8
+ resolve: 1.22.10
rsvp: 4.8.5
symlink-or-copy: 1.3.1
walk-sync: 1.1.4
transitivePeerDependencies:
- supports-color
+ broccoli-templater@2.0.2:
+ dependencies:
+ broccoli-plugin: 1.3.1
+ fs-tree-diff: 0.5.9
+ lodash.template: 4.5.0
+ rimraf: 2.7.1
+ walk-sync: 0.3.4
+ transitivePeerDependencies:
+ - supports-color
+
broccoli-terser-sourcemap@4.1.1:
dependencies:
async-promise-queue: 1.0.5
broccoli-plugin: 4.0.7
convert-source-map: 2.0.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
lodash.defaultsdeep: 4.6.1
matcher-collection: 2.0.1
symlink-or-copy: 1.3.1
- terser: 5.31.0
+ terser: 5.37.0
walk-sync: 2.2.0
workerpool: 6.5.1
transitivePeerDependencies:
@@ -10262,7 +9366,7 @@ snapshots:
broccoli@3.5.2:
dependencies:
- '@types/chai': 4.3.16
+ '@types/chai': 4.3.20
'@types/chai-as-promised': 7.1.8
'@types/express': 4.17.21
ansi-html: 0.0.7
@@ -10289,65 +9393,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- brorand@1.1.0: {}
-
- browser-process-hrtime@1.0.0: {}
-
- browserify-aes@1.2.0:
- dependencies:
- buffer-xor: 1.0.3
- cipher-base: 1.0.4
- create-hash: 1.2.0
- evp_bytestokey: 1.0.3
- inherits: 2.0.4
- safe-buffer: 5.2.1
-
- browserify-cipher@1.0.1:
- dependencies:
- browserify-aes: 1.2.0
- browserify-des: 1.0.2
- evp_bytestokey: 1.0.3
-
- browserify-des@1.0.2:
- dependencies:
- cipher-base: 1.0.4
- des.js: 1.1.0
- inherits: 2.0.4
- safe-buffer: 5.2.1
-
- browserify-rsa@4.1.0:
+ browserslist@4.24.3:
dependencies:
- bn.js: 5.2.1
- randombytes: 2.1.0
-
- browserify-sign@4.2.3:
- dependencies:
- bn.js: 5.2.1
- browserify-rsa: 4.1.0
- create-hash: 1.2.0
- create-hmac: 1.1.7
- elliptic: 6.5.5
- hash-base: 3.0.4
- inherits: 2.0.4
- parse-asn1: 5.1.7
- readable-stream: 2.3.8
- safe-buffer: 5.2.1
-
- browserify-zlib@0.2.0:
- dependencies:
- pako: 1.0.11
-
- browserslist@3.2.8:
- dependencies:
- caniuse-lite: 1.0.30001625
- electron-to-chromium: 1.4.783
-
- browserslist@4.23.0:
- dependencies:
- caniuse-lite: 1.0.30001625
- electron-to-chromium: 1.4.783
- node-releases: 2.0.14
- update-browserslist-db: 1.0.16(browserslist@4.23.0)
+ caniuse-lite: 1.0.30001690
+ electron-to-chromium: 1.5.78
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.1(browserslist@4.24.3)
bser@2.1.1:
dependencies:
@@ -10355,68 +9406,20 @@ snapshots:
buffer-from@1.1.2: {}
- buffer-xor@1.0.3: {}
-
- buffer@4.9.2:
+ buffer@5.7.1:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- isarray: 1.0.0
- buffer@5.7.1:
+ buffer@6.0.3:
dependencies:
base64-js: 1.5.1
ieee754: 1.2.1
- builtin-status-codes@3.0.0: {}
-
bytes@1.0.0: {}
- bytes@3.0.0: {}
-
bytes@3.1.2: {}
- cacache@12.0.4:
- dependencies:
- bluebird: 3.7.2
- chownr: 1.1.4
- figgy-pudding: 3.5.2
- glob: 7.2.3
- graceful-fs: 4.2.11
- infer-owner: 1.0.4
- lru-cache: 5.1.1
- mississippi: 3.0.0
- mkdirp: 0.5.6
- move-concurrently: 1.0.1
- promise-inflight: 1.0.1(bluebird@3.7.2)
- rimraf: 2.7.1
- ssri: 6.0.2
- unique-filename: 1.1.1
- y18n: 4.0.3
-
- cacache@15.3.0:
- dependencies:
- '@npmcli/fs': 1.1.1
- '@npmcli/move-file': 1.1.2
- chownr: 2.0.0
- fs-minipass: 2.1.0
- glob: 7.2.3
- infer-owner: 1.0.4
- lru-cache: 6.0.0
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- mkdirp: 1.0.4
- p-map: 4.0.0
- promise-inflight: 1.0.1(bluebird@3.7.2)
- rimraf: 3.0.2
- ssri: 8.0.1
- tar: 6.2.1
- unique-filename: 1.1.1
- transitivePeerDependencies:
- - bluebird
-
cache-base@1.0.1:
dependencies:
collection-visit: 1.0.0
@@ -10439,27 +9442,46 @@ snapshots:
normalize-url: 4.5.1
responselike: 1.0.2
+ cacheable@1.8.7:
+ dependencies:
+ hookified: 1.7.0
+ keyv: 5.2.3
+
calculate-cache-key-for-tree@2.0.0:
dependencies:
- json-stable-stringify: 1.1.1
+ json-stable-stringify: 1.2.1
- call-bind@1.0.7:
+ call-bind-apply-helpers@1.0.1:
dependencies:
- es-define-property: 1.0.0
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
+
+ call-bind@1.0.8:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-define-property: 1.0.1
+ get-intrinsic: 1.2.7
set-function-length: 1.2.2
- callsites@3.1.0: {}
+ call-bound@1.0.3:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ get-intrinsic: 1.2.7
- camelcase@6.3.0: {}
+ callsites@3.1.0: {}
can-symlink@1.0.0:
dependencies:
tmp: 0.0.28
- caniuse-lite@1.0.30001625: {}
+ caniuse-api@3.0.0:
+ dependencies:
+ browserslist: 4.24.3
+ caniuse-lite: 1.0.30001690
+ lodash.memoize: 4.1.2
+ lodash.uniq: 4.5.0
+
+ caniuse-lite@1.0.30001690: {}
capture-exit@2.0.0:
dependencies:
@@ -10470,14 +9492,6 @@ snapshots:
ansicolors: 0.2.1
redeyed: 1.0.1
- chalk@1.1.3:
- dependencies:
- ansi-styles: 2.2.1
- escape-string-regexp: 1.0.5
- has-ansi: 2.0.0
- strip-ansi: 3.0.1
- supports-color: 2.0.0
-
chalk@2.4.2:
dependencies:
ansi-styles: 3.2.1
@@ -10489,7 +9503,7 @@ snapshots:
ansi-styles: 4.3.0
supports-color: 7.2.0
- character-entities@2.0.2: {}
+ chalk@5.4.1: {}
chardet@0.7.0: {}
@@ -10497,52 +9511,13 @@ snapshots:
dependencies:
inherits: 2.0.4
- chokidar@2.1.8:
- dependencies:
- anymatch: 2.0.0
- async-each: 1.0.6
- braces: 2.3.2
- glob-parent: 3.1.0
- inherits: 2.0.4
- is-binary-path: 1.0.1
- is-glob: 4.0.3
- normalize-path: 3.0.0
- path-is-absolute: 1.0.1
- readdirp: 2.2.1
- upath: 1.2.0
- optionalDependencies:
- fsevents: 1.2.13
- transitivePeerDependencies:
- - supports-color
- optional: true
-
- chokidar@3.6.0:
+ chokidar@4.0.3:
dependencies:
- anymatch: 3.1.3
- braces: 3.0.3
- glob-parent: 5.1.2
- is-binary-path: 2.1.0
- is-glob: 4.0.3
- normalize-path: 3.0.0
- readdirp: 3.6.0
- optionalDependencies:
- fsevents: 2.3.3
- optional: true
+ readdirp: 4.1.1
- chownr@1.1.4: {}
+ chrome-trace-event@1.0.4: {}
- chownr@2.0.0: {}
-
- chrome-trace-event@1.0.3: {}
-
- ci-info@2.0.0: {}
-
- ci-info@3.9.0: {}
-
- cipher-base@1.0.4:
- dependencies:
- inherits: 2.0.4
- safe-buffer: 5.2.1
+ ci-info@4.1.0: {}
class-utils@0.3.6:
dependencies:
@@ -10553,23 +9528,14 @@ snapshots:
clean-base-url@1.0.0: {}
- clean-css-promise@0.1.1:
- dependencies:
- array-to-error: 1.1.1
- clean-css: 3.4.28
- pinkie-promise: 2.0.1
-
- clean-css@3.4.28:
+ clean-css@5.3.3:
dependencies:
- commander: 2.8.1
- source-map: 0.4.4
+ source-map: 0.6.1
clean-stack@2.2.0: {}
clean-up-path@1.0.0: {}
- cli-boxes@2.2.1: {}
-
cli-cursor@2.1.0:
dependencies:
restore-cursor: 2.0.0
@@ -10578,15 +9544,6 @@ snapshots:
dependencies:
restore-cursor: 3.1.0
- cli-highlight@2.1.11:
- dependencies:
- chalk: 4.1.2
- highlight.js: 10.7.3
- mz: 2.7.0
- parse5: 5.1.1
- parse5-htmlparser2-tree-adapter: 6.0.1
- yargs: 16.2.0
-
cli-spinners@2.9.2: {}
cli-table3@0.6.5:
@@ -10603,11 +9560,7 @@ snapshots:
cli-width@3.0.0: {}
- cliui@7.0.4:
- dependencies:
- string-width: 4.2.3
- strip-ansi: 6.0.1
- wrap-ansi: 7.0.0
+ cli-width@4.1.0: {}
cliui@8.0.1:
dependencies:
@@ -10642,6 +9595,10 @@ snapshots:
color-support@1.1.3: {}
+ colord@2.9.3: {}
+
+ colorette@1.4.0: {}
+
colors@1.0.3: {}
colors@1.4.0: {}
@@ -10652,16 +9609,14 @@ snapshots:
commander@2.20.3: {}
- commander@2.8.1:
- dependencies:
- graceful-readlink: 1.0.1
-
commander@4.1.1: {}
commander@7.2.0: {}
commander@8.3.0: {}
+ common-ancestor-path@1.0.1: {}
+
common-tags@1.8.2: {}
commondir@1.0.1: {}
@@ -10670,28 +9625,31 @@ snapshots:
compressible@2.0.18:
dependencies:
- mime-db: 1.52.0
+ mime-db: 1.53.0
- compression@1.7.4:
+ compression@1.7.5:
dependencies:
- accepts: 1.3.8
- bytes: 3.0.0
+ bytes: 3.1.2
compressible: 2.0.18
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
+ negotiator: 0.6.4
on-headers: 1.0.2
- safe-buffer: 5.1.2
+ safe-buffer: 5.2.1
vary: 1.1.2
transitivePeerDependencies:
- supports-color
concat-map@0.0.1: {}
- concat-stream@1.6.2:
- dependencies:
- buffer-from: 1.1.2
- inherits: 2.0.4
- readable-stream: 2.3.8
- typedarray: 0.0.6
+ concurrently@9.1.2:
+ dependencies:
+ chalk: 4.1.2
+ lodash: 4.17.21
+ rxjs: 7.8.1
+ shell-quote: 1.8.2
+ supports-color: 8.1.1
+ tree-kill: 1.2.2
+ yargs: 17.7.2
configstore@5.0.1:
dependencies:
@@ -10704,71 +9662,59 @@ snapshots:
connect@3.7.0:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
finalhandler: 1.1.2
parseurl: 1.3.3
utils-merge: 1.0.1
transitivePeerDependencies:
- supports-color
- console-browserify@1.2.0: {}
-
console-control-strings@1.1.0: {}
console-ui@3.1.2:
dependencies:
chalk: 2.4.2
inquirer: 6.5.2
- json-stable-stringify: 1.1.1
+ json-stable-stringify: 1.2.1
ora: 3.4.0
through2: 3.0.2
- consolidate@0.16.0(babel-core@6.26.3)(handlebars@4.7.8)(lodash@4.17.21)(mustache@4.2.0)(underscore@1.13.6):
+ consolidate@0.16.0(handlebars@4.7.8)(lodash@4.17.21)(mustache@4.2.0)(underscore@1.13.7):
dependencies:
bluebird: 3.7.2
optionalDependencies:
- babel-core: 6.26.3
handlebars: 4.7.8
lodash: 4.17.21
mustache: 4.2.0
- underscore: 1.13.6
-
- constants-browserify@1.0.0: {}
+ underscore: 1.13.7
content-disposition@0.5.4:
dependencies:
safe-buffer: 5.2.1
+ content-tag@2.0.3: {}
+
+ content-tag@3.1.0: {}
+
content-type@1.0.5: {}
continuable-cache@0.3.1: {}
- convert-source-map@1.9.0: {}
-
convert-source-map@2.0.0: {}
cookie-signature@1.0.6: {}
- cookie@0.4.2: {}
-
- cookie@0.6.0: {}
+ cookie@0.7.1: {}
- copy-concurrently@1.0.5:
- dependencies:
- aproba: 1.2.0
- fs-write-stream-atomic: 1.0.10
- iferr: 0.1.5
- mkdirp: 0.5.6
- rimraf: 2.7.1
- run-queue: 1.0.3
+ cookie@0.7.2: {}
copy-dereference@1.0.0: {}
copy-descriptor@0.1.1: {}
- core-js-compat@3.37.1:
+ core-js-compat@3.40.0:
dependencies:
- browserslist: 4.23.0
+ browserslist: 4.24.3
core-js@2.6.12: {}
@@ -10783,37 +9729,16 @@ snapshots:
object-assign: 4.1.1
vary: 1.1.2
- cosmiconfig@7.0.1:
+ cosmiconfig@9.0.0(typescript@5.7.3):
dependencies:
- '@types/parse-json': 4.0.2
+ env-paths: 2.2.1
import-fresh: 3.3.0
+ js-yaml: 4.1.0
parse-json: 5.2.0
- path-type: 4.0.0
- yaml: 1.10.2
-
- create-ecdh@4.0.4:
- dependencies:
- bn.js: 4.12.0
- elliptic: 6.5.5
-
- create-hash@1.2.0:
- dependencies:
- cipher-base: 1.0.4
- inherits: 2.0.4
- md5.js: 1.3.5
- ripemd160: 2.0.2
- sha.js: 2.4.11
-
- create-hmac@1.1.7:
- dependencies:
- cipher-base: 1.0.4
- create-hash: 1.2.0
- inherits: 2.0.4
- ripemd160: 2.0.2
- safe-buffer: 5.2.1
- sha.js: 2.4.11
+ optionalDependencies:
+ typescript: 5.7.3
- cross-spawn@6.0.5:
+ cross-spawn@6.0.6:
dependencies:
nice-try: 1.0.5
path-key: 2.0.1
@@ -10821,121 +9746,89 @@ snapshots:
shebang-command: 1.2.0
which: 1.3.1
- cross-spawn@7.0.3:
+ cross-spawn@7.0.6:
dependencies:
path-key: 3.1.1
shebang-command: 2.0.0
which: 2.0.2
- crypto-browserify@3.12.0:
- dependencies:
- browserify-cipher: 1.0.1
- browserify-sign: 4.2.3
- create-ecdh: 4.0.4
- create-hash: 1.2.0
- create-hmac: 1.1.7
- diffie-hellman: 5.0.3
- inherits: 2.0.4
- pbkdf2: 3.1.2
- public-encrypt: 4.0.3
- randombytes: 2.1.0
- randomfill: 1.0.4
-
crypto-random-string@2.0.0: {}
- css-loader@5.2.7(webpack@5.91.0):
+ css-functions-list@3.2.3: {}
+
+ css-loader@5.2.7(webpack@5.97.1):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
+ icss-utils: 5.1.0(postcss@8.5.1)
loader-utils: 2.0.4
- postcss: 8.4.38
- postcss-modules-extract-imports: 3.1.0(postcss@8.4.38)
- postcss-modules-local-by-default: 4.0.5(postcss@8.4.38)
- postcss-modules-scope: 3.2.0(postcss@8.4.38)
- postcss-modules-values: 4.0.0(postcss@8.4.38)
+ postcss: 8.5.1
+ postcss-modules-extract-imports: 3.1.0(postcss@8.5.1)
+ postcss-modules-local-by-default: 4.2.0(postcss@8.5.1)
+ postcss-modules-scope: 3.2.1(postcss@8.5.1)
+ postcss-modules-values: 4.0.0(postcss@8.5.1)
postcss-value-parser: 4.2.0
schema-utils: 3.3.0
- semver: 7.6.2
- webpack: 5.91.0
+ semver: 7.6.3
+ webpack: 5.97.1
- css-tree@1.1.3:
+ css-tree@3.1.0:
dependencies:
- mdn-data: 2.0.14
- source-map: 0.6.1
-
- css-tree@2.3.1:
- dependencies:
- mdn-data: 2.0.30
- source-map-js: 1.2.0
+ mdn-data: 2.12.2
+ source-map-js: 1.2.1
cssesc@3.0.0: {}
- csso@4.2.0:
- dependencies:
- css-tree: 1.1.3
-
- cssom@0.3.8: {}
-
- cssom@0.4.4: {}
-
- cssstyle@2.3.0:
+ cssstyle@4.1.0:
dependencies:
- cssom: 0.3.8
-
- cyclist@1.0.2: {}
+ rrweb-cssom: 0.7.1
dag-map@2.0.2: {}
- data-uri-to-buffer@3.0.1: {}
-
- data-urls@2.0.0:
+ data-urls@5.0.0:
dependencies:
- abab: 2.0.6
- whatwg-mimetype: 2.3.0
- whatwg-url: 8.7.0
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.1.0
- data-view-buffer@1.0.1:
+ data-view-buffer@1.0.2:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
- data-view-byte-length@1.0.1:
+ data-view-byte-length@1.0.2:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
- data-view-byte-offset@1.0.0:
+ data-view-byte-offset@1.0.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
es-errors: 1.3.0
- is-data-view: 1.0.1
+ is-data-view: 1.0.2
+
+ date-fns@3.6.0: {}
- date-fns@2.30.0:
+ date-time@2.1.0:
dependencies:
- '@babel/runtime': 7.24.6
+ time-zone: 1.0.0
- debug@2.6.9(supports-color@8.1.1):
+ debug@2.6.9:
dependencies:
ms: 2.0.0
- optionalDependencies:
- supports-color: 8.1.1
debug@3.2.7:
dependencies:
ms: 2.1.3
- debug@4.3.4(supports-color@8.1.1):
+ debug@4.3.7:
dependencies:
- ms: 2.1.2
- optionalDependencies:
- supports-color: 8.1.1
-
- decimal.js@10.4.3: {}
+ ms: 2.1.3
- decode-named-character-reference@1.0.2:
+ debug@4.4.0:
dependencies:
- character-entities: 2.0.2
+ ms: 2.1.3
+
+ decimal.js@10.4.3: {}
decode-uri-component@0.2.2: {}
@@ -10943,6 +9836,13 @@ snapshots:
dependencies:
mimic-response: 1.0.1
+ decorator-transforms@2.3.0(@babel/core@7.26.0):
+ dependencies:
+ '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
+ babel-import-util: 3.0.0
+ transitivePeerDependencies:
+ - '@babel/core'
+
deep-extend@0.6.0: {}
deep-is@0.1.4: {}
@@ -10955,9 +9855,9 @@ snapshots:
define-data-property@1.1.4:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
es-errors: 1.3.0
- gopd: 1.0.1
+ gopd: 1.2.0
define-properties@1.2.1:
dependencies:
@@ -10978,13 +9878,6 @@ snapshots:
is-descriptor: 1.0.3
isobject: 3.0.1
- degenerator@3.0.4:
- dependencies:
- ast-types: 0.13.4
- escodegen: 1.14.3
- esprima: 4.0.1
- vm2: 3.9.19
-
delayed-stream@1.0.0: {}
delegates@1.0.0: {}
@@ -10993,66 +9886,45 @@ snapshots:
depd@2.0.0: {}
- deprecation@2.3.1: {}
-
- dequal@2.0.3: {}
-
- des.js@1.1.0:
- dependencies:
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
-
destroy@1.2.0: {}
detect-file@1.0.0: {}
- detect-indent@4.0.0:
- dependencies:
- repeating: 2.0.1
-
detect-indent@6.1.0: {}
+ detect-libc@1.0.3:
+ optional: true
+
detect-newline@3.1.0: {}
diff@5.2.0: {}
- diffie-hellman@5.0.3:
- dependencies:
- bn.js: 4.12.0
- miller-rabin: 4.0.1
- randombytes: 2.1.0
-
dir-glob@3.0.1:
dependencies:
path-type: 4.0.0
- doctrine@3.0.0:
+ doctrine@2.1.0:
dependencies:
esutils: 2.0.3
- domain-browser@1.2.0: {}
-
- domexception@2.0.1:
- dependencies:
- webidl-conversions: 5.0.0
+ dom-element-descriptors@0.5.1: {}
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
dot-prop@5.3.0:
dependencies:
is-obj: 2.0.0
- duplexer3@0.1.5: {}
-
- duplexify@3.7.1:
+ dunder-proto@1.0.1:
dependencies:
- end-of-stream: 1.4.4
- inherits: 2.0.4
- readable-stream: 2.3.8
- stream-shift: 1.0.3
+ call-bind-apply-helpers: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
+ duplexer3@0.1.5: {}
editions@1.3.4: {}
@@ -11063,67 +9935,21 @@ snapshots:
ee-first@1.1.1: {}
- electron-to-chromium@1.4.783: {}
+ electron-to-chromium@1.5.78: {}
- elliptic@6.5.5:
+ ember-auto-import@2.10.0(@glint/template@1.5.1)(webpack@5.97.1):
dependencies:
- bn.js: 4.12.0
- brorand: 1.1.0
- hash.js: 1.1.7
- hmac-drbg: 1.0.1
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
- minimalistic-crypto-utils: 1.0.1
-
- ember-auto-import@1.12.2:
- dependencies:
- '@babel/core': 7.24.6
- '@babel/preset-env': 7.24.6(@babel/core@7.24.6)
- '@babel/traverse': 7.24.6(supports-color@8.1.1)
- '@babel/types': 7.24.6
- '@embroider/shared-internals': 1.8.3
- babel-core: 6.26.3
- babel-loader: 8.3.0(@babel/core@7.24.6)(webpack@4.47.0)
- babel-plugin-syntax-dynamic-import: 6.18.0
- babylon: 6.18.0
- broccoli-debug: 0.6.5
- broccoli-node-api: 1.7.0
- broccoli-plugin: 4.0.7
- broccoli-source: 3.0.1
- debug: 3.2.7
- ember-cli-babel: 7.26.11
- enhanced-resolve: 4.5.0
- fs-extra: 6.0.1
- fs-tree-diff: 2.0.1
- handlebars: 4.7.8
- js-string-escape: 1.0.1
- lodash: 4.17.21
- mkdirp: 0.5.6
- resolve-package-path: 3.1.0
- rimraf: 2.7.1
- semver: 7.6.2
- symlink-or-copy: 1.3.1
- typescript-memoize: 1.1.1
- walk-sync: 0.3.4
- webpack: 4.47.0
- transitivePeerDependencies:
- - supports-color
- - webpack-cli
- - webpack-command
-
- ember-auto-import@2.7.4(webpack@5.91.0):
- dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-decorators': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-transform-class-static-block': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-env': 7.24.6(@babel/core@7.24.6)
- '@embroider/macros': 1.16.2
- '@embroider/shared-internals': 2.6.1
- babel-loader: 8.3.0(@babel/core@7.24.6)(webpack@5.91.0)
+ '@babel/core': 7.26.0
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@embroider/shared-internals': 2.8.1
+ babel-loader: 8.4.1(@babel/core@7.26.0)(webpack@5.97.1)
babel-plugin-ember-modules-api-polyfill: 3.5.0
- babel-plugin-ember-template-compilation: 2.2.5
+ babel-plugin-ember-template-compilation: 2.3.0
babel-plugin-htmlbars-inline-precompile: 5.3.1
babel-plugin-syntax-dynamic-import: 6.18.0
broccoli-debug: 0.6.5
@@ -11131,20 +9957,22 @@ snapshots:
broccoli-merge-trees: 4.2.0
broccoli-plugin: 4.0.7
broccoli-source: 3.0.1
- css-loader: 5.2.7(webpack@5.91.0)
- debug: 4.3.4(supports-color@8.1.1)
+ css-loader: 5.2.7(webpack@5.97.1)
+ debug: 4.4.0
fs-extra: 10.1.0
fs-tree-diff: 2.0.1
handlebars: 4.7.8
+ is-subdir: 1.2.0
js-string-escape: 1.0.1
lodash: 4.17.21
- mini-css-extract-plugin: 2.9.0(webpack@5.91.0)
+ mini-css-extract-plugin: 2.9.2(webpack@5.97.1)
minimatch: 3.1.2
parse5: 6.0.1
- resolve: 1.22.8
+ pkg-entry-points: 1.1.1
+ resolve: 1.22.10
resolve-package-path: 4.0.3
- semver: 7.6.2
- style-loader: 2.0.0(webpack@5.91.0)
+ semver: 7.6.3
+ style-loader: 2.0.0(webpack@5.97.1)
typescript-memoize: 1.1.1
walk-sync: 3.0.0
transitivePeerDependencies:
@@ -11152,24 +9980,32 @@ snapshots:
- supports-color
- webpack
+ ember-cli-app-version@7.0.0(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)):
+ dependencies:
+ ember-cli-babel: 7.26.11
+ ember-source: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
+ git-repo-info: 2.1.1
+ transitivePeerDependencies:
+ - supports-color
+
ember-cli-babel-plugin-helpers@1.1.1: {}
ember-cli-babel@7.26.11:
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.24.6
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-decorators': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.5(@babel/core@7.26.0)
'@babel/polyfill': 7.12.1
- '@babel/preset-env': 7.24.6(@babel/core@7.24.6)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
'@babel/runtime': 7.12.18
amd-name-resolver: 1.3.1
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.24.6)
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.26.0)
babel-plugin-ember-data-packages-polyfill: 0.1.2
babel-plugin-ember-modules-api-polyfill: 3.5.0
babel-plugin-module-resolver: 3.2.0
@@ -11189,23 +10025,83 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-cli-dependency-checker@3.3.2(ember-cli@4.12.3(babel-core@6.26.3)(handlebars@4.7.8)(underscore@1.13.6)):
+ ember-cli-babel@8.2.0(@babel/core@7.26.0):
+ dependencies:
+ '@babel/core': 7.26.0
+ '@babel/helper-compilation-targets': 7.25.9
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-methods': 7.18.6(@babel/core@7.26.0)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.11(@babel/core@7.26.0)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-runtime': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.5(@babel/core@7.26.0)
+ '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
+ '@babel/runtime': 7.12.18
+ amd-name-resolver: 1.3.1
+ babel-plugin-debug-macros: 0.3.4(@babel/core@7.26.0)
+ babel-plugin-ember-data-packages-polyfill: 0.1.2
+ babel-plugin-ember-modules-api-polyfill: 3.5.0
+ babel-plugin-module-resolver: 5.0.2
+ broccoli-babel-transpiler: 8.0.0(@babel/core@7.26.0)
+ broccoli-debug: 0.6.5
+ broccoli-funnel: 3.0.8
+ broccoli-source: 3.0.1
+ calculate-cache-key-for-tree: 2.0.0
+ clone: 2.1.2
+ ember-cli-babel-plugin-helpers: 1.1.1
+ ember-cli-version-checker: 5.1.2
+ ensure-posix-path: 1.1.1
+ resolve-package-path: 4.0.3
+ semver: 7.6.3
+ transitivePeerDependencies:
+ - supports-color
+
+ ember-cli-clean-css@3.0.0:
+ dependencies:
+ broccoli-persistent-filter: 3.1.3
+ clean-css: 5.3.3
+ json-stable-stringify: 1.2.1
+ transitivePeerDependencies:
+ - supports-color
+
+ ember-cli-dependency-checker@3.3.3(ember-cli@6.1.0(handlebars@4.7.8)(underscore@1.13.7)):
dependencies:
chalk: 2.4.2
- ember-cli: 4.12.3(babel-core@6.26.3)(handlebars@4.7.8)(underscore@1.13.6)
- find-yarn-workspace-root: 1.2.1
+ ember-cli: 6.1.0(handlebars@4.7.8)(underscore@1.13.7)
+ find-yarn-workspace-root: 2.0.0
is-git-url: 1.0.0
- resolve: 1.22.8
+ resolve: 1.22.10
semver: 5.7.2
- transitivePeerDependencies:
- - supports-color
ember-cli-get-component-path-option@1.0.0: {}
+ ember-cli-htmlbars@5.7.2:
+ dependencies:
+ '@ember/edition-utils': 1.2.0
+ babel-plugin-htmlbars-inline-precompile: 5.3.1
+ broccoli-debug: 0.6.5
+ broccoli-persistent-filter: 3.1.3
+ broccoli-plugin: 4.0.7
+ common-tags: 1.8.2
+ ember-cli-babel-plugin-helpers: 1.1.1
+ ember-cli-version-checker: 5.1.2
+ fs-tree-diff: 2.0.1
+ hash-for-dep: 1.5.1
+ heimdalljs-logger: 0.1.10
+ json-stable-stringify: 1.2.1
+ semver: 7.6.3
+ silent-error: 1.1.1
+ strip-bom: 4.0.0
+ walk-sync: 2.2.0
+ transitivePeerDependencies:
+ - supports-color
+
ember-cli-htmlbars@6.3.0:
dependencies:
'@ember/edition-utils': 1.2.0
- babel-plugin-ember-template-compilation: 2.2.5
+ babel-plugin-ember-template-compilation: 2.3.0
babel-plugin-htmlbars-inline-precompile: 5.3.1
broccoli-debug: 0.6.5
broccoli-persistent-filter: 3.1.3
@@ -11215,7 +10111,7 @@ snapshots:
hash-for-dep: 1.5.1
heimdalljs-logger: 0.1.10
js-string-escape: 1.0.1
- semver: 7.6.2
+ semver: 7.6.3
silent-error: 1.1.1
walk-sync: 2.2.0
transitivePeerDependencies:
@@ -11238,12 +10134,19 @@ snapshots:
ember-cli-path-utils@1.0.0: {}
- ember-cli-preprocess-registry@3.3.0:
+ ember-cli-preprocess-registry@5.0.1:
+ dependencies:
+ broccoli-funnel: 3.0.8
+ debug: 4.4.0
+ transitivePeerDependencies:
+ - supports-color
+
+ ember-cli-sass@11.0.1:
dependencies:
- broccoli-clean-css: 1.1.0
broccoli-funnel: 2.0.2
- debug: 3.2.7
- process-relative-require: 1.0.0
+ broccoli-merge-trees: 3.0.2
+ broccoli-sass-source-maps: 4.3.0
+ ember-cli-version-checker: 2.2.0
transitivePeerDependencies:
- supports-color
@@ -11261,11 +10164,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-cli-test-loader@3.1.0:
+ ember-cli-test-info@1.0.0:
dependencies:
- ember-cli-babel: 7.26.11
- transitivePeerDependencies:
- - supports-color
+ ember-cli-string-utils: 1.1.0
ember-cli-typescript-blueprint-polyfill@0.1.0:
dependencies:
@@ -11274,40 +10175,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-cli-typescript@2.0.2(@babel/core@7.24.6):
+ ember-cli-typescript@4.2.1:
dependencies:
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript': 7.4.5(@babel/core@7.24.6)
ansi-to-html: 0.6.15
- debug: 4.3.4(supports-color@8.1.1)
- ember-cli-babel-plugin-helpers: 1.1.1
- execa: 1.0.0
- fs-extra: 7.0.1
- resolve: 1.22.8
+ broccoli-stew: 3.0.0
+ debug: 4.4.0
+ execa: 4.1.0
+ fs-extra: 9.1.0
+ resolve: 1.22.10
rsvp: 4.8.5
- semver: 6.3.1
+ semver: 7.6.3
stagehand: 1.0.1
- walk-sync: 1.1.4
+ walk-sync: 2.2.0
transitivePeerDependencies:
- - '@babel/core'
- supports-color
- ember-cli-typescript@3.0.0(@babel/core@7.24.6):
+ ember-cli-version-checker@2.2.0:
dependencies:
- '@babel/plugin-transform-typescript': 7.5.5(@babel/core@7.24.6)
- ansi-to-html: 0.6.15
- debug: 4.3.4(supports-color@8.1.1)
- ember-cli-babel-plugin-helpers: 1.1.1
- execa: 2.1.0
- fs-extra: 8.1.0
- resolve: 1.22.8
- rsvp: 4.8.5
- semver: 6.3.1
- stagehand: 1.0.1
- walk-sync: 2.2.0
- transitivePeerDependencies:
- - '@babel/core'
- - supports-color
+ resolve: 1.22.10
+ semver: 5.7.2
ember-cli-version-checker@3.1.3:
dependencies:
@@ -11325,22 +10211,16 @@ snapshots:
ember-cli-version-checker@5.1.2:
dependencies:
resolve-package-path: 3.1.0
- semver: 7.6.2
+ semver: 7.6.3
silent-error: 1.1.1
transitivePeerDependencies:
- supports-color
- ember-cli@4.12.3(babel-core@6.26.3)(handlebars@4.7.8)(underscore@1.13.6):
+ ember-cli@6.1.0(handlebars@4.7.8)(underscore@1.13.7):
dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-transform-modules-amd': 7.24.6(@babel/core@7.24.6)
- amd-name-resolver: 1.3.1
- babel-plugin-module-resolver: 4.1.0
- bower-config: 1.4.3
- bower-endpoint-parser: 0.2.2
+ '@pnpm/find-workspace-dir': 7.0.3
+ babel-remove-types: 1.0.0
broccoli: 3.5.2
- broccoli-amd-funnel: 2.0.1
- broccoli-babel-transpiler: 7.8.1
broccoli-builder: 0.18.14
broccoli-concat: 4.2.5
broccoli-config-loader: 1.0.1
@@ -11356,24 +10236,25 @@ snapshots:
calculate-cache-key-for-tree: 2.0.0
capture-exit: 2.0.0
chalk: 4.1.2
- ci-info: 3.9.0
+ ci-info: 4.1.0
clean-base-url: 1.0.0
- compression: 1.7.4
+ compression: 1.7.5
configstore: 5.0.1
console-ui: 3.1.2
+ content-tag: 2.0.3
core-object: 3.1.5
dag-map: 2.0.2
diff: 5.2.0
ember-cli-is-package-missing: 1.0.0
ember-cli-lodash-subset: 2.0.1
ember-cli-normalize-entity-name: 1.0.0
- ember-cli-preprocess-registry: 3.3.0
+ ember-cli-preprocess-registry: 5.0.1
ember-cli-string-utils: 1.1.0
ensure-posix-path: 1.1.1
execa: 5.1.1
exit: 0.1.2
- express: 4.19.2
- filesize: 10.1.2
+ express: 4.21.2
+ filesize: 10.1.6
find-up: 5.0.0
find-yarn-workspace-root: 2.0.0
fixturify-project: 2.1.1
@@ -11388,39 +10269,35 @@ snapshots:
heimdalljs-logger: 0.1.10
http-proxy: 1.18.1
inflection: 2.0.1
- inquirer: 8.2.6
+ inquirer: 9.3.7
is-git-url: 1.0.0
is-language-code: 3.1.0
- isbinaryfile: 5.0.2
- js-yaml: 4.1.0
- leek: 0.0.24
+ isbinaryfile: 5.0.4
lodash: 4.17.21
markdown-it: 13.0.2
markdown-it-terminal: 0.4.0(markdown-it@13.0.2)
minimatch: 7.4.6
morgan: 1.10.0
nopt: 3.0.6
- npm-package-arg: 10.1.0
+ npm-package-arg: 12.0.1
os-locale: 5.0.0
p-defer: 3.0.0
portfinder: 1.0.32
promise-map-series: 0.3.0
promise.hash.helper: 1.0.8
quick-temp: 0.1.8
- remove-types: 1.0.0
- resolve: 1.22.8
+ resolve: 1.22.10
resolve-package-path: 4.0.3
- safe-stable-stringify: 2.4.3
+ safe-stable-stringify: 2.5.0
sane: 5.0.1
- semver: 7.6.2
+ semver: 7.6.3
silent-error: 1.1.1
sort-package-json: 1.57.0
symlink-or-copy: 1.3.1
temp: 0.9.4
- testem: 3.13.0(babel-core@6.26.3)(handlebars@4.7.8)(lodash@4.17.21)(underscore@1.13.6)
+ testem: 3.15.2(handlebars@4.7.8)(underscore@1.13.7)
tiny-lr: 2.0.0
tree-sync: 2.1.0
- uuid: 9.0.1
walk-sync: 3.0.0
watch-detector: 1.0.2
workerpool: 6.5.1
@@ -11482,117 +10359,160 @@ snapshots:
- walrus
- whiskers
- ember-compatibility-helpers@1.2.7(@babel/core@7.24.6):
- dependencies:
- babel-plugin-debug-macros: 0.2.0(@babel/core@7.24.6)
- ember-cli-version-checker: 5.1.2
- find-up: 5.0.0
- fs-extra: 9.1.0
- semver: 5.7.2
+ ember-data@5.3.9(@ember/string@4.0.0)(@ember/test-helpers@5.0.0(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@ember/test-waiters@3.1.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))(qunit@2.24.0):
+ dependencies:
+ '@ember-data/adapter': 5.3.9(@ember-data/legacy-compat@5.3.9(0dff902161185f8952f7bfca3b08fb11))(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/debug': 5.3.9(@ember-data/model@5.3.9(8a06c2d1cb5a95dbfdba33b9b9950acb))(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/graph': 5.3.9(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/json-api': 5.3.9(35d9821000f742e797b5eb11d50d4884)
+ '@ember-data/legacy-compat': 5.3.9(0dff902161185f8952f7bfca3b08fb11)
+ '@ember-data/model': 5.3.9(8a06c2d1cb5a95dbfdba33b9b9950acb)
+ '@ember-data/request': 5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/request-utils': 5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/serializer': 5.3.9(@ember-data/legacy-compat@5.3.9(0dff902161185f8952f7bfca3b08fb11))(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/store@5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/store': 5.3.9(@ember-data/request-utils@5.3.9(@ember/string@4.0.0)(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/request@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1)))(@ember-data/tracking@5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))
+ '@ember-data/tracking': 5.3.9(@glint/template@1.5.1)(@warp-drive/core-types@0.0.0-beta.12(@glint/template@1.5.1))(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
+ '@ember/edition-utils': 1.2.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ '@warp-drive/build-config': 0.0.0-beta.7(@glint/template@1.5.1)
+ '@warp-drive/core-types': 0.0.0-beta.12(@glint/template@1.5.1)
+ optionalDependencies:
+ '@ember/test-helpers': 5.0.0(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
+ '@ember/test-waiters': 3.1.0
+ qunit: 2.24.0
transitivePeerDependencies:
- - '@babel/core'
+ - '@ember/string'
+ - '@glint/template'
+ - ember-inflector
+ - ember-source
- supports-color
- ember-destroyable-polyfill@2.0.3(@babel/core@7.24.6):
+ ember-eslint-parser@0.5.7(@babel/core@7.26.0)(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0):
dependencies:
- ember-cli-babel: 7.26.11
- ember-cli-version-checker: 5.1.2
- ember-compatibility-helpers: 1.2.7(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/eslint-parser': 7.26.5(@babel/core@7.26.0)(eslint@9.18.0)
+ '@glimmer/syntax': 0.92.3
+ content-tag: 2.0.3
+ eslint-scope: 7.2.2
+ html-tags: 3.3.1
+ mathml-tag-names: 2.1.3
+ svg-tags: 1.0.0
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
transitivePeerDependencies:
- - '@babel/core'
- - supports-color
-
- ember-disable-prototype-extensions@1.1.3: {}
+ - eslint
- ember-export-application-global@2.0.1: {}
-
- ember-load-initializers@2.1.2(@babel/core@7.24.6):
+ ember-fetch@8.1.2:
dependencies:
+ abortcontroller-polyfill: 1.7.8
+ broccoli-concat: 4.2.5
+ broccoli-debug: 0.6.5
+ broccoli-merge-trees: 4.2.0
+ broccoli-rollup: 2.1.1
+ broccoli-stew: 3.0.0
+ broccoli-templater: 2.0.2
+ calculate-cache-key-for-tree: 2.0.0
+ caniuse-api: 3.0.0
ember-cli-babel: 7.26.11
- ember-cli-typescript: 2.0.2(@babel/core@7.24.6)
+ ember-cli-typescript: 4.2.1
+ ember-cli-version-checker: 5.1.2
+ node-fetch: 2.7.0
+ whatwg-fetch: 3.6.20
transitivePeerDependencies:
- - '@babel/core'
+ - encoding
- supports-color
- ember-maybe-import-regenerator@1.0.0:
+ ember-load-initializers@3.0.1(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)):
dependencies:
- broccoli-funnel: 2.0.2
- broccoli-merge-trees: 3.0.2
- ember-cli-babel: 7.26.11
- regenerator-runtime: 0.13.11
+ ember-source: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
+
+ ember-modifier@4.2.0(@babel/core@7.26.0)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)):
+ dependencies:
+ '@embroider/addon-shim': 1.9.0
+ decorator-transforms: 2.3.0(@babel/core@7.26.0)
+ ember-cli-normalize-entity-name: 1.0.0
+ ember-cli-string-utils: 1.1.0
+ optionalDependencies:
+ ember-source: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
transitivePeerDependencies:
+ - '@babel/core'
- supports-color
- ember-page-title@7.0.0:
+ ember-page-title@8.2.3(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)):
dependencies:
- ember-cli-babel: 7.26.11
+ '@embroider/addon-shim': 1.9.0
+ '@simple-dom/document': 1.4.0
+ ember-source: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
transitivePeerDependencies:
- supports-color
- ember-qunit@5.1.5(@ember/test-helpers@2.9.4(@babel/core@7.24.6)(ember-source@4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0)))(qunit@2.20.1):
+ ember-qunit@9.0.1(@ember/test-helpers@5.0.0(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)))(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))(qunit@2.24.0):
dependencies:
- '@ember/test-helpers': 2.9.4(@babel/core@7.24.6)(ember-source@4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0))
- broccoli-funnel: 3.0.8
- broccoli-merge-trees: 3.0.2
- common-tags: 1.8.2
- ember-auto-import: 1.12.2
- ember-cli-babel: 7.26.11
- ember-cli-test-loader: 3.1.0
- qunit: 2.20.1
- resolve-package-path: 3.1.0
- silent-error: 1.1.1
- validate-peer-dependencies: 1.2.0
+ '@ember/test-helpers': 5.0.0(@babel/core@7.26.0)(@glint/template@1.5.1)(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1))
+ '@embroider/addon-shim': 1.9.0
+ '@embroider/macros': 1.16.10(@glint/template@1.5.1)
+ ember-source: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
+ qunit: 2.24.0
+ qunit-theme-ember: 1.0.0
transitivePeerDependencies:
+ - '@glint/template'
- supports-color
- - webpack-cli
- - webpack-command
- ember-resolver@8.1.0(@babel/core@7.24.6):
+ ember-resolver@13.1.0(ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)):
dependencies:
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.24.6)
- broccoli-funnel: 3.0.8
- broccoli-merge-trees: 4.2.0
ember-cli-babel: 7.26.11
- ember-cli-version-checker: 5.1.2
- resolve: 1.22.8
+ optionalDependencies:
+ ember-source: 6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1)
transitivePeerDependencies:
- - '@babel/core'
- supports-color
ember-rfc176-data@0.3.18: {}
ember-router-generator@2.0.0:
dependencies:
- '@babel/parser': 7.24.6
- '@babel/traverse': 7.24.6(supports-color@8.1.1)
+ '@babel/parser': 7.26.3
+ '@babel/traverse': 7.26.4
recast: 0.18.10
transitivePeerDependencies:
- supports-color
- ember-source-channel-url@3.0.0(encoding@0.1.13):
+ ember-source-channel-url@3.0.0:
dependencies:
- node-fetch: 2.7.0(encoding@0.1.13)
+ node-fetch: 2.7.0
transitivePeerDependencies:
- encoding
- ember-source@4.12.4(@babel/core@7.24.6)(@glimmer/component@1.1.2(@babel/core@7.24.6))(webpack@5.91.0):
+ ember-source@6.1.0(@glimmer/component@2.0.0)(@glint/template@1.5.1)(rsvp@4.8.5)(webpack@5.97.1):
dependencies:
- '@babel/helper-module-imports': 7.24.6
- '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
'@ember/edition-utils': 1.2.0
- '@glimmer/component': 1.1.2(@babel/core@7.24.6)
- '@glimmer/vm-babel-plugins': 0.84.2(@babel/core@7.24.6)
+ '@embroider/addon-shim': 1.9.0
+ '@glimmer/compiler': 0.92.4
+ '@glimmer/component': 2.0.0
+ '@glimmer/destroyable': 0.92.3
+ '@glimmer/env': 0.1.7
+ '@glimmer/global-context': 0.92.3
+ '@glimmer/interfaces': 0.92.3
+ '@glimmer/manager': 0.92.4
+ '@glimmer/node': 0.92.4
+ '@glimmer/opcode-compiler': 0.92.4
+ '@glimmer/owner': 0.92.3
+ '@glimmer/program': 0.92.4
+ '@glimmer/reference': 0.92.3
+ '@glimmer/runtime': 0.92.4
+ '@glimmer/syntax': 0.92.3
+ '@glimmer/util': 0.92.3
+ '@glimmer/validator': 0.92.3
+ '@glimmer/vm': 0.92.3
+ '@glimmer/vm-babel-plugins': 0.92.3(@babel/core@7.26.0)
'@simple-dom/interface': 1.4.0
- babel-plugin-debug-macros: 0.3.4(@babel/core@7.24.6)
- babel-plugin-filter-imports: 4.0.0
- broccoli-concat: 4.2.5
- broccoli-debug: 0.6.5
+ backburner.js: 2.8.0
broccoli-file-creator: 2.1.1
broccoli-funnel: 3.0.8
broccoli-merge-trees: 4.2.0
chalk: 4.1.2
- ember-auto-import: 2.7.4(webpack@5.91.0)
- ember-cli-babel: 7.26.11
+ ember-auto-import: 2.10.0(@glint/template@1.5.1)(webpack@5.97.1)
+ ember-cli-babel: 8.2.0(@babel/core@7.26.0)
ember-cli-get-component-path-option: 1.0.0
ember-cli-is-package-missing: 1.0.0
ember-cli-normalize-entity-name: 1.0.0
@@ -11601,13 +10521,15 @@ snapshots:
ember-cli-typescript-blueprint-polyfill: 0.1.0
ember-cli-version-checker: 5.1.2
ember-router-generator: 2.0.0
- inflection: 1.13.4
- resolve: 1.22.8
- semver: 7.6.2
+ inflection: 2.0.1
+ route-recognizer: 0.3.4
+ router_js: 8.0.6(route-recognizer@0.3.4)(rsvp@4.8.5)
+ semver: 7.6.3
silent-error: 1.1.1
+ simple-html-tokenizer: 0.5.11
transitivePeerDependencies:
- - '@babel/core'
- '@glint/template'
+ - rsvp
- supports-color
- webpack
@@ -11615,39 +10537,48 @@ snapshots:
dependencies:
babel-import-util: 0.2.0
broccoli-stew: 3.0.0
- ember-cli-babel-plugin-helpers: 1.1.1
+ ember-cli-babel-plugin-helpers: 1.1.1
+ ember-cli-version-checker: 5.1.2
+ line-column: 1.0.2
+ magic-string: 0.25.9
+ parse-static-imports: 1.1.0
+ string.prototype.matchall: 4.0.12
+ validate-peer-dependencies: 1.2.0
+ transitivePeerDependencies:
+ - supports-color
+
+ ember-template-imports@4.2.0:
+ dependencies:
+ broccoli-stew: 3.0.0
+ content-tag: 3.1.0
ember-cli-version-checker: 5.1.2
- line-column: 1.0.2
- magic-string: 0.25.9
- parse-static-imports: 1.1.0
- string.prototype.matchall: 4.0.11
- validate-peer-dependencies: 1.2.0
transitivePeerDependencies:
- supports-color
- ember-template-lint@4.18.2:
+ ember-template-lint@6.1.0:
dependencies:
'@lint-todo/utils': 13.1.1
- aria-query: 5.3.0
- chalk: 4.1.2
- ci-info: 3.9.0
- date-fns: 2.30.0
+ aria-query: 5.3.2
+ chalk: 5.4.1
+ ci-info: 4.1.0
+ date-fns: 3.6.0
ember-template-imports: 3.4.2
- ember-template-recast: 6.1.4
- find-up: 6.3.0
- fuse.js: 6.6.2
+ ember-template-recast: 6.1.5
+ eslint-formatter-kakoune: 1.0.0
+ find-up: 7.0.0
+ fuse.js: 7.0.0
get-stdin: 9.0.0
- globby: 13.2.2
+ globby: 14.0.2
is-glob: 4.0.3
language-tags: 1.0.9
- micromatch: 4.0.7
- resolve: 1.22.8
+ micromatch: 4.0.8
+ resolve: 1.22.10
v8-compile-cache: 2.4.0
yargs: 17.7.2
transitivePeerDependencies:
- supports-color
- ember-template-recast@6.1.4:
+ ember-template-recast@6.1.5:
dependencies:
'@glimmer/reference': 0.84.3
'@glimmer/syntax': 0.84.3
@@ -11663,27 +10594,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ember-try-config@4.0.0(encoding@0.1.13):
+ ember-tracked-storage-polyfill@1.0.0:
+ dependencies:
+ ember-cli-babel: 7.26.11
+ ember-cli-htmlbars: 5.7.2
+ transitivePeerDependencies:
+ - supports-color
+
+ ember-try-config@4.0.0:
dependencies:
- ember-source-channel-url: 3.0.0(encoding@0.1.13)
+ ember-source-channel-url: 3.0.0
lodash: 4.17.21
package-json: 6.5.0
remote-git-tags: 3.0.0
- semver: 7.6.2
+ semver: 7.6.3
transitivePeerDependencies:
- encoding
- ember-try@2.0.0(encoding@0.1.13):
+ ember-try@3.0.0:
dependencies:
chalk: 4.1.2
cli-table3: 0.6.5
core-object: 3.1.5
- debug: 4.3.4(supports-color@8.1.1)
- ember-try-config: 4.0.0(encoding@0.1.13)
+ debug: 4.4.0
+ ember-try-config: 4.0.0
execa: 4.1.0
- fs-extra: 9.1.0
- resolve: 1.22.8
+ fs-extra: 6.0.1
+ resolve: 1.22.10
rimraf: 3.0.2
+ semver: 7.6.3
walk-sync: 2.2.0
transitivePeerDependencies:
- encoding
@@ -11695,63 +10634,47 @@ snapshots:
encodeurl@1.0.2: {}
- encoding@0.1.13:
- dependencies:
- iconv-lite: 0.6.3
- optional: true
+ encodeurl@2.0.0: {}
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
- engine.io-parser@5.2.2: {}
+ engine.io-parser@5.2.3: {}
- engine.io@6.5.4:
+ engine.io@6.6.2:
dependencies:
'@types/cookie': 0.4.1
'@types/cors': 2.8.17
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
accepts: 1.3.8
base64id: 2.0.0
- cookie: 0.4.2
+ cookie: 0.7.2
cors: 2.8.5
- debug: 4.3.4(supports-color@8.1.1)
- engine.io-parser: 5.2.2
- ws: 8.11.0
+ debug: 4.3.7
+ engine.io-parser: 5.2.3
+ ws: 8.17.1
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- enhanced-resolve@4.5.0:
- dependencies:
- graceful-fs: 4.2.11
- memory-fs: 0.5.0
- tapable: 1.1.3
-
- enhanced-resolve@5.16.1:
+ enhanced-resolve@5.18.0:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
- enquirer@2.4.1:
- dependencies:
- ansi-colors: 4.1.3
- strip-ansi: 6.0.1
-
ensure-posix-path@1.1.1: {}
entities@2.2.0: {}
entities@3.0.1: {}
- err-code@2.0.3: {}
+ entities@4.5.0: {}
- errlop@2.2.0: {}
+ env-paths@2.2.1: {}
- errno@0.1.8:
- dependencies:
- prr: 1.0.1
+ errlop@2.2.0: {}
error-ex@1.3.2:
dependencies:
@@ -11761,96 +10684,88 @@ snapshots:
dependencies:
string-template: 0.2.1
- es-abstract@1.23.3:
+ es-abstract@1.23.9:
dependencies:
- array-buffer-byte-length: 1.0.1
- arraybuffer.prototype.slice: 1.0.3
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
available-typed-arrays: 1.0.7
- call-bind: 1.0.7
- data-view-buffer: 1.0.1
- data-view-byte-length: 1.0.1
- data-view-byte-offset: 1.0.0
- es-define-property: 1.0.0
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
es-errors: 1.3.0
es-object-atoms: 1.0.0
- es-set-tostringtag: 2.0.3
- es-to-primitive: 1.2.1
- function.prototype.name: 1.1.6
- get-intrinsic: 1.2.4
- get-symbol-description: 1.0.2
+ es-set-tostringtag: 2.1.0
+ es-to-primitive: 1.3.0
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.2.7
+ get-proto: 1.0.1
+ get-symbol-description: 1.1.0
globalthis: 1.0.4
- gopd: 1.0.1
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
+ has-proto: 1.2.0
+ has-symbols: 1.1.0
hasown: 2.0.2
- internal-slot: 1.0.7
- is-array-buffer: 3.0.4
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
is-callable: 1.2.7
- is-data-view: 1.0.1
- is-negative-zero: 2.0.3
- is-regex: 1.1.4
- is-shared-array-buffer: 1.0.3
- is-string: 1.0.7
- is-typed-array: 1.1.13
- is-weakref: 1.0.2
- object-inspect: 1.13.1
+ is-data-view: 1.0.2
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.0
+ math-intrinsics: 1.1.0
+ object-inspect: 1.13.3
object-keys: 1.1.1
- object.assign: 4.1.5
- regexp.prototype.flags: 1.5.2
- safe-array-concat: 1.1.2
- safe-regex-test: 1.0.3
- string.prototype.trim: 1.2.9
- string.prototype.trimend: 1.0.8
+ object.assign: 4.1.7
+ own-keys: 1.0.1
+ regexp.prototype.flags: 1.5.4
+ safe-array-concat: 1.1.3
+ safe-push-apply: 1.0.0
+ safe-regex-test: 1.1.0
+ set-proto: 1.0.0
+ string.prototype.trim: 1.2.10
+ string.prototype.trimend: 1.0.9
string.prototype.trimstart: 1.0.8
- typed-array-buffer: 1.0.2
- typed-array-byte-length: 1.0.1
- typed-array-byte-offset: 1.0.2
- typed-array-length: 1.0.6
- unbox-primitive: 1.0.2
- which-typed-array: 1.1.15
+ typed-array-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
+ typed-array-length: 1.0.7
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.18
- es-array-method-boxes-properly@1.0.0: {}
-
- es-define-property@1.0.0:
- dependencies:
- get-intrinsic: 1.2.4
+ es-define-property@1.0.1: {}
es-errors@1.3.0: {}
- es-get-iterator@1.1.3:
- dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
- is-arguments: 1.1.1
- is-map: 2.0.3
- is-set: 2.0.3
- is-string: 1.0.7
- isarray: 2.0.5
- stop-iteration-iterator: 1.0.0
-
- es-module-lexer@1.5.3: {}
+ es-module-lexer@1.6.0: {}
es-object-atoms@1.0.0:
dependencies:
es-errors: 1.3.0
- es-set-tostringtag@2.0.3:
+ es-set-tostringtag@2.1.0:
dependencies:
- get-intrinsic: 1.2.4
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.7
has-tostringtag: 1.0.2
hasown: 2.0.2
- es-to-primitive@1.2.1:
+ es-shim-unscopables@1.0.2:
dependencies:
- is-callable: 1.2.7
- is-date-object: 1.0.5
- is-symbol: 1.0.4
+ hasown: 2.0.2
- escalade@3.1.2: {}
+ es-to-primitive@1.3.0:
+ dependencies:
+ is-callable: 1.2.7
+ is-date-object: 1.1.0
+ is-symbol: 1.1.1
- escape-goat@2.1.1: {}
+ escalade@3.2.0: {}
escape-html@1.0.3: {}
@@ -11858,144 +10773,186 @@ snapshots:
escape-string-regexp@4.0.0: {}
- escodegen@1.14.3:
+ eslint-compat-utils@0.5.1(eslint@9.18.0):
dependencies:
- esprima: 4.0.1
- estraverse: 4.3.0
- esutils: 2.0.3
- optionator: 0.8.3
- optionalDependencies:
- source-map: 0.6.1
+ eslint: 9.18.0
+ semver: 7.6.3
- escodegen@2.1.0:
+ eslint-config-prettier@10.0.1(eslint@9.18.0):
dependencies:
- esprima: 4.0.1
- estraverse: 5.3.0
- esutils: 2.0.3
- optionalDependencies:
- source-map: 0.6.1
+ eslint: 9.18.0
- eslint-config-prettier@8.10.0(eslint@7.32.0):
+ eslint-formatter-kakoune@1.0.0: {}
+
+ eslint-import-resolver-node@0.3.9:
+ dependencies:
+ debug: 3.2.7
+ is-core-module: 2.16.1
+ resolve: 1.22.10
+ transitivePeerDependencies:
+ - supports-color
+
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0):
dependencies:
- eslint: 7.32.0
+ debug: 3.2.7
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ eslint: 9.18.0
+ eslint-import-resolver-node: 0.3.9
+ transitivePeerDependencies:
+ - supports-color
- eslint-plugin-ember@10.6.1(eslint@7.32.0):
+ eslint-plugin-ember@12.3.3(@babel/core@7.26.0)(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0):
dependencies:
'@ember-data/rfc395-data': 0.0.4
- css-tree: 2.3.1
+ css-tree: 3.1.0
+ ember-eslint-parser: 0.5.7(@babel/core@7.26.0)(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)
ember-rfc176-data: 0.3.18
- eslint: 7.32.0
- eslint-utils: 3.0.0(eslint@7.32.0)
+ eslint: 9.18.0
+ eslint-utils: 3.0.0(eslint@9.18.0)
estraverse: 5.3.0
+ lodash.camelcase: 4.3.0
lodash.kebabcase: 4.1.1
requireindex: 1.2.0
snake-case: 3.0.4
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ transitivePeerDependencies:
+ - '@babel/core'
- eslint-plugin-es@3.0.1(eslint@7.32.0):
+ eslint-plugin-es-x@7.8.0(eslint@9.18.0):
dependencies:
- eslint: 7.32.0
- eslint-utils: 2.1.0
- regexpp: 3.2.0
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0)
+ '@eslint-community/regexpp': 4.12.1
+ eslint: 9.18.0
+ eslint-compat-utils: 0.5.1(eslint@9.18.0)
- eslint-plugin-node@11.1.0(eslint@7.32.0):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0):
dependencies:
- eslint: 7.32.0
- eslint-plugin-es: 3.0.1(eslint@7.32.0)
- eslint-utils: 2.1.0
- ignore: 5.3.1
+ '@rtsao/scc': 1.1.0
+ array-includes: 3.1.8
+ array.prototype.findlastindex: 1.2.5
+ array.prototype.flat: 1.3.3
+ array.prototype.flatmap: 1.3.3
+ debug: 3.2.7
+ doctrine: 2.1.0
+ eslint: 9.18.0
+ eslint-import-resolver-node: 0.3.9
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint@9.18.0)
+ hasown: 2.0.2
+ is-core-module: 2.16.1
+ is-glob: 4.0.3
minimatch: 3.1.2
- resolve: 1.22.8
+ object.fromentries: 2.0.8
+ object.groupby: 1.0.3
+ object.values: 1.2.1
semver: 6.3.1
+ string.prototype.trimend: 1.0.9
+ tsconfig-paths: 3.15.0
+ optionalDependencies:
+ '@typescript-eslint/parser': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ transitivePeerDependencies:
+ - eslint-import-resolver-typescript
+ - eslint-import-resolver-webpack
+ - supports-color
- eslint-plugin-prettier@4.2.1(eslint-config-prettier@8.10.0(eslint@7.32.0))(eslint@7.32.0)(prettier@2.8.8):
+ eslint-plugin-n@17.15.1(eslint@9.18.0):
dependencies:
- eslint: 7.32.0
- prettier: 2.8.8
- prettier-linter-helpers: 1.0.0
- optionalDependencies:
- eslint-config-prettier: 8.10.0(eslint@7.32.0)
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0)
+ enhanced-resolve: 5.18.0
+ eslint: 9.18.0
+ eslint-plugin-es-x: 7.8.0(eslint@9.18.0)
+ get-tsconfig: 4.8.1
+ globals: 15.14.0
+ ignore: 5.3.2
+ minimatch: 9.0.5
+ semver: 7.6.3
- eslint-scope@4.0.3:
+ eslint-plugin-qunit@8.1.2(eslint@9.18.0):
dependencies:
- esrecurse: 4.3.0
- estraverse: 4.3.0
+ eslint-utils: 3.0.0(eslint@9.18.0)
+ requireindex: 1.2.0
+ transitivePeerDependencies:
+ - eslint
eslint-scope@5.1.1:
dependencies:
esrecurse: 4.3.0
estraverse: 4.3.0
- eslint-utils@2.1.0:
+ eslint-scope@7.2.2:
dependencies:
- eslint-visitor-keys: 1.3.0
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
- eslint-utils@3.0.0(eslint@7.32.0):
+ eslint-scope@8.2.0:
dependencies:
- eslint: 7.32.0
- eslint-visitor-keys: 2.1.0
+ esrecurse: 4.3.0
+ estraverse: 5.3.0
- eslint-visitor-keys@1.3.0: {}
+ eslint-utils@3.0.0(eslint@9.18.0):
+ dependencies:
+ eslint: 9.18.0
+ eslint-visitor-keys: 2.1.0
eslint-visitor-keys@2.1.0: {}
- eslint@7.32.0:
+ eslint-visitor-keys@3.4.3: {}
+
+ eslint-visitor-keys@4.2.0: {}
+
+ eslint@9.18.0:
dependencies:
- '@babel/code-frame': 7.12.11
- '@eslint/eslintrc': 0.4.3
- '@humanwhocodes/config-array': 0.5.0
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.18.0)
+ '@eslint-community/regexpp': 4.12.1
+ '@eslint/config-array': 0.19.1
+ '@eslint/core': 0.10.0
+ '@eslint/eslintrc': 3.2.0
+ '@eslint/js': 9.18.0
+ '@eslint/plugin-kit': 0.2.5
+ '@humanfs/node': 0.16.6
+ '@humanwhocodes/module-importer': 1.0.1
+ '@humanwhocodes/retry': 0.4.1
+ '@types/estree': 1.0.6
+ '@types/json-schema': 7.0.15
ajv: 6.12.6
chalk: 4.1.2
- cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@8.1.1)
- doctrine: 3.0.0
- enquirer: 2.4.1
+ cross-spawn: 7.0.6
+ debug: 4.4.0
escape-string-regexp: 4.0.0
- eslint-scope: 5.1.1
- eslint-utils: 2.1.0
- eslint-visitor-keys: 2.1.0
- espree: 7.3.1
- esquery: 1.5.0
+ eslint-scope: 8.2.0
+ eslint-visitor-keys: 4.2.0
+ espree: 10.3.0
+ esquery: 1.6.0
esutils: 2.0.3
fast-deep-equal: 3.1.3
- file-entry-cache: 6.0.1
- functional-red-black-tree: 1.0.1
- glob-parent: 5.1.2
- globals: 13.24.0
- ignore: 4.0.6
- import-fresh: 3.3.0
+ file-entry-cache: 8.0.0
+ find-up: 5.0.0
+ glob-parent: 6.0.2
+ ignore: 5.3.2
imurmurhash: 0.1.4
is-glob: 4.0.3
- js-yaml: 3.14.1
json-stable-stringify-without-jsonify: 1.0.1
- levn: 0.4.1
lodash.merge: 4.6.2
minimatch: 3.1.2
natural-compare: 1.4.0
optionator: 0.9.4
- progress: 2.0.3
- regexpp: 3.2.0
- semver: 7.6.2
- strip-ansi: 6.0.1
- strip-json-comments: 3.1.1
- table: 6.8.2
- text-table: 0.2.0
- v8-compile-cache: 2.4.0
transitivePeerDependencies:
- supports-color
esm@3.2.25: {}
- espree@7.3.1:
+ espree@10.3.0:
dependencies:
- acorn: 7.4.1
- acorn-jsx: 5.3.2(acorn@7.4.1)
- eslint-visitor-keys: 1.3.0
+ acorn: 8.14.0
+ acorn-jsx: 5.3.2(acorn@8.14.0)
+ eslint-visitor-keys: 4.2.0
esprima@3.0.0: {}
esprima@4.0.1: {}
- esquery@1.5.0:
+ esquery@1.6.0:
dependencies:
estraverse: 5.3.0
@@ -12007,6 +10964,10 @@ snapshots:
estraverse@5.3.0: {}
+ estree-walker@0.6.1: {}
+
+ estree-walker@2.0.2: {}
+
esutils@2.0.3: {}
etag@1.8.1: {}
@@ -12017,16 +10978,11 @@ snapshots:
events@3.3.0: {}
- evp_bytestokey@1.0.3:
- dependencies:
- md5.js: 1.3.5
- safe-buffer: 5.2.1
-
exec-sh@0.3.6: {}
execa@1.0.0:
dependencies:
- cross-spawn: 6.0.5
+ cross-spawn: 6.0.6
get-stream: 4.1.0
is-stream: 1.1.0
npm-run-path: 2.0.2
@@ -12034,21 +10990,9 @@ snapshots:
signal-exit: 3.0.7
strip-eof: 1.0.0
- execa@2.1.0:
- dependencies:
- cross-spawn: 7.0.3
- get-stream: 5.2.0
- is-stream: 2.0.1
- merge-stream: 2.0.0
- npm-run-path: 3.1.0
- onetime: 5.1.2
- p-finally: 2.0.1
- signal-exit: 3.0.7
- strip-final-newline: 2.0.0
-
execa@4.1.0:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 5.2.0
human-signals: 1.1.1
is-stream: 2.0.1
@@ -12060,7 +11004,7 @@ snapshots:
execa@5.1.1:
dependencies:
- cross-spawn: 7.0.3
+ cross-spawn: 7.0.6
get-stream: 6.0.1
human-signals: 2.1.0
is-stream: 2.0.1
@@ -12074,7 +11018,7 @@ snapshots:
expand-brackets@2.1.4:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
define-property: 0.2.5
extend-shallow: 2.0.1
posix-character-classes: 0.1.1
@@ -12088,34 +11032,34 @@ snapshots:
dependencies:
homedir-polyfill: 1.0.3
- express@4.19.2:
+ express@4.21.2:
dependencies:
accepts: 1.3.8
array-flatten: 1.1.1
- body-parser: 1.20.2
+ body-parser: 1.20.3
content-disposition: 0.5.4
content-type: 1.0.5
- cookie: 0.6.0
+ cookie: 0.7.1
cookie-signature: 1.0.6
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
depd: 2.0.0
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
etag: 1.8.1
- finalhandler: 1.2.0
+ finalhandler: 1.3.1
fresh: 0.5.2
http-errors: 2.0.0
- merge-descriptors: 1.0.1
+ merge-descriptors: 1.0.3
methods: 1.1.2
on-finished: 2.4.1
parseurl: 1.3.3
- path-to-regexp: 0.1.7
+ path-to-regexp: 0.1.12
proxy-addr: 2.0.7
- qs: 6.11.0
+ qs: 6.13.0
range-parser: 1.2.1
safe-buffer: 5.2.1
- send: 0.18.0
- serve-static: 1.15.0
+ send: 0.19.0
+ serve-static: 1.16.2
setprototypeof: 1.2.0
statuses: 2.0.1
type-is: 1.6.18
@@ -12156,15 +11100,13 @@ snapshots:
fast-deep-equal@3.1.3: {}
- fast-diff@1.3.0: {}
-
- fast-glob@3.3.2:
+ fast-glob@3.3.3:
dependencies:
'@nodelib/fs.stat': 2.0.5
'@nodelib/fs.walk': 1.2.8
glob-parent: 5.1.2
merge2: 1.4.1
- micromatch: 4.0.7
+ micromatch: 4.0.8
fast-json-stable-stringify@2.1.0: {}
@@ -12174,19 +11116,6 @@ snapshots:
dependencies:
blank-object: 1.0.2
- fast-sourcemap-concat@1.4.0:
- dependencies:
- chalk: 2.4.2
- fs-extra: 5.0.0
- heimdalljs-logger: 0.1.10
- memory-streams: 0.1.3
- mkdirp: 0.5.6
- source-map: 0.4.4
- source-map-url: 0.3.0
- sourcemap-validator: 1.1.1
- transitivePeerDependencies:
- - supports-color
-
fast-sourcemap-concat@2.1.1:
dependencies:
chalk: 2.4.2
@@ -12199,7 +11128,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- fastq@1.17.1:
+ fast-uri@3.0.5: {}
+
+ fastest-levenshtein@1.0.16: {}
+
+ fastq@1.18.0:
dependencies:
reusify: 1.0.4
@@ -12211,8 +11144,6 @@ snapshots:
dependencies:
bser: 2.1.1
- figgy-pudding@3.5.2: {}
-
figures@2.0.0:
dependencies:
escape-string-regexp: 1.0.5
@@ -12221,18 +11152,15 @@ snapshots:
dependencies:
escape-string-regexp: 1.0.5
- file-entry-cache@6.0.1:
+ file-entry-cache@10.0.5:
dependencies:
- flat-cache: 3.2.0
-
- file-uri-to-path@1.0.0:
- optional: true
+ flat-cache: 6.1.5
- file-uri-to-path@2.0.0: {}
-
- filesize@10.1.2: {}
+ file-entry-cache@8.0.0:
+ dependencies:
+ flat-cache: 4.0.1
- filesize@5.0.3: {}
+ filesize@10.1.6: {}
fill-range@4.0.0:
dependencies:
@@ -12245,11 +11173,9 @@ snapshots:
dependencies:
to-regex-range: 5.0.1
- filter-obj@1.1.0: {}
-
finalhandler@1.1.2:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
encodeurl: 1.0.2
escape-html: 1.0.3
on-finished: 2.3.0
@@ -12259,10 +11185,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- finalhandler@1.2.0:
+ finalhandler@1.3.1:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
- encodeurl: 1.0.2
+ debug: 2.6.9
+ encodeurl: 2.0.0
escape-html: 1.0.3
on-finished: 2.4.1
parseurl: 1.3.3
@@ -12276,11 +11202,9 @@ snapshots:
json5: 1.0.2
path-exists: 3.0.0
- find-cache-dir@2.1.0:
+ find-babel-config@2.1.2:
dependencies:
- commondir: 1.0.1
- make-dir: 2.1.0
- pkg-dir: 3.0.0
+ json5: 2.2.3
find-cache-dir@3.3.2:
dependencies:
@@ -12308,27 +11232,21 @@ snapshots:
locate-path: 6.0.0
path-exists: 4.0.0
- find-up@6.3.0:
+ find-up@7.0.0:
dependencies:
locate-path: 7.2.0
path-exists: 5.0.0
-
- find-yarn-workspace-root@1.2.1:
- dependencies:
- fs-extra: 4.0.3
- micromatch: 3.1.10
- transitivePeerDependencies:
- - supports-color
+ unicorn-magic: 0.1.0
find-yarn-workspace-root@2.0.0:
dependencies:
- micromatch: 4.0.7
+ micromatch: 4.0.8
findup-sync@4.0.0:
dependencies:
detect-file: 1.0.0
is-glob: 4.0.3
- micromatch: 4.0.7
+ micromatch: 4.0.8
resolve-dir: 1.0.1
fireworm@0.7.2:
@@ -12367,20 +11285,20 @@ snapshots:
matcher-collection: 2.0.1
walk-sync: 2.2.0
- flat-cache@3.2.0:
+ flat-cache@4.0.1:
dependencies:
- flatted: 3.3.1
+ flatted: 3.3.2
keyv: 4.5.4
- rimraf: 3.0.2
-
- flatted@3.3.1: {}
- flush-write-stream@1.1.1:
+ flat-cache@6.1.5:
dependencies:
- inherits: 2.0.4
- readable-stream: 2.3.8
+ cacheable: 1.8.7
+ flatted: 3.3.2
+ hookified: 1.7.0
+
+ flatted@3.3.2: {}
- follow-redirects@1.15.6: {}
+ follow-redirects@1.15.9: {}
for-each@0.3.3:
dependencies:
@@ -12388,13 +11306,7 @@ snapshots:
for-in@1.0.2: {}
- form-data@3.0.1:
- dependencies:
- asynckit: 0.4.0
- combined-stream: 1.0.8
- mime-types: 2.1.35
-
- form-data@4.0.0:
+ form-data@4.0.1:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
@@ -12408,11 +11320,6 @@ snapshots:
fresh@0.5.2: {}
- from2@2.3.0:
- dependencies:
- inherits: 2.0.4
- readable-stream: 2.3.8
-
fs-extra@0.24.0:
dependencies:
graceful-fs: 4.2.11
@@ -12479,10 +11386,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- fs-minipass@2.1.0:
- dependencies:
- minipass: 3.3.6
-
fs-tree-diff@0.5.9:
dependencies:
heimdalljs-logger: 0.1.10
@@ -12512,43 +11415,25 @@ snapshots:
transitivePeerDependencies:
- supports-color
- fs-write-stream-atomic@1.0.10:
- dependencies:
- graceful-fs: 4.2.11
- iferr: 0.1.5
- imurmurhash: 0.1.4
- readable-stream: 2.3.8
-
fs.realpath@1.0.0: {}
- fsevents@1.2.13:
- dependencies:
- bindings: 1.5.0
- nan: 2.19.0
- optional: true
-
fsevents@2.3.3:
optional: true
- ftp@0.3.10:
- dependencies:
- readable-stream: 1.1.14
- xregexp: 2.0.0
-
function-bind@1.1.2: {}
- function.prototype.name@1.1.6:
+ function.prototype.name@1.1.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
define-properties: 1.2.1
- es-abstract: 1.23.3
functions-have-names: 1.2.3
-
- functional-red-black-tree@1.0.1: {}
+ hasown: 2.0.2
+ is-callable: 1.2.7
functions-have-names@1.2.3: {}
- fuse.js@6.6.2: {}
+ fuse.js@7.0.0: {}
gauge@4.0.4:
dependencies:
@@ -12565,44 +11450,45 @@ snapshots:
get-caller-file@2.0.5: {}
- get-intrinsic@1.2.4:
+ get-intrinsic@1.2.7:
dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-define-property: 1.0.1
es-errors: 1.3.0
+ es-object-atoms: 1.0.0
function-bind: 1.1.2
- has-proto: 1.0.3
- has-symbols: 1.0.3
+ get-proto: 1.0.1
+ gopd: 1.2.0
+ has-symbols: 1.1.0
hasown: 2.0.2
+ math-intrinsics: 1.1.0
- get-stdin@4.0.1: {}
+ get-proto@1.0.1:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-object-atoms: 1.0.0
get-stdin@9.0.0: {}
get-stream@4.1.0:
dependencies:
- pump: 3.0.0
+ pump: 3.0.2
get-stream@5.2.0:
dependencies:
- pump: 3.0.0
+ pump: 3.0.2
get-stream@6.0.1: {}
- get-symbol-description@1.0.2:
+ get-symbol-description@1.1.0:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
es-errors: 1.3.0
- get-intrinsic: 1.2.4
+ get-intrinsic: 1.2.7
- get-uri@3.0.2:
+ get-tsconfig@4.8.1:
dependencies:
- '@tootallnate/once': 1.1.2
- data-uri-to-buffer: 3.0.1
- debug: 4.3.4(supports-color@8.1.1)
- file-uri-to-path: 2.0.0
- fs-extra: 8.1.0
- ftp: 0.3.10
- transitivePeerDependencies:
- - supports-color
+ resolve-pkg-maps: 1.0.0
get-value@2.0.6: {}
@@ -12610,22 +11496,11 @@ snapshots:
git-repo-info@2.1.1: {}
- git-up@4.0.5:
- dependencies:
- is-ssh: 1.4.0
- parse-url: 6.0.5
-
- git-url-parse@11.6.0:
- dependencies:
- git-up: 4.0.5
-
- glob-parent@3.1.0:
+ glob-parent@5.1.2:
dependencies:
- is-glob: 3.1.0
- path-dirname: 1.0.2
- optional: true
+ is-glob: 4.0.3
- glob-parent@5.1.2:
+ glob-parent@6.0.2:
dependencies:
is-glob: 4.0.3
@@ -12656,9 +11531,12 @@ snapshots:
minimatch: 5.1.6
once: 1.4.0
- global-dirs@3.0.1:
+ glob@9.3.5:
dependencies:
- ini: 2.0.0
+ fs.realpath: 1.0.0
+ minimatch: 8.0.4
+ minipass: 4.2.8
+ path-scurry: 1.11.1
global-modules@1.0.0:
dependencies:
@@ -12666,6 +11544,10 @@ snapshots:
is-windows: 1.0.2
resolve-dir: 1.0.1
+ global-modules@2.0.0:
+ dependencies:
+ global-prefix: 3.0.0
+
global-prefix@1.0.2:
dependencies:
expand-tilde: 2.0.2
@@ -12674,18 +11556,22 @@ snapshots:
is-windows: 1.0.2
which: 1.3.1
+ global-prefix@3.0.0:
+ dependencies:
+ ini: 1.3.8
+ kind-of: 6.0.3
+ which: 1.3.1
+
globals@11.12.0: {}
- globals@13.24.0:
- dependencies:
- type-fest: 0.20.2
+ globals@14.0.0: {}
- globals@9.18.0: {}
+ globals@15.14.0: {}
globalthis@1.0.4:
dependencies:
define-properties: 1.2.1
- gopd: 1.0.1
+ gopd: 1.2.0
globalyzer@0.1.0: {}
@@ -12694,18 +11580,20 @@ snapshots:
'@types/glob': 7.2.0
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.2
+ fast-glob: 3.3.3
glob: 7.2.3
- ignore: 5.3.1
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
- globby@11.0.4:
+ globby@10.0.1:
dependencies:
+ '@types/glob': 7.2.0
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.1
+ fast-glob: 3.3.3
+ glob: 7.2.3
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
@@ -12713,24 +11601,25 @@ snapshots:
dependencies:
array-union: 2.1.0
dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.1
+ fast-glob: 3.3.3
+ ignore: 5.3.2
merge2: 1.4.1
slash: 3.0.0
- globby@13.2.2:
+ globby@14.0.2:
dependencies:
- dir-glob: 3.0.1
- fast-glob: 3.3.2
- ignore: 5.3.1
- merge2: 1.4.1
- slash: 4.0.0
+ '@sindresorhus/merge-streams': 2.3.0
+ fast-glob: 3.3.3
+ ignore: 5.3.2
+ path-type: 5.0.0
+ slash: 5.1.0
+ unicorn-magic: 0.1.0
+
+ globjoin@0.1.4: {}
globrex@0.1.2: {}
- gopd@1.0.1:
- dependencies:
- get-intrinsic: 1.2.4
+ gopd@1.2.0: {}
got@9.6.0:
dependencies:
@@ -12750,7 +11639,7 @@ snapshots:
graceful-fs@4.2.11: {}
- graceful-readlink@1.0.1: {}
+ graphemer@1.4.0: {}
growly@1.3.0: {}
@@ -12761,17 +11650,13 @@ snapshots:
source-map: 0.6.1
wordwrap: 1.0.0
optionalDependencies:
- uglify-js: 3.17.4
-
- has-ansi@2.0.0:
- dependencies:
- ansi-regex: 2.1.1
+ uglify-js: 3.19.3
has-ansi@3.0.0:
dependencies:
ansi-regex: 3.0.1
- has-bigints@1.0.2: {}
+ has-bigints@1.1.0: {}
has-flag@3.0.0: {}
@@ -12779,15 +11664,17 @@ snapshots:
has-property-descriptors@1.0.2:
dependencies:
- es-define-property: 1.0.0
+ es-define-property: 1.0.1
- has-proto@1.0.3: {}
+ has-proto@1.2.0:
+ dependencies:
+ dunder-proto: 1.0.1
- has-symbols@1.0.3: {}
+ has-symbols@1.1.0: {}
has-tostringtag@1.0.2:
dependencies:
- has-symbols: 1.0.3
+ has-symbols: 1.1.0
has-unicode@2.0.1: {}
@@ -12810,35 +11697,17 @@ snapshots:
is-number: 3.0.0
kind-of: 4.0.0
- has-yarn@2.1.0: {}
-
- hash-base@3.0.4:
- dependencies:
- inherits: 2.0.4
- safe-buffer: 5.2.1
-
- hash-base@3.1.0:
- dependencies:
- inherits: 2.0.4
- readable-stream: 3.6.2
- safe-buffer: 5.2.1
-
hash-for-dep@1.5.1:
dependencies:
broccoli-kitchen-sink-helpers: 0.3.1
heimdalljs: 0.2.6
heimdalljs-logger: 0.1.10
path-root: 0.1.1
- resolve: 1.22.8
+ resolve: 1.22.10
resolve-package-path: 1.2.7
transitivePeerDependencies:
- supports-color
- hash.js@1.1.7:
- dependencies:
- inherits: 2.0.4
- minimalistic-assert: 1.0.1
-
hasown@2.0.2:
dependencies:
function-bind: 1.1.2
@@ -12857,7 +11726,7 @@ snapshots:
heimdalljs-logger@0.1.10:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
heimdalljs: 0.2.6
transitivePeerDependencies:
- supports-color
@@ -12866,36 +11735,21 @@ snapshots:
dependencies:
rsvp: 3.2.1
- highlight.js@10.7.3: {}
-
- hmac-drbg@1.0.1:
- dependencies:
- hash.js: 1.1.7
- minimalistic-assert: 1.0.1
- minimalistic-crypto-utils: 1.0.1
-
- home-or-tmp@2.0.0:
- dependencies:
- os-homedir: 1.0.2
- os-tmpdir: 1.0.2
-
homedir-polyfill@1.0.3:
dependencies:
parse-passwd: 1.0.0
- hosted-git-info@2.8.9: {}
+ hookified@1.7.0: {}
- hosted-git-info@4.1.0:
+ hosted-git-info@8.0.2:
dependencies:
- lru-cache: 6.0.0
+ lru-cache: 10.4.3
- hosted-git-info@6.1.1:
+ html-encoding-sniffer@4.0.0:
dependencies:
- lru-cache: 7.18.3
+ whatwg-encoding: 3.1.1
- html-encoding-sniffer@2.0.1:
- dependencies:
- whatwg-encoding: 1.0.5
+ html-tags@3.3.1: {}
http-cache-semantics@4.1.1: {}
@@ -12916,28 +11770,25 @@ snapshots:
http-parser-js@0.5.8: {}
- http-proxy-agent@4.0.1(supports-color@8.1.1):
+ http-proxy-agent@7.0.2:
dependencies:
- '@tootallnate/once': 1.1.2
- agent-base: 6.0.2(supports-color@8.1.1)
- debug: 4.3.4(supports-color@8.1.1)
+ agent-base: 7.1.3
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.9
requires-port: 1.0.0
transitivePeerDependencies:
- debug
- https-browserify@1.0.0: {}
-
- https-proxy-agent@5.0.1(supports-color@8.1.1):
+ https-proxy-agent@7.0.6:
dependencies:
- agent-base: 6.0.2(supports-color@8.1.1)
- debug: 4.3.4(supports-color@8.1.1)
+ agent-base: 7.1.3
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -12947,10 +11798,6 @@ snapshots:
human-signals@2.1.0: {}
- humanize-ms@1.2.1:
- dependencies:
- ms: 2.1.3
-
iconv-lite@0.4.24:
dependencies:
safer-buffer: 2.1.2
@@ -12958,45 +11805,32 @@ snapshots:
iconv-lite@0.6.3:
dependencies:
safer-buffer: 2.1.2
- optional: true
- icss-utils@5.1.0(postcss@8.4.38):
+ icss-utils@5.1.0(postcss@8.5.1):
dependencies:
- postcss: 8.4.38
+ postcss: 8.5.1
ieee754@1.2.1: {}
- iferr@0.1.5: {}
-
- ignore@4.0.6: {}
+ ignore@5.3.2: {}
- ignore@5.3.1: {}
+ ignore@7.0.3: {}
- import-cwd@3.0.0:
- dependencies:
- import-from: 3.0.0
+ immutable@5.0.3: {}
import-fresh@3.3.0:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
- import-from@3.0.0:
- dependencies:
- resolve-from: 5.0.0
-
- import-lazy@2.1.0: {}
-
imurmurhash@0.1.4: {}
- indent-string@4.0.0: {}
-
- infer-owner@1.0.4: {}
-
- inflection@1.13.4: {}
+ include-path-searcher@0.1.0: {}
inflection@2.0.1: {}
+ inflection@3.0.2: {}
+
inflight@1.0.6:
dependencies:
once: 1.4.0
@@ -13008,16 +11842,6 @@ snapshots:
ini@1.3.8: {}
- ini@2.0.0: {}
-
- inline-source-map-comment@1.0.5:
- dependencies:
- chalk: 1.1.3
- get-stdin: 4.0.1
- minimist: 1.2.8
- sum-up: 1.0.3
- xtend: 4.0.2
-
inquirer@6.5.2:
dependencies:
ansi-escapes: 3.2.0
@@ -13050,112 +11874,64 @@ snapshots:
strip-ansi: 6.0.1
through: 2.3.8
- inquirer@8.2.0:
- dependencies:
- ansi-escapes: 4.3.2
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-width: 3.0.0
- external-editor: 3.1.0
- figures: 3.2.0
- lodash: 4.17.21
- mute-stream: 0.0.8
- ora: 5.4.1
- run-async: 2.4.1
- rxjs: 7.8.1
- string-width: 4.2.3
- strip-ansi: 6.0.1
- through: 2.3.8
-
- inquirer@8.2.6:
+ inquirer@9.3.7:
dependencies:
+ '@inquirer/figures': 1.0.9
ansi-escapes: 4.3.2
- chalk: 4.1.2
- cli-cursor: 3.1.0
- cli-width: 3.0.0
+ cli-width: 4.1.0
external-editor: 3.1.0
- figures: 3.2.0
- lodash: 4.17.21
- mute-stream: 0.0.8
+ mute-stream: 1.0.0
ora: 5.4.1
- run-async: 2.4.1
+ run-async: 3.0.0
rxjs: 7.8.1
string-width: 4.2.3
strip-ansi: 6.0.1
- through: 2.3.8
wrap-ansi: 6.2.0
+ yoctocolors-cjs: 2.1.2
- internal-slot@1.0.7:
+ internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
- side-channel: 1.0.6
-
- interpret@1.4.0: {}
-
- invariant@2.2.4:
- dependencies:
- loose-envify: 1.4.0
+ side-channel: 1.1.0
invert-kv@3.0.1: {}
- ip-address@9.0.5:
- dependencies:
- jsbn: 1.1.0
- sprintf-js: 1.1.3
-
- ip@1.1.9: {}
-
ipaddr.js@1.9.1: {}
is-accessor-descriptor@1.0.1:
dependencies:
hasown: 2.0.2
- is-arguments@1.1.1:
- dependencies:
- call-bind: 1.0.7
- has-tostringtag: 1.0.2
-
- is-array-buffer@3.0.4:
+ is-array-buffer@3.0.5:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ get-intrinsic: 1.2.7
is-arrayish@0.2.1: {}
- is-bigint@1.0.4:
- dependencies:
- has-bigints: 1.0.2
-
- is-binary-path@1.0.1:
+ is-async-function@2.1.0:
dependencies:
- binary-extensions: 1.13.1
- optional: true
+ call-bound: 1.0.3
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
- is-binary-path@2.1.0:
+ is-bigint@1.1.0:
dependencies:
- binary-extensions: 2.3.0
- optional: true
+ has-bigints: 1.1.0
- is-boolean-object@1.1.2:
+ is-boolean-object@1.2.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
has-tostringtag: 1.0.2
is-buffer@1.1.6: {}
is-callable@1.2.7: {}
- is-ci@2.0.0:
- dependencies:
- ci-info: 2.0.0
-
- is-ci@3.0.1:
- dependencies:
- ci-info: 3.9.0
-
- is-core-module@2.13.1:
+ is-core-module@2.16.1:
dependencies:
hasown: 2.0.2
@@ -13163,12 +11939,15 @@ snapshots:
dependencies:
hasown: 2.0.2
- is-data-view@1.0.1:
+ is-data-view@1.0.2:
dependencies:
- is-typed-array: 1.1.13
+ call-bound: 1.0.3
+ get-intrinsic: 1.2.7
+ is-typed-array: 1.1.15
- is-date-object@1.0.5:
+ is-date-object@1.1.0:
dependencies:
+ call-bound: 1.0.3
has-tostringtag: 1.0.2
is-descriptor@0.1.7:
@@ -13191,44 +11970,38 @@ snapshots:
is-extglob@2.1.1: {}
- is-finite@1.1.0: {}
+ is-finalizationregistry@1.1.1:
+ dependencies:
+ call-bound: 1.0.3
is-fullwidth-code-point@2.0.0: {}
is-fullwidth-code-point@3.0.0: {}
- is-git-url@1.0.0: {}
-
- is-glob@3.1.0:
+ is-generator-function@1.1.0:
dependencies:
- is-extglob: 2.1.1
- optional: true
+ call-bound: 1.0.3
+ get-proto: 1.0.1
+ has-tostringtag: 1.0.2
+ safe-regex-test: 1.1.0
+
+ is-git-url@1.0.0: {}
is-glob@4.0.3:
dependencies:
is-extglob: 2.1.1
- is-installed-globally@0.4.0:
- dependencies:
- global-dirs: 3.0.1
- is-path-inside: 3.0.3
-
is-interactive@1.0.0: {}
- is-lambda@1.0.1: {}
-
is-language-code@3.1.0:
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.26.0
is-map@2.0.3: {}
- is-negative-zero@2.0.3: {}
-
- is-npm@5.0.0: {}
-
- is-number-object@1.0.7:
+ is-number-object@1.1.1:
dependencies:
+ call-bound: 1.0.3
has-tostringtag: 1.0.2
is-number@3.0.0:
@@ -13239,78 +12012,90 @@ snapshots:
is-obj@2.0.0: {}
- is-path-inside@3.0.3: {}
-
is-plain-obj@2.1.0: {}
is-plain-object@2.0.4:
dependencies:
isobject: 3.0.1
+ is-plain-object@3.0.1: {}
+
is-plain-object@5.0.0: {}
is-potential-custom-element-name@1.0.1: {}
- is-regex@1.1.4:
+ is-reference@1.2.1:
+ dependencies:
+ '@types/estree': 1.0.6
+
+ is-regex@1.2.1:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
+ gopd: 1.2.0
has-tostringtag: 1.0.2
+ hasown: 2.0.2
is-set@2.0.3: {}
- is-shared-array-buffer@1.0.3:
- dependencies:
- call-bind: 1.0.7
-
- is-ssh@1.4.0:
+ is-shared-array-buffer@1.0.4:
dependencies:
- protocols: 2.0.1
+ call-bound: 1.0.3
is-stream@1.1.0: {}
is-stream@2.0.1: {}
- is-string@1.0.7:
+ is-string@1.1.1:
dependencies:
+ call-bound: 1.0.3
has-tostringtag: 1.0.2
- is-symbol@1.0.4:
+ is-subdir@1.2.0:
+ dependencies:
+ better-path-resolve: 1.0.0
+
+ is-symbol@1.1.1:
dependencies:
- has-symbols: 1.0.3
+ call-bound: 1.0.3
+ has-symbols: 1.1.0
+ safe-regex-test: 1.1.0
is-type@0.0.1:
dependencies:
core-util-is: 1.0.3
- is-typed-array@1.1.13:
+ is-typed-array@1.1.15:
dependencies:
- which-typed-array: 1.1.15
+ which-typed-array: 1.1.18
is-typedarray@1.0.0: {}
is-unicode-supported@0.1.0: {}
- is-weakref@1.0.2:
+ is-weakmap@2.0.2: {}
+
+ is-weakref@1.1.0:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
- is-windows@1.0.2: {}
+ is-weakset@2.0.4:
+ dependencies:
+ call-bound: 1.0.3
+ get-intrinsic: 1.2.7
- is-wsl@1.1.0: {}
+ is-windows@1.0.2: {}
is-wsl@2.2.0:
dependencies:
is-docker: 2.2.1
- is-yarn-global@0.3.0: {}
-
isarray@0.0.1: {}
isarray@1.0.0: {}
isarray@2.0.5: {}
- isbinaryfile@5.0.2: {}
+ isbinaryfile@5.0.4: {}
isexe@2.0.0: {}
@@ -13332,23 +12117,14 @@ snapshots:
editions: 2.3.1
textextensions: 2.6.0
- iterate-iterator@1.0.2: {}
-
- iterate-value@1.0.2:
- dependencies:
- es-get-iterator: 1.1.3
- iterate-iterator: 1.0.2
-
jest-worker@27.5.1:
dependencies:
- '@types/node': 20.12.12
+ '@types/node': 22.10.5
merge-stream: 2.0.0
supports-color: 8.1.1
js-string-escape@1.0.1: {}
- js-tokens@3.0.2: {}
-
js-tokens@4.0.0: {}
js-yaml@3.14.1:
@@ -13360,56 +12136,42 @@ snapshots:
dependencies:
argparse: 2.0.1
- jsbn@1.1.0: {}
-
- jsdom@16.7.0(supports-color@8.1.1):
+ jsdom@25.0.1:
dependencies:
- abab: 2.0.6
- acorn: 8.11.3
- acorn-globals: 6.0.0
- cssom: 0.4.4
- cssstyle: 2.3.0
- data-urls: 2.0.0
+ cssstyle: 4.1.0
+ data-urls: 5.0.0
decimal.js: 10.4.3
- domexception: 2.0.1
- escodegen: 2.1.0
- form-data: 3.0.1
- html-encoding-sniffer: 2.0.1
- http-proxy-agent: 4.0.1(supports-color@8.1.1)
- https-proxy-agent: 5.0.1(supports-color@8.1.1)
+ form-data: 4.0.1
+ html-encoding-sniffer: 4.0.0
+ http-proxy-agent: 7.0.2
+ https-proxy-agent: 7.0.6
is-potential-custom-element-name: 1.0.1
- nwsapi: 2.2.10
- parse5: 6.0.1
- saxes: 5.0.1
+ nwsapi: 2.2.16
+ parse5: 7.2.1
+ rrweb-cssom: 0.7.1
+ saxes: 6.0.0
symbol-tree: 3.2.4
- tough-cookie: 4.1.4
- w3c-hr-time: 1.0.2
- w3c-xmlserializer: 2.0.0
- webidl-conversions: 6.1.0
- whatwg-encoding: 1.0.5
- whatwg-mimetype: 2.3.0
- whatwg-url: 8.7.0
- ws: 7.5.9
- xml-name-validator: 3.0.0
+ tough-cookie: 5.0.0
+ w3c-xmlserializer: 5.0.0
+ webidl-conversions: 7.0.0
+ whatwg-encoding: 3.1.1
+ whatwg-mimetype: 4.0.0
+ whatwg-url: 14.1.0
+ ws: 8.18.0
+ xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- jsesc@0.3.0: {}
+ jsesc@3.0.2: {}
- jsesc@0.5.0: {}
-
- jsesc@1.3.0: {}
-
- jsesc@2.5.2: {}
+ jsesc@3.1.0: {}
json-buffer@3.0.0: {}
json-buffer@3.0.1: {}
- json-parse-better-errors@1.0.2: {}
-
json-parse-even-better-errors@2.3.1: {}
json-schema-traverse@0.4.1: {}
@@ -13418,15 +12180,14 @@ snapshots:
json-stable-stringify-without-jsonify@1.0.1: {}
- json-stable-stringify@1.1.1:
+ json-stable-stringify@1.2.1:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
isarray: 2.0.5
jsonify: 0.0.1
object-keys: 1.1.1
- json5@0.5.1: {}
-
json5@1.0.2:
dependencies:
minimist: 1.2.8
@@ -13457,6 +12218,10 @@ snapshots:
dependencies:
json-buffer: 3.0.1
+ keyv@5.2.3:
+ dependencies:
+ '@keyv/serialize': 1.0.2
+
kind-of@3.2.2:
dependencies:
is-buffer: 1.1.6
@@ -13467,7 +12232,7 @@ snapshots:
kind-of@6.0.3: {}
- kleur@4.1.5: {}
+ known-css-properties@0.35.0: {}
language-subtag-registry@0.3.23: {}
@@ -13475,41 +12240,10 @@ snapshots:
dependencies:
language-subtag-registry: 0.3.23
- latest-version@5.1.0:
- dependencies:
- package-json: 6.5.0
-
lcid@3.1.1:
dependencies:
invert-kv: 3.0.1
- leek@0.0.24:
- dependencies:
- debug: 2.6.9(supports-color@8.1.1)
- lodash.assign: 3.2.0
- rsvp: 3.6.2
- transitivePeerDependencies:
- - supports-color
-
- lerna-changelog@2.2.0:
- dependencies:
- chalk: 4.1.2
- cli-highlight: 2.1.11
- execa: 5.1.1
- hosted-git-info: 4.1.0
- make-fetch-happen: 9.1.0
- p-map: 3.0.0
- progress: 2.0.3
- yargs: 17.7.2
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
- levn@0.3.0:
- dependencies:
- prelude-ls: 1.1.2
- type-check: 0.3.2
-
levn@0.4.1:
dependencies:
prelude-ls: 1.2.1
@@ -13528,23 +12262,8 @@ snapshots:
livereload-js@3.4.1: {}
- load-json-file@4.0.0:
- dependencies:
- graceful-fs: 4.2.11
- parse-json: 4.0.0
- pify: 3.0.0
- strip-bom: 3.0.0
-
- loader-runner@2.4.0: {}
-
loader-runner@4.3.0: {}
- loader-utils@1.4.2:
- dependencies:
- big.js: 5.2.2
- emojis-list: 3.0.0
- json5: 1.0.2
-
loader-utils@2.0.4:
dependencies:
big.js: 5.2.2
@@ -13553,6 +12272,8 @@ snapshots:
loader.js@4.7.0: {}
+ locate-character@2.0.5: {}
+
locate-path@2.0.0:
dependencies:
p-locate: 2.0.0
@@ -13575,43 +12296,18 @@ snapshots:
dependencies:
p-locate: 6.0.0
- lodash._baseassign@3.2.0:
- dependencies:
- lodash._basecopy: 3.0.1
- lodash.keys: 3.1.2
-
- lodash._basecopy@3.0.1: {}
-
lodash._baseflatten@3.1.4:
dependencies:
lodash.isarguments: 3.1.0
lodash.isarray: 3.0.4
- lodash._bindcallback@3.0.1: {}
-
- lodash._createassigner@3.1.1:
- dependencies:
- lodash._bindcallback: 3.0.1
- lodash._isiterateecall: 3.0.9
- lodash.restparam: 3.6.1
-
lodash._getnative@3.9.1: {}
lodash._isiterateecall@3.0.9: {}
lodash._reinterpolate@3.0.0: {}
- lodash.assign@3.2.0:
- dependencies:
- lodash._baseassign: 3.2.0
- lodash._createassigner: 3.1.1
- lodash.keys: 3.1.2
-
- lodash.assignin@4.2.0: {}
-
- lodash.castarray@4.4.0: {}
-
- lodash.clonedeep@4.5.0: {}
+ lodash.camelcase@4.3.0: {}
lodash.debounce@3.1.1:
dependencies:
@@ -13621,33 +12317,23 @@ snapshots:
lodash.defaultsdeep@4.6.1: {}
- lodash.find@4.6.0: {}
-
lodash.flatten@3.0.2:
dependencies:
lodash._baseflatten: 3.1.4
lodash._isiterateecall: 3.0.9
- lodash.foreach@4.5.0: {}
-
lodash.isarguments@3.1.0: {}
lodash.isarray@3.0.4: {}
lodash.kebabcase@4.1.1: {}
- lodash.keys@3.1.2:
- dependencies:
- lodash._getnative: 3.9.1
- lodash.isarguments: 3.1.0
- lodash.isarray: 3.0.4
+ lodash.memoize@4.1.2: {}
lodash.merge@4.6.2: {}
lodash.omit@4.5.0: {}
- lodash.restparam@3.6.1: {}
-
lodash.template@4.5.0:
dependencies:
lodash._reinterpolate: 3.0.0
@@ -13661,8 +12347,6 @@ snapshots:
lodash.uniq@4.5.0: {}
- lodash.uniqby@4.7.0: {}
-
lodash@4.17.21: {}
log-symbols@2.2.0:
@@ -13674,69 +12358,32 @@ snapshots:
chalk: 4.1.2
is-unicode-supported: 0.1.0
- loose-envify@1.4.0:
- dependencies:
- js-tokens: 4.0.0
-
lower-case@2.0.2:
dependencies:
- tslib: 2.6.2
+ tslib: 2.8.1
lowercase-keys@1.0.1: {}
lowercase-keys@2.0.0: {}
+ lru-cache@10.4.3: {}
+
lru-cache@5.1.1:
dependencies:
yallist: 3.1.1
- lru-cache@6.0.0:
- dependencies:
- yallist: 4.0.0
-
- lru-cache@7.18.3: {}
-
- macos-release@2.5.1: {}
-
- magic-string@0.25.9:
+ magic-string@0.24.1:
dependencies:
sourcemap-codec: 1.4.8
- magic-string@0.26.7:
+ magic-string@0.25.9:
dependencies:
sourcemap-codec: 1.4.8
- make-dir@2.1.0:
- dependencies:
- pify: 4.0.1
- semver: 5.7.2
-
make-dir@3.1.0:
dependencies:
semver: 6.3.1
- make-fetch-happen@9.1.0:
- dependencies:
- agentkeepalive: 4.5.0
- cacache: 15.3.0
- http-cache-semantics: 4.1.1
- http-proxy-agent: 4.0.1(supports-color@8.1.1)
- https-proxy-agent: 5.0.1(supports-color@8.1.1)
- is-lambda: 1.0.1
- lru-cache: 6.0.0
- minipass: 3.3.6
- minipass-collect: 1.0.2
- minipass-fetch: 1.4.1
- minipass-flush: 1.0.5
- minipass-pipeline: 1.2.4
- negotiator: 0.6.3
- promise-retry: 2.0.1
- socks-proxy-agent: 6.2.1
- ssri: 8.0.1
- transitivePeerDependencies:
- - bluebird
- - supports-color
-
makeerror@1.0.12:
dependencies:
tmpl: 1.0.5
@@ -13776,36 +12423,13 @@ snapshots:
'@types/minimatch': 3.0.5
minimatch: 3.1.2
- md5.js@1.3.5:
- dependencies:
- hash-base: 3.1.0
- inherits: 2.0.4
- safe-buffer: 5.2.1
-
- mdast-util-from-markdown@1.3.1:
- dependencies:
- '@types/mdast': 3.0.15
- '@types/unist': 2.0.10
- decode-named-character-reference: 1.0.2
- mdast-util-to-string: 3.2.0
- micromark: 3.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-decode-string: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- unist-util-stringify-position: 3.0.3
- uvu: 0.5.6
- transitivePeerDependencies:
- - supports-color
+ math-intrinsics@1.1.0: {}
- mdast-util-to-string@3.2.0:
- dependencies:
- '@types/mdast': 3.0.15
+ mathml-tag-names@2.1.3: {}
- mdn-data@2.0.14: {}
+ mdn-data@2.12.2: {}
- mdn-data@2.0.30: {}
+ mdn-data@2.15.0: {}
mdurl@1.0.1: {}
@@ -13817,23 +12441,13 @@ snapshots:
mimic-fn: 2.1.0
p-is-promise: 2.1.0
- memory-fs@0.4.1:
- dependencies:
- errno: 0.1.8
- readable-stream: 2.3.8
-
- memory-fs@0.5.0:
- dependencies:
- errno: 0.1.8
- readable-stream: 2.3.8
-
memory-streams@0.1.3:
dependencies:
readable-stream: 1.0.34
- memorystream@0.3.1: {}
+ meow@13.2.0: {}
- merge-descriptors@1.0.1: {}
+ merge-descriptors@1.0.3: {}
merge-stream@2.0.0: {}
@@ -13848,139 +12462,6 @@ snapshots:
methods@1.1.2: {}
- micromark-core-commonmark@1.1.0:
- dependencies:
- decode-named-character-reference: 1.0.2
- micromark-factory-destination: 1.1.0
- micromark-factory-label: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-factory-title: 1.1.0
- micromark-factory-whitespace: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-classify-character: 1.1.0
- micromark-util-html-tag-name: 1.2.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
-
- micromark-factory-destination@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-factory-label@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
-
- micromark-factory-space@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-types: 1.1.0
-
- micromark-factory-title@1.1.0:
- dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-factory-whitespace@1.1.0:
- dependencies:
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-util-character@1.2.0:
- dependencies:
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-util-chunked@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
-
- micromark-util-classify-character@1.1.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-util-combine-extensions@1.1.0:
- dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-types: 1.1.0
-
- micromark-util-decode-numeric-character-reference@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
-
- micromark-util-decode-string@1.1.0:
- dependencies:
- decode-named-character-reference: 1.0.2
- micromark-util-character: 1.2.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-symbol: 1.1.0
-
- micromark-util-encode@1.1.0: {}
-
- micromark-util-html-tag-name@1.2.0: {}
-
- micromark-util-normalize-identifier@1.1.0:
- dependencies:
- micromark-util-symbol: 1.1.0
-
- micromark-util-resolve-all@1.1.0:
- dependencies:
- micromark-util-types: 1.1.0
-
- micromark-util-sanitize-uri@1.2.0:
- dependencies:
- micromark-util-character: 1.2.0
- micromark-util-encode: 1.1.0
- micromark-util-symbol: 1.1.0
-
- micromark-util-subtokenize@1.1.0:
- dependencies:
- micromark-util-chunked: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
-
- micromark-util-symbol@1.1.0: {}
-
- micromark-util-types@1.1.0: {}
-
- micromark@3.2.0:
- dependencies:
- '@types/debug': 4.1.12
- debug: 4.3.4(supports-color@8.1.1)
- decode-named-character-reference: 1.0.2
- micromark-core-commonmark: 1.1.0
- micromark-factory-space: 1.1.0
- micromark-util-character: 1.2.0
- micromark-util-chunked: 1.1.0
- micromark-util-combine-extensions: 1.1.0
- micromark-util-decode-numeric-character-reference: 1.1.0
- micromark-util-encode: 1.1.0
- micromark-util-normalize-identifier: 1.1.0
- micromark-util-resolve-all: 1.1.0
- micromark-util-sanitize-uri: 1.2.0
- micromark-util-subtokenize: 1.1.0
- micromark-util-symbol: 1.1.0
- micromark-util-types: 1.1.0
- uvu: 0.5.6
- transitivePeerDependencies:
- - supports-color
-
micromatch@3.1.10:
dependencies:
arr-diff: 4.0.0
@@ -13999,18 +12480,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
- micromatch@4.0.7:
+ micromatch@4.0.8:
dependencies:
braces: 3.0.3
picomatch: 2.3.1
- miller-rabin@4.0.1:
- dependencies:
- bn.js: 4.12.0
- brorand: 1.1.0
-
mime-db@1.52.0: {}
+ mime-db@1.53.0: {}
+
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
@@ -14023,15 +12501,11 @@ snapshots:
mimic-response@1.0.1: {}
- mini-css-extract-plugin@2.9.0(webpack@5.91.0):
+ mini-css-extract-plugin@2.9.2(webpack@5.97.1):
dependencies:
- schema-utils: 4.2.0
+ schema-utils: 4.3.0
tapable: 2.2.1
- webpack: 5.91.0
-
- minimalistic-assert@1.0.1: {}
-
- minimalistic-crypto-utils@1.0.1: {}
+ webpack: 5.97.1
minimatch@3.1.2:
dependencies:
@@ -14045,62 +12519,24 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
- minimist@0.2.4: {}
-
- minimist@1.2.8: {}
-
- minipass-collect@1.0.2:
- dependencies:
- minipass: 3.3.6
-
- minipass-fetch@1.4.1:
- dependencies:
- minipass: 3.3.6
- minipass-sized: 1.0.3
- minizlib: 2.1.2
- optionalDependencies:
- encoding: 0.1.13
-
- minipass-flush@1.0.5:
+ minimatch@8.0.4:
dependencies:
- minipass: 3.3.6
+ brace-expansion: 2.0.1
- minipass-pipeline@1.2.4:
+ minimatch@9.0.5:
dependencies:
- minipass: 3.3.6
+ brace-expansion: 2.0.1
- minipass-sized@1.0.3:
- dependencies:
- minipass: 3.3.6
+ minimist@1.2.8: {}
minipass@2.9.0:
dependencies:
safe-buffer: 5.2.1
yallist: 3.1.1
- minipass@3.3.6:
- dependencies:
- yallist: 4.0.0
-
- minipass@5.0.0: {}
-
- minizlib@2.1.2:
- dependencies:
- minipass: 3.3.6
- yallist: 4.0.0
+ minipass@4.2.8: {}
- mississippi@3.0.0:
- dependencies:
- concat-stream: 1.6.2
- duplexify: 3.7.1
- end-of-stream: 1.4.4
- flush-write-stream: 1.1.1
- from2: 2.3.0
- parallel-transform: 1.2.0
- pump: 3.0.0
- pumpify: 1.5.1
- stream-each: 1.2.3
- through2: 2.0.5
+ minipass@7.1.2: {}
mixin-deep@1.3.2:
dependencies:
@@ -14120,30 +12556,15 @@ snapshots:
morgan@1.10.0:
dependencies:
basic-auth: 2.0.1
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
depd: 2.0.0
on-finished: 2.3.0
on-headers: 1.0.2
transitivePeerDependencies:
- supports-color
- mout@1.2.4: {}
-
- move-concurrently@1.0.1:
- dependencies:
- aproba: 1.2.0
- copy-concurrently: 1.0.5
- fs-write-stream-atomic: 1.0.10
- mkdirp: 0.5.6
- rimraf: 2.7.1
- run-queue: 1.0.3
-
- mri@1.2.0: {}
-
ms@2.0.0: {}
- ms@2.1.2: {}
-
ms@2.1.3: {}
mustache@4.2.0: {}
@@ -14152,16 +12573,9 @@ snapshots:
mute-stream@0.0.8: {}
- mz@2.7.0:
- dependencies:
- any-promise: 1.3.0
- object-assign: 4.1.1
- thenify-all: 1.6.0
-
- nan@2.19.0:
- optional: true
+ mute-stream@1.0.0: {}
- nanoid@3.3.7: {}
+ nanoid@3.3.8: {}
nanomatch@1.2.13:
dependencies:
@@ -14183,67 +12597,38 @@ snapshots:
negotiator@0.6.3: {}
- neo-async@2.6.2: {}
-
- netmask@2.0.2: {}
+ negotiator@0.6.4: {}
- new-github-release-url@1.0.0:
- dependencies:
- type-fest: 0.4.1
+ neo-async@2.6.2: {}
nice-try@1.0.5: {}
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.2
+ tslib: 2.8.1
+
+ node-addon-api@7.1.1:
+ optional: true
- node-fetch@2.7.0(encoding@0.1.13):
+ node-fetch@2.7.0:
dependencies:
whatwg-url: 5.0.0
- optionalDependencies:
- encoding: 0.1.13
node-int64@0.4.0: {}
- node-libs-browser@2.2.1:
- dependencies:
- assert: 1.5.1
- browserify-zlib: 0.2.0
- buffer: 4.9.2
- console-browserify: 1.2.0
- constants-browserify: 1.0.0
- crypto-browserify: 3.12.0
- domain-browser: 1.2.0
- events: 3.3.0
- https-browserify: 1.0.0
- os-browserify: 0.3.0
- path-browserify: 0.0.1
- process: 0.11.10
- punycode: 1.4.1
- querystring-es3: 0.2.1
- readable-stream: 2.3.8
- stream-browserify: 2.0.2
- stream-http: 2.8.3
- string_decoder: 1.3.0
- timers-browserify: 2.0.12
- tty-browserify: 0.0.0
- url: 0.11.3
- util: 0.11.1
- vm-browserify: 1.1.2
-
node-modules-path@1.0.2: {}
node-notifier@10.0.1:
dependencies:
growly: 1.3.0
is-wsl: 2.2.0
- semver: 7.6.2
+ semver: 7.6.3
shellwords: 0.1.1
uuid: 8.3.2
which: 2.0.2
- node-releases@2.0.14: {}
+ node-releases@2.0.19: {}
node-watch@0.7.3: {}
@@ -14251,13 +12636,6 @@ snapshots:
dependencies:
abbrev: 1.1.1
- normalize-package-data@2.5.0:
- dependencies:
- hosted-git-info: 2.8.9
- resolve: 1.22.8
- semver: 5.7.2
- validate-npm-package-license: 3.0.4
-
normalize-path@2.1.1:
dependencies:
remove-trailing-separator: 1.1.0
@@ -14266,45 +12644,17 @@ snapshots:
normalize-url@4.5.1: {}
- normalize-url@6.1.0: {}
-
- npm-package-arg@10.1.0:
- dependencies:
- hosted-git-info: 6.1.1
- proc-log: 3.0.0
- semver: 7.6.2
- validate-npm-package-name: 5.0.1
-
- npm-run-all2@5.0.2:
- dependencies:
- ansi-styles: 5.2.0
- cross-spawn: 7.0.3
- memorystream: 0.3.1
- minimatch: 3.1.2
- pidtree: 0.5.0
- read-pkg: 5.2.0
- shell-quote: 1.8.1
-
- npm-run-all@4.1.5:
+ npm-package-arg@12.0.1:
dependencies:
- ansi-styles: 3.2.1
- chalk: 2.4.2
- cross-spawn: 6.0.5
- memorystream: 0.3.1
- minimatch: 3.1.2
- pidtree: 0.3.1
- read-pkg: 3.0.0
- shell-quote: 1.8.1
- string.prototype.padend: 3.1.6
+ hosted-git-info: 8.0.2
+ proc-log: 5.0.0
+ semver: 7.6.3
+ validate-npm-package-name: 6.0.0
npm-run-path@2.0.2:
dependencies:
path-key: 2.0.1
- npm-run-path@3.1.0:
- dependencies:
- path-key: 3.1.1
-
npm-run-path@4.0.1:
dependencies:
path-key: 3.1.1
@@ -14316,7 +12666,7 @@ snapshots:
gauge: 4.0.4
set-blocking: 2.0.0
- nwsapi@2.2.10: {}
+ nwsapi@2.2.16: {}
object-assign@4.1.1: {}
@@ -14328,7 +12678,7 @@ snapshots:
object-hash@1.3.1: {}
- object-inspect@1.13.1: {}
+ object-inspect@1.13.3: {}
object-keys@1.1.1: {}
@@ -14336,17 +12686,39 @@ snapshots:
dependencies:
isobject: 3.0.1
- object.assign@4.1.5:
+ object.assign@4.1.7:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
define-properties: 1.2.1
- has-symbols: 1.0.3
+ es-object-atoms: 1.0.0
+ has-symbols: 1.1.0
object-keys: 1.1.1
+ object.fromentries@2.0.8:
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-object-atoms: 1.0.0
+
+ object.groupby@1.0.3:
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+
object.pick@1.3.0:
dependencies:
isobject: 3.0.1
+ object.values@1.2.1:
+ dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ define-properties: 1.2.1
+ es-object-atoms: 1.0.0
+
on-finished@2.3.0:
dependencies:
ee-first: 1.1.1
@@ -14365,23 +12737,9 @@ snapshots:
dependencies:
mimic-fn: 1.2.0
- onetime@5.1.2:
- dependencies:
- mimic-fn: 2.1.0
-
- open@7.4.2:
- dependencies:
- is-docker: 2.2.1
- is-wsl: 2.2.0
-
- optionator@0.8.3:
+ onetime@5.1.2:
dependencies:
- deep-is: 0.1.4
- fast-levenshtein: 2.0.6
- levn: 0.3.0
- prelude-ls: 1.1.2
- type-check: 0.3.2
- word-wrap: 1.2.5
+ mimic-fn: 2.1.0
optionator@0.9.4:
dependencies:
@@ -14413,27 +12771,19 @@ snapshots:
strip-ansi: 6.0.1
wcwidth: 1.0.1
- os-browserify@0.3.0: {}
-
- os-homedir@1.0.2: {}
-
os-locale@5.0.0:
dependencies:
execa: 4.1.0
lcid: 3.1.1
mem: 5.1.1
- os-name@4.0.1:
- dependencies:
- macos-release: 2.5.1
- windows-release: 4.0.0
-
os-tmpdir@1.0.2: {}
- osenv@0.1.5:
+ own-keys@1.0.1:
dependencies:
- os-homedir: 1.0.2
- os-tmpdir: 1.0.2
+ get-intrinsic: 1.2.7
+ object-keys: 1.1.1
+ safe-push-apply: 1.0.0
p-cancelable@1.1.0: {}
@@ -14443,8 +12793,6 @@ snapshots:
p-finally@1.0.0: {}
- p-finally@2.0.1: {}
-
p-is-promise@2.1.0: {}
p-limit@1.3.0:
@@ -14461,7 +12809,7 @@ snapshots:
p-limit@4.0.0:
dependencies:
- yocto-queue: 1.0.0
+ yocto-queue: 1.1.1
p-locate@2.0.0:
dependencies:
@@ -14483,38 +12831,10 @@ snapshots:
dependencies:
p-limit: 4.0.0
- p-map@3.0.0:
- dependencies:
- aggregate-error: 3.1.0
-
- p-map@4.0.0:
- dependencies:
- aggregate-error: 3.1.0
-
p-try@1.0.0: {}
p-try@2.2.0: {}
- pac-proxy-agent@5.0.0:
- dependencies:
- '@tootallnate/once': 1.1.2
- agent-base: 6.0.2(supports-color@8.1.1)
- debug: 4.3.4(supports-color@8.1.1)
- get-uri: 3.0.2
- http-proxy-agent: 4.0.1(supports-color@8.1.1)
- https-proxy-agent: 5.0.1(supports-color@8.1.1)
- pac-resolver: 5.0.1
- raw-body: 2.5.2
- socks-proxy-agent: 5.0.1
- transitivePeerDependencies:
- - supports-color
-
- pac-resolver@5.0.1:
- dependencies:
- degenerator: 3.0.4
- ip: 1.1.9
- netmask: 2.0.2
-
package-json@6.5.0:
dependencies:
got: 9.6.0
@@ -14522,74 +12842,33 @@ snapshots:
registry-url: 5.1.0
semver: 6.3.1
- pako@1.0.11: {}
-
- parallel-transform@1.2.0:
- dependencies:
- cyclist: 1.0.2
- inherits: 2.0.4
- readable-stream: 2.3.8
-
parent-module@1.0.1:
dependencies:
callsites: 3.1.0
- parse-asn1@5.1.7:
- dependencies:
- asn1.js: 4.10.1
- browserify-aes: 1.2.0
- evp_bytestokey: 1.0.3
- hash-base: 3.0.4
- pbkdf2: 3.1.2
- safe-buffer: 5.2.1
-
- parse-json@4.0.0:
- dependencies:
- error-ex: 1.3.2
- json-parse-better-errors: 1.0.2
-
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.6
+ '@babel/code-frame': 7.26.2
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
- parse-passwd@1.0.0: {}
+ parse-ms@1.0.1: {}
- parse-path@4.0.4:
- dependencies:
- is-ssh: 1.4.0
- protocols: 1.4.8
- qs: 6.12.1
- query-string: 6.14.1
+ parse-passwd@1.0.0: {}
parse-static-imports@1.1.0: {}
- parse-url@6.0.5:
- dependencies:
- is-ssh: 1.4.0
- normalize-url: 6.1.0
- parse-path: 4.0.4
- protocols: 1.4.8
+ parse5@6.0.1: {}
- parse5-htmlparser2-tree-adapter@6.0.1:
+ parse5@7.2.1:
dependencies:
- parse5: 6.0.1
-
- parse5@5.1.1: {}
-
- parse5@6.0.1: {}
+ entities: 4.5.0
parseurl@1.3.3: {}
pascalcase@0.1.1: {}
- path-browserify@0.0.1: {}
-
- path-dirname@1.0.2:
- optional: true
-
path-exists@3.0.0: {}
path-exists@4.0.0: {}
@@ -14612,48 +12891,29 @@ snapshots:
dependencies:
path-root-regex: 0.1.2
- path-to-regexp@0.1.7: {}
-
- path-type@3.0.0:
+ path-scurry@1.11.1:
dependencies:
- pify: 3.0.0
+ lru-cache: 10.4.3
+ minipass: 7.1.2
+
+ path-to-regexp@0.1.12: {}
path-type@4.0.0: {}
- pbkdf2@3.1.2:
- dependencies:
- create-hash: 1.2.0
- create-hmac: 1.1.7
- ripemd160: 2.0.2
- safe-buffer: 5.2.1
- sha.js: 2.4.11
+ path-type@5.0.0: {}
- picocolors@1.0.1: {}
+ picocolors@1.1.1: {}
picomatch@2.3.1: {}
- pidtree@0.3.1: {}
-
- pidtree@0.5.0: {}
-
- pify@3.0.0: {}
-
- pify@4.0.1: {}
-
- pinkie-promise@2.0.1:
- dependencies:
- pinkie: 2.0.4
-
- pinkie@2.0.4: {}
-
- pkg-dir@3.0.0:
- dependencies:
- find-up: 3.0.0
+ picomatch@4.0.2: {}
pkg-dir@4.2.0:
dependencies:
find-up: 4.1.0
+ pkg-entry-points@1.1.1: {}
+
pkg-up@2.0.0:
dependencies:
find-up: 2.1.0
@@ -14674,71 +12934,77 @@ snapshots:
possible-typed-array-names@1.0.0: {}
- postcss-modules-extract-imports@3.1.0(postcss@8.4.38):
+ postcss-media-query-parser@0.2.3: {}
+
+ postcss-modules-extract-imports@3.1.0(postcss@8.5.1):
dependencies:
- postcss: 8.4.38
+ postcss: 8.5.1
- postcss-modules-local-by-default@4.0.5(postcss@8.4.38):
+ postcss-modules-local-by-default@4.2.0(postcss@8.5.1):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ icss-utils: 5.1.0(postcss@8.5.1)
+ postcss: 8.5.1
+ postcss-selector-parser: 7.0.0
postcss-value-parser: 4.2.0
- postcss-modules-scope@3.2.0(postcss@8.4.38):
+ postcss-modules-scope@3.2.1(postcss@8.5.1):
+ dependencies:
+ postcss: 8.5.1
+ postcss-selector-parser: 7.0.0
+
+ postcss-modules-values@4.0.0(postcss@8.5.1):
+ dependencies:
+ icss-utils: 5.1.0(postcss@8.5.1)
+ postcss: 8.5.1
+
+ postcss-resolve-nested-selector@0.1.6: {}
+
+ postcss-safe-parser@7.0.1(postcss@8.5.1):
dependencies:
- postcss: 8.4.38
- postcss-selector-parser: 6.1.0
+ postcss: 8.5.1
- postcss-modules-values@4.0.0(postcss@8.4.38):
+ postcss-scss@4.0.9(postcss@8.5.1):
dependencies:
- icss-utils: 5.1.0(postcss@8.4.38)
- postcss: 8.4.38
+ postcss: 8.5.1
- postcss-selector-parser@6.1.0:
+ postcss-selector-parser@7.0.0:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
postcss-value-parser@4.2.0: {}
- postcss@8.4.38:
+ postcss@8.5.1:
dependencies:
- nanoid: 3.3.7
- picocolors: 1.0.1
- source-map-js: 1.2.0
-
- prelude-ls@1.1.2: {}
+ nanoid: 3.3.8
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
prelude-ls@1.2.1: {}
prepend-http@2.0.0: {}
- prettier-linter-helpers@1.0.0:
+ prettier-plugin-ember-template-tag@2.0.4(prettier@3.4.2):
dependencies:
- fast-diff: 1.3.0
+ '@babel/core': 7.26.0
+ content-tag: 2.0.3
+ prettier: 3.4.2
+ transitivePeerDependencies:
+ - supports-color
prettier@2.8.8: {}
- printf@0.6.1: {}
-
- private@0.1.8: {}
-
- proc-log@3.0.0: {}
+ prettier@3.4.2: {}
- process-nextick-args@2.0.1: {}
-
- process-relative-require@1.0.0:
+ pretty-ms@3.2.0:
dependencies:
- node-modules-path: 1.0.2
+ parse-ms: 1.0.1
- process@0.11.10: {}
+ printf@0.6.1: {}
- progress@2.0.3: {}
+ private@0.1.8: {}
- promise-inflight@1.0.1(bluebird@3.7.2):
- optionalDependencies:
- bluebird: 3.7.2
+ proc-log@5.0.0: {}
promise-map-series@0.2.3:
dependencies:
@@ -14746,20 +13012,6 @@ snapshots:
promise-map-series@0.3.0: {}
- promise-retry@2.0.1:
- dependencies:
- err-code: 2.0.3
- retry: 0.12.0
-
- promise.allsettled@1.0.5:
- dependencies:
- array.prototype.map: 1.0.7
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- get-intrinsic: 1.2.4
- iterate-value: 1.0.2
-
promise.hash.helper@1.0.8: {}
proper-lockfile@4.1.2:
@@ -14768,85 +13020,25 @@ snapshots:
retry: 0.12.0
signal-exit: 3.0.7
- protocols@1.4.8: {}
-
- protocols@2.0.1: {}
-
proxy-addr@2.0.7:
dependencies:
forwarded: 0.2.0
ipaddr.js: 1.9.1
- proxy-agent@5.0.0:
- dependencies:
- agent-base: 6.0.2(supports-color@8.1.1)
- debug: 4.3.4(supports-color@8.1.1)
- http-proxy-agent: 4.0.1(supports-color@8.1.1)
- https-proxy-agent: 5.0.1(supports-color@8.1.1)
- lru-cache: 5.1.1
- pac-proxy-agent: 5.0.0
- proxy-from-env: 1.1.0
- socks-proxy-agent: 5.0.1
- transitivePeerDependencies:
- - supports-color
-
- proxy-from-env@1.1.0: {}
-
- prr@1.0.1: {}
-
- psl@1.9.0: {}
-
- public-encrypt@4.0.3:
- dependencies:
- bn.js: 4.12.0
- browserify-rsa: 4.1.0
- create-hash: 1.2.0
- parse-asn1: 5.1.7
- randombytes: 2.1.0
- safe-buffer: 5.2.1
-
- pump@2.0.1:
- dependencies:
- end-of-stream: 1.4.4
- once: 1.4.0
-
- pump@3.0.0:
+ pump@3.0.2:
dependencies:
end-of-stream: 1.4.4
once: 1.4.0
- pumpify@1.5.1:
- dependencies:
- duplexify: 3.7.1
- inherits: 2.0.4
- pump: 2.0.1
-
- punycode@1.4.1: {}
-
punycode@2.3.1: {}
- pupa@2.1.1:
- dependencies:
- escape-goat: 2.1.1
-
- qs@6.11.0:
+ qs@6.13.0:
dependencies:
- side-channel: 1.0.6
+ side-channel: 1.1.0
- qs@6.12.1:
+ qs@6.13.1:
dependencies:
- side-channel: 1.0.6
-
- query-string@6.14.1:
- dependencies:
- decode-uri-component: 0.2.2
- filter-obj: 1.1.0
- split-on-first: 1.1.0
- strict-uri-encode: 2.0.0
-
- querystring-es3@0.2.1: {}
-
- querystringify@2.2.0: {}
+ side-channel: 1.1.0
queue-microtask@1.2.3: {}
@@ -14856,16 +13048,13 @@ snapshots:
rimraf: 2.7.1
underscore.string: 3.3.6
- qunit-dom@2.0.0:
+ qunit-dom@3.4.0:
dependencies:
- broccoli-funnel: 3.0.8
- broccoli-merge-trees: 4.2.0
- ember-cli-babel: 7.26.11
- ember-cli-version-checker: 5.1.2
- transitivePeerDependencies:
- - supports-color
+ dom-element-descriptors: 0.5.1
+
+ qunit-theme-ember@1.0.0: {}
- qunit@2.20.1:
+ qunit@2.24.0:
dependencies:
commander: 7.2.0
node-watch: 0.7.3
@@ -14875,11 +13064,6 @@ snapshots:
dependencies:
safe-buffer: 5.2.1
- randomfill@1.0.4:
- dependencies:
- randombytes: 2.1.0
- safe-buffer: 5.2.1
-
range-parser@1.2.1: {}
raw-body@1.1.7:
@@ -14901,19 +13085,6 @@ snapshots:
minimist: 1.2.8
strip-json-comments: 2.0.1
- read-pkg@3.0.0:
- dependencies:
- load-json-file: 4.0.0
- normalize-package-data: 2.5.0
- path-type: 3.0.0
-
- read-pkg@5.2.0:
- dependencies:
- '@types/normalize-package-data': 2.4.4
- normalize-package-data: 2.5.0
- parse-json: 5.2.0
- type-fest: 0.6.0
-
readable-stream@1.0.34:
dependencies:
core-util-is: 1.0.3
@@ -14921,42 +13092,13 @@ snapshots:
isarray: 0.0.1
string_decoder: 0.10.31
- readable-stream@1.1.14:
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 0.0.1
- string_decoder: 0.10.31
-
- readable-stream@2.3.8:
- dependencies:
- core-util-is: 1.0.3
- inherits: 2.0.4
- isarray: 1.0.0
- process-nextick-args: 2.0.1
- safe-buffer: 5.1.2
- string_decoder: 1.1.1
- util-deprecate: 1.0.2
-
readable-stream@3.6.2:
dependencies:
inherits: 2.0.4
string_decoder: 1.3.0
util-deprecate: 1.0.2
- readdirp@2.2.1:
- dependencies:
- graceful-fs: 4.2.11
- micromatch: 3.1.10
- readable-stream: 2.3.8
- transitivePeerDependencies:
- - supports-color
- optional: true
-
- readdirp@3.6.0:
- dependencies:
- picomatch: 2.3.1
- optional: true
+ readdirp@4.1.1: {}
recast@0.18.10:
dependencies:
@@ -14965,64 +13107,57 @@ snapshots:
private: 0.1.8
source-map: 0.6.1
- rechoir@0.6.2:
- dependencies:
- resolve: 1.22.8
-
redeyed@1.0.1:
dependencies:
esprima: 3.0.0
- regenerate-unicode-properties@10.1.1:
+ reflect.getprototypeof@1.0.10:
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: 1.2.1
+ es-abstract: 1.23.9
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+ get-intrinsic: 1.2.7
+ get-proto: 1.0.1
+ which-builtin-type: 1.2.1
+
+ regenerate-unicode-properties@10.2.0:
dependencies:
regenerate: 1.4.2
regenerate@1.4.2: {}
- regenerator-runtime@0.11.1: {}
-
regenerator-runtime@0.13.11: {}
regenerator-runtime@0.14.1: {}
- regenerator-transform@0.10.1:
- dependencies:
- babel-runtime: 6.26.0
- babel-types: 6.26.0
- private: 0.1.8
-
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.24.6
+ '@babel/runtime': 7.26.0
regex-not@1.0.2:
dependencies:
extend-shallow: 3.0.2
safe-regex: 1.1.0
- regexp.prototype.flags@1.5.2:
+ regexp.prototype.flags@1.5.4:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
es-errors: 1.3.0
+ get-proto: 1.0.1
+ gopd: 1.2.0
set-function-name: 2.0.2
- regexpp@3.2.0: {}
-
- regexpu-core@2.0.0:
+ regexpu-core@6.2.0:
dependencies:
regenerate: 1.4.2
- regjsgen: 0.2.0
- regjsparser: 0.1.5
-
- regexpu-core@5.3.2:
- dependencies:
- '@babel/regjsgen': 0.8.0
- regenerate: 1.4.2
- regenerate-unicode-properties: 10.1.1
- regjsparser: 0.9.1
+ regenerate-unicode-properties: 10.2.0
+ regjsgen: 0.8.0
+ regjsparser: 0.12.0
unicode-match-property-ecmascript: 2.0.0
- unicode-match-property-value-ecmascript: 2.1.0
+ unicode-match-property-value-ecmascript: 2.2.0
registry-auth-token@4.2.2:
dependencies:
@@ -15032,65 +13167,11 @@ snapshots:
dependencies:
rc: 1.2.8
- regjsgen@0.2.0: {}
-
- regjsparser@0.1.5:
- dependencies:
- jsesc: 0.5.0
-
- regjsparser@0.9.1:
- dependencies:
- jsesc: 0.5.0
-
- release-it-lerna-changelog@4.0.1(release-it@14.14.3(encoding@0.1.13)):
- dependencies:
- execa: 5.1.1
- lerna-changelog: 2.2.0
- mdast-util-from-markdown: 1.3.1
- release-it: 14.14.3(encoding@0.1.13)
- tmp: 0.2.3
- validate-peer-dependencies: 2.2.0
- which: 2.0.2
- transitivePeerDependencies:
- - bluebird
- - supports-color
+ regjsgen@0.8.0: {}
- release-it@14.14.3(encoding@0.1.13):
+ regjsparser@0.12.0:
dependencies:
- '@iarna/toml': 2.2.5
- '@octokit/rest': 18.12.0(encoding@0.1.13)
- async-retry: 1.3.3
- chalk: 4.1.2
- cosmiconfig: 7.0.1
- debug: 4.3.4(supports-color@8.1.1)
- execa: 5.1.1
- form-data: 4.0.0
- git-url-parse: 11.6.0
- globby: 11.0.4
- got: 9.6.0
- import-cwd: 3.0.0
- inquirer: 8.2.0
- is-ci: 3.0.1
- lodash: 4.17.21
- mime-types: 2.1.35
- new-github-release-url: 1.0.0
- open: 7.4.2
- ora: 5.4.1
- os-name: 4.0.1
- parse-json: 5.2.0
- promise.allsettled: 1.0.5
- proxy-agent: 5.0.0
- semver: 7.3.5
- shelljs: 0.8.5
- update-notifier: 5.1.0
- url-join: 4.0.1
- uuid: 8.3.2
- wildcard-match: 5.1.2
- yaml: 1.10.2
- yargs-parser: 20.2.9
- transitivePeerDependencies:
- - encoding
- - supports-color
+ jsesc: 3.0.2
remote-git-tags@3.0.0: {}
@@ -15098,9 +13179,9 @@ snapshots:
remove-types@1.0.0:
dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-syntax-decorators': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6)
+ '@babel/core': 7.26.0
+ '@babel/plugin-syntax-decorators': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-typescript': 7.26.5(@babel/core@7.26.0)
prettier: 2.8.8
transitivePeerDependencies:
- supports-color
@@ -15109,14 +13190,12 @@ snapshots:
repeat-string@1.6.1: {}
- repeating@2.0.1:
- dependencies:
- is-finite: 1.1.0
-
require-directory@2.1.1: {}
require-from-string@2.0.2: {}
+ require-relative@0.8.7: {}
+
requireindex@1.2.0: {}
requires-port@1.0.0: {}
@@ -15137,17 +13216,17 @@ snapshots:
resolve-package-path@1.2.7:
dependencies:
path-root: 0.1.1
- resolve: 1.22.8
+ resolve: 1.22.10
resolve-package-path@2.0.0:
dependencies:
path-root: 0.1.1
- resolve: 1.22.8
+ resolve: 1.22.10
resolve-package-path@3.1.0:
dependencies:
path-root: 0.1.1
- resolve: 1.22.8
+ resolve: 1.22.10
resolve-package-path@4.0.3:
dependencies:
@@ -15158,11 +13237,13 @@ snapshots:
http-errors: 1.6.3
path-is-absolute: 1.0.1
+ resolve-pkg-maps@1.0.0: {}
+
resolve-url@0.2.1: {}
- resolve@1.22.8:
+ resolve@1.22.10:
dependencies:
- is-core-module: 2.13.1
+ is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -15184,8 +13265,6 @@ snapshots:
retry@0.12.0: {}
- retry@0.13.1: {}
-
reusify@1.0.4: {}
rimraf@2.6.3:
@@ -15200,10 +13279,71 @@ snapshots:
dependencies:
glob: 7.2.3
- ripemd160@2.0.2:
+ rollup-plugin-copy-assets@2.0.3(rollup@4.31.0):
dependencies:
- hash-base: 3.1.0
- inherits: 2.0.4
+ fs-extra: 7.0.1
+ rollup: 4.31.0
+
+ rollup-plugin-copy@3.5.0:
+ dependencies:
+ '@types/fs-extra': 8.1.5
+ colorette: 1.4.0
+ fs-extra: 8.1.0
+ globby: 10.0.1
+ is-plain-object: 3.0.1
+
+ rollup-pluginutils@2.8.2:
+ dependencies:
+ estree-walker: 0.6.1
+
+ rollup@0.57.1:
+ dependencies:
+ '@types/acorn': 4.0.6
+ acorn: 5.7.4
+ acorn-dynamic-import: 3.0.0
+ date-time: 2.1.0
+ is-reference: 1.2.1
+ locate-character: 2.0.5
+ pretty-ms: 3.2.0
+ require-relative: 0.8.7
+ rollup-pluginutils: 2.8.2
+ signal-exit: 3.0.7
+ sourcemap-codec: 1.4.8
+
+ rollup@4.31.0:
+ dependencies:
+ '@types/estree': 1.0.6
+ optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.31.0
+ '@rollup/rollup-android-arm64': 4.31.0
+ '@rollup/rollup-darwin-arm64': 4.31.0
+ '@rollup/rollup-darwin-x64': 4.31.0
+ '@rollup/rollup-freebsd-arm64': 4.31.0
+ '@rollup/rollup-freebsd-x64': 4.31.0
+ '@rollup/rollup-linux-arm-gnueabihf': 4.31.0
+ '@rollup/rollup-linux-arm-musleabihf': 4.31.0
+ '@rollup/rollup-linux-arm64-gnu': 4.31.0
+ '@rollup/rollup-linux-arm64-musl': 4.31.0
+ '@rollup/rollup-linux-loongarch64-gnu': 4.31.0
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.31.0
+ '@rollup/rollup-linux-riscv64-gnu': 4.31.0
+ '@rollup/rollup-linux-s390x-gnu': 4.31.0
+ '@rollup/rollup-linux-x64-gnu': 4.31.0
+ '@rollup/rollup-linux-x64-musl': 4.31.0
+ '@rollup/rollup-win32-arm64-msvc': 4.31.0
+ '@rollup/rollup-win32-ia32-msvc': 4.31.0
+ '@rollup/rollup-win32-x64-msvc': 4.31.0
+ fsevents: 2.3.3
+
+ route-recognizer@0.3.4: {}
+
+ router_js@8.0.6(route-recognizer@0.3.4)(rsvp@4.8.5):
+ dependencies:
+ '@glimmer/env': 0.1.7
+ route-recognizer: 0.3.4
+ rsvp: 4.8.5
+
+ rrweb-cssom@0.7.1: {}
rsvp@3.2.1: {}
@@ -15213,31 +13353,26 @@ snapshots:
run-async@2.4.1: {}
+ run-async@3.0.0: {}
+
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- run-queue@1.0.3:
- dependencies:
- aproba: 1.2.0
-
rxjs@6.6.7:
dependencies:
tslib: 1.14.1
rxjs@7.8.1:
dependencies:
- tslib: 2.6.2
-
- sade@1.8.1:
- dependencies:
- mri: 1.2.0
+ tslib: 2.8.1
- safe-array-concat@1.1.2:
+ safe-array-concat@1.1.3:
dependencies:
- call-bind: 1.0.7
- get-intrinsic: 1.2.4
- has-symbols: 1.0.3
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ get-intrinsic: 1.2.7
+ has-symbols: 1.1.0
isarray: 2.0.5
safe-buffer@5.1.2: {}
@@ -15246,17 +13381,22 @@ snapshots:
safe-json-parse@1.0.1: {}
- safe-regex-test@1.0.3:
+ safe-push-apply@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ isarray: 2.0.5
+
+ safe-regex-test@1.1.0:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
es-errors: 1.3.0
- is-regex: 1.1.4
+ is-regex: 1.2.1
safe-regex@1.1.0:
dependencies:
ret: 0.1.15
- safe-stable-stringify@2.4.3: {}
+ safe-stable-stringify@2.5.0: {}
safer-buffer@2.1.2: {}
@@ -15282,19 +13422,21 @@ snapshots:
exec-sh: 0.3.6
execa: 4.1.0
fb-watchman: 2.0.2
- micromatch: 4.0.7
+ micromatch: 4.0.8
minimist: 1.2.8
walker: 1.0.8
- saxes@5.0.1:
+ sass@1.83.4:
dependencies:
- xmlchars: 2.2.0
+ chokidar: 4.0.3
+ immutable: 5.0.3
+ source-map-js: 1.2.1
+ optionalDependencies:
+ '@parcel/watcher': 2.5.0
- schema-utils@1.0.0:
+ saxes@6.0.0:
dependencies:
- ajv: 6.12.6
- ajv-errors: 1.0.1(ajv@6.12.6)
- ajv-keywords: 3.5.2(ajv@6.12.6)
+ xmlchars: 2.2.0
schema-utils@2.7.1:
dependencies:
@@ -15308,30 +13450,22 @@ snapshots:
ajv: 6.12.6
ajv-keywords: 3.5.2(ajv@6.12.6)
- schema-utils@4.2.0:
+ schema-utils@4.3.0:
dependencies:
'@types/json-schema': 7.0.15
- ajv: 8.14.0
- ajv-formats: 2.1.1(ajv@8.14.0)
- ajv-keywords: 5.1.0(ajv@8.14.0)
-
- semver-diff@3.1.1:
- dependencies:
- semver: 6.3.1
+ ajv: 8.17.1
+ ajv-formats: 2.1.1
+ ajv-keywords: 5.1.0(ajv@8.17.1)
semver@5.7.2: {}
semver@6.3.1: {}
- semver@7.3.5:
- dependencies:
- lru-cache: 6.0.0
-
- semver@7.6.2: {}
+ semver@7.6.3: {}
- send@0.18.0:
+ send@0.19.0:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
depd: 2.0.0
destroy: 1.2.0
encodeurl: 1.0.2
@@ -15347,20 +13481,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- serialize-javascript@4.0.0:
- dependencies:
- randombytes: 2.1.0
-
serialize-javascript@6.0.2:
dependencies:
randombytes: 2.1.0
- serve-static@1.15.0:
+ serve-static@1.16.2:
dependencies:
- encodeurl: 1.0.2
+ encodeurl: 2.0.0
escape-html: 1.0.3
parseurl: 1.3.3
- send: 0.18.0
+ send: 0.19.0
transitivePeerDependencies:
- supports-color
@@ -15371,8 +13501,8 @@ snapshots:
define-data-property: 1.1.4
es-errors: 1.3.0
function-bind: 1.1.2
- get-intrinsic: 1.2.4
- gopd: 1.0.1
+ get-intrinsic: 1.2.7
+ gopd: 1.2.0
has-property-descriptors: 1.0.2
set-function-name@2.0.2:
@@ -15382,6 +13512,12 @@ snapshots:
functions-have-names: 1.2.3
has-property-descriptors: 1.0.2
+ set-proto@1.0.0:
+ dependencies:
+ dunder-proto: 1.0.1
+ es-errors: 1.3.0
+ es-object-atoms: 1.0.0
+
set-value@2.0.1:
dependencies:
extend-shallow: 2.0.1
@@ -15389,17 +13525,10 @@ snapshots:
is-plain-object: 2.0.4
split-string: 3.1.0
- setimmediate@1.0.5: {}
-
setprototypeof@1.1.0: {}
setprototypeof@1.2.0: {}
- sha.js@2.4.11:
- dependencies:
- inherits: 2.0.4
- safe-buffer: 5.2.1
-
shebang-command@1.2.0:
dependencies:
shebang-regex: 1.0.0
@@ -15412,38 +13541,53 @@ snapshots:
shebang-regex@3.0.0: {}
- shell-quote@1.8.1: {}
+ shell-quote@1.8.2: {}
- shelljs@0.8.5:
+ shellwords@0.1.1: {}
+
+ side-channel-list@1.0.0:
dependencies:
- glob: 7.2.3
- interpret: 1.4.0
- rechoir: 0.6.2
+ es-errors: 1.3.0
+ object-inspect: 1.13.3
- shellwords@0.1.1: {}
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.7
+ object-inspect: 1.13.3
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.7
+ object-inspect: 1.13.3
+ side-channel-map: 1.0.1
- side-channel@1.0.6:
+ side-channel@1.1.0:
dependencies:
- call-bind: 1.0.7
es-errors: 1.3.0
- get-intrinsic: 1.2.4
- object-inspect: 1.13.1
+ object-inspect: 1.13.3
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
signal-exit@3.0.7: {}
+ signal-exit@4.1.0: {}
+
silent-error@1.1.1:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
transitivePeerDependencies:
- supports-color
simple-html-tokenizer@0.5.11: {}
- slash@1.0.0: {}
-
slash@3.0.0: {}
- slash@4.0.0: {}
+ slash@5.1.0: {}
slice-ansi@4.0.0:
dependencies:
@@ -15451,12 +13595,10 @@ snapshots:
astral-regex: 2.0.0
is-fullwidth-code-point: 3.0.0
- smart-buffer@4.2.0: {}
-
snake-case@3.0.4:
dependencies:
dot-case: 3.0.4
- tslib: 2.6.2
+ tslib: 2.8.1
snapdragon-node@2.1.1:
dependencies:
@@ -15471,7 +13613,7 @@ snapshots:
snapdragon@0.8.2:
dependencies:
base: 0.11.2
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
define-property: 0.2.5
extend-shallow: 2.0.1
map-cache: 0.2.2
@@ -15481,10 +13623,10 @@ snapshots:
transitivePeerDependencies:
- supports-color
- socket.io-adapter@2.5.4:
+ socket.io-adapter@2.5.5:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
- ws: 8.11.0
+ debug: 4.3.7
+ ws: 8.17.1
transitivePeerDependencies:
- bufferutil
- supports-color
@@ -15493,45 +13635,24 @@ snapshots:
socket.io-parser@4.2.4:
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
- socket.io@4.7.5:
+ socket.io@4.8.1:
dependencies:
accepts: 1.3.8
base64id: 2.0.0
cors: 2.8.5
- debug: 4.3.4(supports-color@8.1.1)
- engine.io: 6.5.4
- socket.io-adapter: 2.5.4
+ debug: 4.3.7
+ engine.io: 6.6.2
+ socket.io-adapter: 2.5.5
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
- supports-color
- utf-8-validate
- socks-proxy-agent@5.0.1:
- dependencies:
- agent-base: 6.0.2(supports-color@8.1.1)
- debug: 4.3.4(supports-color@8.1.1)
- socks: 2.8.3
- transitivePeerDependencies:
- - supports-color
-
- socks-proxy-agent@6.2.1:
- dependencies:
- agent-base: 6.0.2(supports-color@8.1.1)
- debug: 4.3.4(supports-color@8.1.1)
- socks: 2.8.3
- transitivePeerDependencies:
- - supports-color
-
- socks@2.8.3:
- dependencies:
- ip-address: 9.0.5
- smart-buffer: 4.2.0
-
sort-object-keys@1.1.3: {}
sort-package-json@1.57.0:
@@ -15543,9 +13664,7 @@ snapshots:
is-plain-obj: 2.1.0
sort-object-keys: 1.1.3
- source-list-map@2.0.1: {}
-
- source-map-js@1.2.0: {}
+ source-map-js@1.2.1: {}
source-map-resolve@0.5.3:
dependencies:
@@ -15555,10 +13674,6 @@ snapshots:
source-map-url: 0.4.1
urix: 0.1.0
- source-map-support@0.4.18:
- dependencies:
- source-map: 0.5.7
-
source-map-support@0.5.21:
dependencies:
buffer-from: 1.1.2
@@ -15568,10 +13683,6 @@ snapshots:
source-map-url@0.4.1: {}
- source-map@0.1.43:
- dependencies:
- amdefine: 1.0.1
-
source-map@0.4.4:
dependencies:
amdefine: 1.0.1
@@ -15580,35 +13691,10 @@ snapshots:
source-map@0.6.1: {}
- source-map@0.7.4: {}
-
sourcemap-codec@1.4.8: {}
- sourcemap-validator@1.1.1:
- dependencies:
- jsesc: 0.3.0
- lodash.foreach: 4.5.0
- lodash.template: 4.5.0
- source-map: 0.1.43
-
spawn-args@0.2.0: {}
- spdx-correct@3.2.0:
- dependencies:
- spdx-expression-parse: 3.0.1
- spdx-license-ids: 3.0.18
-
- spdx-exceptions@2.5.0: {}
-
- spdx-expression-parse@3.0.1:
- dependencies:
- spdx-exceptions: 2.5.0
- spdx-license-ids: 3.0.18
-
- spdx-license-ids@3.0.18: {}
-
- split-on-first@1.1.0: {}
-
split-string@3.1.0:
dependencies:
extend-shallow: 3.0.2
@@ -15619,17 +13705,9 @@ snapshots:
sri-toolbox@0.2.0: {}
- ssri@6.0.2:
- dependencies:
- figgy-pudding: 3.5.2
-
- ssri@8.0.1:
- dependencies:
- minipass: 3.3.6
-
stagehand@1.0.1:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
transitivePeerDependencies:
- supports-color
@@ -15642,32 +13720,6 @@ snapshots:
statuses@2.0.1: {}
- stop-iteration-iterator@1.0.0:
- dependencies:
- internal-slot: 1.0.7
-
- stream-browserify@2.0.2:
- dependencies:
- inherits: 2.0.4
- readable-stream: 2.3.8
-
- stream-each@1.2.3:
- dependencies:
- end-of-stream: 1.4.4
- stream-shift: 1.0.3
-
- stream-http@2.8.3:
- dependencies:
- builtin-status-codes: 3.0.0
- inherits: 2.0.4
- readable-stream: 2.3.8
- to-arraybuffer: 1.0.1
- xtend: 4.0.2
-
- stream-shift@1.0.3: {}
-
- strict-uri-encode@2.0.0: {}
-
string-template@0.2.1: {}
string-width@2.1.1:
@@ -15681,61 +13733,51 @@ snapshots:
is-fullwidth-code-point: 3.0.0
strip-ansi: 6.0.1
- string.prototype.matchall@4.0.11:
+ string.prototype.matchall@4.0.12:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-errors: 1.3.0
es-object-atoms: 1.0.0
- get-intrinsic: 1.2.4
- gopd: 1.0.1
- has-symbols: 1.0.3
- internal-slot: 1.0.7
- regexp.prototype.flags: 1.5.2
+ get-intrinsic: 1.2.7
+ gopd: 1.2.0
+ has-symbols: 1.1.0
+ internal-slot: 1.1.0
+ regexp.prototype.flags: 1.5.4
set-function-name: 2.0.2
- side-channel: 1.0.6
-
- string.prototype.padend@3.1.6:
- dependencies:
- call-bind: 1.0.7
- define-properties: 1.2.1
- es-abstract: 1.23.3
- es-object-atoms: 1.0.0
+ side-channel: 1.1.0
- string.prototype.trim@1.2.9:
+ string.prototype.trim@1.2.10:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.23.3
+ es-abstract: 1.23.9
es-object-atoms: 1.0.0
+ has-property-descriptors: 1.0.2
- string.prototype.trimend@1.0.8:
+ string.prototype.trimend@1.0.9:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
define-properties: 1.2.1
es-object-atoms: 1.0.0
string.prototype.trimstart@1.0.8:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
define-properties: 1.2.1
es-object-atoms: 1.0.0
string_decoder@0.10.31: {}
- string_decoder@1.1.1:
- dependencies:
- safe-buffer: 5.1.2
-
string_decoder@1.3.0:
dependencies:
safe-buffer: 5.2.1
- strip-ansi@3.0.1:
- dependencies:
- ansi-regex: 2.1.1
-
strip-ansi@4.0.0:
dependencies:
ansi-regex: 3.0.1
@@ -15760,19 +13802,104 @@ snapshots:
strip-json-comments@3.1.1: {}
- style-loader@2.0.0(webpack@5.91.0):
+ style-loader@2.0.0(webpack@5.97.1):
dependencies:
loader-utils: 2.0.4
schema-utils: 3.3.0
- webpack: 5.91.0
+ webpack: 5.97.1
styled_string@0.0.1: {}
- sum-up@1.0.3:
+ stylelint-config-recommended-scss@14.1.0(postcss@8.5.1)(stylelint@16.13.2(typescript@5.7.3)):
+ dependencies:
+ postcss-scss: 4.0.9(postcss@8.5.1)
+ stylelint: 16.13.2(typescript@5.7.3)
+ stylelint-config-recommended: 14.0.1(stylelint@16.13.2(typescript@5.7.3))
+ stylelint-scss: 6.10.1(stylelint@16.13.2(typescript@5.7.3))
+ optionalDependencies:
+ postcss: 8.5.1
+
+ stylelint-config-recommended@14.0.1(stylelint@16.13.2(typescript@5.7.3)):
dependencies:
- chalk: 1.1.3
+ stylelint: 16.13.2(typescript@5.7.3)
- supports-color@2.0.0: {}
+ stylelint-config-recommended@15.0.0(stylelint@16.13.2(typescript@5.7.3)):
+ dependencies:
+ stylelint: 16.13.2(typescript@5.7.3)
+
+ stylelint-config-standard-scss@13.1.0(postcss@8.5.1)(stylelint@16.13.2(typescript@5.7.3)):
+ dependencies:
+ stylelint: 16.13.2(typescript@5.7.3)
+ stylelint-config-recommended-scss: 14.1.0(postcss@8.5.1)(stylelint@16.13.2(typescript@5.7.3))
+ stylelint-config-standard: 36.0.1(stylelint@16.13.2(typescript@5.7.3))
+ optionalDependencies:
+ postcss: 8.5.1
+
+ stylelint-config-standard@36.0.1(stylelint@16.13.2(typescript@5.7.3)):
+ dependencies:
+ stylelint: 16.13.2(typescript@5.7.3)
+ stylelint-config-recommended: 14.0.1(stylelint@16.13.2(typescript@5.7.3))
+
+ stylelint-config-standard@37.0.0(stylelint@16.13.2(typescript@5.7.3)):
+ dependencies:
+ stylelint: 16.13.2(typescript@5.7.3)
+ stylelint-config-recommended: 15.0.0(stylelint@16.13.2(typescript@5.7.3))
+
+ stylelint-scss@6.10.1(stylelint@16.13.2(typescript@5.7.3)):
+ dependencies:
+ css-tree: 3.1.0
+ is-plain-object: 5.0.0
+ known-css-properties: 0.35.0
+ mdn-data: 2.15.0
+ postcss-media-query-parser: 0.2.3
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-selector-parser: 7.0.0
+ postcss-value-parser: 4.2.0
+ stylelint: 16.13.2(typescript@5.7.3)
+
+ stylelint@16.13.2(typescript@5.7.3):
+ dependencies:
+ '@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-tokenizer': 3.0.3
+ '@csstools/media-query-list-parser': 4.0.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/selector-specificity': 5.0.0(postcss-selector-parser@7.0.0)
+ '@dual-bundle/import-meta-resolve': 4.1.0
+ balanced-match: 2.0.0
+ colord: 2.9.3
+ cosmiconfig: 9.0.0(typescript@5.7.3)
+ css-functions-list: 3.2.3
+ css-tree: 3.1.0
+ debug: 4.4.0
+ fast-glob: 3.3.3
+ fastest-levenshtein: 1.0.16
+ file-entry-cache: 10.0.5
+ global-modules: 2.0.0
+ globby: 11.1.0
+ globjoin: 0.1.4
+ html-tags: 3.3.1
+ ignore: 7.0.3
+ imurmurhash: 0.1.4
+ is-plain-object: 5.0.0
+ known-css-properties: 0.35.0
+ mathml-tag-names: 2.1.3
+ meow: 13.2.0
+ micromatch: 4.0.8
+ normalize-path: 3.0.0
+ picocolors: 1.1.1
+ postcss: 8.5.1
+ postcss-resolve-nested-selector: 0.1.6
+ postcss-safe-parser: 7.0.1(postcss@8.5.1)
+ postcss-selector-parser: 7.0.0
+ postcss-value-parser: 4.2.0
+ resolve-from: 5.0.0
+ string-width: 4.2.3
+ supports-hyperlinks: 3.1.0
+ svg-tags: 1.0.0
+ table: 6.9.0
+ write-file-atomic: 5.0.1
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
supports-color@5.5.0:
dependencies:
@@ -15786,15 +13913,22 @@ snapshots:
dependencies:
has-flag: 4.0.0
+ supports-hyperlinks@3.1.0:
+ dependencies:
+ has-flag: 4.0.0
+ supports-color: 7.2.0
+
supports-preserve-symlinks-flag@1.0.0: {}
+ svg-tags@1.0.0: {}
+
symbol-tree@3.2.4: {}
symlink-or-copy@1.3.1: {}
sync-disk-cache@1.3.4:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
heimdalljs: 0.2.6
mkdirp: 0.5.6
rimraf: 2.7.1
@@ -15804,7 +13938,7 @@ snapshots:
sync-disk-cache@2.1.0:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
heimdalljs: 0.2.6
mkdirp: 0.5.6
rimraf: 3.0.2
@@ -15812,9 +13946,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- table@6.8.2:
+ table@6.9.0:
dependencies:
- ajv: 8.14.0
+ ajv: 8.17.1
lodash.truncate: 4.4.2
slice-ansi: 4.0.0
string-width: 4.2.3
@@ -15826,87 +13960,52 @@ snapshots:
js-yaml: 3.14.1
minipass: 2.9.0
- tapable@1.1.3: {}
-
tapable@2.2.1: {}
- tar@6.2.1:
- dependencies:
- chownr: 2.0.0
- fs-minipass: 2.1.0
- minipass: 5.0.0
- minizlib: 2.1.2
- mkdirp: 1.0.4
- yallist: 4.0.0
-
temp@0.9.4:
dependencies:
mkdirp: 0.5.6
rimraf: 2.6.3
- terser-webpack-plugin@1.4.5(webpack@4.47.0):
- dependencies:
- cacache: 12.0.4
- find-cache-dir: 2.1.0
- is-wsl: 1.1.0
- schema-utils: 1.0.0
- serialize-javascript: 4.0.0
- source-map: 0.6.1
- terser: 4.8.1
- webpack: 4.47.0
- webpack-sources: 1.4.3
- worker-farm: 1.7.0
-
- terser-webpack-plugin@5.3.10(webpack@5.91.0):
+ terser-webpack-plugin@5.3.11(webpack@5.97.1):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
- schema-utils: 3.3.0
+ schema-utils: 4.3.0
serialize-javascript: 6.0.2
- terser: 5.31.0
- webpack: 5.91.0
-
- terser@4.8.1:
- dependencies:
- acorn: 8.11.3
- commander: 2.20.3
- source-map: 0.6.1
- source-map-support: 0.5.21
+ terser: 5.37.0
+ webpack: 5.97.1
- terser@5.31.0:
+ terser@5.37.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.11.3
+ acorn: 8.14.0
commander: 2.20.3
source-map-support: 0.5.21
- testem@3.13.0(babel-core@6.26.3)(handlebars@4.7.8)(lodash@4.17.21)(underscore@1.13.6):
+ testem@3.15.2(handlebars@4.7.8)(underscore@1.13.7):
dependencies:
'@xmldom/xmldom': 0.8.10
backbone: 1.6.0
bluebird: 3.7.2
charm: 1.0.2
commander: 2.20.3
- compression: 1.7.4
- consolidate: 0.16.0(babel-core@6.26.3)(handlebars@4.7.8)(lodash@4.17.21)(mustache@4.2.0)(underscore@1.13.6)
+ compression: 1.7.5
+ consolidate: 0.16.0(handlebars@4.7.8)(lodash@4.17.21)(mustache@4.2.0)(underscore@1.13.7)
execa: 1.0.0
- express: 4.19.2
+ express: 4.21.2
fireworm: 0.7.2
glob: 7.2.3
http-proxy: 1.18.1
js-yaml: 3.14.1
- lodash.assignin: 4.2.0
- lodash.castarray: 4.4.0
- lodash.clonedeep: 4.5.0
- lodash.find: 4.6.0
- lodash.uniqby: 4.7.0
+ lodash: 4.17.21
mkdirp: 3.0.1
mustache: 4.2.0
node-notifier: 10.0.1
npmlog: 6.0.2
printf: 0.6.1
rimraf: 3.0.2
- socket.io: 4.7.5
+ socket.io: 4.8.1
spawn-args: 0.2.0
styled_string: 0.0.1
tap-parser: 7.0.0
@@ -15938,7 +14037,6 @@ snapshots:
- just
- liquid-node
- liquor
- - lodash
- marko
- mote
- nunjucks
@@ -15969,32 +14067,8 @@ snapshots:
- walrus
- whiskers
- text-table@0.2.0: {}
-
textextensions@2.6.0: {}
- thenify-all@1.6.0:
- dependencies:
- thenify: 3.3.1
-
- thenify@3.3.1:
- dependencies:
- any-promise: 1.3.0
-
- thread-loader@3.0.4(webpack@5.91.0):
- dependencies:
- json-parse-better-errors: 1.0.2
- loader-runner: 4.3.0
- loader-utils: 2.0.4
- neo-async: 2.6.2
- schema-utils: 3.3.0
- webpack: 5.91.0
-
- through2@2.0.5:
- dependencies:
- readable-stream: 2.3.8
- xtend: 4.0.2
-
through2@3.0.2:
dependencies:
inherits: 2.0.4
@@ -16002,9 +14076,7 @@ snapshots:
through@2.3.8: {}
- timers-browserify@2.0.12:
- dependencies:
- setimmediate: 1.0.5
+ time-zone@1.0.0: {}
tiny-glob@0.2.9:
dependencies:
@@ -16018,10 +14090,16 @@ snapshots:
faye-websocket: 0.11.4
livereload-js: 3.4.1
object-assign: 4.1.1
- qs: 6.12.1
+ qs: 6.13.1
transitivePeerDependencies:
- supports-color
+ tldts-core@6.1.71: {}
+
+ tldts@6.1.71:
+ dependencies:
+ tldts-core: 6.1.71
+
tmp@0.0.28:
dependencies:
os-tmpdir: 1.0.2
@@ -16038,12 +14116,6 @@ snapshots:
tmpl@1.0.5: {}
- to-arraybuffer@1.0.1: {}
-
- to-fast-properties@1.0.3: {}
-
- to-fast-properties@2.0.0: {}
-
to-object-path@0.3.0:
dependencies:
kind-of: 3.2.2
@@ -16068,22 +14140,30 @@ snapshots:
toidentifier@1.0.1: {}
- tough-cookie@4.1.4:
+ tough-cookie@5.0.0:
dependencies:
- psl: 1.9.0
- punycode: 2.3.1
- universalify: 0.2.0
- url-parse: 1.5.10
+ tldts: 6.1.71
tr46@0.0.3: {}
- tr46@2.1.0:
+ tr46@5.0.0:
dependencies:
punycode: 2.3.1
+ tracked-built-ins@4.0.0(@babel/core@7.26.0):
+ dependencies:
+ '@embroider/addon-shim': 1.9.0
+ decorator-transforms: 2.3.0(@babel/core@7.26.0)
+ ember-tracked-storage-polyfill: 1.0.0
+ transitivePeerDependencies:
+ - '@babel/core'
+ - supports-color
+
+ tree-kill@1.2.2: {}
+
tree-sync@1.4.0:
dependencies:
- debug: 2.6.9(supports-color@8.1.1)
+ debug: 2.6.9
fs-tree-diff: 0.5.9
mkdirp: 0.5.6
quick-temp: 0.1.8
@@ -16093,7 +14173,7 @@ snapshots:
tree-sync@2.1.0:
dependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.4.0
fs-tree-diff: 2.0.1
mkdirp: 0.5.6
quick-temp: 0.1.8
@@ -16101,17 +14181,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- trim-right@1.0.1: {}
-
- tslib@1.14.1: {}
+ ts-api-utils@2.0.0(typescript@5.7.3):
+ dependencies:
+ typescript: 5.7.3
- tslib@2.6.2: {}
+ tsconfig-paths@3.15.0:
+ dependencies:
+ '@types/json5': 0.0.29
+ json5: 1.0.2
+ minimist: 1.2.8
+ strip-bom: 3.0.0
- tty-browserify@0.0.0: {}
+ tslib@1.14.1: {}
- type-check@0.3.2:
- dependencies:
- prelude-ls: 1.1.2
+ tslib@2.8.1: {}
type-check@0.4.0:
dependencies:
@@ -16119,91 +14202,98 @@ snapshots:
type-fest@0.11.0: {}
- type-fest@0.20.2: {}
-
type-fest@0.21.3: {}
- type-fest@0.4.1: {}
-
- type-fest@0.6.0: {}
-
type-is@1.6.18:
dependencies:
media-typer: 0.3.0
mime-types: 2.1.35
- typed-array-buffer@1.0.2:
+ typed-array-buffer@1.0.3:
dependencies:
- call-bind: 1.0.7
+ call-bound: 1.0.3
es-errors: 1.3.0
- is-typed-array: 1.1.13
+ is-typed-array: 1.1.15
- typed-array-byte-length@1.0.1:
+ typed-array-byte-length@1.0.3:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
- typed-array-byte-offset@1.0.2:
+ typed-array-byte-offset@1.0.4:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.7
+ call-bind: 1.0.8
for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
+ gopd: 1.2.0
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ reflect.getprototypeof: 1.0.10
- typed-array-length@1.0.6:
+ typed-array-length@1.0.7:
dependencies:
- call-bind: 1.0.7
+ call-bind: 1.0.8
for-each: 0.3.3
- gopd: 1.0.1
- has-proto: 1.0.3
- is-typed-array: 1.1.13
+ gopd: 1.2.0
+ is-typed-array: 1.1.15
possible-typed-array-names: 1.0.0
+ reflect.getprototypeof: 1.0.10
typedarray-to-buffer@3.1.5:
dependencies:
is-typedarray: 1.0.0
- typedarray@0.0.6: {}
+ typescript-eslint@8.21.0(eslint@9.18.0)(typescript@5.7.3):
+ dependencies:
+ '@typescript-eslint/eslint-plugin': 8.21.0(@typescript-eslint/parser@8.21.0(eslint@9.18.0)(typescript@5.7.3))(eslint@9.18.0)(typescript@5.7.3)
+ '@typescript-eslint/parser': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ '@typescript-eslint/utils': 8.21.0(eslint@9.18.0)(typescript@5.7.3)
+ eslint: 9.18.0
+ typescript: 5.7.3
+ transitivePeerDependencies:
+ - supports-color
typescript-memoize@1.1.1: {}
+ typescript@5.7.3: {}
+
uc.micro@1.0.6: {}
- uglify-js@3.17.4:
+ uglify-js@3.19.3:
optional: true
- unbox-primitive@1.0.2:
+ unbox-primitive@1.1.0:
dependencies:
- call-bind: 1.0.7
- has-bigints: 1.0.2
- has-symbols: 1.0.3
- which-boxed-primitive: 1.0.2
+ call-bound: 1.0.3
+ has-bigints: 1.1.0
+ has-symbols: 1.1.0
+ which-boxed-primitive: 1.1.1
underscore.string@3.3.6:
dependencies:
sprintf-js: 1.1.3
util-deprecate: 1.0.2
- underscore@1.13.6: {}
+ underscore@1.13.7: {}
- undici-types@5.26.5: {}
+ undici-types@6.20.0: {}
- unicode-canonical-property-names-ecmascript@2.0.0: {}
+ unicode-canonical-property-names-ecmascript@2.0.1: {}
unicode-match-property-ecmascript@2.0.0:
dependencies:
- unicode-canonical-property-names-ecmascript: 2.0.0
+ unicode-canonical-property-names-ecmascript: 2.0.1
unicode-property-aliases-ecmascript: 2.1.0
- unicode-match-property-value-ecmascript@2.1.0: {}
+ unicode-match-property-value-ecmascript@2.2.0: {}
unicode-property-aliases-ecmascript@2.1.0: {}
+ unicorn-magic@0.1.0: {}
+
union-value@1.0.1:
dependencies:
arr-union: 3.1.0
@@ -16211,28 +14301,12 @@ snapshots:
is-extendable: 0.1.1
set-value: 2.0.1
- unique-filename@1.1.1:
- dependencies:
- unique-slug: 2.0.2
-
- unique-slug@2.0.2:
- dependencies:
- imurmurhash: 0.1.4
-
unique-string@2.0.0:
dependencies:
crypto-random-string: 2.0.0
- unist-util-stringify-position@3.0.3:
- dependencies:
- '@types/unist': 2.0.10
-
- universal-user-agent@6.0.1: {}
-
universalify@0.1.2: {}
- universalify@0.2.0: {}
-
universalify@2.0.1: {}
unpipe@1.0.0: {}
@@ -16242,37 +14316,13 @@ snapshots:
has-value: 0.3.1
isobject: 3.0.1
- untildify@2.1.0:
- dependencies:
- os-homedir: 1.0.2
-
- upath@1.2.0:
- optional: true
-
upath@2.0.1: {}
- update-browserslist-db@1.0.16(browserslist@4.23.0):
- dependencies:
- browserslist: 4.23.0
- escalade: 3.1.2
- picocolors: 1.0.1
-
- update-notifier@5.1.0:
+ update-browserslist-db@1.1.1(browserslist@4.24.3):
dependencies:
- boxen: 5.1.2
- chalk: 4.1.2
- configstore: 5.0.1
- has-yarn: 2.1.0
- import-lazy: 2.1.0
- is-ci: 2.0.0
- is-installed-globally: 0.4.0
- is-npm: 5.0.0
- is-yarn-global: 0.3.0
- latest-version: 5.1.0
- pupa: 2.1.1
- semver: 7.3.5
- semver-diff: 3.1.1
- xdg-basedir: 4.0.0
+ browserslist: 4.24.3
+ escalade: 3.2.0
+ picocolors: 1.1.1
uri-js@4.4.1:
dependencies:
@@ -16280,84 +14330,51 @@ snapshots:
urix@0.1.0: {}
- url-join@4.0.1: {}
-
url-parse-lax@3.0.0:
dependencies:
prepend-http: 2.0.0
- url-parse@1.5.10:
- dependencies:
- querystringify: 2.2.0
- requires-port: 1.0.0
-
- url@0.11.3:
- dependencies:
- punycode: 1.4.1
- qs: 6.12.1
-
use@3.1.1: {}
username-sync@1.0.3: {}
util-deprecate@1.0.2: {}
- util@0.10.4:
- dependencies:
- inherits: 2.0.3
-
- util@0.11.1:
- dependencies:
- inherits: 2.0.3
-
utils-merge@1.0.1: {}
uuid@8.3.2: {}
- uuid@9.0.1: {}
-
- uvu@0.5.6:
- dependencies:
- dequal: 2.0.3
- diff: 5.2.0
- kleur: 4.1.5
- sade: 1.8.1
-
v8-compile-cache@2.4.0: {}
- validate-npm-package-license@3.0.4:
- dependencies:
- spdx-correct: 3.2.0
- spdx-expression-parse: 3.0.1
-
- validate-npm-package-name@5.0.1: {}
+ validate-npm-package-name@6.0.0: {}
validate-peer-dependencies@1.2.0:
dependencies:
resolve-package-path: 3.1.0
- semver: 7.6.2
-
- validate-peer-dependencies@2.2.0:
- dependencies:
- resolve-package-path: 4.0.3
- semver: 7.6.2
+ semver: 7.6.3
vary@1.1.2: {}
- vm-browserify@1.1.2: {}
+ vscode-jsonrpc@8.1.0: {}
- vm2@3.9.19:
+ vscode-languageserver-protocol@3.17.3:
dependencies:
- acorn: 8.11.3
- acorn-walk: 8.3.2
+ vscode-jsonrpc: 8.1.0
+ vscode-languageserver-types: 3.17.3
+
+ vscode-languageserver-textdocument@1.0.12: {}
- w3c-hr-time@1.0.2:
+ vscode-languageserver-types@3.17.3: {}
+
+ vscode-languageserver@8.1.0:
dependencies:
- browser-process-hrtime: 1.0.0
+ vscode-languageserver-protocol: 3.17.3
+
+ vscode-uri@3.0.8: {}
- w3c-xmlserializer@2.0.0:
+ w3c-xmlserializer@5.0.0:
dependencies:
- xml-name-validator: 3.0.0
+ xml-name-validator: 5.0.0
walk-sync@0.2.7:
dependencies:
@@ -16401,24 +14418,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
- watchpack-chokidar2@2.0.1:
- dependencies:
- chokidar: 2.1.8
- transitivePeerDependencies:
- - supports-color
- optional: true
-
- watchpack@1.7.5:
- dependencies:
- graceful-fs: 4.2.11
- neo-async: 2.6.2
- optionalDependencies:
- chokidar: 3.6.0
- watchpack-chokidar2: 2.0.1
- transitivePeerDependencies:
- - supports-color
-
- watchpack@2.4.1:
+ watchpack@2.4.2:
dependencies:
glob-to-regexp: 0.4.1
graceful-fs: 4.2.11
@@ -16429,58 +14429,22 @@ snapshots:
webidl-conversions@3.0.1: {}
- webidl-conversions@5.0.0: {}
-
- webidl-conversions@6.1.0: {}
-
- webpack-sources@1.4.3:
- dependencies:
- source-list-map: 2.0.1
- source-map: 0.6.1
+ webidl-conversions@7.0.0: {}
webpack-sources@3.2.3: {}
- webpack@4.47.0:
- dependencies:
- '@webassemblyjs/ast': 1.9.0
- '@webassemblyjs/helper-module-context': 1.9.0
- '@webassemblyjs/wasm-edit': 1.9.0
- '@webassemblyjs/wasm-parser': 1.9.0
- acorn: 6.4.2
- ajv: 6.12.6
- ajv-keywords: 3.5.2(ajv@6.12.6)
- chrome-trace-event: 1.0.3
- enhanced-resolve: 4.5.0
- eslint-scope: 4.0.3
- json-parse-better-errors: 1.0.2
- loader-runner: 2.4.0
- loader-utils: 1.4.2
- memory-fs: 0.4.1
- micromatch: 3.1.10
- mkdirp: 0.5.6
- neo-async: 2.6.2
- node-libs-browser: 2.2.1
- schema-utils: 1.0.0
- tapable: 1.1.3
- terser-webpack-plugin: 1.4.5(webpack@4.47.0)
- watchpack: 1.7.5
- webpack-sources: 1.4.3
- transitivePeerDependencies:
- - supports-color
-
- webpack@5.91.0:
+ webpack@5.97.1:
dependencies:
'@types/eslint-scope': 3.7.7
- '@types/estree': 1.0.5
- '@webassemblyjs/ast': 1.12.1
- '@webassemblyjs/wasm-edit': 1.12.1
- '@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.11.3
- acorn-import-assertions: 1.9.0(acorn@8.11.3)
- browserslist: 4.23.0
- chrome-trace-event: 1.0.3
- enhanced-resolve: 5.16.1
- es-module-lexer: 1.5.3
+ '@types/estree': 1.0.6
+ '@webassemblyjs/ast': 1.14.1
+ '@webassemblyjs/wasm-edit': 1.14.1
+ '@webassemblyjs/wasm-parser': 1.14.1
+ acorn: 8.14.0
+ browserslist: 4.24.3
+ chrome-trace-event: 1.0.4
+ enhanced-resolve: 5.18.0
+ es-module-lexer: 1.6.0
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -16491,8 +14455,8 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.10(webpack@5.91.0)
- watchpack: 2.4.1
+ terser-webpack-plugin: 5.3.11(webpack@5.97.1)
+ watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
- '@swc/core'
@@ -16507,37 +14471,62 @@ snapshots:
websocket-extensions@0.1.4: {}
- whatwg-encoding@1.0.5:
+ whatwg-encoding@3.1.1:
dependencies:
- iconv-lite: 0.4.24
+ iconv-lite: 0.6.3
+
+ whatwg-fetch@3.6.20: {}
- whatwg-mimetype@2.3.0: {}
+ whatwg-mimetype@4.0.0: {}
+
+ whatwg-url@14.1.0:
+ dependencies:
+ tr46: 5.0.0
+ webidl-conversions: 7.0.0
whatwg-url@5.0.0:
dependencies:
tr46: 0.0.3
webidl-conversions: 3.0.1
- whatwg-url@8.7.0:
+ which-boxed-primitive@1.1.1:
dependencies:
- lodash: 4.17.21
- tr46: 2.1.0
- webidl-conversions: 6.1.0
+ is-bigint: 1.1.0
+ is-boolean-object: 1.2.1
+ is-number-object: 1.1.1
+ is-string: 1.1.1
+ is-symbol: 1.1.1
+
+ which-builtin-type@1.2.1:
+ dependencies:
+ call-bound: 1.0.3
+ function.prototype.name: 1.1.8
+ has-tostringtag: 1.0.2
+ is-async-function: 2.1.0
+ is-date-object: 1.1.0
+ is-finalizationregistry: 1.1.1
+ is-generator-function: 1.1.0
+ is-regex: 1.2.1
+ is-weakref: 1.1.0
+ isarray: 2.0.5
+ which-boxed-primitive: 1.1.1
+ which-collection: 1.0.2
+ which-typed-array: 1.1.18
- which-boxed-primitive@1.0.2:
+ which-collection@1.0.2:
dependencies:
- is-bigint: 1.0.4
- is-boolean-object: 1.1.2
- is-number-object: 1.0.7
- is-string: 1.0.7
- is-symbol: 1.0.4
+ is-map: 2.0.3
+ is-set: 2.0.3
+ is-weakmap: 2.0.2
+ is-weakset: 2.0.4
- which-typed-array@1.1.15:
+ which-typed-array@1.1.18:
dependencies:
available-typed-arrays: 1.0.7
- call-bind: 1.0.7
+ call-bind: 1.0.8
+ call-bound: 1.0.3
for-each: 0.3.3
- gopd: 1.0.1
+ gopd: 1.2.0
has-tostringtag: 1.0.2
which@1.3.1:
@@ -16552,29 +14541,13 @@ snapshots:
dependencies:
string-width: 4.2.3
- widest-line@3.1.0:
- dependencies:
- string-width: 4.2.3
-
- wildcard-match@5.1.2: {}
-
- windows-release@4.0.0:
- dependencies:
- execa: 4.1.0
-
word-wrap@1.2.5: {}
- wordwrap@0.0.3: {}
-
wordwrap@1.0.0: {}
- worker-farm@1.7.0:
- dependencies:
- errno: 0.1.8
-
workerpool@3.1.2:
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.26.0
object-assign: 4.1.1
rsvp: 4.8.5
transitivePeerDependencies:
@@ -16594,13 +14567,6 @@ snapshots:
string-width: 4.2.3
strip-ansi: 6.0.1
- wrap-legacy-hbs-plugin-if-needed@1.0.1:
- dependencies:
- '@glimmer/reference': 0.42.2
- '@glimmer/runtime': 0.42.2
- '@glimmer/syntax': 0.42.2
- '@simple-dom/interface': 1.4.0
-
wrappy@1.0.2: {}
write-file-atomic@3.0.3:
@@ -16610,53 +14576,36 @@ snapshots:
signal-exit: 3.0.7
typedarray-to-buffer: 3.1.5
- ws@7.5.9: {}
+ write-file-atomic@5.0.1:
+ dependencies:
+ imurmurhash: 0.1.4
+ signal-exit: 4.1.0
- ws@8.11.0: {}
+ ws@8.17.1: {}
+
+ ws@8.18.0: {}
xdg-basedir@4.0.0: {}
- xml-name-validator@3.0.0: {}
+ xml-name-validator@5.0.0: {}
xmlchars@2.2.0: {}
- xregexp@2.0.0: {}
-
- xtend@4.0.2: {}
-
- y18n@4.0.3: {}
-
y18n@5.0.8: {}
yallist@3.1.1: {}
- yallist@4.0.0: {}
-
yam@1.0.0:
dependencies:
fs-extra: 4.0.3
lodash.merge: 4.6.2
- yaml@1.10.2: {}
-
- yargs-parser@20.2.9: {}
-
yargs-parser@21.1.1: {}
- yargs@16.2.0:
- dependencies:
- cliui: 7.0.4
- escalade: 3.1.2
- get-caller-file: 2.0.5
- require-directory: 2.1.1
- string-width: 4.2.3
- y18n: 5.0.8
- yargs-parser: 20.2.9
-
yargs@17.7.2:
dependencies:
cliui: 8.0.1
- escalade: 3.1.2
+ escalade: 3.2.0
get-caller-file: 2.0.5
require-directory: 2.1.1
string-width: 4.2.3
@@ -16665,4 +14614,6 @@ snapshots:
yocto-queue@0.1.0: {}
- yocto-queue@1.0.0: {}
+ yocto-queue@1.1.1: {}
+
+ yoctocolors-cjs@2.1.2: {}
diff --git a/pnpm-workspace.yaml b/pnpm-workspace.yaml
new file mode 100644
index 0000000..b3dcbc9
--- /dev/null
+++ b/pnpm-workspace.yaml
@@ -0,0 +1,3 @@
+packages:
+ - 'addon'
+ - 'test-app'
diff --git a/test-app/.editorconfig b/test-app/.editorconfig
new file mode 100644
index 0000000..c35a002
--- /dev/null
+++ b/test-app/.editorconfig
@@ -0,0 +1,19 @@
+# EditorConfig helps developers define and maintain consistent
+# coding styles between different editors and IDEs
+# editorconfig.org
+
+root = true
+
+[*]
+end_of_line = lf
+charset = utf-8
+trim_trailing_whitespace = true
+insert_final_newline = true
+indent_style = space
+indent_size = 2
+
+[*.hbs]
+insert_final_newline = false
+
+[*.{diff,md}]
+trim_trailing_whitespace = false
diff --git a/test-app/.ember-cli b/test-app/.ember-cli
new file mode 100644
index 0000000..4defd28
--- /dev/null
+++ b/test-app/.ember-cli
@@ -0,0 +1,7 @@
+{
+ /**
+ Setting `isTypeScriptProject` to true will force the blueprint generators to generate TypeScript
+ rather than JavaScript by default, when a TypeScript version of a given blueprint is available.
+ */
+ "isTypeScriptProject": true
+}
diff --git a/test-app/.gitignore b/test-app/.gitignore
new file mode 100644
index 0000000..71ad79d
--- /dev/null
+++ b/test-app/.gitignore
@@ -0,0 +1,25 @@
+# compiled output
+/dist/
+/declarations/
+
+# dependencies
+/node_modules/
+
+# misc
+/.env*
+/.pnp*
+/.eslintcache
+/coverage/
+/npm-debug.log*
+/testem.log
+/yarn-error.log
+
+# ember-try
+/.node_modules.ember-try/
+/npm-shrinkwrap.json.ember-try
+/package.json.ember-try
+/package-lock.json.ember-try
+/yarn.lock.ember-try
+
+# broccoli-debug
+/DEBUG/
diff --git a/.eslintignore b/test-app/.prettierignore
similarity index 50%
rename from .eslintignore
rename to test-app/.prettierignore
index 9221655..52ddaa1 100644
--- a/.eslintignore
+++ b/test-app/.prettierignore
@@ -1,21 +1,16 @@
# unconventional js
/blueprints/*/files/
-/vendor/
# compiled output
/dist/
-/tmp/
-
-# dependencies
-/bower_components/
-/node_modules/
# misc
/coverage/
!.*
-.eslintcache
+.*/
+/pnpm-lock.yaml
+ember-cli-update.json
+*.html
# ember-try
/.node_modules.ember-try/
-/bower.json.ember-try
-/package.json.ember-try
diff --git a/test-app/.prettierrc.js b/test-app/.prettierrc.js
new file mode 100644
index 0000000..8e62a45
--- /dev/null
+++ b/test-app/.prettierrc.js
@@ -0,0 +1,14 @@
+'use strict';
+
+module.exports = {
+ plugins: ['prettier-plugin-ember-template-tag'],
+ overrides: [
+ {
+ files: '*.{js,gjs,ts,gts,mjs,mts,cjs,cts}',
+ options: {
+ singleQuote: true,
+ templateSingleQuote: false,
+ },
+ },
+ ],
+};
diff --git a/test-app/.stylelintignore b/test-app/.stylelintignore
new file mode 100644
index 0000000..a0cf71c
--- /dev/null
+++ b/test-app/.stylelintignore
@@ -0,0 +1,8 @@
+# unconventional files
+/blueprints/*/files/
+
+# compiled output
+/dist/
+
+# addons
+/.node_modules.ember-try/
diff --git a/test-app/.stylelintrc.js b/test-app/.stylelintrc.js
new file mode 100644
index 0000000..af4e190
--- /dev/null
+++ b/test-app/.stylelintrc.js
@@ -0,0 +1,5 @@
+'use strict';
+
+module.exports = {
+ extends: ['stylelint-config-standard-scss'],
+};
diff --git a/.prettierrc.js b/test-app/.template-lintrc.js
similarity index 58%
rename from .prettierrc.js
rename to test-app/.template-lintrc.js
index 534e6d3..f35f61c 100644
--- a/.prettierrc.js
+++ b/test-app/.template-lintrc.js
@@ -1,5 +1,5 @@
'use strict';
module.exports = {
- singleQuote: true,
+ extends: 'recommended',
};
diff --git a/test-app/.watchmanconfig b/test-app/.watchmanconfig
new file mode 100644
index 0000000..f9c3d8f
--- /dev/null
+++ b/test-app/.watchmanconfig
@@ -0,0 +1,3 @@
+{
+ "ignore_dirs": ["dist"]
+}
diff --git a/test-app/README.md b/test-app/README.md
new file mode 100644
index 0000000..654727a
--- /dev/null
+++ b/test-app/README.md
@@ -0,0 +1,57 @@
+# test-app
+
+This README outlines the details of collaborating on this Ember application.
+This is the test app for the ember-a11y-refocus addon.
+
+## Prerequisites
+
+You will need the following things properly installed on your computer.
+
+- [Git](https://git-scm.com/)
+- [Node.js](https://nodejs.org/)
+- [pnpm](https://pnpm.io/)
+- [Ember CLI](https://cli.emberjs.com/release/)
+- [Google Chrome](https://google.com/chrome/)
+
+## Installation
+
+- `git clone ` this repository
+- `cd test-app`
+- `pnpm install`
+
+## Running / Development
+
+- `pnpm start`
+- Visit your app at [http://localhost:4200](http://localhost:4200).
+- Visit your tests at [http://localhost:4200/tests](http://localhost:4200/tests).
+
+### Code Generators
+
+Make use of the many generators for code, try `ember help generate` for more details
+
+### Running Tests
+
+- `pnpm test`
+- `pnpm test:ember --server`
+
+### Linting
+
+- `pnpm lint`
+- `pnpm lint:fix`
+
+### Building
+
+- `pnpm ember build` (development)
+- `pnpm build` (production)
+
+### Deploying
+
+Specify what it takes to deploy your app.
+
+## Further Reading / Useful Links
+
+- [ember.js](https://emberjs.com/)
+- [ember-cli](https://cli.emberjs.com/release/)
+- Development Browser Extensions
+ - [ember inspector for chrome](https://chrome.google.com/webstore/detail/ember-inspector/bmdblncegkenkacieihfhpjfppoconhi)
+ - [ember inspector for firefox](https://addons.mozilla.org/en-US/firefox/addon/ember-inspector/)
diff --git a/tests/dummy/app/app.js b/test-app/app/app.ts
similarity index 87%
rename from tests/dummy/app/app.js
rename to test-app/app/app.ts
index 523bad6..1ba9342 100644
--- a/tests/dummy/app/app.js
+++ b/test-app/app/app.ts
@@ -1,7 +1,7 @@
import Application from '@ember/application';
import Resolver from 'ember-resolver';
import loadInitializers from 'ember-load-initializers';
-import config from 'dummy/config/environment';
+import config from 'test-app/config/environment';
export default class App extends Application {
modulePrefix = config.modulePrefix;
diff --git a/addon/.gitkeep b/test-app/app/components/.gitkeep
similarity index 100%
rename from addon/.gitkeep
rename to test-app/app/components/.gitkeep
diff --git a/test-app/app/config/environment.d.ts b/test-app/app/config/environment.d.ts
new file mode 100644
index 0000000..a1d67fd
--- /dev/null
+++ b/test-app/app/config/environment.d.ts
@@ -0,0 +1,14 @@
+/**
+ * Type declarations for
+ * import config from 'test-app/config/environment'
+ */
+declare const config: {
+ environment: string;
+ modulePrefix: string;
+ podModulePrefix: string;
+ locationType: 'history' | 'hash' | 'none';
+ rootURL: string;
+ APP: Record;
+};
+
+export default config;
diff --git a/app/.gitkeep b/test-app/app/controllers/.gitkeep
similarity index 100%
rename from app/.gitkeep
rename to test-app/app/controllers/.gitkeep
diff --git a/tests/dummy/app/components/.gitkeep b/test-app/app/helpers/.gitkeep
similarity index 100%
rename from tests/dummy/app/components/.gitkeep
rename to test-app/app/helpers/.gitkeep
diff --git a/tests/dummy/app/index.html b/test-app/app/index.html
similarity index 78%
rename from tests/dummy/app/index.html
rename to test-app/app/index.html
index 8a43d2d..8b54281 100644
--- a/tests/dummy/app/index.html
+++ b/test-app/app/index.html
@@ -2,15 +2,14 @@
-
- Dummy
+ TestApp
{{content-for "head"}}
-
+
{{content-for "head-footer"}}
@@ -18,7 +17,7 @@
{{content-for "body"}}
-
+
{{content-for "body-footer"}}
diff --git a/tests/dummy/app/controllers/.gitkeep b/test-app/app/models/.gitkeep
similarity index 100%
rename from tests/dummy/app/controllers/.gitkeep
rename to test-app/app/models/.gitkeep
diff --git a/tests/dummy/app/router.js b/test-app/app/router.ts
similarity index 85%
rename from tests/dummy/app/router.js
rename to test-app/app/router.ts
index cbeea01..cb33c87 100644
--- a/tests/dummy/app/router.js
+++ b/test-app/app/router.ts
@@ -1,5 +1,5 @@
import EmberRouter from '@ember/routing/router';
-import config from 'dummy/config/environment';
+import config from 'test-app/config/environment';
export default class Router extends EmberRouter {
location = config.locationType;
diff --git a/tests/dummy/app/routes/alpha.js b/test-app/app/routes/alpha.ts
similarity index 100%
rename from tests/dummy/app/routes/alpha.js
rename to test-app/app/routes/alpha.ts
diff --git a/tests/dummy/app/routes/bravo.js b/test-app/app/routes/bravo.ts
similarity index 100%
rename from tests/dummy/app/routes/bravo.js
rename to test-app/app/routes/bravo.ts
diff --git a/tests/dummy/app/routes/bravo/november.js b/test-app/app/routes/bravo/november.ts
similarity index 77%
rename from tests/dummy/app/routes/bravo/november.js
rename to test-app/app/routes/bravo/november.ts
index 43d8570..6c1c1e8 100644
--- a/tests/dummy/app/routes/bravo/november.js
+++ b/test-app/app/routes/bravo/november.ts
@@ -1,12 +1,14 @@
import Route from '@ember/routing/route';
export default class BravoNovemberRoute extends Route {
+ interval: number | undefined = 0;
+
activate() {
this.interval = setInterval(() => this.refresh(), 3000);
}
deactivate() {
clearInterval(this.interval);
- delete this.interval;
+ this.interval = undefined;
}
}
diff --git a/tests/dummy/app/routes/index.js b/test-app/app/routes/index.ts
similarity index 100%
rename from tests/dummy/app/routes/index.js
rename to test-app/app/routes/index.ts
diff --git a/tests/dummy/app/styles/app.css b/test-app/app/styles/app.scss
similarity index 52%
rename from tests/dummy/app/styles/app.css
rename to test-app/app/styles/app.scss
index 80e2de0..db11d42 100644
--- a/tests/dummy/app/styles/app.css
+++ b/test-app/app/styles/app.scss
@@ -1,37 +1,37 @@
-/* #ember-a11y-refocus-nav-message:active,
-#ember-a11y-refocus-nav-message:focus {
- position: static;
- width: auto;
- height: auto;
- overflow: visible;
- clip: auto;
- white-space: normal;
-} */
+@use "navigation-narrator.css";
-nav,nav ul {
- width: 100%
+nav,
+nav ul {
+ width: 100%;
}
-body,nav ul,nav ul li {
- margin: 0
+body,
+nav ul,
+nav ul li {
+ margin: 0;
}
-nav,nav ul,nav ul li {
+nav,
+nav ul,
+nav ul li {
padding: 0;
- display: flex
+ display: flex;
}
-*,:after {
- box-sizing: border-box
+*,
+::after {
+ box-sizing: border-box;
}
+
html {
font-size: 100%;
}
+
body {
font-size: 1rem;
line-height: 1.2;
font-family: system-ui, Roboto, sans-serif;
- padding: 0
+ padding: 0;
}
main {
@@ -39,33 +39,34 @@ main {
min-height: 90vh;
}
+footer {
+ padding: 0.5rem 1rem;
+ display: flex;
+ width: 100%;
+ justify-content: space-between;
+}
+
+footer a {
+ padding: 0.5rem;
+}
+
nav {
background-color: navy;
margin: 0 auto;
- height: fit-content
+ height: fit-content;
}
nav ul {
- list-style: none
+ list-style: none;
}
nav ul li a {
padding: 1rem;
color: #fff;
border-bottom: 3px solid navy;
- text-decoration: none
+ text-decoration: none;
}
nav ul li a:hover {
- border-bottom: 3px solid #ff0
+ border-bottom: 3px solid #ff0;
}
-
-footer {
- padding: 0.5rem 1rem;
- display: flex;
- width: 100%;
- justify-content: space-between;
-}
-footer a {
- padding: 0.5rem;
-}
\ No newline at end of file
diff --git a/test-app/app/templates/alpha.hbs b/test-app/app/templates/alpha.hbs
new file mode 100644
index 0000000..36567db
--- /dev/null
+++ b/test-app/app/templates/alpha.hbs
@@ -0,0 +1,7 @@
+{{page-title "Alpha"}}
+
+Alpha Page
+
+This is the route named "alpha" in an
+ Ember JS
+ application.
\ No newline at end of file
diff --git a/tests/dummy/app/templates/application.hbs b/test-app/app/templates/application.hbs
similarity index 94%
rename from tests/dummy/app/templates/application.hbs
rename to test-app/app/templates/application.hbs
index 76e6b86..8bc00b6 100644
--- a/tests/dummy/app/templates/application.hbs
+++ b/test-app/app/templates/application.hbs
@@ -1,5 +1,5 @@
-
+
Home
diff --git a/test-app/app/templates/bravo.hbs b/test-app/app/templates/bravo.hbs
new file mode 100644
index 0000000..cbea6a4
--- /dev/null
+++ b/test-app/app/templates/bravo.hbs
@@ -0,0 +1,7 @@
+{{page-title "Bravo"}}
+
+Bravo Page
+
+This route (named "bravo") has a single child route-
+ November .
+{{outlet}}
\ No newline at end of file
diff --git a/tests/dummy/app/templates/bravo/november.hbs b/test-app/app/templates/bravo/november.hbs
similarity index 100%
rename from tests/dummy/app/templates/bravo/november.hbs
rename to test-app/app/templates/bravo/november.hbs
diff --git a/test-app/app/templates/index.hbs b/test-app/app/templates/index.hbs
new file mode 100644
index 0000000..88fe0e6
--- /dev/null
+++ b/test-app/app/templates/index.hbs
@@ -0,0 +1,64 @@
+{{page-title "Ember A11y Refocus"}}
+
+Ember A11y ReFocus
+Welcome to this demo app for ember-a11y-refocus! The GitHub repo is available
+ here:
+ https://github.com/ember-a11y/ember-a11y-refocus .
+
+Describing the Problem
+SPAs use
+ pushState
+ to allow portions of the page to be updated or replaced without a whole new
+ page being rendered. While this was a positive gain for performance on the
+ web, it has made an entire type of web app not accessible for users with
+ assistive technology such as screen-readers. With the prolific rise of
+ JavaScript frameworks as the tool of choice for building modern web
+ applications, screen-reader users have gotten increasingly frustrated (and
+ rightly so) at being left out of many experiences of the modern web- online
+ banking and bill pay are just a couple of ways that this negatively effects
+ users who rely on assistive technology to complete everyday tasks.
+
+
+Since
+ pushState
+ does nothing to inform the browser - and, by extent, the screen reader- that
+ new content is present, the screen-reader user has no way of knowing that new
+ content exists, or that navigation to a new page was successful. Additionally,
+ focus remains where it was, instead of getting reset in a predictable fashion.
+
+Solutions?
+
+ These two issues (recognition of new content, resetting of focus for
+ navigation purposes) have been treated a few ways in single-page applications:
+
+ completely ignored
+ issue filed with screen readers themselves
+ manually placing focus on the page's h1 element when a new view renders
+ programmatically placing focus on the new content on the page by using a
+ container component that can be targeted
+ use of aria-live
+ implementing a skip-link to at least place the focus in a predictable
+ way
+
+
+The biggest issue is that this problem is mostly ignored and not resolved.
+ This is why each framework should provide a recommended method for resolving
+ this issue- or ideally, bake a solution into the framework code itself, so
+ that developers do not have to even think about it.
+
+What this addon does
+
+ The ember-a11y-refocus addon attempts to provide a sensible resolution for all
+ involved:
+
+ the performance gains from `pushState` remain in place
+ users with assistive technology are informed that a page transition has
+ occurred
+ the focus is reset to the message itself, which also resets the focus of
+ the page (as is desired for the screen-reader user)
+
+
+To try it out, use your keyboard to navigate through some of the items in the
+ navbar while browsing with your screen reader of choice.
\ No newline at end of file
diff --git a/test-app/config/ember-cli-update.json b/test-app/config/ember-cli-update.json
new file mode 100644
index 0000000..8b82829
--- /dev/null
+++ b/test-app/config/ember-cli-update.json
@@ -0,0 +1,24 @@
+{
+ "schemaVersion": "1.0.0",
+ "packages": [
+ {
+ "name": "ember-cli",
+ "version": "6.1.0",
+ "blueprints": [
+ {
+ "name": "app",
+ "outputRepo": "https://github.com/ember-cli/ember-new-output",
+ "codemodsSource": "ember-app-codemods-manifest@1",
+ "isBaseBlueprint": true,
+ "options": [
+ "--no-welcome",
+ "--pnpm",
+ "--embroider",
+ "--ci-provider=github",
+ "--typescript"
+ ]
+ }
+ ]
+ }
+ ]
+}
diff --git a/config/ember-try.js b/test-app/config/ember-try.js
similarity index 73%
rename from config/ember-try.js
rename to test-app/config/ember-try.js
index 50ed3d2..973ca16 100644
--- a/config/ember-try.js
+++ b/test-app/config/ember-try.js
@@ -5,23 +5,21 @@ const { embroiderSafe, embroiderOptimized } = require('@embroider/test-setup');
module.exports = async function () {
return {
- command: 'pnpm test:ember',
- useYarn: false,
usePnpm: true,
scenarios: [
{
- name: 'ember-lts-3.28',
+ name: 'ember-lts-4.12',
npm: {
devDependencies: {
- 'ember-source': '3.28.12',
+ 'ember-source': '~4.12.0',
},
},
},
{
- name: 'ember-lts-4.12',
+ name: 'ember-lts-5.4',
npm: {
devDependencies: {
- 'ember-source': '4.12.4',
+ 'ember-source': '~5.4.0',
},
},
},
@@ -32,7 +30,6 @@ module.exports = async function () {
'ember-source': await getChannelURL('release'),
},
},
- allowedToFail: true,
},
{
name: 'ember-beta',
@@ -41,7 +38,6 @@ module.exports = async function () {
'ember-source': await getChannelURL('beta'),
},
},
- allowedToFail: true,
},
{
name: 'ember-canary',
@@ -50,10 +46,9 @@ module.exports = async function () {
'ember-source': await getChannelURL('canary'),
},
},
- allowedToFail: true,
},
- embroiderSafe({ allowedToFail: true }),
- embroiderOptimized({ allowedToFail: true }),
+ embroiderSafe(),
+ embroiderOptimized(),
],
};
};
diff --git a/tests/dummy/config/environment.js b/test-app/config/environment.js
similarity index 87%
rename from tests/dummy/config/environment.js
rename to test-app/config/environment.js
index 93d69f5..113d30a 100644
--- a/tests/dummy/config/environment.js
+++ b/test-app/config/environment.js
@@ -1,20 +1,17 @@
'use strict';
module.exports = function (environment) {
- let ENV = {
- modulePrefix: 'dummy',
+ const ENV = {
+ modulePrefix: 'test-app',
environment,
rootURL: '/',
locationType: 'history',
EmberENV: {
+ EXTEND_PROTOTYPES: false,
FEATURES: {
// Here you can enable experimental features on an ember canary build
// e.g. EMBER_NATIVE_DECORATOR_SUPPORT: true
},
- EXTEND_PROTOTYPES: {
- // Prevent Ember Data from overriding Date.parse.
- Date: false,
- },
},
APP: {
diff --git a/tests/dummy/config/optional-features.json b/test-app/config/optional-features.json
similarity index 58%
rename from tests/dummy/config/optional-features.json
rename to test-app/config/optional-features.json
index b26286e..5329dd9 100644
--- a/tests/dummy/config/optional-features.json
+++ b/test-app/config/optional-features.json
@@ -2,5 +2,6 @@
"application-template-wrapper": false,
"default-async-observers": true,
"jquery-integration": false,
- "template-only-glimmer-components": true
+ "template-only-glimmer-components": true,
+ "no-implicit-route-model": true
}
diff --git a/tests/dummy/config/targets.js b/test-app/config/targets.js
similarity index 50%
rename from tests/dummy/config/targets.js
rename to test-app/config/targets.js
index 4b33327..1e48e05 100644
--- a/tests/dummy/config/targets.js
+++ b/test-app/config/targets.js
@@ -6,13 +6,6 @@ const browsers = [
'last 1 Safari versions',
];
-const isCI = Boolean(process.env.CI);
-const isProduction = process.env.EMBER_ENV === 'production';
-
-if (isCI || isProduction) {
- browsers.push('ie 11');
-}
-
module.exports = {
browsers,
};
diff --git a/test-app/ember-cli-build.js b/test-app/ember-cli-build.js
new file mode 100644
index 0000000..96f84d4
--- /dev/null
+++ b/test-app/ember-cli-build.js
@@ -0,0 +1,22 @@
+'use strict';
+
+const EmberApp = require('ember-cli/lib/broccoli/ember-app');
+
+module.exports = function (defaults) {
+ const app = new EmberApp(defaults, {
+ 'ember-cli-babel': { enableTypeScriptTransform: true },
+
+ // Add options here
+ autoImport: {
+ watchDependencies: ['ember-a11y-refocus'],
+ },
+
+ sassOptions: {
+ includePaths: ['node_modules/ember-a11y-refocus/dist/styles'],
+ },
+ });
+
+ const { maybeEmbroider } = require('@embroider/test-setup');
+
+ return maybeEmbroider(app);
+};
diff --git a/test-app/eslint.config.mjs b/test-app/eslint.config.mjs
new file mode 100644
index 0000000..3798534
--- /dev/null
+++ b/test-app/eslint.config.mjs
@@ -0,0 +1,146 @@
+/**
+ * Debugging:
+ * https://eslint.org/docs/latest/use/configure/debug
+ * ----------------------------------------------------
+ *
+ * Print a file's calculated configuration
+ *
+ * npx eslint --print-config path/to/file.js
+ *
+ * Inspecting the config
+ *
+ * npx eslint --inspect-config
+ *
+ */
+import globals from 'globals';
+import js from '@eslint/js';
+
+import ts from 'typescript-eslint';
+
+import ember from 'eslint-plugin-ember/recommended';
+
+import eslintConfigPrettier from 'eslint-config-prettier';
+import qunit from 'eslint-plugin-qunit';
+import n from 'eslint-plugin-n';
+
+import babelParser from '@babel/eslint-parser';
+
+const parserOptions = {
+ esm: {
+ js: {
+ ecmaFeatures: { modules: true },
+ ecmaVersion: 'latest',
+ requireConfigFile: false,
+ babelOptions: {
+ plugins: [
+ [
+ '@babel/plugin-proposal-decorators',
+ { decoratorsBeforeExport: true },
+ ],
+ ],
+ },
+ },
+ ts: {
+ projectService: true,
+ tsconfigRootDir: import.meta.dirname,
+ },
+ },
+};
+
+export default ts.config(
+ js.configs.recommended,
+ ember.configs.base,
+ ember.configs.gjs,
+ ember.configs.gts,
+ eslintConfigPrettier,
+ /**
+ * Ignores must be in their own object
+ * https://eslint.org/docs/latest/use/configure/ignore
+ */
+ {
+ ignores: ['dist/', 'node_modules/', 'coverage/', '!**/.*'],
+ },
+ /**
+ * https://eslint.org/docs/latest/use/configure/configuration-files#configuring-linter-options
+ */
+ {
+ linterOptions: {
+ reportUnusedDisableDirectives: 'error',
+ },
+ },
+ {
+ files: ['**/*.js'],
+ languageOptions: {
+ parser: babelParser,
+ },
+ },
+ {
+ files: ['**/*.{js,gjs}'],
+ languageOptions: {
+ parserOptions: parserOptions.esm.js,
+ globals: {
+ ...globals.browser,
+ },
+ },
+ },
+ {
+ files: ['**/*.{ts,gts}'],
+ languageOptions: {
+ parser: ember.parser,
+ parserOptions: parserOptions.esm.ts,
+ },
+ extends: [...ts.configs.recommendedTypeChecked, ember.configs.gts],
+ },
+ {
+ files: ['tests/**/*-test.{js,gjs,ts,gts}'],
+ plugins: {
+ qunit,
+ },
+ },
+ /**
+ * CJS node files
+ */
+ {
+ files: [
+ '**/*.cjs',
+ 'config/**/*.js',
+ 'tests/dummy/config/**/*.js',
+ 'testem.js',
+ 'testem*.js',
+ 'index.js',
+ '.prettierrc.js',
+ '.stylelintrc.js',
+ '.template-lintrc.js',
+ 'ember-cli-build.js',
+ ],
+ plugins: {
+ n,
+ },
+
+ languageOptions: {
+ sourceType: 'script',
+ ecmaVersion: 'latest',
+ globals: {
+ ...globals.node,
+ },
+ },
+ },
+ /**
+ * ESM node files
+ */
+ {
+ files: ['**/*.mjs'],
+ plugins: {
+ n,
+ },
+
+ languageOptions: {
+ sourceType: 'module',
+ ecmaVersion: 'latest',
+ parserOptions: parserOptions.esm.js,
+ globals: {
+ ...globals.node,
+ },
+ },
+ },
+);
diff --git a/test-app/package.json b/test-app/package.json
new file mode 100644
index 0000000..15a910f
--- /dev/null
+++ b/test-app/package.json
@@ -0,0 +1,103 @@
+{
+ "name": "test-app",
+ "version": "0.0.0",
+ "private": true,
+ "description": "Small description for test-app goes here",
+ "repository": "",
+ "license": "MIT",
+ "author": "",
+ "directories": {
+ "doc": "doc",
+ "test": "tests"
+ },
+ "scripts": {
+ "build": "ember build --environment=production",
+ "format": "prettier . --cache --write",
+ "lint": "concurrently \"pnpm:lint:*(!fix)\" --names \"lint:\" --prefixColors auto",
+ "lint:css": "stylelint \"**/*.scss\"",
+ "lint:css:fix": "concurrently \"pnpm:lint:css -- --fix\"",
+ "lint:fix": "concurrently \"pnpm:lint:*:fix\" --names \"fix:\" --prefixColors auto && pnpm format",
+ "lint:format": "prettier . --cache --check",
+ "lint:hbs": "ember-template-lint .",
+ "lint:hbs:fix": "ember-template-lint . --fix",
+ "lint:js": "eslint . --cache",
+ "lint:js:fix": "eslint . --fix",
+ "lint:types": "glint",
+ "start": "ember serve",
+ "test": "concurrently \"pnpm:lint\" \"pnpm:test:*\" --names \"lint,test:\" --prefixColors auto",
+ "test:ember": "ember test"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.26.0",
+ "@babel/eslint-parser": "^7.26.5",
+ "@babel/plugin-proposal-decorators": "^7.25.9",
+ "@ember/optional-features": "^2.2.0",
+ "@ember/string": "^4.0.0",
+ "@ember/test-helpers": "^5.0.0",
+ "@embroider/test-setup": "^4.0.0",
+ "@eslint/js": "^9.18.0",
+ "@glimmer/component": "^2.0.0",
+ "@glimmer/tracking": "^1.1.2",
+ "@glint/core": "^1.5.1",
+ "@glint/environment-ember-loose": "^1.5.1",
+ "@glint/environment-ember-template-imports": "^1.5.1",
+ "@glint/template": "^1.5.1",
+ "@tsconfig/ember": "^3.0.8",
+ "@types/eslint__js": "^8.42.3",
+ "@types/qunit": "^2.19.12",
+ "@types/rsvp": "^4.0.9",
+ "@typescript-eslint/eslint-plugin": "^8.21.0",
+ "@typescript-eslint/parser": "^8.21.0",
+ "broccoli-asset-rev": "^3.0.0",
+ "concurrently": "^9.1.2",
+ "ember-a11y-refocus": "workspace:*",
+ "ember-auto-import": "^2.10.0",
+ "ember-cli": "~6.1.0",
+ "ember-cli-app-version": "^7.0.0",
+ "ember-cli-babel": "^8.2.0",
+ "ember-cli-clean-css": "^3.0.0",
+ "ember-cli-dependency-checker": "^3.3.3",
+ "ember-cli-htmlbars": "^6.3.0",
+ "ember-cli-inject-live-reload": "^2.1.0",
+ "ember-cli-sass": "^11.0.1",
+ "ember-cli-sri": "^2.1.1",
+ "ember-cli-terser": "^4.0.2",
+ "ember-data": "~5.3.9",
+ "ember-fetch": "^8.1.2",
+ "ember-load-initializers": "^3.0.1",
+ "ember-modifier": "^4.2.0",
+ "ember-page-title": "^8.2.3",
+ "ember-qunit": "^9.0.1",
+ "ember-resolver": "^13.1.0",
+ "ember-source": "~6.1.0",
+ "ember-source-channel-url": "^3.0.0",
+ "ember-template-imports": "^4.2.0",
+ "ember-template-lint": "^6.1.0",
+ "ember-try": "^3.0.0",
+ "eslint": "^9.18.0",
+ "eslint-config-prettier": "^10.0.1",
+ "eslint-plugin-ember": "^12.3.3",
+ "eslint-plugin-n": "^17.15.1",
+ "eslint-plugin-qunit": "^8.1.2",
+ "globals": "^15.14.0",
+ "loader.js": "^4.7.0",
+ "prettier": "^3.4.2",
+ "prettier-plugin-ember-template-tag": "^2.0.4",
+ "qunit": "^2.24.0",
+ "qunit-dom": "^3.4.0",
+ "sass": "^1.83.4",
+ "stylelint": "^16.13.2",
+ "stylelint-config-standard": "^37.0.0",
+ "stylelint-config-standard-scss": "^13.1.0",
+ "tracked-built-ins": "^4.0.0",
+ "typescript": "^5.7.3",
+ "typescript-eslint": "^8.21.0",
+ "webpack": "^5.97.1"
+ },
+ "engines": {
+ "node": ">= 18"
+ },
+ "ember": {
+ "edition": "octane"
+ }
+}
diff --git a/tests/dummy/public/robots.txt b/test-app/public/robots.txt
similarity index 100%
rename from tests/dummy/public/robots.txt
rename to test-app/public/robots.txt
diff --git a/testem.js b/test-app/testem.js
similarity index 100%
rename from testem.js
rename to test-app/testem.js
diff --git a/test-app/tests/helpers/index.ts b/test-app/tests/helpers/index.ts
new file mode 100644
index 0000000..2fa93a5
--- /dev/null
+++ b/test-app/tests/helpers/index.ts
@@ -0,0 +1,44 @@
+import {
+ setupApplicationTest as upstreamSetupApplicationTest,
+ setupRenderingTest as upstreamSetupRenderingTest,
+ setupTest as upstreamSetupTest,
+} from 'ember-qunit';
+
+import type { SetupTestOptions } from 'ember-qunit';
+
+// This file exists to provide wrappers around ember-qunit's
+// test setup functions. This way, you can easily extend the setup that is
+// needed per test type.
+
+function setupApplicationTest(hooks: NestedHooks, options?: SetupTestOptions) {
+ upstreamSetupApplicationTest(hooks, options);
+
+ // Additional setup for application tests can be done here.
+ //
+ // For example, if you need an authenticated session for each
+ // application test, you could do:
+ //
+ // hooks.beforeEach(async function () {
+ // await authenticateSession(); // ember-simple-auth
+ // });
+ //
+ // This is also a good place to call test setup functions coming
+ // from other addons:
+ //
+ // setupIntl(hooks, 'en-us'); // ember-intl
+ // setupMirage(hooks); // ember-cli-mirage
+}
+
+function setupRenderingTest(hooks: NestedHooks, options?: SetupTestOptions) {
+ upstreamSetupRenderingTest(hooks, options);
+
+ // Additional setup for rendering tests can be done here.
+}
+
+function setupTest(hooks: NestedHooks, options?: SetupTestOptions) {
+ upstreamSetupTest(hooks, options);
+
+ // Additional setup for unit tests can be done here.
+}
+
+export { setupApplicationTest, setupRenderingTest, setupTest };
diff --git a/tests/helpers/mocks.js b/test-app/tests/helpers/mocks.ts
similarity index 100%
rename from tests/helpers/mocks.js
rename to test-app/tests/helpers/mocks.ts
diff --git a/tests/index.html b/test-app/tests/index.html
similarity index 78%
rename from tests/index.html
rename to test-app/tests/index.html
index 3eb848d..e4b2e69 100644
--- a/tests/index.html
+++ b/test-app/tests/index.html
@@ -2,8 +2,7 @@
-
- Dummy Tests
+ TestApp Tests
@@ -11,7 +10,7 @@
{{content-for "test-head"}}
-
+
{{content-for "head-footer"}}
@@ -28,10 +27,10 @@
-
+
-
+
{{content-for "body-footer"}}
diff --git a/tests/integration/components/navigation-narrator-test.js b/test-app/tests/integration/components/navigation-narrator-test.gts
similarity index 74%
rename from tests/integration/components/navigation-narrator-test.js
rename to test-app/tests/integration/components/navigation-narrator-test.gts
index 8573196..95deded 100644
--- a/tests/integration/components/navigation-narrator-test.js
+++ b/test-app/tests/integration/components/navigation-narrator-test.gts
@@ -1,7 +1,8 @@
import { module, test } from 'qunit';
-import { setupRenderingTest } from 'ember-qunit';
+import { setupRenderingTest } from 'test-app/tests/helpers';
import { render, clearRender, focus, blur, settled } from '@ember/test-helpers';
-import hbs from 'htmlbars-inline-precompile';
+import { NavigationNarrator } from 'ember-a11y-refocus';
+
import { MockTransition, MockRouteInfo } from '../../helpers/mocks';
module('Integration | Component | navigation-narrator', function (hooks) {
@@ -9,12 +10,12 @@ module('Integration | Component | navigation-narrator', function (hooks) {
module('nav message', function () {
test('it renders', async function (assert) {
- await render(hbs` `);
+ await render( );
assert
.dom('#ember-a11y-refocus-nav-message')
.hasText(
- 'The page navigation is complete. You may now navigate the page content as you wish.'
+ 'The page navigation is complete. You may now navigate the page content as you wish.',
);
assert
.dom('#ember-a11y-refocus-nav-message')
@@ -25,7 +26,7 @@ module('Integration | Component | navigation-narrator', function (hooks) {
module('skip link', function () {
test('it renders', async function (assert) {
- await render(hbs` `);
+ await render( );
assert
.dom('.ember-a11y-refocus-skip-link')
@@ -35,13 +36,17 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('it does not render when `skipLink` is set to false', async function (assert) {
- await render(hbs` `);
+ await render(
+ ,
+ );
assert.dom('.ember-a11y-refocus-skip-link').doesNotExist();
});
test('it targets the id passed to `skipTo`', async function (assert) {
- await render(hbs` `);
+ await render(
+ ,
+ );
assert
.dom('.ember-a11y-refocus-skip-link')
@@ -49,13 +54,15 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('it renders custom text passed to `skipText`', async function (assert) {
- await render(hbs` `);
+ await render(
+ ,
+ );
assert.dom('.ember-a11y-refocus-skip-link').hasText('Skip to content');
});
test('it shows/hides the bypass block/skip link for keyboard users', async function (assert) {
- await render(hbs` `);
+ await render( );
assert.dom('.ember-a11y-refocus-skip-link').doesNotHaveClass('active');
@@ -71,9 +78,9 @@ module('Integration | Component | navigation-narrator', function (hooks) {
module('on routeDidChange', function () {
test('it handles focus', async function (assert) {
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- await render(hbs` `);
+ await render( );
router.trigger('routeDidChange', new MockTransition());
@@ -84,9 +91,9 @@ module('Integration | Component | navigation-narrator', function (hooks) {
test('it does not error if element is removed before focus', async function (assert) {
assert.expect(0); // no assertions here, just making sure the test runs w/o erroring
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- await render(hbs` `);
+ await render( );
await clearRender();
router.trigger('routeDidChange', new MockTransition());
@@ -95,12 +102,14 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('it accepts custom change-detection logic', async function (assert) {
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- this.set('routeChangeValidator', () => false);
+ const routeChangeValidator = () => false;
await render(
- hbs` `
+
+
+ ,
);
router.trigger('routeDidChange', new MockTransition());
@@ -111,9 +120,9 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('it transitions routes with query params and manages focus if `excludeAllQueryParams` is false (default)', async function (assert) {
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- await render(hbs` `);
+ await render( );
router.trigger(
'routeDidChange',
@@ -128,7 +137,7 @@ module('Integration | Component | navigation-narrator', function (hooks) {
params: { id: 'hobnob' },
queryParams: { region: 'apac' },
}),
- })
+ }),
);
await settled();
@@ -137,9 +146,13 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('excludeAllQueryParams is true, queryParams exist, should not manage focus', async function (assert) {
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- await render(hbs` `);
+ await render(
+
+
+ ,
+ );
// router.trigger('routeDidChange', new MockTransition());
router.trigger(
@@ -155,7 +168,7 @@ module('Integration | Component | navigation-narrator', function (hooks) {
params: { id: 'hobnob' },
queryParams: { region: 'apac' },
}),
- })
+ }),
);
await settled();
@@ -164,9 +177,13 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('excludeAllQueryParams is true, but queryParams do not exist, manage focus', async function (assert) {
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- await render(hbs` `);
+ await render(
+
+
+ ,
+ );
router.trigger('routeDidChange', new MockTransition());
await settled();
@@ -175,9 +192,13 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('excludeAllQueryParams is true, queryParams do not exist but are added, do not manage focus', async function (assert) {
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- await render(hbs` `);
+ await render(
+
+
+ ,
+ );
router.trigger(
'routeDidChange',
new MockTransition({
@@ -190,7 +211,7 @@ module('Integration | Component | navigation-narrator', function (hooks) {
params: { id: 'hobnob' },
queryParams: { region: 'apac' },
}),
- })
+ }),
);
await settled();
@@ -199,9 +220,13 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('excludeAllQueryParams is true, queryParams exist on the route but then are emptied, still do not manage focus', async function (assert) {
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- await render(hbs` `);
+ await render(
+
+
+ ,
+ );
router.trigger(
'routeDidChange',
new MockTransition({
@@ -214,7 +239,7 @@ module('Integration | Component | navigation-narrator', function (hooks) {
name: 'biscuit',
params: { id: 'hobnob' },
}),
- })
+ }),
);
await settled();
@@ -223,9 +248,13 @@ module('Integration | Component | navigation-narrator', function (hooks) {
});
test('excludeAllQueryParams is true, queryParams exist on the route, user navigates to new route without any query params, manage focus', async function (assert) {
- let router = this.owner.lookup('service:router');
+ const router = this.owner.lookup('service:router');
- await render(hbs` `);
+ await render(
+
+
+ ,
+ );
router.trigger(
'routeDidChange',
new MockTransition({
@@ -249,7 +278,7 @@ module('Integration | Component | navigation-narrator', function (hooks) {
}),
}),
}),
- })
+ }),
);
await settled();
diff --git a/test-app/tests/test-helper.ts b/test-app/tests/test-helper.ts
new file mode 100644
index 0000000..47a79d6
--- /dev/null
+++ b/test-app/tests/test-helper.ts
@@ -0,0 +1,15 @@
+import Application from 'test-app/app';
+import config from 'test-app/config/environment';
+import * as QUnit from 'qunit';
+import { setApplication } from '@ember/test-helpers';
+import { setup } from 'qunit-dom';
+import { loadTests } from 'ember-qunit/test-loader';
+import { start, setupEmberOnerrorValidation } from 'ember-qunit';
+
+setApplication(Application.create(config.APP));
+
+setup(QUnit.assert);
+setupEmberOnerrorValidation();
+loadTests();
+
+start();
diff --git a/tests/unit/utils/default-validator-test.js b/test-app/tests/unit/utils/default-validator-test.ts
similarity index 87%
rename from tests/unit/utils/default-validator-test.js
rename to test-app/tests/unit/utils/default-validator-test.ts
index a3c4926..292014a 100644
--- a/tests/unit/utils/default-validator-test.js
+++ b/test-app/tests/unit/utils/default-validator-test.ts
@@ -1,10 +1,11 @@
-import { defaultValidator } from 'ember-a11y-refocus';
import { module, test } from 'qunit';
+import { defaultValidator } from 'ember-a11y-refocus';
+
import { MockTransition, MockRouteInfo } from '../../helpers/mocks';
module('Unit | Utility | defaultValidator', function () {
test('when all routes, params, and query params are equal', function (assert) {
- let transition = new MockTransition({
+ const transition = new MockTransition({
from: new MockRouteInfo({
name: 'biscuit',
params: { id: 'hobnob' },
@@ -27,13 +28,13 @@ module('Unit | Utility | defaultValidator', function () {
}),
});
- let result = defaultValidator(transition);
+ const result = defaultValidator(transition);
assert.false(result);
});
test('when routes differ', function (assert) {
- let transition = new MockTransition({
+ const transition = new MockTransition({
from: new MockRouteInfo({
name: 'biscuit',
params: { id: 'hobnob' },
@@ -55,13 +56,13 @@ module('Unit | Utility | defaultValidator', function () {
}),
});
- let result = defaultValidator(transition);
+ const result = defaultValidator(transition);
assert.true(result);
});
test('when params differ', function (assert) {
- let transition = new MockTransition({
+ const transition = new MockTransition({
from: new MockRouteInfo({
name: 'biscuit',
params: { id: 'hobnob' },
@@ -84,13 +85,13 @@ module('Unit | Utility | defaultValidator', function () {
}),
});
- let result = defaultValidator(transition);
+ const result = defaultValidator(transition);
assert.true(result);
});
test('when queryParams differ', function (assert) {
- let transition = new MockTransition({
+ const transition = new MockTransition({
from: new MockRouteInfo({
name: 'biscuit',
params: { id: 'hobnob' },
@@ -115,13 +116,13 @@ module('Unit | Utility | defaultValidator', function () {
}),
});
- let result = defaultValidator(transition);
+ const result = defaultValidator(transition);
assert.true(result);
});
test('when routes are different depths', function (assert) {
- let transition = new MockTransition({
+ const transition = new MockTransition({
from: new MockRouteInfo({
name: 'biscuit',
params: { id: 'hobnob' },
@@ -141,7 +142,7 @@ module('Unit | Utility | defaultValidator', function () {
}),
});
- let result = defaultValidator(transition);
+ const result = defaultValidator(transition);
assert.true(result);
});
diff --git a/test-app/tsconfig.json b/test-app/tsconfig.json
new file mode 100644
index 0000000..bd023a1
--- /dev/null
+++ b/test-app/tsconfig.json
@@ -0,0 +1,18 @@
+{
+ "extends": "@tsconfig/ember",
+ "glint": {
+ "environment": ["ember-loose", "ember-template-imports"]
+ },
+ "compilerOptions": {
+ // The combination of `baseUrl` with `paths` allows Ember's classic package
+ // layout, which is not resolvable with the Node resolution algorithm, to
+ // work with TypeScript.
+ "baseUrl": ".",
+ "paths": {
+ "test-app/tests/*": ["tests/*"],
+ "test-app/*": ["app/*"],
+ "*": ["types/*"]
+ },
+ "types": ["ember-source/types"]
+ }
+}
diff --git a/test-app/types/global.d.ts b/test-app/types/global.d.ts
new file mode 100644
index 0000000..19e4d36
--- /dev/null
+++ b/test-app/types/global.d.ts
@@ -0,0 +1,16 @@
+import '@glint/environment-ember-loose';
+import '@glint/environment-ember-template-imports';
+
+import type EmberA11yRefocusRegistry from 'ember-a11y-refocus/template-registry';
+import type PageTitle from 'ember-page-title/template-registry';
+
+declare module '@glint/environment-ember-loose/registry' {
+ // Remove this once entries have been added! 👇
+
+ export default interface Registry
+ extends EmberA11yRefocusRegistry,
+ PageTitle {
+ // Add any registry entries from other addons here that your addon itself uses (in non-strict mode templates)
+ // See https://typed-ember.gitbook.io/glint/using-glint/ember/using-addons
+ }
+}
diff --git a/tests/dummy/app/helpers/.gitkeep b/tests/dummy/app/helpers/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/dummy/app/models/.gitkeep b/tests/dummy/app/models/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/dummy/app/routes/.gitkeep b/tests/dummy/app/routes/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/dummy/app/templates/alpha.hbs b/tests/dummy/app/templates/alpha.hbs
deleted file mode 100644
index 205727b..0000000
--- a/tests/dummy/app/templates/alpha.hbs
+++ /dev/null
@@ -1,5 +0,0 @@
-{{page-title "Alpha"}}
-
-Alpha Page
-
-This is the route named "alpha" in an Ember JS application.
\ No newline at end of file
diff --git a/tests/dummy/app/templates/bravo.hbs b/tests/dummy/app/templates/bravo.hbs
deleted file mode 100644
index 2454907..0000000
--- a/tests/dummy/app/templates/bravo.hbs
+++ /dev/null
@@ -1,6 +0,0 @@
-{{page-title "Bravo"}}
-
-Bravo Page
-
-This route (named "bravo") has a single child route- November .
-{{outlet}}
\ No newline at end of file
diff --git a/tests/dummy/app/templates/index.hbs b/tests/dummy/app/templates/index.hbs
deleted file mode 100644
index e5c7d4b..0000000
--- a/tests/dummy/app/templates/index.hbs
+++ /dev/null
@@ -1,34 +0,0 @@
-{{page-title "Ember A11y Refocus"}}
-
-Ember A11y ReFocus
-Welcome to this demo app for ember-a11y-refocus! The GitHub repo is available here: https://github.com/ember-a11y/ember-a11y-refocus .
-
-Describing the Problem
-SPAs use pushState
to allow portions of the page to be updated or replaced without a whole new page being rendered. While this was a positive gain for performance on the web, it has made an entire type of web app not accessible for users with assistive technology such as screen-readers. With the prolific rise of JavaScript frameworks as the tool of choice for building modern web applications, screen-reader users have gotten increasingly frustrated (and rightly so) at being left out of many experiences of the modern web- online banking and bill pay are just a couple of ways that this negatively effects users who rely on assistive technology to complete everyday tasks.
-
-Since pushState
does nothing to inform the browser - and, by extent, the screen reader- that new content is present, the screen-reader user has no way of knowing that new content exists, or that navigation to a new page was successful. Additionally, focus remains where it was, instead of getting reset in a predictable fashion.
-
-Solutions?
-
- These two issues (recognition of new content, resetting of focus for navigation purposes) have been treated a few ways in single-page applications:
-
- completely ignored
- issue filed with screen readers themselves
- manually placing focus on the page's h1 element when a new view renders
- programmatically placing focus on the new content on the page by using a container component that can be targeted
- use of aria-live
- implementing a skip-link to at least place the focus in a predictable way
-
-
-The biggest issue is that this problem is mostly ignored and not resolved. This is why each framework should provide a recommended method for resolving this issue- or ideally, bake a solution into the framework code itself, so that developers do not have to even think about it.
-
-What this addon does
-
- The ember-a11y-refocus addon attempts to provide a sensible resolution for all involved:
-
- the performance gains from `pushState` remain in place
- users with assistive technology are informed that a page transition has occurred
- the focus is reset to the message itself, which also resets the focus of the page (as is desired for the screen-reader user)
-
-
-To try it out, use your keyboard to navigate through some of the items in the navbar while browsing with your screen reader of choice.
diff --git a/tests/dummy/config/ember-cli-update.json b/tests/dummy/config/ember-cli-update.json
deleted file mode 100644
index ff2e2d5..0000000
--- a/tests/dummy/config/ember-cli-update.json
+++ /dev/null
@@ -1,20 +0,0 @@
-{
- "schemaVersion": "1.0.0",
- "packages": [
- {
- "name": "ember-cli",
- "version": "3.16.2",
- "blueprints": [
- {
- "name": "addon",
- "outputRepo": "https://github.com/ember-cli/ember-addon-output",
- "codemodsSource": "ember-addon-codemods-manifest@1",
- "isBaseBlueprint": true,
- "options": [
- "--no-welcome"
- ]
- }
- ]
- }
- ]
-}
diff --git a/tests/helpers/.gitkeep b/tests/helpers/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/integration/.gitkeep b/tests/integration/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/tests/test-helper.js b/tests/test-helper.js
deleted file mode 100644
index 4efd6e5..0000000
--- a/tests/test-helper.js
+++ /dev/null
@@ -1,12 +0,0 @@
-import Application from 'dummy/app';
-import config from 'dummy/config/environment';
-import * as QUnit from 'qunit';
-import { setApplication } from '@ember/test-helpers';
-import { setup } from 'qunit-dom';
-import { start } from 'ember-qunit';
-
-setApplication(Application.create(config.APP));
-
-setup(QUnit.assert);
-
-start();
diff --git a/tests/unit/.gitkeep b/tests/unit/.gitkeep
deleted file mode 100644
index e69de29..0000000
diff --git a/vendor/.gitkeep b/vendor/.gitkeep
deleted file mode 100644
index e69de29..0000000
From 2ff88c9802ef80783461b874380874540d56dd6c Mon Sep 17 00:00:00 2001
From: Alexey Kulakov
Date: Wed, 22 Jan 2025 01:08:53 -0800
Subject: [PATCH 2/2] feat: update README
---
README.md | 43 +++++++++++++++++++++++++++++++++++++++++++
1 file changed, 43 insertions(+)
diff --git a/README.md b/README.md
index 71b07ad..16deac3 100644
--- a/README.md
+++ b/README.md
@@ -59,6 +59,49 @@ Example:
```
+Gjs/Gts:
+
+```gts
+import { NavigationNarrator } from 'ember-a11y-refocus';
+
+
+
+
+
+```
+
+Template Registry is available for loose mode users:
+
+```js
+import type EmberA11yRefocusRegistry from 'ember-a11y-refocus/template-registry';
+
+declare module '@glint/environment-ember-loose/registry' {
+ export default interface Registry
+ extends EmberA11yRefocusRegistry{
+ }
+}
+```
+
+Minimal CSS is provided to style the skip link and navigation message. You can override these styles in your app's CSS.
+
+```js
+// ember-cli-build.js
+const app = new EmberApp(defaults, {
+ const app = new EmberApp(defaults, {
+ sassOptions: {
+ includePaths: ['node_modules/ember-a11y-refocus/dist/styles'],
+ },
+ });
+});
+```
+
+```scss
+// app.scss
+
+@use "navigation-narrator.css";
+```
+
+
### Customizing the definition of a route change
This addon provides support for custom definitions of which route changes should trigger refocusing behavior.